forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.yaml
252 lines (248 loc) · 9.33 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
type: aerospike
scope_name: otelcol/aerospikereceiver
status:
class: receiver
stability:
alpha: [metrics]
distributions: [contrib]
codeowners:
active: [djaglowski, antonblock]
seeking_new: true
resource_attributes:
aerospike.node.name:
description: Name of the Aerospike node collected from
enabled: true
type: string
aerospike.namespace:
description: Name of the Aerospike namespace
enabled: true
type: string
attributes:
namespace_component:
name_override: component
description: Individual component of a namespace
type: string
enum:
- data
- index
- set_index
- secondary_index
scan_type:
name_override: type
description: Type of scan operation performed on a namespace
type: string
enum:
- aggregation
- basic
- ops_background
- udf_background
scan_result:
name_override: result
description: Result of a scan operation performed on a namespace
type: string
enum:
- abort
- complete
- error
index_type:
name_override: index
description: Type of index the operation was performed on
type: string
enum:
- primary
- secondary
query_type:
name_override: type
description: Type of query operation performed on a namespace
type: string
enum:
- aggregation
- basic
- short
- long_basic
- short_basic
- ops_background
- udf_background
query_result:
name_override: result
description: Result of a query operation performed on a namespace
type: string
enum:
- abort
- complete
- error
- timeout # short_basic queries only
transaction_type:
name_override: type
description: Type of transaction performed on a namespace
type: string
enum:
- delete
- read
- udf
- write
transaction_result:
name_override: result
description: Result of a transaction performed on a namespace
type: string
enum:
- error
- filtered_out
- not_found
- success
- timeout
connection_type:
name_override: type
description: Type of connection to an Aerospike node
type: string
enum:
- client
- fabric
- heartbeat
connection_op:
name_override: operation
description: Operation performed with a connection (open or close)
type: string
enum:
- close
- open
metrics:
aerospike.node.memory.free:
enabled: true
description: Percentage of the node's memory which is still free
extended_documentation: Aerospike Metric system_free_mem_pct
unit: '%'
gauge:
value_type: int
input_type: string
aerospike.node.connection.count:
enabled: true
description: Number of connections opened and closed to the node
extended_documentation: Aggregate of Aerospike Metrics client_connections_closed, client_connections_opened, fabric_connections_closed, fabric_connections_opened, heartbeat_connections_closed, heartbeat_connections_opened
unit: '{connections}'
attributes: [connection_type, connection_op]
sum:
value_type: int
input_type: string
monotonic: true
aggregation_temporality: cumulative
aerospike.node.connection.open:
enabled: true
description: Current number of open connections to the node
extended_documentation: Aggregate of Aerospike Metrics client_connections, fabric_connections, heartbeat_connections
unit: '{connections}'
attributes: [connection_type]
sum:
value_type: int
input_type: string
monotonic: false
aggregation_temporality: cumulative
aerospike.node.query.tracked:
enabled: true
description: Number of queries tracked by the system.
extended_documentation: Number of queries which ran more than query untracked_time (default 1 sec), Aerospike metric query_tracked
unit: '{queries}'
sum:
value_type: int
input_type: string
monotonic: true
aggregation_temporality: cumulative
aerospike.namespace.memory.usage:
enabled: true
description: Memory currently used by each component of the namespace
extended_documentation: Aggregate of Aerospike Metrics memory_used_data_bytes, memory_used_index_bytes, memory_used_set_index_bytes, memory_used_sindex_bytes
unit: By
attributes: [namespace_component]
sum:
value_type: int
input_type: string
monotonic: false
aggregation_temporality: cumulative
aerospike.namespace.memory.free:
enabled: true
description: Percentage of the namespace's memory which is still free
extended_documentation: Aerospike metric memory_free_pct
unit: '%'
gauge:
value_type: int
input_type: string
aerospike.namespace.disk.available:
enabled: true
description: Minimum percentage of contiguous disk space free to the namespace across all devices
unit: '%'
gauge:
value_type: int
input_type: string
aerospike.namespace.scan.count:
enabled: true
description: Number of scan operations performed on the namespace
unit: '{scans}'
extended_documentation: Aggregate of Aerospike Metrics scan_aggr_abort, scan_aggr_complete, scan_aggr_error, scan_basic_abort, scan_basic_complete, scan_basic_error, scan_ops_bg_abort, scan_ops_bg_complete, scan_ops_bg_error, scan_udf_bg_abort, scan_udf_bg_complete, scan_udf_bg_error
attributes: [scan_type, scan_result]
sum:
value_type: int
input_type: string
monotonic: true
aggregation_temporality: cumulative
aerospike.namespace.query.count:
enabled: true
description: Number of query operations performed on the namespace
unit: '{queries}'
extended_documentation: Aggregate of Aerospike Metrics query_aggr_abort, query_aggr_complete, query_aggr_error, query_basic_abort, query_basic_complete, query_basic_error, query_ops_bg_abort, query_ops_bg_complete, query_ops_bg_error, query_udf_bg_abort, query_udf_bg_complete, query_udf_bg_error, pi_query_aggr_abort, pi_query_aggr_complete, pi_query_aggr_error, pi_query_long_basic_abort, pi_query_long_basic_complete, pi_query_long_basic_error, pi_query_ops_bg_abort, pi_query_ops_bg_basic_complete, pi_query_ops_bg_basic_error, pi_query_short_basic_timeout, pi_query_short_basic_complete, pi_query_short_basic_error, pi_query_udf_bg_abort, pi_query_udf_bg_complete, pi_query_udf_bg_error, si_query_aggr_abort, si_query_aggr_complete, si_query_aggr_error, si_query_long_basic_abort, si_query_long_basic_complete, si_query_long_basic_error, si_query_ops_bg_abort, si_query_ops_bg_basic_complete, si_query_ops_bg_basic_error, si_query_short_basic_timeout, si_query_short_basic_complete, si_query_short_basic_error, si_query_udf_bg_abort, si_query_udf_bg_complete, si_query_udf_bg_error
attributes: [query_type, index_type, query_result]
sum:
value_type: int
input_type: string
monotonic: true
aggregation_temporality: cumulative
aerospike.namespace.geojson.region_query_cells:
enabled: true
description: Number of cell coverings for query region queried
unit: '{cells}'
extended_documentation: Number of cell coverings for query region queried. Aerospike metric geo_region_query_cells.
sum:
value_type: int
input_type: string
monotonic: true
aggregation_temporality: cumulative
aerospike.namespace.geojson.region_query_false_positive:
enabled: true
description: Number of points outside the region.
unit: '{points}'
extended_documentation: Total query result points is geo_region_query_points + geo_region_query_falsepos. Aerospike metric geo_regio_query_falspos.
sum:
value_type: int
input_type: string
monotonic: true
aggregation_temporality: cumulative
aerospike.namespace.geojson.region_query_points:
enabled: true
description: Number of points within the region.
unit: '{points}'
extended_documentation: Total query result points is geo_region_query_points + geo_region_query_falsepos. Aerospike metric geo_region_query_points.
sum:
value_type: int
input_type: string
monotonic: true
aggregation_temporality: cumulative
aerospike.namespace.geojson.region_query_requests:
enabled: true
description: Number of geojson queries on the system since the uptime of the node.
unit: '{queries}'
extended_documentation: Number of geojson queries on the system since the uptime of the node. Aerospike metric geo_region_query_reqs.
sum:
value_type: int
input_type: string
monotonic: true
aggregation_temporality: cumulative
aerospike.namespace.transaction.count:
enabled: true
description: Number of transactions performed on the namespace
unit: '{transactions}'
extended_documentation: Aggregate of Aerospike Metrics client_delete_error, client_delete_filtered_out, client_delete_not_found, client_delete_success, client_delete_timeout, client_read_error, client_read_filtered_out, client_read_not_found, client_read_success, client_read_timeout, client_udf_error, client_udf_filtered_out, client_udf_not_found, client_udf_success, client_udf_timeout, client_write_error, client_write_filtered_out, client_write_not_found, client_write_success, client_write_timeout
attributes: [transaction_type, transaction_result]
sum:
value_type: int
input_type: string
monotonic: true
aggregation_temporality: cumulative