forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.yaml
102 lines (98 loc) · 2.46 KB
/
metadata.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
type: couchdb
scope_name: otelcol/couchdbreceiver
status:
class: receiver
stability:
beta: [metrics]
distributions: [contrib]
codeowners:
active: [djaglowski]
seeking_new: true
resource_attributes:
couchdb.node.name:
description: The name of the node.
type: string
enabled: true
attributes:
http.method:
description: An HTTP request method.
type: string
enum: [ COPY, DELETE, GET, HEAD, OPTIONS, POST, PUT ]
http.status_code:
description: An HTTP status code.
type: string
view:
description: The view type.
type: string
enum: [ temporary_view_reads, view_reads ]
operation:
description: The operation type.
type: string
enum: [ writes, reads ]
metrics:
couchdb.average_request_time:
enabled: true
description: The average duration of a served request.
unit: ms
gauge:
value_type: double
couchdb.httpd.bulk_requests:
enabled: true
description: The number of bulk requests.
unit: "{requests}"
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
couchdb.httpd.requests:
enabled: true
description: The number of HTTP requests by method.
unit: "{requests}"
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: [ http.method ]
couchdb.httpd.responses:
enabled: true
description: The number of each HTTP status code.
unit: "{responses}"
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: [ http.status_code ]
couchdb.httpd.views:
enabled: true
description: The number of views read.
unit: "{views}"
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: [ view ]
couchdb.database.open:
enabled: true
description: The number of open databases.
unit: "{databases}"
sum:
value_type: int
monotonic: false
aggregation_temporality: cumulative
couchdb.file_descriptor.open:
enabled: true
description: The number of open file descriptors.
unit: "{files}"
sum:
value_type: int
monotonic: false
aggregation_temporality: cumulative
couchdb.database.operations:
enabled: true
description: The number of database operations.
unit: "{operations}"
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: [ operation ]