forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.yaml
143 lines (140 loc) · 3.23 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
type: memcached
scope_name: otelcol/memcachedreceiver
status:
class: receiver
stability:
beta: [metrics]
distributions: [contrib]
codeowners:
active: [djaglowski]
seeking_new: true
attributes:
command:
description: The type of command.
type: string
enum:
- get
- set
- flush
- touch
direction:
description: Direction of data flow.
type: string
enum:
- sent
- received
type:
description: Result of cache request.
type: string
enum:
- hit
- miss
operation:
description: The type of operation.
type: string
enum:
- increment
- decrement
- get
state:
description: The type of CPU usage.
type: string
enum:
- system
- user
metrics:
memcached.bytes:
enabled: true
description: Current number of bytes used by this server to store items.
unit: By
gauge:
value_type: int
attributes: []
memcached.connections.current:
enabled: true
description: The current number of open connections.
unit: "{connections}"
sum:
value_type: int
monotonic: false
aggregation_temporality: cumulative
attributes: []
memcached.connections.total:
enabled: true
description: Total number of connections opened since the server started running.
unit: "{connections}"
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: []
memcached.commands:
enabled: true
description: Commands executed.
unit: "{commands}"
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: [command]
memcached.current_items:
enabled: true
description: Number of items currently stored in the cache.
unit: "{items}"
sum:
value_type: int
monotonic: false
aggregation_temporality: cumulative
attributes: []
memcached.evictions:
enabled: true
description: Cache item evictions.
unit: "{evictions}"
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: []
memcached.network:
enabled: true
description: Bytes transferred over the network.
unit: by
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: [direction]
memcached.operations:
enabled: true
description: Operation counts.
unit: "{operations}"
sum:
value_type: int
monotonic: true
aggregation_temporality: cumulative
attributes: [type,operation]
memcached.operation_hit_ratio:
enabled: true
description: Hit ratio for operations, expressed as a percentage value between 0.0 and 100.0.
unit: '%'
gauge:
value_type: double
attributes: [operation]
memcached.cpu.usage:
enabled: true
description: Accumulated user and system time.
unit: s
sum:
value_type: double
monotonic: true
aggregation_temporality: cumulative
attributes: [state]
memcached.threads:
enabled: true
description: Number of threads used by the memcached instance.
unit: "{threads}"
sum:
value_type: int
monotonic: false
aggregation_temporality: cumulative
attributes: []