chore(go.d/azure_monitor): shorten stock profile selectors (#22137)
Ilya Mashchenko committed
Apr 4, 2026 at 13:50 UTC
150e5553ee6dc5d17e85ebe26bdc57c304333308
39 files changed
+1395
-1359
src/go/plugin/go.d/collector/azure_monitor/azureprofiles/default_catalog_test.go
+36
@@ -39,6 +39,42 @@ func TestLoadFromDefaultDirs_LoadsAllStockProfiles(t *testing.T) {
39
assert.Len(t, catalog.byBaseName, want)
40
}
41
42
+func TestLoadFromDefaultDirs_StockProfilesUseSelectorShorthand(t *testing.T) {
43
+ dir := azureProfilesDirFromThisFile()
44
+ require.NotEmpty(t, dir)
45
+
46
+ entries, err := os.ReadDir(dir)
47
+ require.NoError(t, err)
48
+
49
+ for _, entry := range entries {
50
+ if entry.IsDir() {
51
+ continue
52
+ }
53
+ name := entry.Name()
54
+ ext := strings.ToLower(filepath.Ext(name))
55
+ if ext != ".yaml" && ext != ".yml" {
56
+ continue
57
+ }
58
+
59
+ data, err := os.ReadFile(filepath.Join(dir, name))
60
+ require.NoError(t, err)
61
+
62
+ for _, line := range strings.Split(string(data), "\n") {
63
+ line = strings.TrimSpace(line)
64
+ if !strings.HasPrefix(line, "- selector:") {
65
+ continue
66
+ }
67
+
68
+ selector := strings.TrimSpace(strings.TrimPrefix(line, "- selector:"))
69
+ if selector == "" || strings.HasPrefix(selector, "{") {
70
+ continue
71
+ }
72
+
73
+ assert.NotContainsf(t, selector, ".", "stock profile %q should use selector shorthand, found %q", name, selector)
74
+ }
75
+ }
76
+}
77
+
78
func TestDefaultCatalog_CachesSuccessfulLoads(t *testing.T) {
79
calls := 0
80
restore := stubDefaultCatalog(t, func() bool { return true }, func() (Catalog, error) {
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/aks.yaml
+38
-38
@@ -204,9 +204,9 @@ template:
204
units: percentage
205
algorithm: absolute
206
dimensions:
207
- - selector: aks.apiserver_cpu_usage_percentage_average
207
+ - selector: apiserver_cpu_usage_percentage_average
208
name: average
209
- - selector: aks.apiserver_cpu_usage_percentage_maximum
209
+ - selector: apiserver_cpu_usage_percentage_maximum
210
name: maximum
211
- id: am_azure_aks__apiserver_memory
212
title: AKS API Server Memory Utilization
@@ -216,9 +216,9 @@ template:
216
units: percentage
217
algorithm: absolute
218
dimensions:
219
- - selector: aks.apiserver_memory_usage_percentage_average
219
+ - selector: apiserver_memory_usage_percentage_average
220
name: average
221
- - selector: aks.apiserver_memory_usage_percentage_maximum
221
+ - selector: apiserver_memory_usage_percentage_maximum
222
name: maximum
223
- id: am_azure_aks__apiserver_inflight_requests
224
title: AKS API Server Inflight Requests
@@ -228,7 +228,7 @@ template:
228
units: requests
229
algorithm: absolute
230
dimensions:
231
- - selector: aks.apiserver_current_inflight_requests_average
231
+ - selector: apiserver_current_inflight_requests_average
232
name: average
233
- id: am_azure_aks__etcd_cpu
234
title: AKS etcd CPU Utilization
@@ -238,9 +238,9 @@ template:
238
units: percentage
239
algorithm: absolute
240
dimensions:
241
- - selector: aks.etcd_cpu_usage_percentage_average
241
+ - selector: etcd_cpu_usage_percentage_average
242
name: average
243
- - selector: aks.etcd_cpu_usage_percentage_maximum
243
+ - selector: etcd_cpu_usage_percentage_maximum
244
name: maximum
245
- id: am_azure_aks__etcd_memory
246
title: AKS etcd Memory Utilization
@@ -250,9 +250,9 @@ template:
250
units: percentage
251
algorithm: absolute
252
dimensions:
253
- - selector: aks.etcd_memory_usage_percentage_average
253
+ - selector: etcd_memory_usage_percentage_average
254
name: average
255
- - selector: aks.etcd_memory_usage_percentage_maximum
255
+ - selector: etcd_memory_usage_percentage_maximum
256
name: maximum
257
- id: am_azure_aks__etcd_database
258
title: AKS etcd Database Utilization
@@ -262,9 +262,9 @@ template:
262
units: percentage
263
algorithm: absolute
264
dimensions:
265
- - selector: aks.etcd_database_usage_percentage_average
265
+ - selector: etcd_database_usage_percentage_average
266
name: average
267
- - selector: aks.etcd_database_usage_percentage_maximum
267
+ - selector: etcd_database_usage_percentage_maximum
268
name: maximum
269
- id: am_azure_aks__pod_status_phase
270
title: AKS Pods by Phase
@@ -274,7 +274,7 @@ template:
274
units: pods
275
algorithm: absolute
276
dimensions:
277
- - selector: aks.kube_pod_status_phase_average
277
+ - selector: kube_pod_status_phase_average
278
name: average
279
- id: am_azure_aks__pod_status_ready
280
title: AKS Pods in Ready State
@@ -284,7 +284,7 @@ template:
284
units: pods
285
algorithm: absolute
286
dimensions:
287
- - selector: aks.kube_pod_status_ready_average
287
+ - selector: kube_pod_status_ready_average
288
name: average
289
- id: am_azure_aks__allocatable_cpu
290
title: AKS Allocatable CPU Cores
@@ -294,7 +294,7 @@ template:
294
units: cores
295
algorithm: absolute
296
dimensions:
297
- - selector: aks.kube_node_status_allocatable_cpu_cores_average
297
+ - selector: kube_node_status_allocatable_cpu_cores_average
298
name: average
299
- id: am_azure_aks__allocatable_memory
300
title: AKS Allocatable Memory
@@ -304,7 +304,7 @@ template:
304
units: bytes
305
algorithm: absolute
306
dimensions:
307
- - selector: aks.kube_node_status_allocatable_memory_bytes_average
307
+ - selector: kube_node_status_allocatable_memory_bytes_average
308
name: average
309
- id: am_azure_aks__node_conditions
310
title: AKS Node Conditions
@@ -314,7 +314,7 @@ template:
314
units: nodes
315
algorithm: absolute
316
dimensions:
317
- - selector: aks.kube_node_status_condition_average
317
+ - selector: kube_node_status_condition_average
318
name: average
319
- id: am_azure_aks__autoscaler_health
320
title: AKS Cluster Autoscaler Health
@@ -324,9 +324,9 @@ template:
324
units: state
325
algorithm: absolute
326
dimensions:
327
- - selector: aks.cluster_autoscaler_cluster_safe_to_autoscale_average
327
+ - selector: cluster_autoscaler_cluster_safe_to_autoscale_average
328
name: safe_to_autoscale
329
- - selector: aks.cluster_autoscaler_scale_down_in_cooldown_average
329
+ - selector: cluster_autoscaler_scale_down_in_cooldown_average
330
name: cooldown
331
- id: am_azure_aks__autoscaler_unschedulable_pods
332
title: AKS Autoscaler Unschedulable Pods
@@ -336,7 +336,7 @@ template:
336
units: pods
337
algorithm: absolute
338
dimensions:
339
- - selector: aks.cluster_autoscaler_unschedulable_pods_count_average
339
+ - selector: cluster_autoscaler_unschedulable_pods_count_average
340
name: average
341
- id: am_azure_aks__autoscaler_unneeded_nodes
342
title: AKS Autoscaler Unneeded Nodes
@@ -346,7 +346,7 @@ template:
346
units: nodes
347
algorithm: absolute
348
dimensions:
349
- - selector: aks.cluster_autoscaler_unneeded_nodes_count_average
349
+ - selector: cluster_autoscaler_unneeded_nodes_count_average
350
name: average
351
- id: am_azure_aks__node_cpu_millicores
352
title: AKS Node CPU Usage
@@ -356,9 +356,9 @@ template:
356
units: millicores
357
algorithm: absolute
358
dimensions:
359
- - selector: aks.node_cpu_usage_millicores_average
359
+ - selector: node_cpu_usage_millicores_average
360
name: average
361
- - selector: aks.node_cpu_usage_millicores_maximum
361
+ - selector: node_cpu_usage_millicores_maximum
362
name: maximum
363
- id: am_azure_aks__node_cpu_percentage
364
title: AKS Node CPU Percentage
@@ -368,9 +368,9 @@ template:
368
units: percentage
369
algorithm: absolute
370
dimensions:
371
- - selector: aks.node_cpu_usage_percentage_average
371
+ - selector: node_cpu_usage_percentage_average
372
name: average
373
- - selector: aks.node_cpu_usage_percentage_maximum
373
+ - selector: node_cpu_usage_percentage_maximum
374
name: maximum
375
- id: am_azure_aks__node_memory_working_set
376
title: AKS Node Memory Working Set
@@ -380,9 +380,9 @@ template:
380
units: bytes
381
algorithm: absolute
382
dimensions:
383
- - selector: aks.node_memory_working_set_bytes_average
383
+ - selector: node_memory_working_set_bytes_average
384
name: average
385
- - selector: aks.node_memory_working_set_bytes_maximum
385
+ - selector: node_memory_working_set_bytes_maximum
386
name: maximum
387
- id: am_azure_aks__node_memory_working_set_percentage
388
title: AKS Node Memory Working Set Percentage
@@ -392,9 +392,9 @@ template:
392
units: percentage
393
algorithm: absolute
394
dimensions:
395
- - selector: aks.node_memory_working_set_percentage_average
395
+ - selector: node_memory_working_set_percentage_average
396
name: average
397
- - selector: aks.node_memory_working_set_percentage_maximum
397
+ - selector: node_memory_working_set_percentage_maximum
398
name: maximum
399
- id: am_azure_aks__node_memory_rss
400
title: AKS Node Memory RSS
@@ -404,9 +404,9 @@ template:
404
units: bytes
405
algorithm: absolute
406
dimensions:
407
- - selector: aks.node_memory_rss_bytes_average
407
+ - selector: node_memory_rss_bytes_average
408
name: average
409
- - selector: aks.node_memory_rss_bytes_maximum
409
+ - selector: node_memory_rss_bytes_maximum
410
name: maximum
411
- id: am_azure_aks__node_memory_rss_percentage
412
title: AKS Node Memory RSS Percentage
@@ -416,9 +416,9 @@ template:
416
units: percentage
417
algorithm: absolute
418
dimensions:
419
- - selector: aks.node_memory_rss_percentage_average
419
+ - selector: node_memory_rss_percentage_average
420
name: average
421
- - selector: aks.node_memory_rss_percentage_maximum
421
+ - selector: node_memory_rss_percentage_maximum
422
name: maximum
423
- id: am_azure_aks__node_disk_usage
424
title: AKS Node Disk Usage
@@ -428,9 +428,9 @@ template:
428
units: bytes
429
algorithm: absolute
430
dimensions:
431
- - selector: aks.node_disk_usage_bytes_average
431
+ - selector: node_disk_usage_bytes_average
432
name: average
433
- - selector: aks.node_disk_usage_bytes_maximum
433
+ - selector: node_disk_usage_bytes_maximum
434
name: maximum
435
- id: am_azure_aks__node_disk_percentage
436
title: AKS Node Disk Usage Percentage
@@ -440,9 +440,9 @@ template:
440
units: percentage
441
algorithm: absolute
442
dimensions:
443
- - selector: aks.node_disk_usage_percentage_average
443
+ - selector: node_disk_usage_percentage_average
444
name: average
445
- - selector: aks.node_disk_usage_percentage_maximum
445
+ - selector: node_disk_usage_percentage_maximum
446
name: maximum
447
- id: am_azure_aks__node_network
448
title: AKS Node Network Traffic
@@ -452,7 +452,7 @@ template:
452
units: bytes
453
algorithm: absolute
454
dimensions:
455
- - selector: aks.node_network_in_bytes_average
455
+ - selector: node_network_in_bytes_average
456
name: in
457
- - selector: aks.node_network_out_bytes_average
457
+ - selector: node_network_out_bytes_average
458
name: out
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/api_management.yaml
+17
-17
@@ -126,7 +126,7 @@ template:
126
units: percentage
127
algorithm: absolute
128
dimensions:
129
- - selector: api_management.capacity_average
129
+ - selector: capacity_average
130
name: capacity
131
- id: am_azure_api_management__gateway_cpu
132
title: Azure API Management Gateway CPU
@@ -136,7 +136,7 @@ template:
136
units: percentage
137
algorithm: absolute
138
dimensions:
139
- - selector: api_management.cpu_percent_gateway_average
139
+ - selector: cpu_percent_gateway_average
140
name: cpu
141
- id: am_azure_api_management__gateway_memory
142
title: Azure API Management Gateway Memory
@@ -146,7 +146,7 @@ template:
146
units: percentage
147
algorithm: absolute
148
dimensions:
149
- - selector: api_management.memory_percent_gateway_average
149
+ - selector: memory_percent_gateway_average
150
name: memory
151
- id: am_azure_api_management__requests
152
title: Azure API Management Gateway Requests
@@ -156,7 +156,7 @@ template:
156
units: requests/s
157
algorithm: incremental
158
dimensions:
159
- - selector: api_management.requests_total
159
+ - selector: requests_total
160
name: requests
161
- id: am_azure_api_management__request_duration
162
title: Azure API Management Request Duration
@@ -166,9 +166,9 @@ template:
166
units: milliseconds
167
algorithm: absolute
168
dimensions:
169
- - selector: api_management.duration_average
169
+ - selector: duration_average
170
name: overall
171
- - selector: api_management.backend_duration_average
171
+ - selector: backend_duration_average
172
name: backend
173
- id: am_azure_api_management__eventhub_events
174
title: Azure API Management EventHub Events
@@ -178,19 +178,19 @@ template:
178
units: events/s
179
algorithm: incremental
180
dimensions:
181
- - selector: api_management.event_hub_total_events_total
181
+ - selector: event_hub_total_events_total
182
name: total
183
- - selector: api_management.event_hub_successful_events_total
183
+ - selector: event_hub_successful_events_total
184
name: successful
185
- - selector: api_management.event_hub_total_failed_events_total
185
+ - selector: event_hub_total_failed_events_total
186
name: failed
187
- - selector: api_management.event_hub_dropped_events_total
187
+ - selector: event_hub_dropped_events_total
188
name: dropped
189
- - selector: api_management.event_hub_rejected_events_total
189
+ - selector: event_hub_rejected_events_total
190
name: rejected
191
- - selector: api_management.event_hub_throttled_events_total
191
+ - selector: event_hub_throttled_events_total
192
name: throttled
193
- - selector: api_management.event_hub_timedout_events_total
193
+ - selector: event_hub_timedout_events_total
194
name: timed_out
195
- id: am_azure_api_management__eventhub_bytes
196
title: Azure API Management EventHub Bytes Sent
@@ -200,7 +200,7 @@ template:
200
units: bytes/s
201
algorithm: incremental
202
dimensions:
203
- - selector: api_management.event_hub_total_bytes_sent_total
203
+ - selector: event_hub_total_bytes_sent_total
204
name: sent
205
- id: am_azure_api_management__websocket_connections
206
title: Azure API Management WebSocket Connection Attempts
@@ -210,7 +210,7 @@ template:
210
units: attempts/s
211
algorithm: incremental
212
dimensions:
213
- - selector: api_management.connection_attempts_total
213
+ - selector: connection_attempts_total
214
name: connection_attempts
215
- id: am_azure_api_management__websocket_messages
216
title: Azure API Management WebSocket Messages
@@ -220,7 +220,7 @@ template:
220
units: messages/s
221
algorithm: incremental
222
dimensions:
223
- - selector: api_management.web_socket_messages_total
223
+ - selector: web_socket_messages_total
224
name: messages
225
- id: am_azure_api_management__network_connectivity
226
title: Azure API Management Network Connectivity Status
@@ -230,5 +230,5 @@ template:
230
units: status
231
algorithm: absolute
232
dimensions:
233
- - selector: api_management.network_connectivity_average
233
+ - selector: network_connectivity_average
234
name: connectivity
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/app_service.yaml
+43
-43
@@ -282,7 +282,7 @@ template:
282
units: requests/s
283
algorithm: incremental
284
dimensions:
285
- - selector: app_service.requests_total
285
+ - selector: requests_total
286
name: requests
287
- id: am_azure_app_service__response_time
288
title: Azure App Service Response Time
@@ -292,7 +292,7 @@ template:
292
units: seconds
293
algorithm: absolute
294
dimensions:
295
- - selector: app_service.http_response_time_average
295
+ - selector: http_response_time_average
296
name: average
297
- id: am_azure_app_service__http_status
298
title: Azure App Service HTTP Status Codes
@@ -302,13 +302,13 @@ template:
302
units: responses/s
303
algorithm: incremental
304
dimensions:
305
- - selector: app_service.http2xx_total
305
+ - selector: http2xx_total
306
name: 2xx
307
- - selector: app_service.http3xx_total
307
+ - selector: http3xx_total
308
name: 3xx
309
- - selector: app_service.http4xx_total
309
+ - selector: http4xx_total
310
name: 4xx
311
- - selector: app_service.http5xx_total
311
+ - selector: http5xx_total
312
name: 5xx
313
- id: am_azure_app_service__http_error_detail
314
title: Azure App Service HTTP Error Detail
@@ -318,15 +318,15 @@ template:
318
units: responses/s
319
algorithm: incremental
320
dimensions:
321
- - selector: app_service.http101_total
321
+ - selector: http101_total
322
name: 101_websocket
323
- - selector: app_service.http401_total
323
+ - selector: http401_total
324
name: 401_unauthorized
325
- - selector: app_service.http403_total
325
+ - selector: http403_total
326
name: 403_forbidden
327
- - selector: app_service.http404_total
327
+ - selector: http404_total
328
name: 404_not_found
329
- - selector: app_service.http406_total
329
+ - selector: http406_total
330
name: 406_not_acceptable
331
- id: am_azure_app_service__cpu
332
title: Azure App Service CPU Utilization
@@ -336,7 +336,7 @@ template:
336
units: percentage
337
algorithm: absolute
338
dimensions:
339
- - selector: app_service.cpu_percentage_average
339
+ - selector: cpu_percentage_average
340
name: average
341
- id: am_azure_app_service__cpu_time
342
title: Azure App Service CPU Time
@@ -346,7 +346,7 @@ template:
346
units: seconds
347
algorithm: incremental
348
dimensions:
349
- - selector: app_service.cpu_time_total
349
+ - selector: cpu_time_total
350
name: total
351
- id: am_azure_app_service__memory_usage
352
title: Azure App Service Memory Usage
@@ -356,11 +356,11 @@ template:
356
units: bytes
357
algorithm: absolute
358
dimensions:
359
- - selector: app_service.average_memory_working_set_average
359
+ - selector: average_memory_working_set_average
360
name: average_working_set
361
- - selector: app_service.memory_working_set_average
361
+ - selector: memory_working_set_average
362
name: working_set
363
- - selector: app_service.private_bytes_average
363
+ - selector: private_bytes_average
364
name: private
365
- id: am_azure_app_service__health
366
title: Azure App Service Health Check Status
@@ -370,7 +370,7 @@ template:
370
units: percentage
371
algorithm: absolute
372
dimensions:
373
- - selector: app_service.health_check_status_average
373
+ - selector: health_check_status_average
374
name: average
375
- id: am_azure_app_service__network_traffic
376
title: Azure App Service Network Traffic
@@ -380,9 +380,9 @@ template:
380
units: bytes/s
381
algorithm: incremental
382
dimensions:
383
- - selector: app_service.bytes_received_total
383
+ - selector: bytes_received_total
384
name: received
385
- - selector: app_service.bytes_sent_total
385
+ - selector: bytes_sent_total
386
name: sent
387
- id: am_azure_app_service__connections
388
title: Azure App Service Connections
@@ -392,7 +392,7 @@ template:
392
units: connections
393
algorithm: absolute
394
dimensions:
395
- - selector: app_service.app_connections_average
395
+ - selector: app_connections_average
396
name: average
397
- id: am_azure_app_service__io_throughput
398
title: Azure App Service IO Throughput
@@ -402,11 +402,11 @@ template:
402
units: bytes/s
403
algorithm: incremental
404
dimensions:
405
- - selector: app_service.io_read_bytes_per_second_total
405
+ - selector: io_read_bytes_per_second_total
406
name: read
407
- - selector: app_service.io_write_bytes_per_second_total
407
+ - selector: io_write_bytes_per_second_total
408
name: write
409
- - selector: app_service.io_other_bytes_per_second_total
409
+ - selector: io_other_bytes_per_second_total
410
name: other
411
- id: am_azure_app_service__io_operations
412
title: Azure App Service IO Operations
@@ -416,11 +416,11 @@ template:
416
units: operations/s
417
algorithm: incremental
418
dimensions:
419
- - selector: app_service.io_read_operations_per_second_total
419
+ - selector: io_read_operations_per_second_total
420
name: read
421
- - selector: app_service.io_write_operations_per_second_total
421
+ - selector: io_write_operations_per_second_total
422
name: write
423
- - selector: app_service.io_other_operations_per_second_total
423
+ - selector: io_other_operations_per_second_total
424
name: other
425
- id: am_azure_app_service__threads
426
title: Azure App Service Threads
@@ -430,7 +430,7 @@ template:
430
units: threads
431
algorithm: absolute
432
dimensions:
433
- - selector: app_service.threads_average
433
+ - selector: threads_average
434
name: average
435
- id: am_azure_app_service__handles
436
title: Azure App Service Handles
@@ -440,7 +440,7 @@ template:
440
units: handles
441
algorithm: absolute
442
dimensions:
443
- - selector: app_service.handles_average
443
+ - selector: handles_average
444
name: average
445
- id: am_azure_app_service__gc_collections
446
title: Azure App Service .NET GC Collections
@@ -450,11 +450,11 @@ template:
450
units: collections/s
451
algorithm: incremental
452
dimensions:
453
- - selector: app_service.gen0_collections_total
453
+ - selector: gen0_collections_total
454
name: gen0
455
- - selector: app_service.gen1_collections_total
455
+ - selector: gen1_collections_total
456
name: gen1
457
- - selector: app_service.gen2_collections_total
457
+ - selector: gen2_collections_total
458
name: gen2
459
- id: am_azure_app_service__function_executions
460
title: Azure App Service Function Executions
@@ -464,7 +464,7 @@ template:
464
units: executions/s
465
algorithm: incremental
466
dimensions:
467
- - selector: app_service.function_execution_count_total
467
+ - selector: function_execution_count_total
468
name: total
469
- id: am_azure_app_service__function_execution_units
470
title: Azure App Service Function Execution Units
@@ -474,7 +474,7 @@ template:
474
units: MB-milliseconds/s
475
algorithm: incremental
476
dimensions:
477
- - selector: app_service.function_execution_units_total
477
+ - selector: function_execution_units_total
478
name: total
479
- id: am_azure_app_service__always_ready_function_executions
480
title: Azure App Service Always Ready Function Executions
@@ -484,7 +484,7 @@ template:
484
units: executions/s
485
algorithm: incremental
486
dimensions:
487
- - selector: app_service.always_ready_function_execution_count_total
487
+ - selector: always_ready_function_execution_count_total
488
name: total
489
- id: am_azure_app_service__always_ready_function_execution_units
490
title: Azure App Service Always Ready Function Execution Units
@@ -494,7 +494,7 @@ template:
494
units: MB-milliseconds/s
495
algorithm: incremental
496
dimensions:
497
- - selector: app_service.always_ready_function_execution_units_total
497
+ - selector: always_ready_function_execution_units_total
498
name: total
499
- id: am_azure_app_service__always_ready_units
500
title: Azure App Service Always Ready Units
@@ -504,7 +504,7 @@ template:
504
units: units
505
algorithm: absolute
506
dimensions:
507
- - selector: app_service.always_ready_units_total
507
+ - selector: always_ready_units_total
508
name: total
509
- id: am_azure_app_service__on_demand_function_executions
510
title: Azure App Service On Demand Function Executions
@@ -514,7 +514,7 @@ template:
514
units: executions/s
515
algorithm: incremental
516
dimensions:
517
- - selector: app_service.on_demand_function_execution_count_total
517
+ - selector: on_demand_function_execution_count_total
518
name: total
519
- id: am_azure_app_service__on_demand_function_execution_units
520
title: Azure App Service On Demand Function Execution Units
@@ -524,7 +524,7 @@ template:
524
units: MB-milliseconds/s
525
algorithm: incremental
526
dimensions:
527
- - selector: app_service.on_demand_function_execution_units_total
527
+ - selector: on_demand_function_execution_units_total
528
name: total
529
- id: am_azure_app_service__request_queue
530
title: Azure App Service Request Queue
@@ -534,7 +534,7 @@ template:
534
units: requests
535
algorithm: absolute
536
dimensions:
537
- - selector: app_service.requests_in_application_queue_average
537
+ - selector: requests_in_application_queue_average
538
name: queued
539
- id: am_azure_app_service__instances
540
title: Azure App Service Instance Count
@@ -544,7 +544,7 @@ template:
544
units: instances
545
algorithm: absolute
546
dimensions:
547
- - selector: app_service.instance_count_average
547
+ - selector: instance_count_average
548
name: running
549
- id: am_azure_app_service__assemblies
550
title: Azure App Service .NET Assemblies
@@ -554,7 +554,7 @@ template:
554
units: assemblies
555
algorithm: absolute
556
dimensions:
557
- - selector: app_service.current_assemblies_average
557
+ - selector: current_assemblies_average
558
name: loaded
559
- id: am_azure_app_service__app_domains
560
title: Azure App Service App Domains
@@ -564,7 +564,7 @@ template:
564
units: domains
565
algorithm: absolute
566
dimensions:
567
- - selector: app_service.total_app_domains_average
567
+ - selector: total_app_domains_average
568
name: loaded
569
- - selector: app_service.total_app_domains_unloaded_average
569
+ - selector: total_app_domains_unloaded_average
570
name: unloaded
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/application_gateway.yaml
+35
-35
@@ -234,7 +234,7 @@ template:
234
units: bytes/s
235
algorithm: absolute
236
dimensions:
237
- - selector: application_gateway.throughput_average
237
+ - selector: throughput_average
238
name: average
239
- id: am_azure_application_gateway__traffic_volume
240
title: Azure Application Gateway Traffic Volume
@@ -244,9 +244,9 @@ template:
244
units: bytes/s
245
algorithm: incremental
246
dimensions:
247
- - selector: application_gateway.bytes_received_total
247
+ - selector: bytes_received_total
248
name: received
249
- - selector: application_gateway.bytes_sent_total
249
+ - selector: bytes_sent_total
250
name: sent
251
- id: am_azure_application_gateway__requests
252
title: Azure Application Gateway Requests
@@ -256,9 +256,9 @@ template:
256
units: requests/s
257
algorithm: incremental
258
dimensions:
259
- - selector: application_gateway.total_requests_total
259
+ - selector: total_requests_total
260
name: total
261
- - selector: application_gateway.failed_requests_total
261
+ - selector: failed_requests_total
262
name: failed
263
- id: am_azure_application_gateway__response_status
264
title: Azure Application Gateway Response Status
@@ -268,9 +268,9 @@ template:
268
units: responses/s
269
algorithm: incremental
270
dimensions:
271
- - selector: application_gateway.response_status_total
271
+ - selector: response_status_total
272
name: gateway
273
- - selector: application_gateway.backend_response_status_total
273
+ - selector: backend_response_status_total
274
name: backend
275
- id: am_azure_application_gateway__backend_health
276
title: Azure Application Gateway Backend Health
@@ -280,9 +280,9 @@ template:
280
units: hosts
281
algorithm: absolute
282
dimensions:
283
- - selector: application_gateway.healthy_host_count_average
283
+ - selector: healthy_host_count_average
284
name: healthy
285
- - selector: application_gateway.unhealthy_host_count_average
285
+ - selector: unhealthy_host_count_average
286
name: unhealthy
287
- id: am_azure_application_gateway__backend_request_load
288
title: Azure Application Gateway Backend Request Load
@@ -292,7 +292,7 @@ template:
292
units: requests
293
algorithm: absolute
294
dimensions:
295
- - selector: application_gateway.avg_request_count_per_healthy_host_average
295
+ - selector: avg_request_count_per_healthy_host_average
296
name: per_healthy_host
297
- id: am_azure_application_gateway__backend_latency
298
title: Azure Application Gateway Backend Latency
@@ -302,11 +302,11 @@ template:
302
units: milliseconds
303
algorithm: absolute
304
dimensions:
305
- - selector: application_gateway.backend_connect_time_average
305
+ - selector: backend_connect_time_average
306
name: connect
307
- - selector: application_gateway.backend_first_byte_response_time_average
307
+ - selector: backend_first_byte_response_time_average
308
name: first_byte
309
- - selector: application_gateway.backend_last_byte_response_time_average
309
+ - selector: backend_last_byte_response_time_average
310
name: last_byte
311
- id: am_azure_application_gateway__client_latency
312
title: Azure Application Gateway Client Latency
@@ -316,9 +316,9 @@ template:
316
units: milliseconds
317
algorithm: absolute
318
dimensions:
319
- - selector: application_gateway.application_gateway_total_time_average
319
+ - selector: application_gateway_total_time_average
320
name: total_time
321
- - selector: application_gateway.client_rtt_average
321
+ - selector: client_rtt_average
322
name: client_rtt
323
- id: am_azure_application_gateway__current_connections
324
title: Azure Application Gateway Current Connections
@@ -328,7 +328,7 @@ template:
328
units: connections
329
algorithm: absolute
330
dimensions:
331
- - selector: application_gateway.current_connections_total
331
+ - selector: current_connections_total
332
name: current
333
- id: am_azure_application_gateway__new_connections
334
title: Azure Application Gateway New Connections
@@ -338,7 +338,7 @@ template:
338
units: connections/s
339
algorithm: absolute
340
dimensions:
341
- - selector: application_gateway.new_connections_per_second_average
341
+ - selector: new_connections_per_second_average
342
name: average
343
- id: am_azure_application_gateway__websocket_connections
344
title: Azure Application Gateway WebSocket Connections
@@ -348,7 +348,7 @@ template:
348
units: connections
349
algorithm: absolute
350
dimensions:
351
- - selector: application_gateway.web_socket_active_connections_total
351
+ - selector: web_socket_active_connections_total
352
name: active
353
- id: am_azure_application_gateway__websocket_close_codes
354
title: Azure Application Gateway WebSocket Close Codes
@@ -358,7 +358,7 @@ template:
358
units: connections/s
359
algorithm: incremental
360
dimensions:
361
- - selector: application_gateway.websocket_specific_close_status_code_total
361
+ - selector: websocket_specific_close_status_code_total
362
name: total
363
- id: am_azure_application_gateway__capacity
364
title: Azure Application Gateway Capacity
@@ -368,13 +368,13 @@ template:
368
units: units
369
algorithm: absolute
370
dimensions:
371
- - selector: application_gateway.capacity_units_average
371
+ - selector: capacity_units_average
372
name: capacity
373
- - selector: application_gateway.compute_units_average
373
+ - selector: compute_units_average
374
name: compute
375
- - selector: application_gateway.estimated_billed_capacity_units_average
375
+ - selector: estimated_billed_capacity_units_average
376
name: billed
377
- - selector: application_gateway.fixed_billable_capacity_units_average
377
+ - selector: fixed_billable_capacity_units_average
378
name: fixed_billed
379
- id: am_azure_application_gateway__cpu
380
title: Azure Application Gateway CPU Utilization
@@ -384,7 +384,7 @@ template:
384
units: percentage
385
algorithm: absolute
386
dimensions:
387
- - selector: application_gateway.cpu_utilization_average
387
+ - selector: cpu_utilization_average
388
name: average
389
- id: am_azure_application_gateway__tls_connections
390
title: Azure Application Gateway TLS Connections
@@ -394,7 +394,7 @@ template:
394
units: connections/s
395
algorithm: incremental
396
dimensions:
397
- - selector: application_gateway.tls_protocol_total
397
+ - selector: tls_protocol_total
398
name: total
399
- id: am_azure_application_gateway__waf_requests
400
title: Azure Application Gateway WAF Requests
@@ -404,11 +404,11 @@ template:
404
units: requests/s
405
algorithm: incremental
406
dimensions:
407
- - selector: application_gateway.azwaf_total_requests_total
407
+ - selector: azwaf_total_requests_total
408
name: total
409
- - selector: application_gateway.blocked_count_total
409
+ - selector: blocked_count_total
410
name: blocked
411
- - selector: application_gateway.matched_count_total
411
+ - selector: matched_count_total
412
name: matched
413
- id: am_azure_application_gateway__waf_rule_matches
414
title: Azure Application Gateway WAF Rule Matches
@@ -418,11 +418,11 @@ template:
418
units: matches/s
419
algorithm: incremental
420
dimensions:
421
- - selector: application_gateway.azwaf_sec_rule_total
421
+ - selector: azwaf_sec_rule_total
422
name: managed
423
- - selector: application_gateway.azwaf_custom_rule_total
423
+ - selector: azwaf_custom_rule_total
424
name: custom
425
- - selector: application_gateway.azwaf_bot_protection_total
425
+ - selector: azwaf_bot_protection_total
426
name: bot
427
- id: am_azure_application_gateway__waf_challenges
428
title: Azure Application Gateway WAF Challenges
@@ -432,9 +432,9 @@ template:
432
units: requests/s
433
algorithm: incremental
434
dimensions:
435
- - selector: application_gateway.az_waf_captcha_challenge_request_count_total
435
+ - selector: az_waf_captcha_challenge_request_count_total
436
name: captcha
437
- - selector: application_gateway.az_wafjs_challenge_request_count_total
437
+ - selector: az_wafjs_challenge_request_count_total
438
name: js_challenge
439
- id: am_azure_application_gateway__waf_penalty_box
440
title: Azure Application Gateway WAF Penalty Box
@@ -444,7 +444,7 @@ template:
444
units: IPs
445
algorithm: absolute
446
dimensions:
447
- - selector: application_gateway.azwaf_penalty_box_size_average
447
+ - selector: azwaf_penalty_box_size_average
448
name: size
449
- id: am_azure_application_gateway__waf_penalty_box_hits
450
title: Azure Application Gateway WAF Penalty Box Hits
@@ -454,5 +454,5 @@ template:
454
units: hits/s
455
algorithm: incremental
456
dimensions:
457
- - selector: application_gateway.azwaf_penalty_box_hits_total
457
+ - selector: azwaf_penalty_box_hits_total
458
name: total
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/application_insights.yaml
+30
-30
@@ -204,7 +204,7 @@ template:
204
units: percentage
205
algorithm: absolute
206
dimensions:
207
- - selector: application_insights.availability_results_availability_percentage_average
207
+ - selector: availability_results_availability_percentage_average
208
name: average
209
- id: am_azure_application_insights__availability_tests
210
title: Azure Application Insights Availability Tests
@@ -214,7 +214,7 @@ template:
214
units: tests/s
215
algorithm: incremental
216
dimensions:
217
- - selector: application_insights.availability_results_count_count
217
+ - selector: availability_results_count_count
218
name: tests
219
- id: am_azure_application_insights__availability_duration
220
title: Azure Application Insights Availability Test Duration
@@ -224,7 +224,7 @@ template:
224
units: milliseconds
225
algorithm: absolute
226
dimensions:
227
- - selector: application_insights.availability_results_duration_average
227
+ - selector: availability_results_duration_average
228
name: average
229
- id: am_azure_application_insights__server_requests
230
title: Azure Application Insights Server Requests
@@ -234,9 +234,9 @@ template:
234
units: requests/s
235
algorithm: incremental
236
dimensions:
237
- - selector: application_insights.requests_count_count
237
+ - selector: requests_count_count
238
name: total
239
- - selector: application_insights.requests_failed_count
239
+ - selector: requests_failed_count
240
name: failed
241
- id: am_azure_application_insights__server_request_rate
242
title: Azure Application Insights Server Request Rate
@@ -246,7 +246,7 @@ template:
246
units: requests/s
247
algorithm: absolute
248
dimensions:
249
- - selector: application_insights.requests_rate_average
249
+ - selector: requests_rate_average
250
name: average
251
- id: am_azure_application_insights__server_response_time
252
title: Azure Application Insights Server Response Time
@@ -256,7 +256,7 @@ template:
256
units: milliseconds
257
algorithm: absolute
258
dimensions:
259
- - selector: application_insights.requests_duration_average
259
+ - selector: requests_duration_average
260
name: average
261
- id: am_azure_application_insights__dependency_calls
262
title: Azure Application Insights Dependency Calls
@@ -266,9 +266,9 @@ template:
266
units: calls/s
267
algorithm: incremental
268
dimensions:
269
- - selector: application_insights.dependencies_count_count
269
+ - selector: dependencies_count_count
270
name: total
271
- - selector: application_insights.dependencies_failed_count
271
+ - selector: dependencies_failed_count
272
name: failed
273
- id: am_azure_application_insights__dependency_duration
274
title: Azure Application Insights Dependency Duration
@@ -278,7 +278,7 @@ template:
278
units: milliseconds
279
algorithm: absolute
280
dimensions:
281
- - selector: application_insights.dependencies_duration_average
281
+ - selector: dependencies_duration_average
282
name: average
283
- id: am_azure_application_insights__exceptions
284
title: Azure Application Insights Exceptions
@@ -288,11 +288,11 @@ template:
288
units: exceptions/s
289
algorithm: incremental
290
dimensions:
291
- - selector: application_insights.exceptions_count_count
291
+ - selector: exceptions_count_count
292
name: total
293
- - selector: application_insights.exceptions_browser_count
293
+ - selector: exceptions_browser_count
294
name: browser
295
- - selector: application_insights.exceptions_server_count
295
+ - selector: exceptions_server_count
296
name: server
297
- id: am_azure_application_insights__browser_page_load_time
298
title: Azure Application Insights Browser Page Load Time
@@ -302,7 +302,7 @@ template:
302
units: milliseconds
303
algorithm: absolute
304
dimensions:
305
- - selector: application_insights.browser_timings_total_duration_average
305
+ - selector: browser_timings_total_duration_average
306
name: total
307
- id: am_azure_application_insights__browser_timing_breakdown
308
title: Azure Application Insights Browser Timing Breakdown
@@ -312,13 +312,13 @@ template:
312
units: milliseconds
313
algorithm: absolute
314
dimensions:
315
- - selector: application_insights.browser_timings_network_duration_average
315
+ - selector: browser_timings_network_duration_average
316
name: network
317
- - selector: application_insights.browser_timings_send_duration_average
317
+ - selector: browser_timings_send_duration_average
318
name: send
319
- - selector: application_insights.browser_timings_receive_duration_average
319
+ - selector: browser_timings_receive_duration_average
320
name: receive
321
- - selector: application_insights.browser_timings_processing_duration_average
321
+ - selector: browser_timings_processing_duration_average
322
name: processing
323
- id: am_azure_application_insights__cpu_utilization
324
title: Azure Application Insights CPU Utilization
@@ -328,9 +328,9 @@ template:
328
units: percentage
329
algorithm: absolute
330
dimensions:
331
- - selector: application_insights.performance_counters_process_cpu_percentage_average
331
+ - selector: performance_counters_process_cpu_percentage_average
332
name: process
333
- - selector: application_insights.performance_counters_processor_cpu_percentage_average
333
+ - selector: performance_counters_processor_cpu_percentage_average
334
name: processor
335
- id: am_azure_application_insights__memory
336
title: Azure Application Insights Memory
@@ -340,9 +340,9 @@ template:
340
units: bytes
341
algorithm: absolute
342
dimensions:
343
- - selector: application_insights.performance_counters_memory_available_bytes_average
343
+ - selector: performance_counters_memory_available_bytes_average
344
name: available
345
- - selector: application_insights.performance_counters_process_private_bytes_average
345
+ - selector: performance_counters_process_private_bytes_average
346
name: private
347
- id: am_azure_application_insights__process_io_rate
348
title: Azure Application Insights Process IO Rate
@@ -352,7 +352,7 @@ template:
352
units: bytes/s
353
algorithm: absolute
354
dimensions:
355
- - selector: application_insights.performance_counters_process_io_bytes_per_second_average
355
+ - selector: performance_counters_process_io_bytes_per_second_average
356
name: average
357
- id: am_azure_application_insights__exception_rate
358
title: Azure Application Insights Exception Rate
@@ -362,7 +362,7 @@ template:
362
units: exceptions/s
363
algorithm: absolute
364
dimensions:
365
- - selector: application_insights.performance_counters_exceptions_per_second_average
365
+ - selector: performance_counters_exceptions_per_second_average
366
name: average
367
- id: am_azure_application_insights__http_request_execution_time
368
title: Azure Application Insights HTTP Request Execution Time
@@ -372,7 +372,7 @@ template:
372
units: milliseconds
373
algorithm: absolute
374
dimensions:
375
- - selector: application_insights.performance_counters_request_execution_time_average
375
+ - selector: performance_counters_request_execution_time_average
376
name: average
377
- id: am_azure_application_insights__http_request_queue
378
title: Azure Application Insights HTTP Requests in Queue
@@ -382,7 +382,7 @@ template:
382
units: requests
383
algorithm: absolute
384
dimensions:
385
- - selector: application_insights.performance_counters_requests_in_queue_average
385
+ - selector: performance_counters_requests_in_queue_average
386
name: queued
387
- id: am_azure_application_insights__http_request_rate
388
title: Azure Application Insights HTTP Request Rate
@@ -392,7 +392,7 @@ template:
392
units: requests/s
393
algorithm: absolute
394
dimensions:
395
- - selector: application_insights.performance_counters_requests_per_second_average
395
+ - selector: performance_counters_requests_per_second_average
396
name: average
397
- id: am_azure_application_insights__page_views
398
title: Azure Application Insights Page Views
@@ -402,7 +402,7 @@ template:
402
units: views/s
403
algorithm: incremental
404
dimensions:
405
- - selector: application_insights.page_views_count_count
405
+ - selector: page_views_count_count
406
name: views
407
- id: am_azure_application_insights__page_view_load_time
408
title: Azure Application Insights Page View Load Time
@@ -412,7 +412,7 @@ template:
412
units: milliseconds
413
algorithm: absolute
414
dimensions:
415
- - selector: application_insights.page_views_duration_average
415
+ - selector: page_views_duration_average
416
name: average
417
- id: am_azure_application_insights__traces
418
title: Azure Application Insights Traces
@@ -422,5 +422,5 @@ template:
422
units: traces/s
423
algorithm: incremental
424
dimensions:
425
- - selector: application_insights.traces_count_count
425
+ - selector: traces_count_count
426
name: traces
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/cognitive_services.yaml
+136
-136
@@ -840,7 +840,7 @@ template:
840
units: percentage
841
algorithm: absolute
842
dimensions:
843
- - selector: cognitive_services.success_rate_average
843
+ - selector: success_rate_average
844
name: availability
845
- id: am_azure_cognitive_services__calls
846
title: Azure Cognitive Services Calls
@@ -850,13 +850,13 @@ template:
850
units: calls/s
851
algorithm: incremental
852
dimensions:
853
- - selector: cognitive_services.total_calls_total
853
+ - selector: total_calls_total
854
name: total
855
- - selector: cognitive_services.successful_calls_total
855
+ - selector: successful_calls_total
856
name: successful
857
- - selector: cognitive_services.blocked_calls_total
857
+ - selector: blocked_calls_total
858
name: blocked
859
- - selector: cognitive_services.total_token_calls_total
859
+ - selector: total_token_calls_total
860
name: token
861
- id: am_azure_cognitive_services__errors
862
title: Azure Cognitive Services Errors
@@ -866,11 +866,11 @@ template:
866
units: errors/s
867
algorithm: incremental
868
dimensions:
869
- - selector: cognitive_services.total_errors_total
869
+ - selector: total_errors_total
870
name: total
871
- - selector: cognitive_services.client_errors_total
871
+ - selector: client_errors_total
872
name: client
873
- - selector: cognitive_services.server_errors_total
873
+ - selector: server_errors_total
874
name: server
875
- id: am_azure_cognitive_services__latency
876
title: Azure Cognitive Services Latency
@@ -880,7 +880,7 @@ template:
880
units: milliseconds
881
algorithm: absolute
882
dimensions:
883
- - selector: cognitive_services.latency_average
883
+ - selector: latency_average
884
name: average
885
- id: am_azure_cognitive_services__data_transfer
886
title: Azure Cognitive Services Data Transfer
@@ -890,9 +890,9 @@ template:
890
units: bytes/s
891
algorithm: incremental
892
dimensions:
893
- - selector: cognitive_services.data_in_total
893
+ - selector: data_in_total
894
name: in
895
- - selector: cognitive_services.data_out_total
895
+ - selector: data_out_total
896
name: out
897
- id: am_azure_cognitive_services__rate_limit
898
title: Azure Cognitive Services Rate Limit
@@ -902,7 +902,7 @@ template:
902
units: requests/s
903
algorithm: incremental
904
dimensions:
905
- - selector: cognitive_services.ratelimit_total
905
+ - selector: ratelimit_total
906
name: rate_limit
907
- id: am_azure_cognitive_services__openai_availability
908
title: Azure OpenAI Availability
@@ -912,7 +912,7 @@ template:
912
units: percentage
913
algorithm: absolute
914
dimensions:
915
- - selector: cognitive_services.azure_open_ai_availability_rate_average
915
+ - selector: azure_open_ai_availability_rate_average
916
name: availability
917
- id: am_azure_cognitive_services__openai_requests
918
title: Azure OpenAI Requests
@@ -922,7 +922,7 @@ template:
922
units: requests/s
923
algorithm: incremental
924
dimensions:
925
- - selector: cognitive_services.azure_open_ai_requests_total
925
+ - selector: azure_open_ai_requests_total
926
name: requests
927
- id: am_azure_cognitive_services__openai_latency
928
title: Azure OpenAI Latency
@@ -932,13 +932,13 @@ template:
932
units: milliseconds
933
algorithm: absolute
934
dimensions:
935
- - selector: cognitive_services.azure_open_ai_time_to_response_average
935
+ - selector: azure_open_ai_time_to_response_average
936
name: time_to_response
937
- - selector: cognitive_services.azure_open_ai_normalized_ttft_in_ms_average
937
+ - selector: azure_open_ai_normalized_ttft_in_ms_average
938
name: time_to_first_token
939
- - selector: cognitive_services.azure_open_ai_normalized_tbt_in_ms_average
939
+ - selector: azure_open_ai_normalized_tbt_in_ms_average
940
name: time_between_tokens
941
- - selector: cognitive_services.azure_open_aittlt_in_ms_average
941
+ - selector: azure_open_aittlt_in_ms_average
942
name: time_to_last_byte
943
- id: am_azure_cognitive_services__openai_generation_speed
944
title: Azure OpenAI Token Generation Speed
@@ -948,7 +948,7 @@ template:
948
units: tokens/s
949
algorithm: absolute
950
dimensions:
951
- - selector: cognitive_services.azure_open_ai_token_per_second_average
951
+ - selector: azure_open_ai_token_per_second_average
952
name: tokens_per_second
953
- id: am_azure_cognitive_services__openai_token_usage
954
title: Azure OpenAI Token Usage
@@ -958,13 +958,13 @@ template:
958
units: tokens/s
959
algorithm: incremental
960
dimensions:
961
- - selector: cognitive_services.token_transaction_total
961
+ - selector: token_transaction_total
962
name: total
963
- - selector: cognitive_services.processed_prompt_tokens_total
963
+ - selector: processed_prompt_tokens_total
964
name: prompt
965
- - selector: cognitive_services.generated_tokens_total
965
+ - selector: generated_tokens_total
966
name: generated
967
- - selector: cognitive_services.active_tokens_total
967
+ - selector: active_tokens_total
968
name: active
969
- id: am_azure_cognitive_services__openai_audio_tokens
970
title: Azure OpenAI Audio Tokens
@@ -974,9 +974,9 @@ template:
974
units: tokens/s
975
algorithm: incremental
976
dimensions:
977
- - selector: cognitive_services.audio_prompt_tokens_total
977
+ - selector: audio_prompt_tokens_total
978
name: prompt
979
- - selector: cognitive_services.audio_completion_tokens_total
979
+ - selector: audio_completion_tokens_total
980
name: completion
981
- id: am_azure_cognitive_services__openai_cache_match_rate
982
title: Azure OpenAI Prompt Token Cache Match Rate
@@ -986,7 +986,7 @@ template:
986
units: percentage
987
algorithm: absolute
988
dimensions:
989
- - selector: cognitive_services.azure_open_ai_context_tokens_cache_match_rate_average
989
+ - selector: azure_open_ai_context_tokens_cache_match_rate_average
990
name: cache_match_rate
991
- id: am_azure_cognitive_services__openai_provisioned_utilization
992
title: Azure OpenAI Provisioned-managed Utilization
@@ -996,7 +996,7 @@ template:
996
units: percentage
997
algorithm: absolute
998
dimensions:
999
- - selector: cognitive_services.azure_open_ai_provisioned_managed_utilization_v2_average
999
+ - selector: azure_open_ai_provisioned_managed_utilization_v2_average
1000
name: utilization
1001
- id: am_azure_cognitive_services__openai_finetuning
1002
title: Azure OpenAI Fine-Tuning Training Hours
@@ -1006,7 +1006,7 @@ template:
1006
units: hours/s
1007
algorithm: incremental
1008
dimensions:
1009
- - selector: cognitive_services.fine_tuned_training_hours_total
1009
+ - selector: fine_tuned_training_hours_total
1010
name: training_hours
1011
- id: am_azure_cognitive_services__openai_realtime_usage
1012
title: Azure OpenAI Realtime API Usage
@@ -1016,7 +1016,7 @@ template:
1016
units: seconds/s
1017
algorithm: incremental
1018
dimensions:
1019
- - selector: cognitive_services.realtime_usage_time_total
1019
+ - selector: realtime_usage_time_total
1020
name: seconds_used
1021
- id: am_azure_cognitive_services__model_availability
1022
title: Azure Cognitive Services Model Availability
@@ -1026,7 +1026,7 @@ template:
1026
units: percentage
1027
algorithm: absolute
1028
dimensions:
1029
- - selector: cognitive_services.model_availability_rate_average
1029
+ - selector: model_availability_rate_average
1030
name: availability
1031
- id: am_azure_cognitive_services__model_requests
1032
title: Azure Cognitive Services Model Requests
@@ -1036,7 +1036,7 @@ template:
1036
units: requests/s
1037
algorithm: incremental
1038
dimensions:
1039
- - selector: cognitive_services.model_requests_total
1039
+ - selector: model_requests_total
1040
name: requests
1041
- id: am_azure_cognitive_services__model_latency
1042
title: Azure Cognitive Services Model Latency
@@ -1046,13 +1046,13 @@ template:
1046
units: milliseconds
1047
algorithm: absolute
1048
dimensions:
1049
- - selector: cognitive_services.time_to_response_average
1049
+ - selector: time_to_response_average
1050
name: time_to_response
1051
- - selector: cognitive_services.normalized_time_to_first_token_average
1051
+ - selector: normalized_time_to_first_token_average
1052
name: time_to_first_token
1053
- - selector: cognitive_services.normalized_time_between_tokens_average
1053
+ - selector: normalized_time_between_tokens_average
1054
name: time_between_tokens
1055
- - selector: cognitive_services.time_to_last_byte_average
1055
+ - selector: time_to_last_byte_average
1056
name: time_to_last_byte
1057
- id: am_azure_cognitive_services__model_generation_speed
1058
title: Azure Cognitive Services Model Token Generation Speed
@@ -1062,7 +1062,7 @@ template:
1062
units: tokens/s
1063
algorithm: absolute
1064
dimensions:
1065
- - selector: cognitive_services.tokens_per_second_average
1065
+ - selector: tokens_per_second_average
1066
name: tokens_per_second
1067
- id: am_azure_cognitive_services__model_token_usage
1068
title: Azure Cognitive Services Model Token Usage
@@ -1072,11 +1072,11 @@ template:
1072
units: tokens/s
1073
algorithm: incremental
1074
dimensions:
1075
- - selector: cognitive_services.total_tokens_total
1075
+ - selector: total_tokens_total
1076
name: total
1077
- - selector: cognitive_services.input_tokens_total
1077
+ - selector: input_tokens_total
1078
name: input
1079
- - selector: cognitive_services.output_tokens_total
1079
+ - selector: output_tokens_total
1080
name: output
1081
- id: am_azure_cognitive_services__model_audio_tokens
1082
title: Azure Cognitive Services Model Audio Tokens
@@ -1086,9 +1086,9 @@ template:
1086
units: tokens/s
1087
algorithm: incremental
1088
dimensions:
1089
- - selector: cognitive_services.audio_input_tokens_total
1089
+ - selector: audio_input_tokens_total
1090
name: input
1091
- - selector: cognitive_services.audio_output_tokens_total
1091
+ - selector: audio_output_tokens_total
1092
name: output
1093
- id: am_azure_cognitive_services__model_cache_tokens
1094
title: Azure Cognitive Services Model Cache Tokens
@@ -1098,11 +1098,11 @@ template:
1098
units: tokens/s
1099
algorithm: incremental
1100
dimensions:
1101
- - selector: cognitive_services.cache_read_input_tokens_total
1101
+ - selector: cache_read_input_tokens_total
1102
name: cache_read
1103
- - selector: cognitive_services.ephemeral1h_input_tokens_total
1103
+ - selector: ephemeral1h_input_tokens_total
1104
name: cache_write_1h
1105
- - selector: cognitive_services.ephemeral5m_input_tokens_total
1105
+ - selector: ephemeral5m_input_tokens_total
1106
name: cache_write_5m
1107
- id: am_azure_cognitive_services__model_provisioned_utilization
1108
title: Azure Cognitive Services Model Provisioned Utilization
@@ -1112,7 +1112,7 @@ template:
1112
units: percentage
1113
algorithm: absolute
1114
dimensions:
1115
- - selector: cognitive_services.provisioned_utilization_average
1115
+ - selector: provisioned_utilization_average
1116
name: utilization
1117
- id: am_azure_cognitive_services__model_pages
1118
title: Azure Cognitive Services Model Pages Processed
@@ -1122,9 +1122,9 @@ template:
1122
units: pages/s
1123
algorithm: incremental
1124
dimensions:
1125
- - selector: cognitive_services.total_pages_total
1125
+ - selector: total_pages_total
1126
name: total
1127
- - selector: cognitive_services.annotated_pages_total
1127
+ - selector: annotated_pages_total
1128
name: annotated
1129
- id: am_azure_cognitive_services__model_generated_images
1130
title: Azure Cognitive Services Generated Images
@@ -1134,7 +1134,7 @@ template:
1134
units: images/s
1135
algorithm: incremental
1136
dimensions:
1137
- - selector: cognitive_services.generated_images_total
1137
+ - selector: generated_images_total
1138
name: generated
1139
- id: am_azure_cognitive_services__content_safety_requests
1140
title: Azure Cognitive Services Content Safety Requests
@@ -1144,11 +1144,11 @@ template:
1144
units: requests/s
1145
algorithm: incremental
1146
dimensions:
1147
- - selector: cognitive_services.rai_total_requests_total
1147
+ - selector: rai_total_requests_total
1148
name: total
1149
- - selector: cognitive_services.rai_harmful_requests_total
1149
+ - selector: rai_harmful_requests_total
1150
name: harmful
1151
- - selector: cognitive_services.rai_rejected_requests_total
1151
+ - selector: rai_rejected_requests_total
1152
name: blocked
1153
- id: am_azure_cognitive_services__content_safety_abusive_users
1154
title: Azure Cognitive Services Potentially Abusive Users
@@ -1158,7 +1158,7 @@ template:
1158
units: users/s
1159
algorithm: incremental
1160
dimensions:
1161
- - selector: cognitive_services.rai_abusive_users_count_total
1161
+ - selector: rai_abusive_users_count_total
1162
name: abusive_users
1163
- id: am_azure_cognitive_services__content_safety_system_events
1164
title: Azure Cognitive Services Safety System Events
@@ -1168,7 +1168,7 @@ template:
1168
units: events
1169
algorithm: absolute
1170
dimensions:
1171
- - selector: cognitive_services.rai_system_event_average
1171
+ - selector: rai_system_event_average
1172
name: events
1173
- id: am_azure_cognitive_services__content_safety_moderation
1174
title: Azure Cognitive Services Content Moderation Calls
@@ -1178,9 +1178,9 @@ template:
1178
units: requests/s
1179
algorithm: incremental
1180
dimensions:
1181
- - selector: cognitive_services.content_safety_text_analyze_request_count_total
1181
+ - selector: content_safety_text_analyze_request_count_total
1182
name: text
1183
- - selector: cognitive_services.content_safety_image_analyze_request_count_total
1183
+ - selector: content_safety_image_analyze_request_count_total
1184
name: image
1185
- id: am_azure_cognitive_services__job_duration
1186
title: Azure Cognitive Services Job Duration
@@ -1190,7 +1190,7 @@ template:
1190
units: milliseconds
1191
algorithm: absolute
1192
dimensions:
1193
- - selector: cognitive_services.job_duration_average
1193
+ - selector: job_duration_average
1194
name: average
1195
- id: am_azure_cognitive_services__personalizer_actions
1196
title: Azure Cognitive Services Personalizer Action Occurrences
@@ -1200,7 +1200,7 @@ template:
1200
units: occurrences/s
1201
algorithm: incremental
1202
dimensions:
1203
- - selector: cognitive_services.action_id_occurrences_total
1203
+ - selector: action_id_occurrences_total
1204
name: occurrences
1205
- id: am_azure_cognitive_services__personalizer_actions_per_event
1206
title: Azure Cognitive Services Personalizer Actions Per Event
@@ -1210,7 +1210,7 @@ template:
1210
units: actions
1211
algorithm: absolute
1212
dimensions:
1213
- - selector: cognitive_services.actions_per_event_average
1213
+ - selector: actions_per_event_average
1214
name: average
1215
- id: am_azure_cognitive_services__personalizer_feature_occurrences
1216
title: Azure Cognitive Services Personalizer Feature Occurrences
@@ -1220,11 +1220,11 @@ template:
1220
units: occurrences/s
1221
algorithm: incremental
1222
dimensions:
1223
- - selector: cognitive_services.action_feature_id_occurrences_total
1223
+ - selector: action_feature_id_occurrences_total
1224
name: action
1225
- - selector: cognitive_services.context_feature_id_occurrences_total
1225
+ - selector: context_feature_id_occurrences_total
1226
name: context
1227
- - selector: cognitive_services.slot_feature_id_occurrences_total
1227
+ - selector: slot_feature_id_occurrences_total
1228
name: slot
1229
- id: am_azure_cognitive_services__personalizer_feature_cardinality
1230
title: Azure Cognitive Services Personalizer Feature Cardinality
@@ -1234,11 +1234,11 @@ template:
1234
units: features
1235
algorithm: absolute
1236
dimensions:
1237
- - selector: cognitive_services.feature_cardinality_action_average
1237
+ - selector: feature_cardinality_action_average
1238
name: action
1239
- - selector: cognitive_services.feature_cardinality_context_average
1239
+ - selector: feature_cardinality_context_average
1240
name: context
1241
- - selector: cognitive_services.feature_cardinality_slot_average
1241
+ - selector: feature_cardinality_slot_average
1242
name: slot
1243
- id: am_azure_cognitive_services__personalizer_features_per_event
1244
title: Azure Cognitive Services Personalizer Features Per Event
@@ -1248,11 +1248,11 @@ template:
1248
units: features
1249
algorithm: absolute
1250
dimensions:
1251
- - selector: cognitive_services.action_features_per_event_average
1251
+ - selector: action_features_per_event_average
1252
name: action
1253
- - selector: cognitive_services.context_features_per_event_average
1253
+ - selector: context_features_per_event_average
1254
name: context
1255
- - selector: cognitive_services.slot_features_per_event_average
1255
+ - selector: slot_features_per_event_average
1256
name: slot
1257
- id: am_azure_cognitive_services__personalizer_namespaces_per_event
1258
title: Azure Cognitive Services Personalizer Namespaces Per Event
@@ -1262,11 +1262,11 @@ template:
1262
units: namespaces
1263
algorithm: absolute
1264
dimensions:
1265
- - selector: cognitive_services.action_namespaces_per_event_average
1265
+ - selector: action_namespaces_per_event_average
1266
name: action
1267
- - selector: cognitive_services.context_namespaces_per_event_average
1267
+ - selector: context_namespaces_per_event_average
1268
name: context
1269
- - selector: cognitive_services.slot_namespaces_per_event_average
1269
+ - selector: slot_namespaces_per_event_average
1270
name: slot
1271
- id: am_azure_cognitive_services__personalizer_rewards
1272
title: Azure Cognitive Services Personalizer Rewards
@@ -1276,9 +1276,9 @@ template:
1276
units: reward
1277
algorithm: absolute
1278
dimensions:
1279
- - selector: cognitive_services.reward_average
1279
+ - selector: reward_average
1280
name: average
1281
- - selector: cognitive_services.slot_reward_average
1281
+ - selector: slot_reward_average
1282
name: slot
1283
- id: am_azure_cognitive_services__personalizer_estimator_rewards
1284
title: Azure Cognitive Services Personalizer Estimator Rewards
@@ -1288,11 +1288,11 @@ template:
1288
units: reward
1289
algorithm: absolute
1290
dimensions:
1291
- - selector: cognitive_services.online_estimator_overall_reward_average
1291
+ - selector: online_estimator_overall_reward_average
1292
name: online
1293
- - selector: cognitive_services.baseline_estimator_overall_reward_average
1293
+ - selector: baseline_estimator_overall_reward_average
1294
name: baseline
1295
- - selector: cognitive_services.baseline_random_estimator_overall_reward_average
1295
+ - selector: baseline_random_estimator_overall_reward_average
1296
name: baseline_random
1297
- id: am_azure_cognitive_services__personalizer_estimator_slot_rewards
1298
title: Azure Cognitive Services Personalizer Estimator Slot Rewards
@@ -1302,11 +1302,11 @@ template:
1302
units: reward
1303
algorithm: absolute
1304
dimensions:
1305
- - selector: cognitive_services.online_estimator_slot_reward_average
1305
+ - selector: online_estimator_slot_reward_average
1306
name: online
1307
- - selector: cognitive_services.baseline_estimator_slot_reward_average
1307
+ - selector: baseline_estimator_slot_reward_average
1308
name: baseline
1309
- - selector: cognitive_services.baseline_random_estimator_slot_reward_average
1309
+ - selector: baseline_random_estimator_slot_reward_average
1310
name: baseline_random
1311
- id: am_azure_cognitive_services__personalizer_slots
1312
title: Azure Cognitive Services Personalizer Slots
@@ -1316,7 +1316,7 @@ template:
1316
units: slots
1317
algorithm: absolute
1318
dimensions:
1319
- - selector: cognitive_services.number_of_slots_average
1319
+ - selector: number_of_slots_average
1320
name: average
1321
- id: am_azure_cognitive_services__personalizer_slot_occurrences
1322
title: Azure Cognitive Services Personalizer Slot Occurrences
@@ -1326,7 +1326,7 @@ template:
1326
units: occurrences/s
1327
algorithm: incremental
1328
dimensions:
1329
- - selector: cognitive_services.slot_id_occurrences_total
1329
+ - selector: slot_id_occurrences_total
1330
name: occurrences
1331
- id: am_azure_cognitive_services__personalizer_event_counts
1332
title: Azure Cognitive Services Personalizer Event Counts
@@ -1336,11 +1336,11 @@ template:
1336
units: events/s
1337
algorithm: incremental
1338
dimensions:
1339
- - selector: cognitive_services.online_event_count_total
1339
+ - selector: online_event_count_total
1340
name: online
1341
- - selector: cognitive_services.baseline_random_event_count_total
1341
+ - selector: baseline_random_event_count_total
1342
name: baseline_random
1343
- - selector: cognitive_services.user_baseline_event_count_total
1343
+ - selector: user_baseline_event_count_total
1344
name: user_baseline
1345
- id: am_azure_cognitive_services__personalizer_estimated_rewards
1346
title: Azure Cognitive Services Personalizer Estimated Rewards
@@ -1350,11 +1350,11 @@ template:
1350
units: reward/s
1351
algorithm: incremental
1352
dimensions:
1353
- - selector: cognitive_services.online_reward_total
1353
+ - selector: online_reward_total
1354
name: online
1355
- - selector: cognitive_services.baseline_random_reward_total
1355
+ - selector: baseline_random_reward_total
1356
name: baseline_random
1357
- - selector: cognitive_services.user_baseline_reward_total
1357
+ - selector: user_baseline_reward_total
1358
name: user_baseline
1359
- id: am_azure_cognitive_services__speech_transcription
1360
title: Azure Cognitive Services Speech Transcription
@@ -1364,15 +1364,15 @@ template:
1364
units: seconds/s
1365
algorithm: incremental
1366
dimensions:
1367
- - selector: cognitive_services.audio_seconds_transcribed_total
1367
+ - selector: audio_seconds_transcribed_total
1368
name: realtime
1369
- - selector: cognitive_services.audio_seconds_batch_transcribed_total
1369
+ - selector: audio_seconds_batch_transcribed_total
1370
name: batch
1371
- - selector: cognitive_services.audio_seconds_batch_whisper_transcribed_total
1371
+ - selector: audio_seconds_batch_whisper_transcribed_total
1372
name: batch_whisper
1373
- - selector: cognitive_services.audio_seconds_fast_transcribed_total
1373
+ - selector: audio_seconds_fast_transcribed_total
1374
name: fast
1375
- - selector: cognitive_services.audio_seconds_fast_whisper_transcribed_total
1375
+ - selector: audio_seconds_fast_whisper_transcribed_total
1376
name: fast_whisper
1377
- id: am_azure_cognitive_services__speech_translation
1378
title: Azure Cognitive Services Speech Translation
@@ -1382,7 +1382,7 @@ template:
1382
units: seconds/s
1383
algorithm: incremental
1384
dimensions:
1385
- - selector: cognitive_services.audio_seconds_translated_total
1385
+ - selector: audio_seconds_translated_total
1386
name: translated
1387
- id: am_azure_cognitive_services__speech_synthesis
1388
title: Azure Cognitive Services Speech Synthesis
@@ -1392,7 +1392,7 @@ template:
1392
units: characters/s
1393
algorithm: incremental
1394
dimensions:
1395
- - selector: cognitive_services.synthesized_characters_total
1395
+ - selector: synthesized_characters_total
1396
name: synthesized
1397
- id: am_azure_cognitive_services__speech_video_synthesis
1398
title: Azure Cognitive Services Video Synthesis
@@ -1402,7 +1402,7 @@ template:
1402
units: seconds/s
1403
algorithm: incremental
1404
dimensions:
1405
- - selector: cognitive_services.video_seconds_synthesized_total
1405
+ - selector: video_seconds_synthesized_total
1406
name: synthesized
1407
- id: am_azure_cognitive_services__speech_avatar
1408
title: Azure Cognitive Services Avatar Usage
@@ -1412,9 +1412,9 @@ template:
1412
units: seconds/s
1413
algorithm: incremental
1414
dimensions:
1415
- - selector: cognitive_services.avatar_model_hosting_seconds_total
1415
+ - selector: avatar_model_hosting_seconds_total
1416
name: hosting
1417
- - selector: cognitive_services.avatar_model_training_seconds_total
1417
+ - selector: avatar_model_training_seconds_total
1418
name: training
1419
- id: am_azure_cognitive_services__speech_speaker_recognition
1420
title: Azure Cognitive Services Speaker Recognition
@@ -1424,7 +1424,7 @@ template:
1424
units: transactions/s
1425
algorithm: incremental
1426
dimensions:
1427
- - selector: cognitive_services.speaker_recognition_transactions_total
1427
+ - selector: speaker_recognition_transactions_total
1428
name: transactions
1429
- id: am_azure_cognitive_services__speech_speaker_profiles
1430
title: Azure Cognitive Services Speaker Profiles
@@ -1434,7 +1434,7 @@ template:
1434
units: profiles/s
1435
algorithm: incremental
1436
dimensions:
1437
- - selector: cognitive_services.numberof_speaker_profiles_total
1437
+ - selector: numberof_speaker_profiles_total
1438
name: profiles
1439
- id: am_azure_cognitive_services__speech_model_hosting
1440
title: Azure Cognitive Services Speech Model Hosting
@@ -1444,7 +1444,7 @@ template:
1444
units: hours/s
1445
algorithm: incremental
1446
dimensions:
1447
- - selector: cognitive_services.speech_model_hosting_hours_total
1447
+ - selector: speech_model_hosting_hours_total
1448
name: hosting
1449
- id: am_azure_cognitive_services__speech_voice_live_tokens
1450
title: Azure Cognitive Services Voice Live Tokens
@@ -1454,17 +1454,17 @@ template:
1454
units: tokens/s
1455
algorithm: incremental
1456
dimensions:
1457
- - selector: cognitive_services.voice_live_audio_input_tokens_total
1457
+ - selector: voice_live_audio_input_tokens_total
1458
name: audio_input
1459
- - selector: cognitive_services.voice_live_audio_output_tokens_total
1459
+ - selector: voice_live_audio_output_tokens_total
1460
name: audio_output
1461
- - selector: cognitive_services.voice_live_cached_audio_input_tokens_total
1461
+ - selector: voice_live_cached_audio_input_tokens_total
1462
name: cached_audio_input
1463
- - selector: cognitive_services.voice_live_text_input_tokens_total
1463
+ - selector: voice_live_text_input_tokens_total
1464
name: text_input
1465
- - selector: cognitive_services.voice_live_text_output_tokens_total
1465
+ - selector: voice_live_text_output_tokens_total
1466
name: text_output
1467
- - selector: cognitive_services.voice_live_cached_text_input_tokens_total
1467
+ - selector: voice_live_cached_text_input_tokens_total
1468
name: cached_text_input
1469
- id: am_azure_cognitive_services__speech_voice_model
1470
title: Azure Cognitive Services Voice Model Usage
@@ -1474,7 +1474,7 @@ template:
1474
units: hours/s
1475
algorithm: incremental
1476
dimensions:
1477
- - selector: cognitive_services.voice_model_hosting_hours_total
1477
+ - selector: voice_model_hosting_hours_total
1478
name: hosting
1479
- id: am_azure_cognitive_services__speech_voice_training
1480
title: Azure Cognitive Services Voice Model Training
@@ -1484,7 +1484,7 @@ template:
1484
units: minutes/s
1485
algorithm: incremental
1486
dimensions:
1487
- - selector: cognitive_services.voice_model_training_minutes_total
1487
+ - selector: voice_model_training_minutes_total
1488
name: training
1489
- id: am_azure_cognitive_services__translator_text
1490
title: Azure Cognitive Services Translator Text Characters
@@ -1494,11 +1494,11 @@ template:
1494
units: characters/s
1495
algorithm: incremental
1496
dimensions:
1497
- - selector: cognitive_services.text_characters_translated_total
1497
+ - selector: text_characters_translated_total
1498
name: standard
1499
- - selector: cognitive_services.text_custom_characters_translated_total
1499
+ - selector: text_custom_characters_translated_total
1500
name: custom
1501
- - selector: cognitive_services.text_trained_characters_total
1501
+ - selector: text_trained_characters_total
1502
name: trained
1503
- id: am_azure_cognitive_services__translator_document
1504
title: Azure Cognitive Services Translator Document Characters
@@ -1508,9 +1508,9 @@ template:
1508
units: characters/s
1509
algorithm: incremental
1510
dimensions:
1511
- - selector: cognitive_services.document_characters_translated_total
1511
+ - selector: document_characters_translated_total
1512
name: standard
1513
- - selector: cognitive_services.document_custom_characters_translated_total
1513
+ - selector: document_custom_characters_translated_total
1514
name: custom
1515
- id: am_azure_cognitive_services__translator_document_sync
1516
title: Azure Cognitive Services Translator Document Sync Characters
@@ -1520,9 +1520,9 @@ template:
1520
units: characters/s
1521
algorithm: incremental
1522
dimensions:
1523
- - selector: cognitive_services.one_document_characters_translated_total
1523
+ - selector: one_document_characters_translated_total
1524
name: standard
1525
- - selector: cognitive_services.one_document_custom_characters_translated_total
1525
+ - selector: one_document_custom_characters_translated_total
1526
name: custom
1527
- id: am_azure_cognitive_services__translator_pro_app
1528
title: Azure Cognitive Services Translator Pro App Usage
@@ -1532,7 +1532,7 @@ template:
1532
units: seconds/s
1533
algorithm: incremental
1534
dimensions:
1535
- - selector: cognitive_services.translator_pro_app_seconds_total
1535
+ - selector: translator_pro_app_seconds_total
1536
name: seconds
1537
- id: am_azure_cognitive_services__vision_transactions
1538
title: Azure Cognitive Services Vision Transactions
@@ -1542,9 +1542,9 @@ template:
1542
units: transactions/s
1543
algorithm: incremental
1544
dimensions:
1545
- - selector: cognitive_services.computer_vision_transactions_total
1545
+ - selector: computer_vision_transactions_total
1546
name: computer_vision
1547
- - selector: cognitive_services.custom_vision_transactions_total
1547
+ - selector: custom_vision_transactions_total
1548
name: custom_vision
1549
- id: am_azure_cognitive_services__vision_training
1550
title: Azure Cognitive Services Custom Vision Training
@@ -1554,7 +1554,7 @@ template:
1554
units: seconds/s
1555
algorithm: incremental
1556
dimensions:
1557
- - selector: cognitive_services.custom_vision_training_time_total
1557
+ - selector: custom_vision_training_time_total
1558
name: training_time
1559
- id: am_azure_cognitive_services__vision_images_stored
1560
title: Azure Cognitive Services Images Stored
@@ -1564,7 +1564,7 @@ template:
1564
units: images/s
1565
algorithm: incremental
1566
dimensions:
1567
- - selector: cognitive_services.images_stored_total
1567
+ - selector: images_stored_total
1568
name: stored
1569
- id: am_azure_cognitive_services__face_transactions
1570
title: Azure Cognitive Services Face Transactions
@@ -1574,7 +1574,7 @@ template:
1574
units: transactions/s
1575
algorithm: incremental
1576
dimensions:
1577
- - selector: cognitive_services.face_transactions_total
1577
+ - selector: face_transactions_total
1578
name: transactions
1579
- id: am_azure_cognitive_services__face_images_trained
1580
title: Azure Cognitive Services Face Images Trained
@@ -1584,7 +1584,7 @@ template:
1584
units: images/s
1585
algorithm: incremental
1586
dimensions:
1587
- - selector: cognitive_services.face_images_trained_total
1587
+ - selector: face_images_trained_total
1588
name: trained
1589
- id: am_azure_cognitive_services__faces_stored
1590
title: Azure Cognitive Services Faces Stored
@@ -1594,7 +1594,7 @@ template:
1594
units: faces/s
1595
algorithm: incremental
1596
dimensions:
1597
- - selector: cognitive_services.faces_stored_total
1597
+ - selector: faces_stored_total
1598
name: stored
1599
- id: am_azure_cognitive_services__luis_requests
1600
title: Azure Cognitive Services LUIS Requests
@@ -1604,9 +1604,9 @@ template:
1604
units: requests/s
1605
algorithm: incremental
1606
dimensions:
1607
- - selector: cognitive_services.luis_speech_requests_total
1607
+ - selector: luis_speech_requests_total
1608
name: speech
1609
- - selector: cognitive_services.luis_text_requests_total
1609
+ - selector: luis_text_requests_total
1610
name: text
1611
- id: am_azure_cognitive_services__text_processing
1612
title: Azure Cognitive Services Text Processing
@@ -1616,11 +1616,11 @@ template:
1616
units: records/s
1617
algorithm: incremental
1618
dimensions:
1619
- - selector: cognitive_services.processed_text_records_total
1619
+ - selector: processed_text_records_total
1620
name: text
1621
- - selector: cognitive_services.processed_health_text_records_total
1621
+ - selector: processed_health_text_records_total
1622
name: health_text
1623
- - selector: cognitive_services.question_answering_text_records_total
1623
+ - selector: question_answering_text_records_total
1624
name: question_answering
1625
- id: am_azure_cognitive_services__processed_characters
1626
title: Azure Cognitive Services Processed Characters
@@ -1630,7 +1630,7 @@ template:
1630
units: characters/s
1631
algorithm: incremental
1632
dimensions:
1633
- - selector: cognitive_services.processed_characters_total
1633
+ - selector: processed_characters_total
1634
name: characters
1635
- id: am_azure_cognitive_services__processed_images
1636
title: Azure Cognitive Services Processed Images
@@ -1640,7 +1640,7 @@ template:
1640
units: images/s
1641
algorithm: incremental
1642
dimensions:
1643
- - selector: cognitive_services.processed_images_total
1643
+ - selector: processed_images_total
1644
name: images
1645
- id: am_azure_cognitive_services__processed_pages
1646
title: Azure Cognitive Services Processed Pages
@@ -1650,7 +1650,7 @@ template:
1650
units: pages/s
1651
algorithm: incremental
1652
dimensions:
1653
- - selector: cognitive_services.processed_pages_total
1653
+ - selector: processed_pages_total
1654
name: pages
1655
- id: am_azure_cognitive_services__carnegie_inference
1656
title: Azure Cognitive Services Carnegie Inference
@@ -1660,7 +1660,7 @@ template:
1660
units: inferences/s
1661
algorithm: incremental
1662
dimensions:
1663
- - selector: cognitive_services.carnegie_inference_count_total
1663
+ - selector: carnegie_inference_count_total
1664
name: inferences
1665
- id: am_azure_cognitive_services__personalizer_events
1666
title: Azure Cognitive Services Personalizer Events
@@ -1670,11 +1670,11 @@ template:
1670
units: events/s
1671
algorithm: incremental
1672
dimensions:
1673
- - selector: cognitive_services.total_events_total
1673
+ - selector: total_events_total
1674
name: total
1675
- - selector: cognitive_services.learned_events_total
1675
+ - selector: learned_events_total
1676
name: learned
1677
- - selector: cognitive_services.non_activated_events_total
1677
+ - selector: non_activated_events_total
1678
name: non_activated
1679
- id: am_azure_cognitive_services__personalizer_reward_tracking
1680
title: Azure Cognitive Services Personalizer Reward Tracking
@@ -1684,7 +1684,7 @@ template:
1684
units: rewards/s
1685
algorithm: incremental
1686
dimensions:
1687
- - selector: cognitive_services.matched_rewards_total
1687
+ - selector: matched_rewards_total
1688
name: matched
1689
- - selector: cognitive_services.observed_rewards_total
1689
+ - selector: observed_rewards_total
1690
name: observed
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/container_apps.yaml
+36
-36
@@ -220,9 +220,9 @@ template:
220
units: nanocores
221
algorithm: absolute
222
dimensions:
223
- - selector: container_apps.usage_nano_cores_average
223
+ - selector: usage_nano_cores_average
224
name: average
225
- - selector: container_apps.usage_nano_cores_maximum
225
+ - selector: usage_nano_cores_maximum
226
name: maximum
227
- id: am_azure_container_apps__cpu_percentage
228
title: Azure Container Apps CPU Percentage
@@ -232,9 +232,9 @@ template:
232
units: percentage
233
algorithm: absolute
234
dimensions:
235
- - selector: container_apps.cpu_percentage_average
235
+ - selector: cpu_percentage_average
236
name: average
237
- - selector: container_apps.cpu_percentage_maximum
237
+ - selector: cpu_percentage_maximum
238
name: maximum
239
- id: am_azure_container_apps__memory_working_set
240
title: Azure Container Apps Memory Working Set
@@ -244,9 +244,9 @@ template:
244
units: bytes
245
algorithm: absolute
246
dimensions:
247
- - selector: container_apps.working_set_bytes_average
247
+ - selector: working_set_bytes_average
248
name: average
249
- - selector: container_apps.working_set_bytes_maximum
249
+ - selector: working_set_bytes_maximum
250
name: maximum
251
- id: am_azure_container_apps__memory_percentage
252
title: Azure Container Apps Memory Percentage
@@ -256,9 +256,9 @@ template:
256
units: percentage
257
algorithm: absolute
258
dimensions:
259
- - selector: container_apps.memory_percentage_average
259
+ - selector: memory_percentage_average
260
name: average
261
- - selector: container_apps.memory_percentage_maximum
261
+ - selector: memory_percentage_maximum
262
name: maximum
263
- id: am_azure_container_apps__replicas
264
title: Azure Container Apps Replica Count
@@ -268,7 +268,7 @@ template:
268
units: replicas
269
algorithm: absolute
270
dimensions:
271
- - selector: container_apps.replicas_average
271
+ - selector: replicas_average
272
name: average
273
- id: am_azure_container_apps__reserved_cores
274
title: Azure Container Apps Reserved Cores
@@ -278,9 +278,9 @@ template:
278
units: cores
279
algorithm: absolute
280
dimensions:
281
- - selector: container_apps.cores_quota_used_maximum
281
+ - selector: cores_quota_used_maximum
282
name: per_revision
283
- - selector: container_apps.total_cores_quota_used_average
283
+ - selector: total_cores_quota_used_average
284
name: total
285
- id: am_azure_container_apps__restart_count
286
title: Azure Container Apps Replica Restarts
@@ -290,7 +290,7 @@ template:
290
units: restarts/s
291
algorithm: incremental
292
dimensions:
293
- - selector: container_apps.restart_count_total
293
+ - selector: restart_count_total
294
name: restarts
295
- id: am_azure_container_apps__requests
296
title: Azure Container Apps Requests
@@ -300,7 +300,7 @@ template:
300
units: requests/s
301
algorithm: incremental
302
dimensions:
303
- - selector: container_apps.requests_total
303
+ - selector: requests_total
304
name: requests
305
- id: am_azure_container_apps__response_time
306
title: Azure Container Apps Response Time
@@ -310,7 +310,7 @@ template:
310
units: milliseconds
311
algorithm: absolute
312
dimensions:
313
- - selector: container_apps.response_time_average
313
+ - selector: response_time_average
314
name: average
315
- id: am_azure_container_apps__network
316
title: Azure Container Apps Network Traffic
@@ -320,9 +320,9 @@ template:
320
units: bytes/s
321
algorithm: incremental
322
dimensions:
323
- - selector: container_apps.rx_bytes_total
323
+ - selector: rx_bytes_total
324
name: received
325
- - selector: container_apps.tx_bytes_total
325
+ - selector: tx_bytes_total
326
name: sent
327
- id: am_azure_container_apps__resiliency_timeouts
328
title: Azure Container Apps Resiliency Timeouts
@@ -332,9 +332,9 @@ template:
332
units: timeouts/s
333
algorithm: incremental
334
dimensions:
335
- - selector: container_apps.resiliency_connect_timeouts_total
335
+ - selector: resiliency_connect_timeouts_total
336
name: connection
337
- - selector: container_apps.resiliency_request_timeouts_total
337
+ - selector: resiliency_request_timeouts_total
338
name: request
339
- id: am_azure_container_apps__resiliency_retries
340
title: Azure Container Apps Resiliency Request Retries
@@ -344,7 +344,7 @@ template:
344
units: retries/s
345
algorithm: incremental
346
dimensions:
347
- - selector: container_apps.resiliency_request_retries_total
347
+ - selector: resiliency_request_retries_total
348
name: retries
349
- id: am_azure_container_apps__resiliency_pending_connections
350
title: Azure Container Apps Resiliency Pending Connection Pool
@@ -354,7 +354,7 @@ template:
354
units: requests/s
355
algorithm: incremental
356
dimensions:
357
- - selector: container_apps.resiliency_requests_pending_connection_pool_total
357
+ - selector: resiliency_requests_pending_connection_pool_total
358
name: pending
359
- id: am_azure_container_apps__resiliency_ejections
360
title: Azure Container Apps Resiliency Host Ejections
@@ -364,9 +364,9 @@ template:
364
units: ejections/s
365
algorithm: incremental
366
dimensions:
367
- - selector: container_apps.resiliency_ejected_hosts_total
367
+ - selector: resiliency_ejected_hosts_total
368
name: ejected
369
- - selector: container_apps.resiliency_ejections_aborted_total
369
+ - selector: resiliency_ejections_aborted_total
370
name: aborted
371
- id: am_azure_container_apps__gpu_utilization
372
title: Azure Container Apps GPU Utilization
@@ -376,9 +376,9 @@ template:
376
units: percentage
377
algorithm: absolute
378
dimensions:
379
- - selector: container_apps.gpu_utilization_percentage_average
379
+ - selector: gpu_utilization_percentage_average
380
name: average
381
- - selector: container_apps.gpu_utilization_percentage_maximum
381
+ - selector: gpu_utilization_percentage_maximum
382
name: maximum
383
- id: am_azure_container_apps__jvm_buffer_count
384
title: Azure Container Apps JVM Buffer Count
@@ -388,7 +388,7 @@ template:
388
units: buffers
389
algorithm: absolute
390
dimensions:
391
- - selector: container_apps.jvm_buffer_count_average
391
+ - selector: jvm_buffer_count_average
392
name: average
393
- id: am_azure_container_apps__jvm_buffer_memory
394
title: Azure Container Apps JVM Buffer Memory
@@ -398,9 +398,9 @@ template:
398
units: bytes
399
algorithm: absolute
400
dimensions:
401
- - selector: container_apps.jvm_buffer_memory_usage_average
401
+ - selector: jvm_buffer_memory_usage_average
402
name: used
403
- - selector: container_apps.jvm_buffer_memory_limit_average
403
+ - selector: jvm_buffer_memory_limit_average
404
name: limit
405
- id: am_azure_container_apps__jvm_gc_count
406
title: Azure Container Apps JVM Garbage Collections
@@ -410,7 +410,7 @@ template:
410
units: collections/s
411
algorithm: incremental
412
dimensions:
413
- - selector: container_apps.jvm_gc_count_total
413
+ - selector: jvm_gc_count_total
414
name: collections
415
- id: am_azure_container_apps__jvm_gc_duration
416
title: Azure Container Apps JVM GC Duration
@@ -420,7 +420,7 @@ template:
420
units: milliseconds/s
421
algorithm: incremental
422
dimensions:
423
- - selector: container_apps.jvm_gc_duration_total
423
+ - selector: jvm_gc_duration_total
424
name: duration
425
- id: am_azure_container_apps__jvm_memory_pool
426
title: Azure Container Apps JVM Memory per Pool
@@ -430,11 +430,11 @@ template:
430
units: bytes
431
algorithm: absolute
432
dimensions:
433
- - selector: container_apps.jvm_memory_used_average
433
+ - selector: jvm_memory_used_average
434
name: used
435
- - selector: container_apps.jvm_memory_committed_average
435
+ - selector: jvm_memory_committed_average
436
name: committed
437
- - selector: container_apps.jvm_memory_limit_average
437
+ - selector: jvm_memory_limit_average
438
name: limit
439
- id: am_azure_container_apps__jvm_memory_total
440
title: Azure Container Apps JVM Memory Total
@@ -444,11 +444,11 @@ template:
444
units: bytes
445
algorithm: absolute
446
dimensions:
447
- - selector: container_apps.jvm_memory_total_used_average
447
+ - selector: jvm_memory_total_used_average
448
name: used
449
- - selector: container_apps.jvm_memory_total_committed_average
449
+ - selector: jvm_memory_total_committed_average
450
name: committed
451
- - selector: container_apps.jvm_memory_total_limit_average
451
+ - selector: jvm_memory_total_limit_average
452
name: limit
453
- id: am_azure_container_apps__jvm_thread_count
454
title: Azure Container Apps JVM Thread Count
@@ -458,5 +458,5 @@ template:
458
units: threads
459
algorithm: absolute
460
dimensions:
461
- - selector: container_apps.jvm_thread_count_average
461
+ - selector: jvm_thread_count_average
462
name: average
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/container_instances.yaml
+6
-6
@@ -52,9 +52,9 @@ template:
52
units: millicores
53
algorithm: absolute
54
dimensions:
55
- - selector: container_instances.cpu_usage_average
55
+ - selector: cpu_usage_average
56
name: average
57
- - selector: container_instances.cpu_usage_maximum
57
+ - selector: cpu_usage_maximum
58
name: maximum
59
- id: am_azure_container_instances__memory_usage
60
title: Azure Container Instances Memory Usage
@@ -64,9 +64,9 @@ template:
64
units: bytes
65
algorithm: absolute
66
dimensions:
67
- - selector: container_instances.memory_usage_average
67
+ - selector: memory_usage_average
68
name: average
69
- - selector: container_instances.memory_usage_maximum
69
+ - selector: memory_usage_maximum
70
name: maximum
71
- id: am_azure_container_instances__network
72
title: Azure Container Instances Network Traffic
@@ -76,7 +76,7 @@ template:
76
units: bytes/s
77
algorithm: absolute
78
dimensions:
79
- - selector: container_instances.network_bytes_received_per_second_average
79
+ - selector: network_bytes_received_per_second_average
80
name: received
81
- - selector: container_instances.network_bytes_transmitted_per_second_average
81
+ - selector: network_bytes_transmitted_per_second_average
82
name: sent
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/container_registry.yaml
+7
-7
@@ -66,7 +66,7 @@ template:
66
units: bytes
67
algorithm: absolute
68
dimensions:
69
- - selector: container_registry.storage_used_average
69
+ - selector: storage_used_average
70
name: used
71
- id: am_azure_container_registry__pull_count
72
title: Azure Container Registry Image Pulls
@@ -76,9 +76,9 @@ template:
76
units: pulls/s
77
algorithm: incremental
78
dimensions:
79
- - selector: container_registry.successful_pull_count_total
79
+ - selector: successful_pull_count_total
80
name: successful
81
- - selector: container_registry.total_pull_count_total
81
+ - selector: total_pull_count_total
82
name: total
83
- id: am_azure_container_registry__push_count
84
title: Azure Container Registry Image Pushes
@@ -88,9 +88,9 @@ template:
88
units: pushes/s
89
algorithm: incremental
90
dimensions:
91
- - selector: container_registry.successful_push_count_total
91
+ - selector: successful_push_count_total
92
name: successful
93
- - selector: container_registry.total_push_count_total
93
+ - selector: total_push_count_total
94
name: total
95
- id: am_azure_container_registry__agentpool_cpu_time
96
title: Azure Container Registry AgentPool CPU Time
@@ -100,7 +100,7 @@ template:
100
units: seconds/s
101
algorithm: incremental
102
dimensions:
103
- - selector: container_registry.agent_pool_cpu_time_total
103
+ - selector: agent_pool_cpu_time_total
104
name: cpu_time
105
- id: am_azure_container_registry__run_duration
106
title: Azure Container Registry Task Run Duration
@@ -110,5 +110,5 @@ template:
110
units: milliseconds/s
111
algorithm: incremental
112
dimensions:
113
- - selector: container_registry.run_duration_total
113
+ - selector: run_duration_total
114
name: duration
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/cosmos_db.yaml
+30
-30
@@ -204,7 +204,7 @@ template:
204
units: requests/s
205
algorithm: incremental
206
dimensions:
207
- - selector: cosmos_db.total_requests_count
207
+ - selector: total_requests_count
208
name: count
209
- id: am_azure_cosmos_db__request_units
210
title: Azure Cosmos DB Request Units Consumed
@@ -214,7 +214,7 @@ template:
214
units: RU/s
215
algorithm: incremental
216
dimensions:
217
- - selector: cosmos_db.total_request_units_total
217
+ - selector: total_request_units_total
218
name: total
219
- id: am_azure_cosmos_db__normalized_ru_consumption
220
title: Azure Cosmos DB Normalized RU Consumption
@@ -224,7 +224,7 @@ template:
224
units: percentage
225
algorithm: absolute
226
dimensions:
227
- - selector: cosmos_db.normalized_ru_consumption_maximum
227
+ - selector: normalized_ru_consumption_maximum
228
name: maximum
229
- id: am_azure_cosmos_db__server_side_latency
230
title: Azure Cosmos DB Server-Side Latency
@@ -234,9 +234,9 @@ template:
234
units: milliseconds
235
algorithm: absolute
236
dimensions:
237
- - selector: cosmos_db.server_side_latency_direct_average
237
+ - selector: server_side_latency_direct_average
238
name: direct
239
- - selector: cosmos_db.server_side_latency_gateway_average
239
+ - selector: server_side_latency_gateway_average
240
name: gateway
241
- id: am_azure_cosmos_db__replication_latency
242
title: Azure Cosmos DB Replication Latency
@@ -246,7 +246,7 @@ template:
246
units: milliseconds
247
algorithm: absolute
248
dimensions:
249
- - selector: cosmos_db.replication_latency_average
249
+ - selector: replication_latency_average
250
name: average
251
- id: am_azure_cosmos_db__storage
252
title: Azure Cosmos DB Storage
@@ -256,11 +256,11 @@ template:
256
units: bytes
257
algorithm: absolute
258
dimensions:
259
- - selector: cosmos_db.data_usage_maximum
259
+ - selector: data_usage_maximum
260
name: data
261
- - selector: cosmos_db.index_usage_maximum
261
+ - selector: index_usage_maximum
262
name: index
263
- - selector: cosmos_db.document_quota_total
263
+ - selector: document_quota_total
264
name: quota
265
- id: am_azure_cosmos_db__document_count
266
title: Azure Cosmos DB Document Count
@@ -270,7 +270,7 @@ template:
270
units: documents
271
algorithm: absolute
272
dimensions:
273
- - selector: cosmos_db.document_count_average
273
+ - selector: document_count_average
274
name: average
275
- id: am_azure_cosmos_db__partition_size
276
title: Azure Cosmos DB Physical Partition Size
@@ -280,7 +280,7 @@ template:
280
units: bytes
281
algorithm: absolute
282
dimensions:
283
- - selector: cosmos_db.physical_partition_size_info_maximum
283
+ - selector: physical_partition_size_info_maximum
284
name: maximum
285
- id: am_azure_cosmos_db__partition_count
286
title: Azure Cosmos DB Physical Partition Count
@@ -290,7 +290,7 @@ template:
290
units: partitions
291
algorithm: absolute
292
dimensions:
293
- - selector: cosmos_db.physical_partition_count_maximum
293
+ - selector: physical_partition_count_maximum
294
name: maximum
295
- id: am_azure_cosmos_db__provisioned_throughput
296
title: Azure Cosmos DB Provisioned Throughput
@@ -300,11 +300,11 @@ template:
300
units: RU/s
301
algorithm: absolute
302
dimensions:
303
- - selector: cosmos_db.provisioned_throughput_maximum
303
+ - selector: provisioned_throughput_maximum
304
name: provisioned
305
- - selector: cosmos_db.autoscale_max_throughput_maximum
305
+ - selector: autoscale_max_throughput_maximum
306
name: autoscale_max
307
- - selector: cosmos_db.autoscaled_ru_maximum
307
+ - selector: autoscaled_ru_maximum
308
name: autoscaled
309
- id: am_azure_cosmos_db__partition_throughput
310
title: Azure Cosmos DB Physical Partition Throughput
@@ -314,7 +314,7 @@ template:
314
units: RU/s
315
algorithm: absolute
316
dimensions:
317
- - selector: cosmos_db.physical_partition_throughput_info_maximum
317
+ - selector: physical_partition_throughput_info_maximum
318
name: maximum
319
- id: am_azure_cosmos_db__availability
320
title: Azure Cosmos DB Service Availability
@@ -324,7 +324,7 @@ template:
324
units: percentage
325
algorithm: absolute
326
dimensions:
327
- - selector: cosmos_db.service_availability_average
327
+ - selector: service_availability_average
328
name: average
329
- id: am_azure_cosmos_db__metadata_requests
330
title: Azure Cosmos DB Metadata Requests
@@ -334,7 +334,7 @@ template:
334
units: requests/s
335
algorithm: incremental
336
dimensions:
337
- - selector: cosmos_db.metadata_requests_count
337
+ - selector: metadata_requests_count
338
name: count
339
- id: am_azure_cosmos_db__api_requests
340
title: Azure Cosmos DB API Requests
@@ -344,11 +344,11 @@ template:
344
units: requests/s
345
algorithm: incremental
346
dimensions:
347
- - selector: cosmos_db.mongo_requests_count
347
+ - selector: mongo_requests_count
348
name: mongo
349
- - selector: cosmos_db.cassandra_requests_count
349
+ - selector: cassandra_requests_count
350
name: cassandra
351
- - selector: cosmos_db.gremlin_requests_count
351
+ - selector: gremlin_requests_count
352
name: gremlin
353
- id: am_azure_cosmos_db__api_request_charges
354
title: Azure Cosmos DB API Request Charges
@@ -358,11 +358,11 @@ template:
358
units: RU/s
359
algorithm: incremental
360
dimensions:
361
- - selector: cosmos_db.mongo_request_charge_total
361
+ - selector: mongo_request_charge_total
362
name: mongo
363
- - selector: cosmos_db.cassandra_request_charges_total
363
+ - selector: cassandra_request_charges_total
364
name: cassandra
365
- - selector: cosmos_db.gremlin_request_charges_total
365
+ - selector: gremlin_request_charges_total
366
name: gremlin
367
- id: am_azure_cosmos_db__cassandra_connections
368
title: Azure Cosmos DB Cassandra Connection Closures
@@ -372,7 +372,7 @@ template:
372
units: connections/s
373
algorithm: incremental
374
dimensions:
375
- - selector: cosmos_db.cassandra_connection_closures_total
375
+ - selector: cassandra_connection_closures_total
376
name: total
377
- id: am_azure_cosmos_db__dedicated_gateway_cpu
378
title: Azure Cosmos DB Dedicated Gateway CPU Usage
@@ -382,7 +382,7 @@ template:
382
units: percentage
383
algorithm: absolute
384
dimensions:
385
- - selector: cosmos_db.dedicated_gateway_cpu_usage_average
385
+ - selector: dedicated_gateway_cpu_usage_average
386
name: average
387
- id: am_azure_cosmos_db__dedicated_gateway_memory
388
title: Azure Cosmos DB Dedicated Gateway Memory Usage
@@ -392,7 +392,7 @@ template:
392
units: bytes
393
algorithm: absolute
394
dimensions:
395
- - selector: cosmos_db.dedicated_gateway_memory_usage_average
395
+ - selector: dedicated_gateway_memory_usage_average
396
name: average
397
- id: am_azure_cosmos_db__dedicated_gateway_requests
398
title: Azure Cosmos DB Dedicated Gateway Requests
@@ -402,7 +402,7 @@ template:
402
units: requests/s
403
algorithm: incremental
404
dimensions:
405
- - selector: cosmos_db.dedicated_gateway_requests_count
405
+ - selector: dedicated_gateway_requests_count
406
name: count
407
- id: am_azure_cosmos_db__integrated_cache_hit_rate
408
title: Azure Cosmos DB Integrated Cache Hit Rate
@@ -412,7 +412,7 @@ template:
412
units: percentage
413
algorithm: absolute
414
dimensions:
415
- - selector: cosmos_db.integrated_cache_item_hit_rate_average
415
+ - selector: integrated_cache_item_hit_rate_average
416
name: item
417
- - selector: cosmos_db.integrated_cache_query_hit_rate_average
417
+ - selector: integrated_cache_query_hit_rate_average
418
name: query
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/data_explorer.yaml
+53
-53
@@ -330,7 +330,7 @@ template:
330
units: percentage
331
algorithm: absolute
332
dimensions:
333
- - selector: data_explorer.cpu_average
333
+ - selector: cpu_average
334
name: average
335
- id: am_azure_data_explorer__utilization
336
title: Azure Data Explorer Utilization
@@ -340,9 +340,9 @@ template:
340
units: percentage
341
algorithm: absolute
342
dimensions:
343
- - selector: data_explorer.ingestion_utilization_average
343
+ - selector: ingestion_utilization_average
344
name: ingestion
345
- - selector: data_explorer.cache_utilization_factor_average
345
+ - selector: cache_utilization_factor_average
346
name: cache
347
- id: am_azure_data_explorer__keep_alive
348
title: Azure Data Explorer Keep Alive
@@ -352,7 +352,7 @@ template:
352
units: count
353
algorithm: absolute
354
dimensions:
355
- - selector: data_explorer.keep_alive_average
355
+ - selector: keep_alive_average
356
name: average
357
- id: am_azure_data_explorer__instance_count
358
title: Azure Data Explorer Instance Count
@@ -362,11 +362,11 @@ template:
362
units: instances
363
algorithm: absolute
364
dimensions:
365
- - selector: data_explorer.instance_count_average
365
+ - selector: instance_count_average
366
name: average
367
- - selector: data_explorer.instance_count_maximum
367
+ - selector: instance_count_maximum
368
name: maximum
369
- - selector: data_explorer.instance_count_minimum
369
+ - selector: instance_count_minimum
370
name: minimum
371
- id: am_azure_data_explorer__extents
372
title: Azure Data Explorer Total Extents
@@ -376,7 +376,7 @@ template:
376
units: extents
377
algorithm: absolute
378
dimensions:
379
- - selector: data_explorer.total_number_of_extents_average
379
+ - selector: total_number_of_extents_average
380
name: average
381
- id: am_azure_data_explorer__throttled_commands
382
title: Azure Data Explorer Throttled Commands
@@ -386,7 +386,7 @@ template:
386
units: commands/s
387
algorithm: incremental
388
dimensions:
389
- - selector: data_explorer.total_number_of_throttled_commands_total
389
+ - selector: total_number_of_throttled_commands_total
390
name: total
391
- id: am_azure_data_explorer__follower_latency
392
title: Azure Data Explorer Follower Latency
@@ -396,7 +396,7 @@ template:
396
units: milliseconds
397
algorithm: absolute
398
dimensions:
399
- - selector: data_explorer.follower_latency_average
399
+ - selector: follower_latency_average
400
name: average
401
- id: am_azure_data_explorer__query_duration
402
title: Azure Data Explorer Query Duration
@@ -406,7 +406,7 @@ template:
406
units: milliseconds
407
algorithm: absolute
408
dimensions:
409
- - selector: data_explorer.query_duration_average
409
+ - selector: query_duration_average
410
name: average
411
- id: am_azure_data_explorer__query_count
412
title: Azure Data Explorer Query Count
@@ -416,7 +416,7 @@ template:
416
units: queries/s
417
algorithm: incremental
418
dimensions:
419
- - selector: data_explorer.query_result_count
419
+ - selector: query_result_count
420
name: count
421
- id: am_azure_data_explorer__concurrent_queries
422
title: Azure Data Explorer Concurrent Queries
@@ -426,9 +426,9 @@ template:
426
units: queries
427
algorithm: absolute
428
dimensions:
429
- - selector: data_explorer.total_number_of_concurrent_queries_average
429
+ - selector: total_number_of_concurrent_queries_average
430
name: average
431
- - selector: data_explorer.total_number_of_concurrent_queries_maximum
431
+ - selector: total_number_of_concurrent_queries_maximum
432
name: maximum
433
- id: am_azure_data_explorer__throttled_queries
434
title: Azure Data Explorer Throttled Queries
@@ -438,7 +438,7 @@ template:
438
units: queries/s
439
algorithm: incremental
440
dimensions:
441
- - selector: data_explorer.total_number_of_throttled_queries_total
441
+ - selector: total_number_of_throttled_queries_total
442
name: total
443
- id: am_azure_data_explorer__weak_consistency_latency
444
title: Azure Data Explorer Weak Consistency Latency
@@ -448,7 +448,7 @@ template:
448
units: seconds
449
algorithm: absolute
450
dimensions:
451
- - selector: data_explorer.weak_consistency_latency_average
451
+ - selector: weak_consistency_latency_average
452
name: average
453
- id: am_azure_data_explorer__ingestion_result
454
title: Azure Data Explorer Ingestion Result
@@ -458,7 +458,7 @@ template:
458
units: sources/s
459
algorithm: incremental
460
dimensions:
461
- - selector: data_explorer.ingestion_result_total
461
+ - selector: ingestion_result_total
462
name: total
463
- id: am_azure_data_explorer__ingestion_volume
464
title: Azure Data Explorer Ingestion Volume
@@ -468,7 +468,7 @@ template:
468
units: bytes/s
469
algorithm: incremental
470
dimensions:
471
- - selector: data_explorer.ingestion_volume_in_mb_total
471
+ - selector: ingestion_volume_in_mb_total
472
name: total
473
- id: am_azure_data_explorer__ingestion_latency
474
title: Azure Data Explorer Ingestion Latency
@@ -478,7 +478,7 @@ template:
478
units: seconds
479
algorithm: absolute
480
dimensions:
481
- - selector: data_explorer.ingestion_latency_in_seconds_average
481
+ - selector: ingestion_latency_in_seconds_average
482
name: average
483
- id: am_azure_data_explorer__events
484
title: Azure Data Explorer Events
@@ -488,11 +488,11 @@ template:
488
units: events/s
489
algorithm: incremental
490
dimensions:
491
- - selector: data_explorer.events_received_total
491
+ - selector: events_received_total
492
name: received
493
- - selector: data_explorer.events_processed_total
493
+ - selector: events_processed_total
494
name: processed
495
- - selector: data_explorer.events_dropped_total
495
+ - selector: events_dropped_total
496
name: dropped
497
- id: am_azure_data_explorer__blobs
498
title: Azure Data Explorer Blobs
@@ -502,11 +502,11 @@ template:
502
units: blobs/s
503
algorithm: incremental
504
dimensions:
505
- - selector: data_explorer.blobs_received_total
505
+ - selector: blobs_received_total
506
name: received
507
- - selector: data_explorer.blobs_processed_total
507
+ - selector: blobs_processed_total
508
name: processed
509
- - selector: data_explorer.blobs_dropped_total
509
+ - selector: blobs_dropped_total
510
name: dropped
511
- id: am_azure_data_explorer__discovery_latency
512
title: Azure Data Explorer Discovery Latency
@@ -516,7 +516,7 @@ template:
516
units: seconds
517
algorithm: absolute
518
dimensions:
519
- - selector: data_explorer.discovery_latency_average
519
+ - selector: discovery_latency_average
520
name: average
521
- id: am_azure_data_explorer__stage_latency
522
title: Azure Data Explorer Stage Latency
@@ -526,7 +526,7 @@ template:
526
units: seconds
527
algorithm: absolute
528
dimensions:
529
- - selector: data_explorer.stage_latency_average
529
+ - selector: stage_latency_average
530
name: average
531
- id: am_azure_data_explorer__ingestion_queue
532
title: Azure Data Explorer Ingestion Queue
@@ -536,7 +536,7 @@ template:
536
units: messages
537
algorithm: absolute
538
dimensions:
539
- - selector: data_explorer.queue_length_average
539
+ - selector: queue_length_average
540
name: length
541
- id: am_azure_data_explorer__queue_oldest_message
542
title: Azure Data Explorer Queue Oldest Message Age
@@ -546,7 +546,7 @@ template:
546
units: seconds
547
algorithm: absolute
548
dimensions:
549
- - selector: data_explorer.queue_oldest_message_average
549
+ - selector: queue_oldest_message_average
550
name: age
551
- id: am_azure_data_explorer__received_data_size
552
title: Azure Data Explorer Received Data Size
@@ -556,7 +556,7 @@ template:
556
units: bytes/s
557
algorithm: incremental
558
dimensions:
559
- - selector: data_explorer.received_data_size_bytes_total
559
+ - selector: received_data_size_bytes_total
560
name: total
561
- id: am_azure_data_explorer__batches_processed
562
title: Azure Data Explorer Batches Processed
@@ -566,7 +566,7 @@ template:
566
units: batches/s
567
algorithm: incremental
568
dimensions:
569
- - selector: data_explorer.batches_processed_total
569
+ - selector: batches_processed_total
570
name: total
571
- id: am_azure_data_explorer__batch_blob_count
572
title: Azure Data Explorer Batch Blob Count
@@ -576,7 +576,7 @@ template:
576
units: blobs
577
algorithm: absolute
578
dimensions:
579
- - selector: data_explorer.batch_blob_count_average
579
+ - selector: batch_blob_count_average
580
name: average
581
- id: am_azure_data_explorer__batch_size
582
title: Azure Data Explorer Batch Size
@@ -586,7 +586,7 @@ template:
586
units: bytes
587
algorithm: absolute
588
dimensions:
589
- - selector: data_explorer.batch_size_average
589
+ - selector: batch_size_average
590
name: average
591
- id: am_azure_data_explorer__batch_duration
592
title: Azure Data Explorer Batch Duration
@@ -596,7 +596,7 @@ template:
596
units: seconds
597
algorithm: absolute
598
dimensions:
599
- - selector: data_explorer.batch_duration_average
599
+ - selector: batch_duration_average
600
name: average
601
- id: am_azure_data_explorer__export_utilization
602
title: Azure Data Explorer Export Utilization
@@ -606,7 +606,7 @@ template:
606
units: percentage
607
algorithm: absolute
608
dimensions:
609
- - selector: data_explorer.export_utilization_maximum
609
+ - selector: export_utilization_maximum
610
name: maximum
611
- id: am_azure_data_explorer__continuous_export_records
612
title: Azure Data Explorer Continuous Export Records
@@ -616,7 +616,7 @@ template:
616
units: records/s
617
algorithm: incremental
618
dimensions:
619
- - selector: data_explorer.continuous_export_num_of_records_exported_total
619
+ - selector: continuous_export_num_of_records_exported_total
620
name: total
621
- id: am_azure_data_explorer__continuous_export_result
622
title: Azure Data Explorer Continuous Export Result
@@ -626,7 +626,7 @@ template:
626
units: results/s
627
algorithm: incremental
628
dimensions:
629
- - selector: data_explorer.continuous_export_result_count
629
+ - selector: continuous_export_result_count
630
name: count
631
- id: am_azure_data_explorer__continuous_export_pending
632
title: Azure Data Explorer Continuous Export Pending Jobs
@@ -636,7 +636,7 @@ template:
636
units: jobs
637
algorithm: absolute
638
dimensions:
639
- - selector: data_explorer.continuous_export_pending_count_maximum
639
+ - selector: continuous_export_pending_count_maximum
640
name: maximum
641
- id: am_azure_data_explorer__continuous_export_lateness
642
title: Azure Data Explorer Continuous Export Lateness
@@ -646,7 +646,7 @@ template:
646
units: minutes
647
algorithm: absolute
648
dimensions:
649
- - selector: data_explorer.continuous_export_max_lateness_minutes_maximum
649
+ - selector: continuous_export_max_lateness_minutes_maximum
650
name: maximum
651
- id: am_azure_data_explorer__streaming_ingest_data_rate
652
title: Azure Data Explorer Streaming Ingest Data Rate
@@ -656,7 +656,7 @@ template:
656
units: bytes/s
657
algorithm: absolute
658
dimensions:
659
- - selector: data_explorer.streaming_ingest_data_rate_average
659
+ - selector: streaming_ingest_data_rate_average
660
name: average
661
- id: am_azure_data_explorer__streaming_ingest_duration
662
title: Azure Data Explorer Streaming Ingest Duration
@@ -666,7 +666,7 @@ template:
666
units: milliseconds
667
algorithm: absolute
668
dimensions:
669
- - selector: data_explorer.streaming_ingest_duration_average
669
+ - selector: streaming_ingest_duration_average
670
name: average
671
- id: am_azure_data_explorer__streaming_ingest_result
672
title: Azure Data Explorer Streaming Ingest Result
@@ -676,7 +676,7 @@ template:
676
units: results/s
677
algorithm: incremental
678
dimensions:
679
- - selector: data_explorer.streaming_ingest_results_count
679
+ - selector: streaming_ingest_results_count
680
name: count
681
- id: am_azure_data_explorer__streaming_ingest_utilization
682
title: Azure Data Explorer Streaming Ingest Utilization
@@ -686,7 +686,7 @@ template:
686
units: percentage
687
algorithm: absolute
688
dimensions:
689
- - selector: data_explorer.streaming_ingest_utilization_average
689
+ - selector: streaming_ingest_utilization_average
690
name: average
691
- id: am_azure_data_explorer__materialized_view_health
692
title: Azure Data Explorer Materialized View Health
@@ -696,7 +696,7 @@ template:
696
units: status
697
algorithm: absolute
698
dimensions:
699
- - selector: data_explorer.materialized_view_health_average
699
+ - selector: materialized_view_health_average
700
name: health
701
- id: am_azure_data_explorer__materialized_view_age
702
title: Azure Data Explorer Materialized View Age
@@ -706,7 +706,7 @@ template:
706
units: minutes
707
algorithm: absolute
708
dimensions:
709
- - selector: data_explorer.materialized_view_age_minutes_average
709
+ - selector: materialized_view_age_minutes_average
710
name: minutes
711
- id: am_azure_data_explorer__materialized_view_age_seconds
712
title: Azure Data Explorer Materialized View Age (Seconds)
@@ -716,7 +716,7 @@ template:
716
units: seconds
717
algorithm: absolute
718
dimensions:
719
- - selector: data_explorer.materialized_view_age_seconds_average
719
+ - selector: materialized_view_age_seconds_average
720
name: average
721
- id: am_azure_data_explorer__materialized_view_records_in_delta
722
title: Azure Data Explorer Materialized View Records in Delta
@@ -726,7 +726,7 @@ template:
726
units: records
727
algorithm: absolute
728
dimensions:
729
- - selector: data_explorer.materialized_view_records_in_delta_average
729
+ - selector: materialized_view_records_in_delta_average
730
name: average
731
- id: am_azure_data_explorer__materialized_view_extents_rebuild
732
title: Azure Data Explorer Materialized View Extents Rebuild
@@ -736,7 +736,7 @@ template:
736
units: extents
737
algorithm: absolute
738
dimensions:
739
- - selector: data_explorer.materialized_view_extents_rebuild_average
739
+ - selector: materialized_view_extents_rebuild_average
740
name: average
741
- id: am_azure_data_explorer__materialized_view_data_loss
742
title: Azure Data Explorer Materialized View Data Loss
@@ -746,7 +746,7 @@ template:
746
units: status
747
algorithm: absolute
748
dimensions:
749
- - selector: data_explorer.materialized_view_data_loss_maximum
749
+ - selector: materialized_view_data_loss_maximum
750
name: maximum
751
- id: am_azure_data_explorer__materialized_view_result
752
title: Azure Data Explorer Materialized View Result
@@ -756,7 +756,7 @@ template:
756
units: status
757
algorithm: absolute
758
dimensions:
759
- - selector: data_explorer.materialized_view_result_average
759
+ - selector: materialized_view_result_average
760
name: average
761
- id: am_azure_data_explorer__partitioning_percentage
762
title: Azure Data Explorer Partitioning Percentage
@@ -766,9 +766,9 @@ template:
766
units: percentage
767
algorithm: absolute
768
dimensions:
769
- - selector: data_explorer.partitioning_percentage_average
769
+ - selector: partitioning_percentage_average
770
name: total
771
- - selector: data_explorer.partitioning_percentage_hot_average
771
+ - selector: partitioning_percentage_hot_average
772
name: hot
773
- id: am_azure_data_explorer__partitioned_records
774
title: Azure Data Explorer Processed Partitioned Records
@@ -778,5 +778,5 @@ template:
778
units: records
779
algorithm: absolute
780
dimensions:
781
- - selector: data_explorer.processed_partitioned_records_average
781
+ - selector: processed_partitioned_records_average
782
name: average
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/data_factory.yaml
+94
-94
@@ -588,11 +588,11 @@ template:
588
units: runs/s
589
algorithm: incremental
590
dimensions:
591
- - selector: data_factory.pipeline_succeeded_runs_total
591
+ - selector: pipeline_succeeded_runs_total
592
name: succeeded
593
- - selector: data_factory.pipeline_failed_runs_total
593
+ - selector: pipeline_failed_runs_total
594
name: failed
595
- - selector: data_factory.pipeline_cancelled_runs_total
595
+ - selector: pipeline_cancelled_runs_total
596
name: cancelled
597
- id: am_azure_data_factory__pipeline_elapsed_time
598
title: Azure Data Factory Pipeline Elapsed Time Runs
@@ -602,7 +602,7 @@ template:
602
units: runs/s
603
algorithm: incremental
604
dimensions:
605
- - selector: data_factory.pipeline_elapsed_time_runs_total
605
+ - selector: pipeline_elapsed_time_runs_total
606
name: elapsed_time
607
- id: am_azure_data_factory__activity_runs
608
title: Azure Data Factory Activity Runs
@@ -612,11 +612,11 @@ template:
612
units: runs/s
613
algorithm: incremental
614
dimensions:
615
- - selector: data_factory.activity_succeeded_runs_total
615
+ - selector: activity_succeeded_runs_total
616
name: succeeded
617
- - selector: data_factory.activity_failed_runs_total
617
+ - selector: activity_failed_runs_total
618
name: failed
619
- - selector: data_factory.activity_cancelled_runs_total
619
+ - selector: activity_cancelled_runs_total
620
name: cancelled
621
- id: am_azure_data_factory__trigger_runs
622
title: Azure Data Factory Trigger Runs
@@ -626,11 +626,11 @@ template:
626
units: runs/s
627
algorithm: incremental
628
dimensions:
629
- - selector: data_factory.trigger_succeeded_runs_total
629
+ - selector: trigger_succeeded_runs_total
630
name: succeeded
631
- - selector: data_factory.trigger_failed_runs_total
631
+ - selector: trigger_failed_runs_total
632
name: failed
633
- - selector: data_factory.trigger_cancelled_runs_total
633
+ - selector: trigger_cancelled_runs_total
634
name: cancelled
635
- id: am_azure_data_factory__ssis_ir_starts
636
title: Azure Data Factory SSIS IR Start Operations
@@ -640,11 +640,11 @@ template:
640
units: runs/s
641
algorithm: incremental
642
dimensions:
643
- - selector: data_factory.ssis_integration_runtime_start_succeeded_total
643
+ - selector: ssis_integration_runtime_start_succeeded_total
644
name: succeeded
645
- - selector: data_factory.ssis_integration_runtime_start_failed_total
645
+ - selector: ssis_integration_runtime_start_failed_total
646
name: failed
647
- - selector: data_factory.ssis_integration_runtime_start_cancel_total
647
+ - selector: ssis_integration_runtime_start_cancel_total
648
name: cancelled
649
- id: am_azure_data_factory__ssis_ir_stops
650
title: Azure Data Factory SSIS IR Stop Operations
@@ -654,9 +654,9 @@ template:
654
units: runs/s
655
algorithm: incremental
656
dimensions:
657
- - selector: data_factory.ssis_integration_runtime_stop_succeeded_total
657
+ - selector: ssis_integration_runtime_stop_succeeded_total
658
name: succeeded
659
- - selector: data_factory.ssis_integration_runtime_stop_stuck_total
659
+ - selector: ssis_integration_runtime_stop_stuck_total
660
name: stuck
661
- id: am_azure_data_factory__ssis_package_executions
662
title: Azure Data Factory SSIS Package Executions
@@ -666,11 +666,11 @@ template:
666
units: executions/s
667
algorithm: incremental
668
dimensions:
669
- - selector: data_factory.ssis_package_execution_succeeded_total
669
+ - selector: ssis_package_execution_succeeded_total
670
name: succeeded
671
- - selector: data_factory.ssis_package_execution_failed_total
671
+ - selector: ssis_package_execution_failed_total
672
name: failed
673
- - selector: data_factory.ssis_package_execution_cancel_total
673
+ - selector: ssis_package_execution_cancel_total
674
name: cancelled
675
- id: am_azure_data_factory__ir_cpu
676
title: Azure Data Factory Integration Runtime CPU
@@ -680,7 +680,7 @@ template:
680
units: percentage
681
algorithm: absolute
682
dimensions:
683
- - selector: data_factory.integration_runtime_cpu_percentage_average
683
+ - selector: integration_runtime_cpu_percentage_average
684
name: average
685
- id: am_azure_data_factory__ir_memory
686
title: Azure Data Factory Integration Runtime Available Memory
@@ -690,7 +690,7 @@ template:
690
units: bytes
691
algorithm: absolute
692
dimensions:
693
- - selector: data_factory.integration_runtime_available_memory_average
693
+ - selector: integration_runtime_available_memory_average
694
name: available
695
- id: am_azure_data_factory__ir_nodes
696
title: Azure Data Factory Integration Runtime Available Nodes
@@ -700,7 +700,7 @@ template:
700
units: nodes
701
algorithm: absolute
702
dimensions:
703
- - selector: data_factory.integration_runtime_available_node_number_average
703
+ - selector: integration_runtime_available_node_number_average
704
name: available
705
- id: am_azure_data_factory__ir_queue
706
title: Azure Data Factory Integration Runtime Queue
@@ -710,7 +710,7 @@ template:
710
units: tasks
711
algorithm: absolute
712
dimensions:
713
- - selector: data_factory.integration_runtime_queue_length_average
713
+ - selector: integration_runtime_queue_length_average
714
name: queue_length
715
- id: am_azure_data_factory__ir_task_pickup_delay
716
title: Azure Data Factory Integration Runtime Task Pickup Delay
@@ -720,7 +720,7 @@ template:
720
units: seconds
721
algorithm: absolute
722
dimensions:
723
- - selector: data_factory.integration_runtime_average_task_pickup_delay_average
723
+ - selector: integration_runtime_average_task_pickup_delay_average
724
name: average
725
- id: am_azure_data_factory__factory_size
726
title: Azure Data Factory Factory Size
@@ -730,9 +730,9 @@ template:
730
units: GiB
731
algorithm: absolute
732
dimensions:
733
- - selector: data_factory.factory_size_in_gb_units_maximum
733
+ - selector: factory_size_in_gb_units_maximum
734
name: current
735
- - selector: data_factory.max_allowed_factory_size_in_gb_units_maximum
735
+ - selector: max_allowed_factory_size_in_gb_units_maximum
736
name: max_allowed
737
- id: am_azure_data_factory__entity_count
738
title: Azure Data Factory Entity Count
@@ -742,9 +742,9 @@ template:
742
units: entities
743
algorithm: absolute
744
dimensions:
745
- - selector: data_factory.resource_count_maximum
745
+ - selector: resource_count_maximum
746
name: current
747
- - selector: data_factory.max_allowed_resource_count_maximum
747
+ - selector: max_allowed_resource_count_maximum
748
name: max_allowed
749
- id: am_azure_data_factory__mvnet_ir_copy_capacity
750
title: Azure Data Factory MVNet IR Copy Capacity
@@ -754,9 +754,9 @@ template:
754
units: percentage
755
algorithm: absolute
756
dimensions:
757
- - selector: data_factory.mv_net_ir_copy_capacity_utilization_maximum
757
+ - selector: mv_net_ir_copy_capacity_utilization_maximum
758
name: utilization
759
- - selector: data_factory.mv_net_ir_copy_available_capacity_pct_maximum
759
+ - selector: mv_net_ir_copy_available_capacity_pct_maximum
760
name: available
761
- id: am_azure_data_factory__mvnet_ir_copy_queue
762
title: Azure Data Factory MVNet IR Copy Queue
@@ -766,7 +766,7 @@ template:
766
units: tasks
767
algorithm: absolute
768
dimensions:
769
- - selector: data_factory.mv_net_ir_copy_waiting_queue_length_average
769
+ - selector: mv_net_ir_copy_waiting_queue_length_average
770
name: waiting
771
- id: am_azure_data_factory__mvnet_ir_external_capacity
772
title: Azure Data Factory MVNet IR External Capacity
@@ -776,9 +776,9 @@ template:
776
units: percentage
777
algorithm: absolute
778
dimensions:
779
- - selector: data_factory.mv_net_ir_external_capacity_utilization_maximum
779
+ - selector: mv_net_ir_external_capacity_utilization_maximum
780
name: utilization
781
- - selector: data_factory.mv_net_ir_external_available_capacity_pct_maximum
781
+ - selector: mv_net_ir_external_available_capacity_pct_maximum
782
name: available
783
- id: am_azure_data_factory__mvnet_ir_external_queue
784
title: Azure Data Factory MVNet IR External Queue
@@ -788,7 +788,7 @@ template:
788
units: tasks
789
algorithm: absolute
790
dimensions:
791
- - selector: data_factory.mv_net_ir_external_waiting_queue_length_average
791
+ - selector: mv_net_ir_external_waiting_queue_length_average
792
name: waiting
793
- id: am_azure_data_factory__mvnet_ir_pipeline_capacity
794
title: Azure Data Factory MVNet IR Pipeline Capacity
@@ -798,9 +798,9 @@ template:
798
units: percentage
799
algorithm: absolute
800
dimensions:
801
- - selector: data_factory.mv_net_ir_pipeline_capacity_utilization_maximum
801
+ - selector: mv_net_ir_pipeline_capacity_utilization_maximum
802
name: utilization
803
- - selector: data_factory.mv_net_ir_pipeline_available_capacity_pct_maximum
803
+ - selector: mv_net_ir_pipeline_available_capacity_pct_maximum
804
name: available
805
- id: am_azure_data_factory__mvnet_ir_pipeline_queue
806
title: Azure Data Factory MVNet IR Pipeline Queue
@@ -810,7 +810,7 @@ template:
810
units: tasks
811
algorithm: absolute
812
dimensions:
813
- - selector: data_factory.mv_net_ir_pipeline_waiting_queue_length_average
813
+ - selector: mv_net_ir_pipeline_waiting_queue_length_average
814
name: waiting
815
- id: am_azure_data_factory__airflow_ir_cpu
816
title: Azure Data Factory Airflow IR CPU
@@ -820,7 +820,7 @@ template:
820
units: percentage
821
algorithm: absolute
822
dimensions:
823
- - selector: data_factory.airflow_integration_runtime_cpu_percentage_average
823
+ - selector: airflow_integration_runtime_cpu_percentage_average
824
name: percentage
825
- id: am_azure_data_factory__airflow_ir_cpu_usage
826
title: Azure Data Factory Airflow IR CPU Usage
@@ -830,7 +830,7 @@ template:
830
units: millicores
831
algorithm: absolute
832
dimensions:
833
- - selector: data_factory.airflow_integration_runtime_cpu_usage_average
833
+ - selector: airflow_integration_runtime_cpu_usage_average
834
name: average
835
- id: am_azure_data_factory__airflow_ir_memory
836
title: Azure Data Factory Airflow IR Memory
@@ -840,7 +840,7 @@ template:
840
units: percentage
841
algorithm: absolute
842
dimensions:
843
- - selector: data_factory.airflow_integration_runtime_memory_percentage_average
843
+ - selector: airflow_integration_runtime_memory_percentage_average
844
name: percentage
845
- id: am_azure_data_factory__airflow_ir_memory_usage
846
title: Azure Data Factory Airflow IR Memory Usage
@@ -850,7 +850,7 @@ template:
850
units: bytes
851
algorithm: absolute
852
dimensions:
853
- - selector: data_factory.airflow_integration_runtime_memory_usage_average
853
+ - selector: airflow_integration_runtime_memory_usage_average
854
name: average
855
- id: am_azure_data_factory__airflow_ir_nodes
856
title: Azure Data Factory Airflow IR Node Count
@@ -860,7 +860,7 @@ template:
860
units: nodes
861
algorithm: absolute
862
dimensions:
863
- - selector: data_factory.airflow_integration_runtime_node_count_average
863
+ - selector: airflow_integration_runtime_node_count_average
864
name: average
865
- id: am_azure_data_factory__airflow_ir_dag_collection
866
title: Azure Data Factory Airflow IR DAG DB Collection Time
@@ -870,7 +870,7 @@ template:
870
units: milliseconds
871
algorithm: absolute
872
dimensions:
873
- - selector: data_factory.airflow_integration_runtime_collect_db_dags_average
873
+ - selector: airflow_integration_runtime_collect_db_dags_average
874
name: average
875
- id: am_azure_data_factory__airflow_ir_dag_bag
876
title: Azure Data Factory Airflow IR DAG Bag Size
@@ -880,7 +880,7 @@ template:
880
units: dags/s
881
algorithm: incremental
882
dimensions:
883
- - selector: data_factory.airflow_integration_runtime_dag_bag_size_total
883
+ - selector: airflow_integration_runtime_dag_bag_size_total
884
name: total
885
- id: am_azure_data_factory__airflow_ir_dag_errors
886
title: Azure Data Factory Airflow IR DAG Errors
@@ -890,11 +890,11 @@ template:
890
units: errors/s
891
algorithm: incremental
892
dimensions:
893
- - selector: data_factory.airflow_integration_runtime_dag_callback_exceptions_total
893
+ - selector: airflow_integration_runtime_dag_callback_exceptions_total
894
name: callback_exceptions
895
- - selector: data_factory.airflow_integration_runtime_dag_file_refresh_error_total
895
+ - selector: airflow_integration_runtime_dag_file_refresh_error_total
896
name: file_refresh
897
- - selector: data_factory.airflow_integration_runtime_dag_processing_import_errors_total
897
+ - selector: airflow_integration_runtime_dag_processing_import_errors_total
898
name: import
899
- id: am_azure_data_factory__airflow_ir_dag_processing_duration
900
title: Azure Data Factory Airflow IR DAG Processing Duration
@@ -904,7 +904,7 @@ template:
904
units: milliseconds
905
algorithm: absolute
906
dimensions:
907
- - selector: data_factory.airflow_integration_runtime_dag_processing_last_duration_average
907
+ - selector: airflow_integration_runtime_dag_processing_last_duration_average
908
name: last_duration
909
- id: am_azure_data_factory__airflow_ir_dag_processing_lag
910
title: Azure Data Factory Airflow IR DAG Processing Lag
@@ -914,11 +914,11 @@ template:
914
units: seconds
915
algorithm: absolute
916
dimensions:
917
- - selector: data_factory.airflow_integration_runtime_dag_processing_last_run_seconds_ago_average
917
+ - selector: airflow_integration_runtime_dag_processing_last_run_seconds_ago_average
918
name: last_run_seconds_ago
919
- - selector: data_factory.airflow_integration_runtime_dag_processing_processor_timeouts_average
919
+ - selector: airflow_integration_runtime_dag_processing_processor_timeouts_average
920
name: processor_timeouts
921
- - selector: data_factory.airflow_integration_runtime_dag_processing_total_parse_time_average
921
+ - selector: airflow_integration_runtime_dag_processing_total_parse_time_average
922
name: total_parse_time
923
- id: am_azure_data_factory__airflow_ir_dag_processing_activity
924
title: Azure Data Factory Airflow IR DAG Processing Activity
@@ -928,9 +928,9 @@ template:
928
units: events/s
929
algorithm: incremental
930
dimensions:
931
- - selector: data_factory.airflow_integration_runtime_dag_processing_manager_stalls_total
931
+ - selector: airflow_integration_runtime_dag_processing_manager_stalls_total
932
name: manager_stalls
933
- - selector: data_factory.airflow_integration_runtime_dag_processing_processes_total
933
+ - selector: airflow_integration_runtime_dag_processing_processes_total
934
name: processes
935
- id: am_azure_data_factory__airflow_ir_dag_run_duration
936
title: Azure Data Factory Airflow IR DAG Run Duration
@@ -940,9 +940,9 @@ template:
940
units: milliseconds
941
algorithm: absolute
942
dimensions:
943
- - selector: data_factory.airflow_integration_runtime_dag_run_duration_success_average
943
+ - selector: airflow_integration_runtime_dag_run_duration_success_average
944
name: success
945
- - selector: data_factory.airflow_integration_runtime_dag_run_duration_failed_average
945
+ - selector: airflow_integration_runtime_dag_run_duration_failed_average
946
name: failed
947
- id: am_azure_data_factory__airflow_ir_dag_run_scheduling
948
title: Azure Data Factory Airflow IR DAG Run Scheduling Delays
@@ -952,11 +952,11 @@ template:
952
units: milliseconds
953
algorithm: absolute
954
dimensions:
955
- - selector: data_factory.airflow_integration_runtime_dag_run_dependency_check_average
955
+ - selector: airflow_integration_runtime_dag_run_dependency_check_average
956
name: dependency_check
957
- - selector: data_factory.airflow_integration_runtime_dag_run_first_task_scheduling_delay_average
957
+ - selector: airflow_integration_runtime_dag_run_first_task_scheduling_delay_average
958
name: first_task_delay
959
- - selector: data_factory.airflow_integration_runtime_dag_run_schedule_delay_average
959
+ - selector: airflow_integration_runtime_dag_run_schedule_delay_average
960
name: schedule_delay
961
- id: am_azure_data_factory__airflow_ir_executor
962
title: Azure Data Factory Airflow IR Executor
@@ -966,11 +966,11 @@ template:
966
units: slots/s
967
algorithm: incremental
968
dimensions:
969
- - selector: data_factory.airflow_integration_runtime_executor_open_slots_total
969
+ - selector: airflow_integration_runtime_executor_open_slots_total
970
name: open_slots
971
- - selector: data_factory.airflow_integration_runtime_executor_queued_tasks_total
971
+ - selector: airflow_integration_runtime_executor_queued_tasks_total
972
name: queued_tasks
973
- - selector: data_factory.airflow_integration_runtime_executor_running_tasks_total
973
+ - selector: airflow_integration_runtime_executor_running_tasks_total
974
name: running_tasks
975
- id: am_azure_data_factory__airflow_ir_jobs
976
title: Azure Data Factory Airflow IR Jobs
@@ -980,11 +980,11 @@ template:
980
units: jobs/s
981
algorithm: incremental
982
dimensions:
983
- - selector: data_factory.airflow_integration_runtime_job_start_total
983
+ - selector: airflow_integration_runtime_job_start_total
984
name: started
985
- - selector: data_factory.airflow_integration_runtime_job_end_total
985
+ - selector: airflow_integration_runtime_job_end_total
986
name: ended
987
- - selector: data_factory.airflow_integration_runtime_job_heartbeat_failure_total
987
+ - selector: airflow_integration_runtime_job_heartbeat_failure_total
988
name: heartbeat_failures
989
- id: am_azure_data_factory__airflow_ir_operators
990
title: Azure Data Factory Airflow IR Operators
@@ -994,9 +994,9 @@ template:
994
units: operations/s
995
algorithm: incremental
996
dimensions:
997
- - selector: data_factory.airflow_integration_runtime_operator_successes_total
997
+ - selector: airflow_integration_runtime_operator_successes_total
998
name: successes
999
- - selector: data_factory.airflow_integration_runtime_operator_failures_total
999
+ - selector: airflow_integration_runtime_operator_failures_total
1000
name: failures
1001
- id: am_azure_data_factory__airflow_ir_pool_slots
1002
title: Azure Data Factory Airflow IR Pool Slots
@@ -1006,11 +1006,11 @@ template:
1006
units: slots/s
1007
algorithm: incremental
1008
dimensions:
1009
- - selector: data_factory.airflow_integration_runtime_pool_open_slots_total
1009
+ - selector: airflow_integration_runtime_pool_open_slots_total
1010
name: open
1011
- - selector: data_factory.airflow_integration_runtime_pool_queued_slots_total
1011
+ - selector: airflow_integration_runtime_pool_queued_slots_total
1012
name: queued
1013
- - selector: data_factory.airflow_integration_runtime_pool_running_slots_total
1013
+ - selector: airflow_integration_runtime_pool_running_slots_total
1014
name: running
1015
- id: am_azure_data_factory__airflow_ir_pool_starving
1016
title: Azure Data Factory Airflow IR Pool Starving Tasks
@@ -1020,7 +1020,7 @@ template:
1020
units: tasks/s
1021
algorithm: incremental
1022
dimensions:
1023
- - selector: data_factory.airflow_integration_runtime_pool_starving_tasks_total
1023
+ - selector: airflow_integration_runtime_pool_starving_tasks_total
1024
name: starving
1025
- id: am_azure_data_factory__airflow_ir_scheduler_critical_section
1026
title: Azure Data Factory Airflow IR Scheduler Critical Section
@@ -1030,7 +1030,7 @@ template:
1030
units: milliseconds
1031
algorithm: absolute
1032
dimensions:
1033
- - selector: data_factory.airflow_integration_runtime_scheduler_critical_section_duration_average
1033
+ - selector: airflow_integration_runtime_scheduler_critical_section_duration_average
1034
name: duration
1035
- id: am_azure_data_factory__airflow_ir_scheduler_activity
1036
title: Azure Data Factory Airflow IR Scheduler Activity
@@ -1040,11 +1040,11 @@ template:
1040
units: events/s
1041
algorithm: incremental
1042
dimensions:
1043
- - selector: data_factory.airflow_integration_runtime_scheduler_critical_section_busy_total
1043
+ - selector: airflow_integration_runtime_scheduler_critical_section_busy_total
1044
name: critical_section_busy
1045
- - selector: data_factory.airflow_integration_runtime_scheduler_heartbeat_total
1045
+ - selector: airflow_integration_runtime_scheduler_heartbeat_total
1046
name: heartbeats
1047
- - selector: data_factory.airflow_integration_runtime_scheduler_failed_sla_email_attempts_total
1047
+ - selector: airflow_integration_runtime_scheduler_failed_sla_email_attempts_total
1048
name: failed_sla_emails
1049
- id: am_azure_data_factory__airflow_ir_scheduler_orphaned_tasks
1050
title: Azure Data Factory Airflow IR Scheduler Orphaned Tasks
@@ -1054,9 +1054,9 @@ template:
1054
units: tasks/s
1055
algorithm: incremental
1056
dimensions:
1057
- - selector: data_factory.airflow_integration_runtime_scheduler_orphaned_tasks_adopted_total
1057
+ - selector: airflow_integration_runtime_scheduler_orphaned_tasks_adopted_total
1058
name: adopted
1059
- - selector: data_factory.airflow_integration_runtime_scheduler_orphaned_tasks_cleared_total
1059
+ - selector: airflow_integration_runtime_scheduler_orphaned_tasks_cleared_total
1060
name: cleared
1061
- id: am_azure_data_factory__airflow_ir_scheduler_tasks
1062
title: Azure Data Factory Airflow IR Scheduler Tasks
@@ -1066,13 +1066,13 @@ template:
1066
units: tasks/s
1067
algorithm: incremental
1068
dimensions:
1069
- - selector: data_factory.airflow_integration_runtime_scheduler_tasks_executable_total
1069
+ - selector: airflow_integration_runtime_scheduler_tasks_executable_total
1070
name: executable
1071
- - selector: data_factory.airflow_integration_runtime_scheduler_tasks_running_total
1071
+ - selector: airflow_integration_runtime_scheduler_tasks_running_total
1072
name: running
1073
- - selector: data_factory.airflow_integration_runtime_scheduler_tasks_starving_total
1073
+ - selector: airflow_integration_runtime_scheduler_tasks_starving_total
1074
name: starving
1075
- - selector: data_factory.airflow_integration_runtime_scheduler_tasks_killed_externally_total
1075
+ - selector: airflow_integration_runtime_scheduler_tasks_killed_externally_total
1076
name: killed_externally
1077
- id: am_azure_data_factory__airflow_ir_task_instances
1078
title: Azure Data Factory Airflow IR Task Instances
@@ -1082,17 +1082,17 @@ template:
1082
units: instances/s
1083
algorithm: incremental
1084
dimensions:
1085
- - selector: data_factory.airflow_integration_runtime_started_task_instances_total
1085
+ - selector: airflow_integration_runtime_started_task_instances_total
1086
name: started
1087
- - selector: data_factory.airflow_integration_runtime_task_instance_successes_total
1087
+ - selector: airflow_integration_runtime_task_instance_successes_total
1088
name: succeeded
1089
- - selector: data_factory.airflow_integration_runtime_task_instance_failures_total
1089
+ - selector: airflow_integration_runtime_task_instance_failures_total
1090
name: failed
1091
- - selector: data_factory.airflow_integration_runtime_task_instance_finished_total
1091
+ - selector: airflow_integration_runtime_task_instance_finished_total
1092
name: finished
1093
- - selector: data_factory.airflow_integration_runtime_task_instance_previously_succeeded_total
1093
+ - selector: airflow_integration_runtime_task_instance_previously_succeeded_total
1094
name: previously_succeeded
1095
- - selector: data_factory.airflow_integration_runtime_task_instance_created_using_operator_total
1095
+ - selector: airflow_integration_runtime_task_instance_created_using_operator_total
1096
name: created_via_operator
1097
- id: am_azure_data_factory__airflow_ir_task_instance_duration
1098
title: Azure Data Factory Airflow IR Task Instance Duration
@@ -1102,7 +1102,7 @@ template:
1102
units: milliseconds
1103
algorithm: absolute
1104
dimensions:
1105
- - selector: data_factory.airflow_integration_runtime_task_instance_duration_average
1105
+ - selector: airflow_integration_runtime_task_instance_duration_average
1106
name: average
1107
- id: am_azure_data_factory__airflow_ir_task_dag_changes
1108
title: Azure Data Factory Airflow IR Task DAG Changes
@@ -1112,9 +1112,9 @@ template:
1112
units: tasks/s
1113
algorithm: incremental
1114
dimensions:
1115
- - selector: data_factory.airflow_integration_runtime_task_removed_from_dag_total
1115
+ - selector: airflow_integration_runtime_task_removed_from_dag_total
1116
name: removed
1117
- - selector: data_factory.airflow_integration_runtime_task_restored_to_dag_total
1117
+ - selector: airflow_integration_runtime_task_restored_to_dag_total
1118
name: restored
1119
- id: am_azure_data_factory__airflow_ir_triggers
1120
title: Azure Data Factory Airflow IR Triggers
@@ -1124,11 +1124,11 @@ template:
1124
units: triggers/s
1125
algorithm: incremental
1126
dimensions:
1127
- - selector: data_factory.airflow_integration_runtime_triggers_succeeded_total
1127
+ - selector: airflow_integration_runtime_triggers_succeeded_total
1128
name: succeeded
1129
- - selector: data_factory.airflow_integration_runtime_triggers_failed_total
1129
+ - selector: airflow_integration_runtime_triggers_failed_total
1130
name: failed
1131
- - selector: data_factory.airflow_integration_runtime_triggers_running_total
1131
+ - selector: airflow_integration_runtime_triggers_running_total
1132
name: running
1133
- id: am_azure_data_factory__airflow_ir_trigger_issues
1134
title: Azure Data Factory Airflow IR Trigger Issues
@@ -1138,9 +1138,9 @@ template:
1138
units: events/s
1139
algorithm: incremental
1140
dimensions:
1141
- - selector: data_factory.airflow_integration_runtime_triggers_blocked_main_thread_total
1141
+ - selector: airflow_integration_runtime_triggers_blocked_main_thread_total
1142
name: blocked_main_thread
1143
- - selector: data_factory.airflow_integration_runtime_celery_task_timeout_error_total
1143
+ - selector: airflow_integration_runtime_celery_task_timeout_error_total
1144
name: celery_timeout_errors
1145
- id: am_azure_data_factory__airflow_ir_zombies
1146
title: Azure Data Factory Airflow IR Zombie Tasks Killed
@@ -1150,5 +1150,5 @@ template:
1150
units: tasks/s
1151
algorithm: incremental
1152
dimensions:
1153
- - selector: data_factory.airflow_integration_runtime_zombies_killed_total
1153
+ - selector: airflow_integration_runtime_zombies_killed_total
1154
name: killed
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/event_grid.yaml
+11
-11
@@ -90,9 +90,9 @@ template:
90
units: events/s
91
algorithm: incremental
92
dimensions:
93
- - selector: event_grid.publish_success_count_total
93
+ - selector: publish_success_count_total
94
name: success
95
- - selector: event_grid.publish_fail_count_total
95
+ - selector: publish_fail_count_total
96
name: failed
97
- id: am_azure_event_grid__publish_latency
98
title: Azure Event Grid Publish Latency
@@ -102,7 +102,7 @@ template:
102
units: milliseconds
103
algorithm: incremental
104
dimensions:
105
- - selector: event_grid.publish_success_latency_in_ms_total
105
+ - selector: publish_success_latency_in_ms_total
106
name: latency
107
- id: am_azure_event_grid__routing
108
title: Azure Event Grid Event Routing
@@ -112,9 +112,9 @@ template:
112
units: events/s
113
algorithm: incremental
114
dimensions:
115
- - selector: event_grid.matched_event_count_total
115
+ - selector: matched_event_count_total
116
name: matched
117
- - selector: event_grid.unmatched_event_count_total
117
+ - selector: unmatched_event_count_total
118
name: unmatched
119
- id: am_azure_event_grid__advanced_filter_evaluations
120
title: Azure Event Grid Advanced Filter Evaluations
@@ -124,7 +124,7 @@ template:
124
units: evaluations/s
125
algorithm: incremental
126
dimensions:
127
- - selector: event_grid.advanced_filter_evaluation_count_total
127
+ - selector: advanced_filter_evaluation_count_total
128
name: evaluations
129
- id: am_azure_event_grid__delivery
130
title: Azure Event Grid Event Delivery
@@ -134,13 +134,13 @@ template:
134
units: events/s
135
algorithm: incremental
136
dimensions:
137
- - selector: event_grid.delivery_success_count_total
137
+ - selector: delivery_success_count_total
138
name: delivered
139
- - selector: event_grid.delivery_attempt_fail_count_total
139
+ - selector: delivery_attempt_fail_count_total
140
name: failed
141
- - selector: event_grid.dropped_event_count_total
141
+ - selector: dropped_event_count_total
142
name: dropped
143
- - selector: event_grid.dead_lettered_count_total
143
+ - selector: dead_lettered_count_total
144
name: dead_lettered
145
- id: am_azure_event_grid__destination_processing_duration
146
title: Azure Event Grid Destination Processing Duration
@@ -150,5 +150,5 @@ template:
150
units: milliseconds
151
algorithm: absolute
152
dimensions:
153
- - selector: event_grid.destination_processing_duration_in_ms_average
153
+ - selector: destination_processing_duration_in_ms_average
154
name: average
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/event_hubs.yaml
+21
-21
@@ -150,9 +150,9 @@ template:
150
units: messages/s
151
algorithm: incremental
152
dimensions:
153
- - selector: event_hubs.incoming_messages_total
153
+ - selector: incoming_messages_total
154
name: in
155
- - selector: event_hubs.outgoing_messages_total
155
+ - selector: outgoing_messages_total
156
name: out
157
- id: am_azure_event_hubs__data_throughput
158
title: Azure Event Hubs Data Throughput
@@ -162,9 +162,9 @@ template:
162
units: bytes/s
163
algorithm: incremental
164
dimensions:
165
- - selector: event_hubs.incoming_bytes_total
165
+ - selector: incoming_bytes_total
166
name: in
167
- - selector: event_hubs.outgoing_bytes_total
167
+ - selector: outgoing_bytes_total
168
name: out
169
- id: am_azure_event_hubs__requests
170
title: Azure Event Hubs Requests
@@ -174,9 +174,9 @@ template:
174
units: requests/s
175
algorithm: incremental
176
dimensions:
177
- - selector: event_hubs.incoming_requests_total
177
+ - selector: incoming_requests_total
178
name: incoming
179
- - selector: event_hubs.successful_requests_total
179
+ - selector: successful_requests_total
180
name: successful
181
- id: am_azure_event_hubs__errors
182
title: Azure Event Hubs Errors
@@ -186,13 +186,13 @@ template:
186
units: errors/s
187
algorithm: incremental
188
dimensions:
189
- - selector: event_hubs.server_errors_total
189
+ - selector: server_errors_total
190
name: server
191
- - selector: event_hubs.user_errors_total
191
+ - selector: user_errors_total
192
name: user
193
- - selector: event_hubs.throttled_requests_total
193
+ - selector: throttled_requests_total
194
name: throttled
195
- - selector: event_hubs.quota_exceeded_errors_total
195
+ - selector: quota_exceeded_errors_total
196
name: quota_exceeded
197
- id: am_azure_event_hubs__connections
198
title: Azure Event Hubs Active Connections
@@ -202,7 +202,7 @@ template:
202
units: connections
203
algorithm: absolute
204
dimensions:
205
- - selector: event_hubs.active_connections_average
205
+ - selector: active_connections_average
206
name: active
207
- id: am_azure_event_hubs__connection_events
208
title: Azure Event Hubs Connection Events
@@ -212,9 +212,9 @@ template:
212
units: connections
213
algorithm: absolute
214
dimensions:
215
- - selector: event_hubs.connections_opened_maximum
215
+ - selector: connections_opened_maximum
216
name: opened
217
- - selector: event_hubs.connections_closed_maximum
217
+ - selector: connections_closed_maximum
218
name: closed
219
- id: am_azure_event_hubs__captured_messages
220
title: Azure Event Hubs Captured Messages
@@ -224,7 +224,7 @@ template:
224
units: messages/s
225
algorithm: incremental
226
dimensions:
227
- - selector: event_hubs.captured_messages_total
227
+ - selector: captured_messages_total
228
name: total
229
- id: am_azure_event_hubs__captured_data
230
title: Azure Event Hubs Captured Data
@@ -234,7 +234,7 @@ template:
234
units: bytes/s
235
algorithm: incremental
236
dimensions:
237
- - selector: event_hubs.captured_bytes_total
237
+ - selector: captured_bytes_total
238
name: total
239
- id: am_azure_event_hubs__namespace_size
240
title: Azure Event Hubs Namespace Size
@@ -244,7 +244,7 @@ template:
244
units: bytes
245
algorithm: absolute
246
dimensions:
247
- - selector: event_hubs.size_average
247
+ - selector: size_average
248
name: average
249
- id: am_azure_event_hubs__capture_backlog
250
title: Azure Event Hubs Capture Backlog
@@ -254,7 +254,7 @@ template:
254
units: messages
255
algorithm: absolute
256
dimensions:
257
- - selector: event_hubs.capture_backlog_total
257
+ - selector: capture_backlog_total
258
name: backlog
259
- id: am_azure_event_hubs__namespace_resources
260
title: Azure Event Hubs Namespace Resources
@@ -264,9 +264,9 @@ template:
264
units: percentage
265
algorithm: absolute
266
dimensions:
267
- - selector: event_hubs.namespace_cpu_usage_maximum
267
+ - selector: namespace_cpu_usage_maximum
268
name: cpu
269
- - selector: event_hubs.namespace_memory_usage_maximum
269
+ - selector: namespace_memory_usage_maximum
270
name: memory
271
- id: am_azure_event_hubs__replication_lag
272
title: Azure Event Hubs Replication Lag
@@ -276,7 +276,7 @@ template:
276
units: messages
277
algorithm: absolute
278
dimensions:
279
- - selector: event_hubs.replication_lag_count_maximum
279
+ - selector: replication_lag_count_maximum
280
name: messages
281
- id: am_azure_event_hubs__replication_lag_duration
282
title: Azure Event Hubs Replication Lag Duration
@@ -286,5 +286,5 @@ template:
286
units: seconds
287
algorithm: absolute
288
dimensions:
289
- - selector: event_hubs.replication_lag_duration_maximum
289
+ - selector: replication_lag_duration_maximum
290
name: duration
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/express_route_circuit.yaml
+11
-11
@@ -90,7 +90,7 @@ template:
90
units: percentage
91
algorithm: absolute
92
dimensions:
93
- - selector: express_route_circuit.arp_availability_average
93
+ - selector: arp_availability_average
94
name: average
95
- id: am_azure_express_route_circuit__bgp_availability
96
title: Azure ExpressRoute Circuit BGP Availability
@@ -100,7 +100,7 @@ template:
100
units: percentage
101
algorithm: absolute
102
dimensions:
103
- - selector: express_route_circuit.bgp_availability_average
103
+ - selector: bgp_availability_average
104
name: average
105
- id: am_azure_express_route_circuit__throughput
106
title: Azure ExpressRoute Circuit Throughput
@@ -110,9 +110,9 @@ template:
110
units: bits/s
111
algorithm: absolute
112
dimensions:
113
- - selector: express_route_circuit.bits_in_per_second_average
113
+ - selector: bits_in_per_second_average
114
name: in
115
- - selector: express_route_circuit.bits_out_per_second_average
115
+ - selector: bits_out_per_second_average
116
name: out
117
- id: am_azure_express_route_circuit__bandwidth_utilization
118
title: Azure ExpressRoute Circuit Bandwidth Utilization
@@ -122,9 +122,9 @@ template:
122
units: percentage
123
algorithm: absolute
124
dimensions:
125
- - selector: express_route_circuit.ingress_bandwidth_utilization_maximum
125
+ - selector: ingress_bandwidth_utilization_maximum
126
name: ingress
127
- - selector: express_route_circuit.egress_bandwidth_utilization_maximum
127
+ - selector: egress_bandwidth_utilization_maximum
128
name: egress
129
- id: am_azure_express_route_circuit__qos_dropped_bits
130
title: Azure ExpressRoute Circuit QoS Dropped Bits
@@ -134,9 +134,9 @@ template:
134
units: bits/s
135
algorithm: absolute
136
dimensions:
137
- - selector: express_route_circuit.qos_drop_bits_in_per_second_average
137
+ - selector: qos_drop_bits_in_per_second_average
138
name: in
139
- - selector: express_route_circuit.qos_drop_bits_out_per_second_average
139
+ - selector: qos_drop_bits_out_per_second_average
140
name: out
141
- id: am_azure_express_route_circuit__fastpath_routes
142
title: Azure ExpressRoute Circuit FastPath Routes
@@ -146,7 +146,7 @@ template:
146
units: routes
147
algorithm: absolute
148
dimensions:
149
- - selector: express_route_circuit.fast_path_routes_count_for_circuit_maximum
149
+ - selector: fast_path_routes_count_for_circuit_maximum
150
name: maximum
151
- id: am_azure_express_route_circuit__global_reach_throughput
152
title: Azure ExpressRoute Circuit GlobalReach Throughput
@@ -156,7 +156,7 @@ template:
156
units: bits/s
157
algorithm: absolute
158
dimensions:
159
- - selector: express_route_circuit.global_reach_bits_in_per_second_average
159
+ - selector: global_reach_bits_in_per_second_average
160
name: in
161
- - selector: express_route_circuit.global_reach_bits_out_per_second_average
161
+ - selector: global_reach_bits_out_per_second_average
162
name: out
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/express_route_gateway.yaml
+11
-11
@@ -106,9 +106,9 @@ template:
106
units: bits/s
107
algorithm: absolute
108
dimensions:
109
- - selector: express_route_gateway.er_gateway_connection_bits_in_per_second_average
109
+ - selector: er_gateway_connection_bits_in_per_second_average
110
name: in
111
- - selector: express_route_gateway.er_gateway_connection_bits_out_per_second_average
111
+ - selector: er_gateway_connection_bits_out_per_second_average
112
name: out
113
- id: am_azure_express_route_gateway__gateway_throughput
114
title: Azure ExpressRoute Gateway Throughput
@@ -118,7 +118,7 @@ template:
118
units: bits/s
119
algorithm: absolute
120
dimensions:
121
- - selector: express_route_gateway.express_route_gateway_bits_per_second_average
121
+ - selector: express_route_gateway_bits_per_second_average
122
name: average
123
- id: am_azure_express_route_gateway__cpu_utilization
124
title: Azure ExpressRoute Gateway CPU Utilization
@@ -128,7 +128,7 @@ template:
128
units: percentage
129
algorithm: absolute
130
dimensions:
131
- - selector: express_route_gateway.express_route_gateway_cpu_utilization_average
131
+ - selector: express_route_gateway_cpu_utilization_average
132
name: average
133
- id: am_azure_express_route_gateway__packets
134
title: Azure ExpressRoute Gateway Packets
@@ -138,7 +138,7 @@ template:
138
units: packets/s
139
algorithm: absolute
140
dimensions:
141
- - selector: express_route_gateway.express_route_gateway_packets_per_second_average
141
+ - selector: express_route_gateway_packets_per_second_average
142
name: average
143
- id: am_azure_express_route_gateway__active_flows
144
title: Azure ExpressRoute Gateway Active Flows
@@ -148,7 +148,7 @@ template:
148
units: flows
149
algorithm: absolute
150
dimensions:
151
- - selector: express_route_gateway.express_route_gateway_active_flows_average
151
+ - selector: express_route_gateway_active_flows_average
152
name: average
153
- id: am_azure_express_route_gateway__routes_advertised
154
title: Azure ExpressRoute Gateway Routes Advertised to Peer
@@ -158,7 +158,7 @@ template:
158
units: routes
159
algorithm: absolute
160
dimensions:
161
- - selector: express_route_gateway.express_route_gateway_count_of_routes_advertised_to_peer_maximum
161
+ - selector: express_route_gateway_count_of_routes_advertised_to_peer_maximum
162
name: maximum
163
- id: am_azure_express_route_gateway__routes_learned
164
title: Azure ExpressRoute Gateway Routes Learned from Peer
@@ -168,7 +168,7 @@ template:
168
units: routes
169
algorithm: absolute
170
dimensions:
171
- - selector: express_route_gateway.express_route_gateway_count_of_routes_learned_from_peer_maximum
171
+ - selector: express_route_gateway_count_of_routes_learned_from_peer_maximum
172
name: maximum
173
- id: am_azure_express_route_gateway__route_changes
174
title: Azure ExpressRoute Gateway Route Changes
@@ -178,7 +178,7 @@ template:
178
units: changes/s
179
algorithm: incremental
180
dimensions:
181
- - selector: express_route_gateway.express_route_gateway_frequency_of_routes_changed_total
181
+ - selector: express_route_gateway_frequency_of_routes_changed_total
182
name: total
183
- id: am_azure_express_route_gateway__max_flows_creation_rate
184
title: Azure ExpressRoute Gateway Max Flow Creation Rate
@@ -188,7 +188,7 @@ template:
188
units: flows/s
189
algorithm: absolute
190
dimensions:
191
- - selector: express_route_gateway.express_route_gateway_max_flows_creation_rate_maximum
191
+ - selector: express_route_gateway_max_flows_creation_rate_maximum
192
name: maximum
193
- id: am_azure_express_route_gateway__vm_count
194
title: Azure ExpressRoute Gateway VMs in VNet
@@ -198,5 +198,5 @@ template:
198
units: VMs
199
algorithm: absolute
200
dimensions:
201
- - selector: express_route_gateway.express_route_gateway_number_of_vm_in_vnet_maximum
201
+ - selector: express_route_gateway_number_of_vm_in_vnet_maximum
202
name: maximum
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/firewall.yaml
+8
-8
@@ -72,7 +72,7 @@ template:
72
units: percentage
73
algorithm: absolute
74
dimensions:
75
- - selector: firewall.firewall_health_average
75
+ - selector: firewall_health_average
76
name: average
77
- id: am_azure_firewall__latency
78
title: Azure Firewall Latency Probe
@@ -82,7 +82,7 @@ template:
82
units: milliseconds
83
algorithm: absolute
84
dimensions:
85
- - selector: firewall.firewall_latency_png_average
85
+ - selector: firewall_latency_png_average
86
name: average
87
- id: am_azure_firewall__throughput
88
title: Azure Firewall Throughput
@@ -92,7 +92,7 @@ template:
92
units: bits/s
93
algorithm: absolute
94
dimensions:
95
- - selector: firewall.throughput_average
95
+ - selector: throughput_average
96
name: average
97
- id: am_azure_firewall__data_processed
98
title: Azure Firewall Data Processed
@@ -102,7 +102,7 @@ template:
102
units: bytes/s
103
algorithm: incremental
104
dimensions:
105
- - selector: firewall.data_processed_total
105
+ - selector: data_processed_total
106
name: total
107
- id: am_azure_firewall__rule_hits
108
title: Azure Firewall Rule Hits
@@ -112,9 +112,9 @@ template:
112
units: hits/s
113
algorithm: incremental
114
dimensions:
115
- - selector: firewall.application_rule_hit_total
115
+ - selector: application_rule_hit_total
116
name: application
117
- - selector: firewall.network_rule_hit_total
117
+ - selector: network_rule_hit_total
118
name: network
119
- id: am_azure_firewall__snat_port_utilization
120
title: Azure Firewall SNAT Port Utilization
@@ -124,7 +124,7 @@ template:
124
units: percentage
125
algorithm: absolute
126
dimensions:
127
- - selector: firewall.snat_port_utilization_average
127
+ - selector: snat_port_utilization_average
128
name: average
129
- id: am_azure_firewall__capacity
130
title: Azure Firewall Observed Capacity Units
@@ -134,5 +134,5 @@ template:
134
units: units
135
algorithm: absolute
136
dimensions:
137
- - selector: firewall.observed_capacity_average
137
+ - selector: observed_capacity_average
138
name: average
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/front_door.yaml
+20
-20
@@ -144,9 +144,9 @@ template:
144
units: milliseconds
145
algorithm: absolute
146
dimensions:
147
- - selector: front_door.total_latency_average
147
+ - selector: total_latency_average
148
name: total
149
- - selector: front_door.origin_latency_average
149
+ - selector: origin_latency_average
150
name: origin
151
- id: am_azure_front_door__origin_health
152
title: Azure Front Door Origin Health
@@ -156,7 +156,7 @@ template:
156
units: percentage
157
algorithm: absolute
158
dimensions:
159
- - selector: front_door.origin_health_percentage_average
159
+ - selector: origin_health_percentage_average
160
name: health
161
- id: am_azure_front_door__byte_hit_ratio
162
title: Azure Front Door Byte Hit Ratio
@@ -166,7 +166,7 @@ template:
166
units: percentage
167
algorithm: absolute
168
dimensions:
169
- - selector: front_door.byte_hit_ratio_average
169
+ - selector: byte_hit_ratio_average
170
name: hit_ratio
171
- id: am_azure_front_door__error_rate
172
title: Azure Front Door Error Rate
@@ -176,9 +176,9 @@ template:
176
units: percentage
177
algorithm: absolute
178
dimensions:
179
- - selector: front_door.percentage4xx_average
179
+ - selector: percentage4xx_average
180
name: 4xx
181
- - selector: front_door.percentage5xx_average
181
+ - selector: percentage5xx_average
182
name: 5xx
183
- id: am_azure_front_door__requests
184
title: Azure Front Door Requests
@@ -188,9 +188,9 @@ template:
188
units: requests/s
189
algorithm: incremental
190
dimensions:
191
- - selector: front_door.request_count_total
191
+ - selector: request_count_total
192
name: client
193
- - selector: front_door.origin_request_count_total
193
+ - selector: origin_request_count_total
194
name: origin
195
- id: am_azure_front_door__data_transfer
196
title: Azure Front Door Data Transfer
@@ -200,9 +200,9 @@ template:
200
units: bytes/s
201
algorithm: incremental
202
dimensions:
203
- - selector: front_door.request_size_total
203
+ - selector: request_size_total
204
name: request
205
- - selector: front_door.response_size_total
205
+ - selector: response_size_total
206
name: response
207
- id: am_azure_front_door__origin_shield_requests
208
title: Azure Front Door Origin Shield Requests
@@ -212,11 +212,11 @@ template:
212
units: requests/s
213
algorithm: incremental
214
dimensions:
215
- - selector: front_door.origin_shield_request_count_total
215
+ - selector: origin_shield_request_count_total
216
name: to_shield
217
- - selector: front_door.origin_shield_origin_request_count_total
217
+ - selector: origin_shield_origin_request_count_total
218
name: to_origin
219
- - selector: front_door.origin_shield_rate_limit_request_count_total
219
+ - selector: origin_shield_rate_limit_request_count_total
220
name: rate_limited
221
- id: am_azure_front_door__origin_shield_data_transfer
222
title: Azure Front Door Origin Shield Data Transfer
@@ -226,7 +226,7 @@ template:
226
units: bytes/s
227
algorithm: incremental
228
dimensions:
229
- - selector: front_door.origin_shield_request_size_total
229
+ - selector: origin_shield_request_size_total
230
name: request
231
- id: am_azure_front_door__waf_requests
232
title: Azure Front Door WAF Requests
@@ -236,7 +236,7 @@ template:
236
units: requests/s
237
algorithm: incremental
238
dimensions:
239
- - selector: front_door.web_application_firewall_request_count_total
239
+ - selector: web_application_firewall_request_count_total
240
name: total
241
- id: am_azure_front_door__waf_challenges
242
title: Azure Front Door WAF Challenges
@@ -246,9 +246,9 @@ template:
246
units: requests/s
247
algorithm: incremental
248
dimensions:
249
- - selector: front_door.web_application_firewall_captcha_request_count_total
249
+ - selector: web_application_firewall_captcha_request_count_total
250
name: captcha
251
- - selector: front_door.web_application_firewall_js_request_count_total
251
+ - selector: web_application_firewall_js_request_count_total
252
name: js_challenge
253
- id: am_azure_front_door__websocket_connections
254
title: Azure Front Door WebSocket Connections
@@ -258,9 +258,9 @@ template:
258
units: connections/s
259
algorithm: incremental
260
dimensions:
261
- - selector: front_door.web_socket_connections_total
261
+ - selector: web_socket_connections_total
262
name: requested
263
- - selector: front_door.active_web_socket_connections_total
263
+ - selector: active_web_socket_connections_total
264
name: active
265
- id: am_azure_front_door__websocket_duration
266
title: Azure Front Door WebSocket Connection Duration
@@ -270,5 +270,5 @@ template:
270
units: milliseconds
271
algorithm: absolute
272
dimensions:
273
- - selector: front_door.average_web_socket_connection_duration_average
273
+ - selector: average_web_socket_connection_duration_average
274
name: average
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/iot_hub.yaml
+67
-67
@@ -426,11 +426,11 @@ template:
426
units: messages/s
427
algorithm: incremental
428
dimensions:
429
- - selector: iot_hub.c2d_commands_egress_complete_success_total
429
+ - selector: c2d_commands_egress_complete_success_total
430
name: completed
431
- - selector: iot_hub.c2d_commands_egress_abandon_success_total
431
+ - selector: c2d_commands_egress_abandon_success_total
432
name: abandoned
433
- - selector: iot_hub.c2d_commands_egress_reject_success_total
433
+ - selector: c2d_commands_egress_reject_success_total
434
name: rejected
435
- id: am_azure_iot_hub__c2d_messages_expired
436
title: Azure IoT Hub Cloud-to-Device Messages Expired
@@ -440,7 +440,7 @@ template:
440
units: messages/s
441
algorithm: incremental
442
dimensions:
443
- - selector: iot_hub.c2d_messages_expired_total
443
+ - selector: c2d_messages_expired_total
444
name: expired
445
- id: am_azure_iot_hub__c2d_methods
446
title: Azure IoT Hub Direct Method Invocations
@@ -450,9 +450,9 @@ template:
450
units: invocations/s
451
algorithm: incremental
452
dimensions:
453
- - selector: iot_hub.c2d_methods_success_total
453
+ - selector: c2d_methods_success_total
454
name: successful
455
- - selector: iot_hub.c2d_methods_failure_total
455
+ - selector: c2d_methods_failure_total
456
name: failed
457
- id: am_azure_iot_hub__c2d_methods_request_size
458
title: Azure IoT Hub Direct Method Request Size
@@ -462,7 +462,7 @@ template:
462
units: bytes
463
algorithm: absolute
464
dimensions:
465
- - selector: iot_hub.c2d_methods_request_size_average
465
+ - selector: c2d_methods_request_size_average
466
name: average
467
- id: am_azure_iot_hub__c2d_methods_response_size
468
title: Azure IoT Hub Direct Method Response Size
@@ -472,7 +472,7 @@ template:
472
units: bytes
473
algorithm: absolute
474
dimensions:
475
- - selector: iot_hub.c2d_methods_response_size_average
475
+ - selector: c2d_methods_response_size_average
476
name: average
477
- id: am_azure_iot_hub__c2d_twin_reads
478
title: Azure IoT Hub Backend Twin Reads
@@ -482,9 +482,9 @@ template:
482
units: operations/s
483
algorithm: incremental
484
dimensions:
485
- - selector: iot_hub.c2d_twin_read_success_total
485
+ - selector: c2d_twin_read_success_total
486
name: successful
487
- - selector: iot_hub.c2d_twin_read_failure_total
487
+ - selector: c2d_twin_read_failure_total
488
name: failed
489
- id: am_azure_iot_hub__c2d_twin_read_size
490
title: Azure IoT Hub Backend Twin Read Size
@@ -494,7 +494,7 @@ template:
494
units: bytes
495
algorithm: absolute
496
dimensions:
497
- - selector: iot_hub.c2d_twin_read_size_average
497
+ - selector: c2d_twin_read_size_average
498
name: average
499
- id: am_azure_iot_hub__c2d_twin_updates
500
title: Azure IoT Hub Backend Twin Updates
@@ -504,9 +504,9 @@ template:
504
units: operations/s
505
algorithm: incremental
506
dimensions:
507
- - selector: iot_hub.c2d_twin_update_success_total
507
+ - selector: c2d_twin_update_success_total
508
name: successful
509
- - selector: iot_hub.c2d_twin_update_failure_total
509
+ - selector: c2d_twin_update_failure_total
510
name: failed
511
- id: am_azure_iot_hub__c2d_twin_update_size
512
title: Azure IoT Hub Backend Twin Update Size
@@ -516,7 +516,7 @@ template:
516
units: bytes
517
algorithm: absolute
518
dimensions:
519
- - selector: iot_hub.c2d_twin_update_size_average
519
+ - selector: c2d_twin_update_size_average
520
name: average
521
- id: am_azure_iot_hub__d2c_telemetry
522
title: Azure IoT Hub Device Telemetry
@@ -526,9 +526,9 @@ template:
526
units: messages/s
527
algorithm: incremental
528
dimensions:
529
- - selector: iot_hub.d2c_telemetry_ingress_all_protocol_total
529
+ - selector: d2c_telemetry_ingress_all_protocol_total
530
name: attempted
531
- - selector: iot_hub.d2c_telemetry_ingress_success_total
531
+ - selector: d2c_telemetry_ingress_success_total
532
name: sent
533
- id: am_azure_iot_hub__d2c_telemetry_throttle
534
title: Azure IoT Hub Telemetry Throttling Errors
@@ -538,7 +538,7 @@ template:
538
units: errors/s
539
algorithm: incremental
540
dimensions:
541
- - selector: iot_hub.d2c_telemetry_ingress_send_throttle_total
541
+ - selector: d2c_telemetry_ingress_send_throttle_total
542
name: throttled
543
- id: am_azure_iot_hub__d2c_twin_reads
544
title: Azure IoT Hub Device Twin Reads
@@ -548,9 +548,9 @@ template:
548
units: operations/s
549
algorithm: incremental
550
dimensions:
551
- - selector: iot_hub.d2c_twin_read_success_total
551
+ - selector: d2c_twin_read_success_total
552
name: successful
553
- - selector: iot_hub.d2c_twin_read_failure_total
553
+ - selector: d2c_twin_read_failure_total
554
name: failed
555
- id: am_azure_iot_hub__d2c_twin_read_size
556
title: Azure IoT Hub Device Twin Read Size
@@ -560,7 +560,7 @@ template:
560
units: bytes
561
algorithm: absolute
562
dimensions:
563
- - selector: iot_hub.d2c_twin_read_size_average
563
+ - selector: d2c_twin_read_size_average
564
name: average
565
- id: am_azure_iot_hub__d2c_twin_updates
566
title: Azure IoT Hub Device Twin Updates
@@ -570,9 +570,9 @@ template:
570
units: operations/s
571
algorithm: incremental
572
dimensions:
573
- - selector: iot_hub.d2c_twin_update_success_total
573
+ - selector: d2c_twin_update_success_total
574
name: successful
575
- - selector: iot_hub.d2c_twin_update_failure_total
575
+ - selector: d2c_twin_update_failure_total
576
name: failed
577
- id: am_azure_iot_hub__d2c_twin_update_size
578
title: Azure IoT Hub Device Twin Update Size
@@ -582,7 +582,7 @@ template:
582
units: bytes
583
algorithm: absolute
584
dimensions:
585
- - selector: iot_hub.d2c_twin_update_size_average
585
+ - selector: d2c_twin_update_size_average
586
name: average
587
- id: am_azure_iot_hub__routing_deliveries
588
title: Azure IoT Hub Routing Message Deliveries
@@ -592,15 +592,15 @@ template:
592
units: messages/s
593
algorithm: incremental
594
dimensions:
595
- - selector: iot_hub.d2c_telemetry_egress_success_total
595
+ - selector: d2c_telemetry_egress_success_total
596
name: delivered
597
- - selector: iot_hub.d2c_telemetry_egress_dropped_total
597
+ - selector: d2c_telemetry_egress_dropped_total
598
name: dropped
599
- - selector: iot_hub.d2c_telemetry_egress_orphaned_total
599
+ - selector: d2c_telemetry_egress_orphaned_total
600
name: orphaned
601
- - selector: iot_hub.d2c_telemetry_egress_invalid_total
601
+ - selector: d2c_telemetry_egress_invalid_total
602
name: invalid
603
- - selector: iot_hub.d2c_telemetry_egress_fallback_total
603
+ - selector: d2c_telemetry_egress_fallback_total
604
name: fallback
605
- id: am_azure_iot_hub__routing_delivery_by_endpoint
606
title: Azure IoT Hub Routing Deliveries by Endpoint
@@ -610,15 +610,15 @@ template:
610
units: messages/s
611
algorithm: incremental
612
dimensions:
613
- - selector: iot_hub.d2c_endpoints_egress_built_in_events_total
613
+ - selector: d2c_endpoints_egress_built_in_events_total
614
name: builtin_events
615
- - selector: iot_hub.d2c_endpoints_egress_event_hubs_total
615
+ - selector: d2c_endpoints_egress_event_hubs_total
616
name: event_hubs
617
- - selector: iot_hub.d2c_endpoints_egress_service_bus_queues_total
617
+ - selector: d2c_endpoints_egress_service_bus_queues_total
618
name: service_bus_queues
619
- - selector: iot_hub.d2c_endpoints_egress_service_bus_topics_total
619
+ - selector: d2c_endpoints_egress_service_bus_topics_total
620
name: service_bus_topics
621
- - selector: iot_hub.d2c_endpoints_egress_storage_total
621
+ - selector: d2c_endpoints_egress_storage_total
622
name: storage
623
- id: am_azure_iot_hub__routing_storage_blobs
624
title: Azure IoT Hub Routing Blobs Delivered to Storage
@@ -628,7 +628,7 @@ template:
628
units: blobs/s
629
algorithm: incremental
630
dimensions:
631
- - selector: iot_hub.d2c_endpoints_egress_storage_blobs_total
631
+ - selector: d2c_endpoints_egress_storage_blobs_total
632
name: blobs
633
- id: am_azure_iot_hub__routing_storage_data
634
title: Azure IoT Hub Routing Data Delivered to Storage
@@ -638,7 +638,7 @@ template:
638
units: bytes/s
639
algorithm: incremental
640
dimensions:
641
- - selector: iot_hub.d2c_endpoints_egress_storage_bytes_total
641
+ - selector: d2c_endpoints_egress_storage_bytes_total
642
name: bytes
643
- id: am_azure_iot_hub__routing_latency
644
title: Azure IoT Hub Routing Latency
@@ -648,15 +648,15 @@ template:
648
units: milliseconds
649
algorithm: absolute
650
dimensions:
651
- - selector: iot_hub.d2c_endpoints_latency_built_in_events_average
651
+ - selector: d2c_endpoints_latency_built_in_events_average
652
name: builtin_events
653
- - selector: iot_hub.d2c_endpoints_latency_event_hubs_average
653
+ - selector: d2c_endpoints_latency_event_hubs_average
654
name: event_hubs
655
- - selector: iot_hub.d2c_endpoints_latency_service_bus_queues_average
655
+ - selector: d2c_endpoints_latency_service_bus_queues_average
656
name: service_bus_queues
657
- - selector: iot_hub.d2c_endpoints_latency_service_bus_topics_average
657
+ - selector: d2c_endpoints_latency_service_bus_topics_average
658
name: service_bus_topics
659
- - selector: iot_hub.d2c_endpoints_latency_storage_average
659
+ - selector: d2c_endpoints_latency_storage_average
660
name: storage
661
- id: am_azure_iot_hub__routing_deliveries_preview
662
title: Azure IoT Hub Routing Deliveries (Preview)
@@ -666,7 +666,7 @@ template:
666
units: deliveries/s
667
algorithm: incremental
668
dimensions:
669
- - selector: iot_hub.routing_deliveries_total
669
+ - selector: routing_deliveries_total
670
name: deliveries
671
- id: am_azure_iot_hub__routing_delivery_latency_preview
672
title: Azure IoT Hub Routing Delivery Latency (Preview)
@@ -676,7 +676,7 @@ template:
676
units: milliseconds
677
algorithm: absolute
678
dimensions:
679
- - selector: iot_hub.routing_delivery_latency_average
679
+ - selector: routing_delivery_latency_average
680
name: average
681
- id: am_azure_iot_hub__routing_data_size_preview
682
title: Azure IoT Hub Routing Delivery Message Size (Preview)
@@ -686,7 +686,7 @@ template:
686
units: bytes/s
687
algorithm: incremental
688
dimensions:
689
- - selector: iot_hub.routing_data_size_in_bytes_delivered_total
689
+ - selector: routing_data_size_in_bytes_delivered_total
690
name: bytes
691
- id: am_azure_iot_hub__connections
692
title: Azure IoT Hub Successful Connections
@@ -696,7 +696,7 @@ template:
696
units: connections/s
697
algorithm: incremental
698
dimensions:
699
- - selector: iot_hub.connect_success_total
699
+ - selector: connect_success_total
700
name: successful
701
- id: am_azure_iot_hub__connected_devices
702
title: Azure IoT Hub Connected Devices
@@ -706,7 +706,7 @@ template:
706
units: devices
707
algorithm: absolute
708
dimensions:
709
- - selector: iot_hub.connected_device_count_average
709
+ - selector: connected_device_count_average
710
name: connected
711
- id: am_azure_iot_hub__total_devices
712
title: Azure IoT Hub Total Devices
@@ -716,7 +716,7 @@ template:
716
units: devices
717
algorithm: absolute
718
dimensions:
719
- - selector: iot_hub.total_device_count_average
719
+ - selector: total_device_count_average
720
name: total
721
- id: am_azure_iot_hub__daily_message_quota
722
title: Azure IoT Hub Daily Message Quota Used
@@ -726,7 +726,7 @@ template:
726
units: messages
727
algorithm: absolute
728
dimensions:
729
- - selector: iot_hub.daily_message_quota_used_average
729
+ - selector: daily_message_quota_used_average
730
name: used
731
- id: am_azure_iot_hub__data_usage
732
title: Azure IoT Hub Device Data Usage
@@ -736,9 +736,9 @@ template:
736
units: bytes/s
737
algorithm: incremental
738
dimensions:
739
- - selector: iot_hub.device_data_usage_total
739
+ - selector: device_data_usage_total
740
name: data_usage
741
- - selector: iot_hub.device_data_usage_v2_total
741
+ - selector: device_data_usage_v2_total
742
name: data_usage_v2
743
- id: am_azure_iot_hub__configurations
744
title: Azure IoT Hub Configuration Operations
@@ -748,7 +748,7 @@ template:
748
units: operations/s
749
algorithm: incremental
750
dimensions:
751
- - selector: iot_hub.configurations_total
751
+ - selector: configurations_total
752
name: operations
753
- id: am_azure_iot_hub__event_grid_deliveries
754
title: Azure IoT Hub Event Grid Deliveries
@@ -758,7 +758,7 @@ template:
758
units: deliveries/s
759
algorithm: incremental
760
dimensions:
761
- - selector: iot_hub.event_grid_deliveries_total
761
+ - selector: event_grid_deliveries_total
762
name: deliveries
763
- id: am_azure_iot_hub__event_grid_latency
764
title: Azure IoT Hub Event Grid Latency
@@ -768,7 +768,7 @@ template:
768
units: milliseconds
769
algorithm: absolute
770
dimensions:
771
- - selector: iot_hub.event_grid_latency_average
771
+ - selector: event_grid_latency_average
772
name: average
773
- id: am_azure_iot_hub__jobs_status
774
title: Azure IoT Hub Job Completions
@@ -778,9 +778,9 @@ template:
778
units: operations/s
779
algorithm: incremental
780
dimensions:
781
- - selector: iot_hub.jobs_completed_total
781
+ - selector: jobs_completed_total
782
name: completed
783
- - selector: iot_hub.jobs_failed_total
783
+ - selector: jobs_failed_total
784
name: failed
785
- id: am_azure_iot_hub__jobs_cancel
786
title: Azure IoT Hub Job Cancellations
@@ -790,9 +790,9 @@ template:
790
units: operations/s
791
algorithm: incremental
792
dimensions:
793
- - selector: iot_hub.jobs_cancel_job_success_total
793
+ - selector: jobs_cancel_job_success_total
794
name: successful
795
- - selector: iot_hub.jobs_cancel_job_failure_total
795
+ - selector: jobs_cancel_job_failure_total
796
name: failed
797
- id: am_azure_iot_hub__jobs_create_method
798
title: Azure IoT Hub Direct Method Job Creations
@@ -802,9 +802,9 @@ template:
802
units: operations/s
803
algorithm: incremental
804
dimensions:
805
- - selector: iot_hub.jobs_create_direct_method_job_success_total
805
+ - selector: jobs_create_direct_method_job_success_total
806
name: successful
807
- - selector: iot_hub.jobs_create_direct_method_job_failure_total
807
+ - selector: jobs_create_direct_method_job_failure_total
808
name: failed
809
- id: am_azure_iot_hub__jobs_create_twin_update
810
title: Azure IoT Hub Twin Update Job Creations
@@ -814,9 +814,9 @@ template:
814
units: operations/s
815
algorithm: incremental
816
dimensions:
817
- - selector: iot_hub.jobs_create_twin_update_job_success_total
817
+ - selector: jobs_create_twin_update_job_success_total
818
name: successful
819
- - selector: iot_hub.jobs_create_twin_update_job_failure_total
819
+ - selector: jobs_create_twin_update_job_failure_total
820
name: failed
821
- id: am_azure_iot_hub__jobs_list
822
title: Azure IoT Hub Job List Calls
@@ -826,9 +826,9 @@ template:
826
units: operations/s
827
algorithm: incremental
828
dimensions:
829
- - selector: iot_hub.jobs_list_jobs_success_total
829
+ - selector: jobs_list_jobs_success_total
830
name: successful
831
- - selector: iot_hub.jobs_list_jobs_failure_total
831
+ - selector: jobs_list_jobs_failure_total
832
name: failed
833
- id: am_azure_iot_hub__jobs_query
834
title: Azure IoT Hub Job Queries
@@ -838,9 +838,9 @@ template:
838
units: operations/s
839
algorithm: incremental
840
dimensions:
841
- - selector: iot_hub.jobs_query_jobs_success_total
841
+ - selector: jobs_query_jobs_success_total
842
name: successful
843
- - selector: iot_hub.jobs_query_jobs_failure_total
843
+ - selector: jobs_query_jobs_failure_total
844
name: failed
845
- id: am_azure_iot_hub__twin_queries
846
title: Azure IoT Hub Twin Queries
@@ -850,9 +850,9 @@ template:
850
units: queries/s
851
algorithm: incremental
852
dimensions:
853
- - selector: iot_hub.twin_queries_success_total
853
+ - selector: twin_queries_success_total
854
name: successful
855
- - selector: iot_hub.twin_queries_failure_total
855
+ - selector: twin_queries_failure_total
856
name: failed
857
- id: am_azure_iot_hub__twin_queries_result_size
858
title: Azure IoT Hub Twin Query Result Size
@@ -862,5 +862,5 @@ template:
862
units: bytes
863
algorithm: absolute
864
dimensions:
865
- - selector: iot_hub.twin_queries_result_size_average
865
+ - selector: twin_queries_result_size_average
866
name: average
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/key_vault.yaml
+5
-5
@@ -54,7 +54,7 @@ template:
54
units: percentage
55
algorithm: absolute
56
dimensions:
57
- - selector: key_vault.availability_average
57
+ - selector: availability_average
58
name: average
59
- id: am_azure_key_vault__api_latency
60
title: Azure Key Vault API Latency
@@ -64,7 +64,7 @@ template:
64
units: milliseconds
65
algorithm: absolute
66
dimensions:
67
- - selector: key_vault.service_api_latency_average
67
+ - selector: service_api_latency_average
68
name: average
69
- id: am_azure_key_vault__saturation
70
title: Azure Key Vault Saturation
@@ -74,7 +74,7 @@ template:
74
units: percentage
75
algorithm: absolute
76
dimensions:
77
- - selector: key_vault.saturation_shoebox_average
77
+ - selector: saturation_shoebox_average
78
name: average
79
- id: am_azure_key_vault__api_activity
80
title: Azure Key Vault API Activity
@@ -84,7 +84,7 @@ template:
84
units: operations/s
85
algorithm: incremental
86
dimensions:
87
- - selector: key_vault.service_api_hit_count
87
+ - selector: service_api_hit_count
88
name: hits
89
- - selector: key_vault.service_api_result_count
89
+ - selector: service_api_result_count
90
name: results
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/load_balancers.yaml
+9
-9
@@ -78,7 +78,7 @@ template:
78
units: percentage
79
algorithm: absolute
80
dimensions:
81
- - selector: load_balancers.vip_availability_average
81
+ - selector: vip_availability_average
82
name: average
83
- id: am_azure_load_balancers__dip_availability
84
title: Azure Load Balancer Health Probe Status
@@ -88,7 +88,7 @@ template:
88
units: percentage
89
algorithm: absolute
90
dimensions:
91
- - selector: load_balancers.dip_availability_average
91
+ - selector: dip_availability_average
92
name: average
93
- id: am_azure_load_balancers__global_backend_availability
94
title: Azure Load Balancer Global Backend Availability
@@ -98,7 +98,7 @@ template:
98
units: percentage
99
algorithm: absolute
100
dimensions:
101
- - selector: load_balancers.global_backend_availability_average
101
+ - selector: global_backend_availability_average
102
name: average
103
- id: am_azure_load_balancers__byte_throughput
104
title: Azure Load Balancer Byte Throughput
@@ -108,7 +108,7 @@ template:
108
units: bytes/s
109
algorithm: incremental
110
dimensions:
111
- - selector: load_balancers.byte_count_total
111
+ - selector: byte_count_total
112
name: total
113
- id: am_azure_load_balancers__packet_throughput
114
title: Azure Load Balancer Packet Throughput
@@ -118,7 +118,7 @@ template:
118
units: packets/s
119
algorithm: incremental
120
dimensions:
121
- - selector: load_balancers.packet_count_total
121
+ - selector: packet_count_total
122
name: total
123
- id: am_azure_load_balancers__syn_count
124
title: Azure Load Balancer SYN Packets
@@ -128,7 +128,7 @@ template:
128
units: packets/s
129
algorithm: incremental
130
dimensions:
131
- - selector: load_balancers.syn_count_total
131
+ - selector: syn_count_total
132
name: total
133
- id: am_azure_load_balancers__snat_connections
134
title: Azure Load Balancer SNAT Connections
@@ -138,7 +138,7 @@ template:
138
units: connections/s
139
algorithm: incremental
140
dimensions:
141
- - selector: load_balancers.snat_connection_count_total
141
+ - selector: snat_connection_count_total
142
name: total
143
- id: am_azure_load_balancers__snat_ports
144
title: Azure Load Balancer SNAT Port Usage
@@ -148,7 +148,7 @@ template:
148
units: ports
149
algorithm: absolute
150
dimensions:
151
- - selector: load_balancers.allocated_snat_ports_average
151
+ - selector: allocated_snat_ports_average
152
name: allocated
153
- - selector: load_balancers.used_snat_ports_average
153
+ - selector: used_snat_ports_average
154
name: used
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/log_analytics.yaml
+73
-73
@@ -454,7 +454,7 @@ template:
454
units: percentage
455
algorithm: absolute
456
dimensions:
457
- - selector: log_analytics.availability_rate_query_average
457
+ - selector: availability_rate_query_average
458
name: availability
459
- id: am_azure_log_analytics__ingestion_latency
460
title: Azure Log Analytics Ingestion Latency
@@ -464,11 +464,11 @@ template:
464
units: seconds
465
algorithm: absolute
466
dimensions:
467
- - selector: log_analytics.ingestion_time_average
467
+ - selector: ingestion_time_average
468
name: average
469
- - selector: log_analytics.ingestion_time_maximum
469
+ - selector: ingestion_time_maximum
470
name: maximum
471
- - selector: log_analytics.ingestion_time_minimum
471
+ - selector: ingestion_time_minimum
472
name: minimum
473
- id: am_azure_log_analytics__ingestion_volume
474
title: Azure Log Analytics Ingestion Volume
@@ -478,7 +478,7 @@ template:
478
units: records/s
479
algorithm: incremental
480
dimensions:
481
- - selector: log_analytics.ingestion_volume_count
481
+ - selector: ingestion_volume_count
482
name: records
483
- id: am_azure_log_analytics__queries
484
title: Azure Log Analytics Queries
@@ -488,9 +488,9 @@ template:
488
units: queries/s
489
algorithm: incremental
490
dimensions:
491
- - selector: log_analytics.query_count_count
491
+ - selector: query_count_count
492
name: total
493
- - selector: log_analytics.query_failure_count_count
493
+ - selector: query_failure_count_count
494
name: failed
495
- id: am_azure_log_analytics__export_data
496
title: Azure Log Analytics Exported Data
@@ -500,7 +500,7 @@ template:
500
units: bytes/s
501
algorithm: incremental
502
dimensions:
503
- - selector: log_analytics.bytes_exported_total
503
+ - selector: bytes_exported_total
504
name: exported
505
- id: am_azure_log_analytics__export_records
506
title: Azure Log Analytics Exported Records
@@ -510,7 +510,7 @@ template:
510
units: records/s
511
algorithm: incremental
512
dimensions:
513
- - selector: log_analytics.records_exported_total
513
+ - selector: records_exported_total
514
name: exported
515
- id: am_azure_log_analytics__export_failures
516
title: Azure Log Analytics Export Failures
@@ -520,7 +520,7 @@ template:
520
units: exports/s
521
algorithm: incremental
522
dimensions:
523
- - selector: log_analytics.export_failed_total
523
+ - selector: export_failed_total
524
name: failed
525
- id: am_azure_log_analytics__legacy_cpu_utilization
526
title: Azure Log Analytics Legacy CPU Utilization
@@ -530,13 +530,13 @@ template:
530
units: percentage
531
algorithm: absolute
532
dimensions:
533
- - selector: log_analytics.average_processor_time_average
533
+ - selector: average_processor_time_average
534
name: processor
535
- - selector: log_analytics.average_privileged_time_average
535
+ - selector: average_privileged_time_average
536
name: privileged
537
- - selector: log_analytics.average_user_time_average
537
+ - selector: average_user_time_average
538
name: user
539
- - selector: log_analytics.average_idle_time_average
539
+ - selector: average_idle_time_average
540
name: idle
541
- id: am_azure_log_analytics__legacy_cpu_detailed
542
title: Azure Log Analytics Legacy CPU Detailed
@@ -546,13 +546,13 @@ template:
546
units: percentage
547
algorithm: absolute
548
dimensions:
549
- - selector: log_analytics.average_dpc_time_average
549
+ - selector: average_dpc_time_average
550
name: dpc
551
- - selector: log_analytics.average_interrupt_time_average
551
+ - selector: average_interrupt_time_average
552
name: interrupt
553
- - selector: log_analytics.average_io_wait_time_average
553
+ - selector: average_io_wait_time_average
554
name: io_wait
555
- - selector: log_analytics.average_nice_time_average
555
+ - selector: average_nice_time_average
556
name: nice
557
- id: am_azure_log_analytics__legacy_cpu_pct
558
title: Azure Log Analytics Legacy CPU Pct Time
@@ -562,9 +562,9 @@ template:
562
units: percentage
563
algorithm: absolute
564
dimensions:
565
- - selector: log_analytics.average_pct_privileged_time_average
565
+ - selector: average_pct_privileged_time_average
566
name: privileged
567
- - selector: log_analytics.average_pct_user_time_average
567
+ - selector: average_pct_user_time_average
568
name: user
569
- id: am_azure_log_analytics__legacy_memory_utilization
570
title: Azure Log Analytics Legacy Memory Utilization
@@ -574,11 +574,11 @@ template:
574
units: percentage
575
algorithm: absolute
576
dimensions:
577
- - selector: log_analytics.average_available_memory_average
577
+ - selector: average_available_memory_average
578
name: available
579
- - selector: log_analytics.average_used_memory_average
579
+ - selector: average_used_memory_average
580
name: used
581
- - selector: log_analytics.average_committed_bytes_in_use_average
581
+ - selector: average_committed_bytes_in_use_average
582
name: committed
583
- id: am_azure_log_analytics__legacy_memory_available
584
title: Azure Log Analytics Legacy Available Memory
@@ -588,9 +588,9 @@ template:
588
units: megabytes
589
algorithm: absolute
590
dimensions:
591
- - selector: log_analytics.average_available_m_bytes_average
591
+ - selector: average_available_m_bytes_average
592
name: available_mbytes
593
- - selector: log_analytics.average_available_m_bytes_memory_average
593
+ - selector: average_available_m_bytes_memory_average
594
name: available_mbytes_memory
595
- id: am_azure_log_analytics__legacy_memory_used_kbytes
596
title: Azure Log Analytics Legacy Used Memory (kBytes)
@@ -600,7 +600,7 @@ template:
600
units: kilobytes
601
algorithm: absolute
602
dimensions:
603
- - selector: log_analytics.average_used_memory_k_bytes_average
603
+ - selector: average_used_memory_k_bytes_average
604
name: used
605
- id: am_azure_log_analytics__legacy_memory_used_mbytes
606
title: Azure Log Analytics Legacy Used Memory (MBytes)
@@ -610,7 +610,7 @@ template:
610
units: megabytes
611
algorithm: absolute
612
dimensions:
613
- - selector: log_analytics.average_used_memory_m_bytes_average
613
+ - selector: average_used_memory_m_bytes_average
614
name: used
615
- id: am_azure_log_analytics__legacy_memory_free
616
title: Azure Log Analytics Legacy Free Memory
@@ -620,11 +620,11 @@ template:
620
units: megabytes
621
algorithm: absolute
622
dimensions:
623
- - selector: log_analytics.average_free_physical_memory_average
623
+ - selector: average_free_physical_memory_average
624
name: physical
625
- - selector: log_analytics.average_free_virtual_memory_average
625
+ - selector: average_free_virtual_memory_average
626
name: virtual
627
- - selector: log_analytics.average_virtual_shared_memory_average
627
+ - selector: average_virtual_shared_memory_average
628
name: shared
629
- id: am_azure_log_analytics__legacy_swap_utilization
630
title: Azure Log Analytics Legacy Swap Utilization
@@ -634,9 +634,9 @@ template:
634
units: percentage
635
algorithm: absolute
636
dimensions:
637
- - selector: log_analytics.average_available_swap_space_average
637
+ - selector: average_available_swap_space_average
638
name: available
639
- - selector: log_analytics.average_used_swap_space_average
639
+ - selector: average_used_swap_space_average
640
name: used
641
- id: am_azure_log_analytics__legacy_swap_size
642
title: Azure Log Analytics Legacy Swap Size
@@ -646,9 +646,9 @@ template:
646
units: megabytes
647
algorithm: absolute
648
dimensions:
649
- - selector: log_analytics.average_available_m_bytes_swap_average
649
+ - selector: average_available_m_bytes_swap_average
650
name: available
651
- - selector: log_analytics.average_used_m_bytes_swap_space_average
651
+ - selector: average_used_m_bytes_swap_space_average
652
name: used
653
- id: am_azure_log_analytics__legacy_disk_space_utilization
654
title: Azure Log Analytics Legacy Disk Space Utilization
@@ -658,9 +658,9 @@ template:
658
units: percentage
659
algorithm: absolute
660
dimensions:
661
- - selector: log_analytics.average_free_space_average
661
+ - selector: average_free_space_average
662
name: free
663
- - selector: log_analytics.average_used_space_average
663
+ - selector: average_used_space_average
664
name: used
665
- id: am_azure_log_analytics__legacy_disk_inodes
666
title: Azure Log Analytics Legacy Disk Inodes
@@ -670,9 +670,9 @@ template:
670
units: percentage
671
algorithm: absolute
672
dimensions:
673
- - selector: log_analytics.average_free_inodes_average
673
+ - selector: average_free_inodes_average
674
name: free
675
- - selector: log_analytics.average_used_inodes_average
675
+ - selector: average_used_inodes_average
676
name: used
677
- id: am_azure_log_analytics__legacy_disk_free
678
title: Azure Log Analytics Legacy Disk Free Space
@@ -682,7 +682,7 @@ template:
682
units: megabytes
683
algorithm: absolute
684
dimensions:
685
- - selector: log_analytics.average_free_megabytes_average
685
+ - selector: average_free_megabytes_average
686
name: free
687
- id: am_azure_log_analytics__legacy_disk_io_throughput
688
title: Azure Log Analytics Legacy Disk I/O Throughput
@@ -692,13 +692,13 @@ template:
692
units: bytes/s
693
algorithm: absolute
694
dimensions:
695
- - selector: log_analytics.average_disk_read_bytes_sec_average
695
+ - selector: average_disk_read_bytes_sec_average
696
name: read
697
- - selector: log_analytics.average_disk_write_bytes_sec_average
697
+ - selector: average_disk_write_bytes_sec_average
698
name: write
699
- - selector: log_analytics.average_logical_disk_bytes_sec_average
699
+ - selector: average_logical_disk_bytes_sec_average
700
name: logical
701
- - selector: log_analytics.average_physical_disk_bytes_sec_average
701
+ - selector: average_physical_disk_bytes_sec_average
702
name: physical
703
- id: am_azure_log_analytics__legacy_disk_io_operations
704
title: Azure Log Analytics Legacy Disk I/O Operations
@@ -708,11 +708,11 @@ template:
708
units: operations/s
709
algorithm: absolute
710
dimensions:
711
- - selector: log_analytics.average_disk_reads_sec_average
711
+ - selector: average_disk_reads_sec_average
712
name: reads
713
- - selector: log_analytics.average_disk_writes_sec_average
713
+ - selector: average_disk_writes_sec_average
714
name: writes
715
- - selector: log_analytics.average_disk_transfers_sec_average
715
+ - selector: average_disk_transfers_sec_average
716
name: transfers
717
- id: am_azure_log_analytics__legacy_disk_io_latency
718
title: Azure Log Analytics Legacy Disk I/O Latency
@@ -722,11 +722,11 @@ template:
722
units: seconds
723
algorithm: absolute
724
dimensions:
725
- - selector: log_analytics.average_avg_disk_sec_read_average
725
+ - selector: average_avg_disk_sec_read_average
726
name: read
727
- - selector: log_analytics.average_avg_disk_sec_write_average
727
+ - selector: average_avg_disk_sec_write_average
728
name: write
729
- - selector: log_analytics.average_avg_disk_sec_transfer_average
729
+ - selector: average_avg_disk_sec_transfer_average
730
name: transfer
731
- id: am_azure_log_analytics__legacy_disk_queue
732
title: Azure Log Analytics Legacy Disk Queue Length
@@ -736,7 +736,7 @@ template:
736
units: operations
737
algorithm: absolute
738
dimensions:
739
- - selector: log_analytics.average_current_disk_queue_length_average
739
+ - selector: average_current_disk_queue_length_average
740
name: queue_length
741
- id: am_azure_log_analytics__legacy_paging
742
title: Azure Log Analytics Legacy Paging Activity
@@ -746,11 +746,11 @@ template:
746
units: pages/s
747
algorithm: absolute
748
dimensions:
749
- - selector: log_analytics.average_page_reads_sec_average
749
+ - selector: average_page_reads_sec_average
750
name: reads
751
- - selector: log_analytics.average_page_writes_sec_average
751
+ - selector: average_page_writes_sec_average
752
name: writes
753
- - selector: log_analytics.average_pages_sec_average
753
+ - selector: average_pages_sec_average
754
name: total
755
- id: am_azure_log_analytics__legacy_paging_files
756
title: Azure Log Analytics Legacy Paging Files
@@ -760,9 +760,9 @@ template:
760
units: megabytes
761
algorithm: absolute
762
dimensions:
763
- - selector: log_analytics.average_free_space_in_paging_files_average
763
+ - selector: average_free_space_in_paging_files_average
764
name: free
765
- - selector: log_analytics.average_size_stored_in_paging_files_average
765
+ - selector: average_size_stored_in_paging_files_average
766
name: stored
767
- id: am_azure_log_analytics__legacy_network_throughput_win
768
title: Azure Log Analytics Legacy Network Throughput (Windows)
@@ -772,11 +772,11 @@ template:
772
units: bytes/s
773
algorithm: absolute
774
dimensions:
775
- - selector: log_analytics.average_bytes_received_sec_average
775
+ - selector: average_bytes_received_sec_average
776
name: received
777
- - selector: log_analytics.average_bytes_sent_sec_average
777
+ - selector: average_bytes_sent_sec_average
778
name: sent
779
- - selector: log_analytics.average_bytes_total_sec_average
779
+ - selector: average_bytes_total_sec_average
780
name: total
781
- id: am_azure_log_analytics__legacy_network_traffic
782
title: Azure Log Analytics Legacy Network Traffic
@@ -786,11 +786,11 @@ template:
786
units: bytes
787
algorithm: absolute
788
dimensions:
789
- - selector: log_analytics.average_total_bytes_average
789
+ - selector: average_total_bytes_average
790
name: total
791
- - selector: log_analytics.average_total_bytes_received_average
791
+ - selector: average_total_bytes_received_average
792
name: received
793
- - selector: log_analytics.average_total_bytes_transmitted_average
793
+ - selector: average_total_bytes_transmitted_average
794
name: transmitted
795
- id: am_azure_log_analytics__legacy_network_packets
796
title: Azure Log Analytics Legacy Network Packets
@@ -800,9 +800,9 @@ template:
800
units: packets
801
algorithm: absolute
802
dimensions:
803
- - selector: log_analytics.average_total_packets_received_average
803
+ - selector: average_total_packets_received_average
804
name: received
805
- - selector: log_analytics.average_total_packets_transmitted_average
805
+ - selector: average_total_packets_transmitted_average
806
name: transmitted
807
- id: am_azure_log_analytics__legacy_network_errors
808
title: Azure Log Analytics Legacy Network Errors
@@ -812,11 +812,11 @@ template:
812
units: errors
813
algorithm: absolute
814
dimensions:
815
- - selector: log_analytics.average_total_rx_errors_average
815
+ - selector: average_total_rx_errors_average
816
name: rx
817
- - selector: log_analytics.average_total_tx_errors_average
817
+ - selector: average_total_tx_errors_average
818
name: tx
819
- - selector: log_analytics.average_total_collisions_average
819
+ - selector: average_total_collisions_average
820
name: collisions
821
- id: am_azure_log_analytics__legacy_system
822
title: Azure Log Analytics Legacy System
@@ -826,7 +826,7 @@ template:
826
units: processes
827
algorithm: absolute
828
dimensions:
829
- - selector: log_analytics.average_processes_average
829
+ - selector: average_processes_average
830
name: processes
831
- id: am_azure_log_analytics__legacy_processor_queue
832
title: Azure Log Analytics Legacy Processor Queue
@@ -836,7 +836,7 @@ template:
836
units: threads
837
algorithm: absolute
838
dimensions:
839
- - selector: log_analytics.average_processor_queue_length_average
839
+ - selector: average_processor_queue_length_average
840
name: queue_length
841
- id: am_azure_log_analytics__legacy_uptime
842
title: Azure Log Analytics Legacy Uptime
@@ -846,7 +846,7 @@ template:
846
units: seconds
847
algorithm: absolute
848
dimensions:
849
- - selector: log_analytics.average_uptime_average
849
+ - selector: average_uptime_average
850
name: uptime
851
- id: am_azure_log_analytics__legacy_users
852
title: Azure Log Analytics Legacy Users
@@ -856,7 +856,7 @@ template:
856
units: users
857
algorithm: absolute
858
dimensions:
859
- - selector: log_analytics.average_users_average
859
+ - selector: average_users_average
860
name: users
861
- id: am_azure_log_analytics__legacy_events
862
title: Azure Log Analytics Legacy Events
@@ -866,7 +866,7 @@ template:
866
units: events/s
867
algorithm: absolute
868
dimensions:
869
- - selector: log_analytics.event_average
869
+ - selector: event_average
870
name: events
871
- id: am_azure_log_analytics__legacy_heartbeat
872
title: Azure Log Analytics Legacy Heartbeat
@@ -876,7 +876,7 @@ template:
876
units: heartbeats/s
877
algorithm: incremental
878
dimensions:
879
- - selector: log_analytics.heartbeat_total
879
+ - selector: heartbeat_total
880
name: heartbeats
881
- id: am_azure_log_analytics__legacy_updates
882
title: Azure Log Analytics Legacy Updates
@@ -886,5 +886,5 @@ template:
886
units: updates
887
algorithm: absolute
888
dimensions:
889
- - selector: log_analytics.update_average
889
+ - selector: update_average
890
name: updates
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/logic_apps.yaml
+37
-37
@@ -246,15 +246,15 @@ template:
246
units: runs/s
247
algorithm: incremental
248
dimensions:
249
- - selector: logic_apps.runs_started_total
249
+ - selector: runs_started_total
250
name: started
251
- - selector: logic_apps.runs_completed_total
251
+ - selector: runs_completed_total
252
name: completed
253
- - selector: logic_apps.runs_succeeded_total
253
+ - selector: runs_succeeded_total
254
name: succeeded
255
- - selector: logic_apps.runs_failed_total
255
+ - selector: runs_failed_total
256
name: failed
257
- - selector: logic_apps.runs_cancelled_total
257
+ - selector: runs_cancelled_total
258
name: cancelled
259
- id: am_azure_logic_apps__run_latency
260
title: Azure Logic Apps Run Latency
@@ -264,9 +264,9 @@ template:
264
units: seconds
265
algorithm: absolute
266
dimensions:
267
- - selector: logic_apps.run_latency_average
267
+ - selector: run_latency_average
268
name: all
269
- - selector: logic_apps.run_success_latency_average
269
+ - selector: run_success_latency_average
270
name: success
271
- id: am_azure_logic_apps__run_failure_rate
272
title: Azure Logic Apps Run Failure Rate
@@ -276,7 +276,7 @@ template:
276
units: percentage
277
algorithm: absolute
278
dimensions:
279
- - selector: logic_apps.run_failure_percentage_total
279
+ - selector: run_failure_percentage_total
280
name: failure_rate
281
- id: am_azure_logic_apps__run_throttling
282
title: Azure Logic Apps Run Throttling
@@ -286,9 +286,9 @@ template:
286
units: events/s
287
algorithm: incremental
288
dimensions:
289
- - selector: logic_apps.run_throttled_events_total
289
+ - selector: run_throttled_events_total
290
name: during_run
291
- - selector: logic_apps.run_start_throttled_events_total
291
+ - selector: run_start_throttled_events_total
292
name: at_start
293
- id: am_azure_logic_apps__action_lifecycle
294
title: Azure Logic Apps Action Lifecycle
@@ -298,15 +298,15 @@ template:
298
units: actions/s
299
algorithm: incremental
300
dimensions:
301
- - selector: logic_apps.actions_started_total
301
+ - selector: actions_started_total
302
name: started
303
- - selector: logic_apps.actions_completed_total
303
+ - selector: actions_completed_total
304
name: completed
305
- - selector: logic_apps.actions_succeeded_total
305
+ - selector: actions_succeeded_total
306
name: succeeded
307
- - selector: logic_apps.actions_failed_total
307
+ - selector: actions_failed_total
308
name: failed
309
- - selector: logic_apps.actions_skipped_total
309
+ - selector: actions_skipped_total
310
name: skipped
311
- id: am_azure_logic_apps__action_latency
312
title: Azure Logic Apps Action Latency
@@ -316,9 +316,9 @@ template:
316
units: seconds
317
algorithm: absolute
318
dimensions:
319
- - selector: logic_apps.action_latency_average
319
+ - selector: action_latency_average
320
name: all
321
- - selector: logic_apps.action_success_latency_average
321
+ - selector: action_success_latency_average
322
name: success
323
- id: am_azure_logic_apps__action_throttling
324
title: Azure Logic Apps Action Throttling
@@ -328,7 +328,7 @@ template:
328
units: events/s
329
algorithm: incremental
330
dimensions:
331
- - selector: logic_apps.action_throttled_events_total
331
+ - selector: action_throttled_events_total
332
name: total
333
- id: am_azure_logic_apps__trigger_lifecycle
334
title: Azure Logic Apps Trigger Lifecycle
@@ -338,17 +338,17 @@ template:
338
units: triggers/s
339
algorithm: incremental
340
dimensions:
341
- - selector: logic_apps.triggers_started_total
341
+ - selector: triggers_started_total
342
name: started
343
- - selector: logic_apps.triggers_completed_total
343
+ - selector: triggers_completed_total
344
name: completed
345
- - selector: logic_apps.triggers_succeeded_total
345
+ - selector: triggers_succeeded_total
346
name: succeeded
347
- - selector: logic_apps.triggers_fired_total
347
+ - selector: triggers_fired_total
348
name: fired
349
- - selector: logic_apps.triggers_failed_total
349
+ - selector: triggers_failed_total
350
name: failed
351
- - selector: logic_apps.triggers_skipped_total
351
+ - selector: triggers_skipped_total
352
name: skipped
353
- id: am_azure_logic_apps__trigger_latency
354
title: Azure Logic Apps Trigger Latency
@@ -358,11 +358,11 @@ template:
358
units: seconds
359
algorithm: absolute
360
dimensions:
361
- - selector: logic_apps.trigger_latency_average
361
+ - selector: trigger_latency_average
362
name: all
363
- - selector: logic_apps.trigger_fire_latency_average
363
+ - selector: trigger_fire_latency_average
364
name: fire
365
- - selector: logic_apps.trigger_success_latency_average
365
+ - selector: trigger_success_latency_average
366
name: success
367
- id: am_azure_logic_apps__trigger_throttling
368
title: Azure Logic Apps Trigger Throttling
@@ -372,7 +372,7 @@ template:
372
units: events/s
373
algorithm: incremental
374
dimensions:
375
- - selector: logic_apps.trigger_throttled_events_total
375
+ - selector: trigger_throttled_events_total
376
name: total
377
- id: am_azure_logic_apps__billable_executions
378
title: Azure Logic Apps Billable Executions
@@ -382,11 +382,11 @@ template:
382
units: executions/s
383
algorithm: incremental
384
dimensions:
385
- - selector: logic_apps.total_billable_executions_total
385
+ - selector: total_billable_executions_total
386
name: total
387
- - selector: logic_apps.billable_action_executions_total
387
+ - selector: billable_action_executions_total
388
name: actions
389
- - selector: logic_apps.billable_trigger_executions_total
389
+ - selector: billable_trigger_executions_total
390
name: triggers
391
- id: am_azure_logic_apps__billing_by_type
392
title: Azure Logic Apps Billing by Type
@@ -396,11 +396,11 @@ template:
396
units: operations/s
397
algorithm: incremental
398
dimensions:
399
- - selector: logic_apps.billing_usage_native_operation_total
399
+ - selector: billing_usage_native_operation_total
400
name: native
401
- - selector: logic_apps.billing_usage_standard_connector_total
401
+ - selector: billing_usage_standard_connector_total
402
name: standard_connector
403
- - selector: logic_apps.billing_usage_storage_consumption_total
403
+ - selector: billing_usage_storage_consumption_total
404
name: storage
405
- id: am_azure_logic_apps__agent
406
title: Azure Logic Apps AI Agent Activity
@@ -410,9 +410,9 @@ template:
410
units: events/s
411
algorithm: incremental
412
dimensions:
413
- - selector: logic_apps.agent_loop_execution_total
413
+ - selector: agent_loop_execution_total
414
name: loop_executions
415
- - selector: logic_apps.completion_token_overflow_usage_total
415
+ - selector: completion_token_overflow_usage_total
416
name: completion_overflow
417
- - selector: logic_apps.prompt_token_overflow_usage_total
417
+ - selector: prompt_token_overflow_usage_total
418
name: prompt_overflow
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/machine_learning.yaml
+65
-65
@@ -414,9 +414,9 @@ template:
414
units: events/s
415
algorithm: incremental
416
dimensions:
417
- - selector: machine_learning.agents_total
417
+ - selector: agents_total
418
name: agent_events
419
- - selector: machine_learning.threads_total
419
+ - selector: threads_total
420
name: thread_events
421
- id: am_azure_machine_learning__agent_messages
422
title: Azure Machine Learning Agent Messages
@@ -426,7 +426,7 @@ template:
426
units: messages/s
427
algorithm: incremental
428
dimensions:
429
- - selector: machine_learning.messages_total
429
+ - selector: messages_total
430
name: messages
431
- id: am_azure_machine_learning__agent_runs
432
title: Azure Machine Learning Agent Runs
@@ -436,7 +436,7 @@ template:
436
units: runs/s
437
algorithm: incremental
438
dimensions:
439
- - selector: machine_learning.runs_total
439
+ - selector: runs_total
440
name: runs
441
- id: am_azure_machine_learning__agent_tokens
442
title: Azure Machine Learning Agent Tokens
@@ -446,7 +446,7 @@ template:
446
units: tokens/s
447
algorithm: incremental
448
dimensions:
449
- - selector: machine_learning.tokens_total
449
+ - selector: tokens_total
450
name: tokens
451
- id: am_azure_machine_learning__agent_tool_calls
452
title: Azure Machine Learning Agent Tool Calls
@@ -456,7 +456,7 @@ template:
456
units: calls/s
457
algorithm: incremental
458
dimensions:
459
- - selector: machine_learning.tool_calls_total
459
+ - selector: tool_calls_total
460
name: tool_calls
461
- id: am_azure_machine_learning__agent_indexed_files
462
title: Azure Machine Learning Agent Indexed Files
@@ -466,7 +466,7 @@ template:
466
units: files/s
467
algorithm: incremental
468
dimensions:
469
- - selector: machine_learning.indexed_files_total
469
+ - selector: indexed_files_total
470
name: indexed_files
471
- id: am_azure_machine_learning__model_deployments
472
title: Azure Machine Learning Model Deployments
@@ -476,11 +476,11 @@ template:
476
units: deployments/s
477
algorithm: incremental
478
dimensions:
479
- - selector: machine_learning.model_deploy_started_total
479
+ - selector: model_deploy_started_total
480
name: started
481
- - selector: machine_learning.model_deploy_succeeded_total
481
+ - selector: model_deploy_succeeded_total
482
name: succeeded
483
- - selector: machine_learning.model_deploy_failed_total
483
+ - selector: model_deploy_failed_total
484
name: failed
485
- id: am_azure_machine_learning__model_registrations
486
title: Azure Machine Learning Model Registrations
@@ -490,9 +490,9 @@ template:
490
units: registrations/s
491
algorithm: incremental
492
dimensions:
493
- - selector: machine_learning.model_register_succeeded_total
493
+ - selector: model_register_succeeded_total
494
name: succeeded
495
- - selector: machine_learning.model_register_failed_total
495
+ - selector: model_register_failed_total
496
name: failed
497
- id: am_azure_machine_learning__cluster_cores
498
title: Azure Machine Learning Cluster Cores
@@ -502,15 +502,15 @@ template:
502
units: cores
503
algorithm: absolute
504
dimensions:
505
- - selector: machine_learning.active_cores_average
505
+ - selector: active_cores_average
506
name: active
507
- - selector: machine_learning.idle_cores_average
507
+ - selector: idle_cores_average
508
name: idle
509
- - selector: machine_learning.leaving_cores_average
509
+ - selector: leaving_cores_average
510
name: leaving
511
- - selector: machine_learning.preempted_cores_average
511
+ - selector: preempted_cores_average
512
name: preempted
513
- - selector: machine_learning.unusable_cores_average
513
+ - selector: unusable_cores_average
514
name: unusable
515
- id: am_azure_machine_learning__total_cores
516
title: Azure Machine Learning Total Cores
@@ -520,7 +520,7 @@ template:
520
units: cores
521
algorithm: absolute
522
dimensions:
523
- - selector: machine_learning.total_cores_average
523
+ - selector: total_cores_average
524
name: total
525
- id: am_azure_machine_learning__cluster_nodes
526
title: Azure Machine Learning Cluster Nodes
@@ -530,15 +530,15 @@ template:
530
units: nodes
531
algorithm: absolute
532
dimensions:
533
- - selector: machine_learning.active_nodes_average
533
+ - selector: active_nodes_average
534
name: active
535
- - selector: machine_learning.idle_nodes_average
535
+ - selector: idle_nodes_average
536
name: idle
537
- - selector: machine_learning.leaving_nodes_average
537
+ - selector: leaving_nodes_average
538
name: leaving
539
- - selector: machine_learning.preempted_nodes_average
539
+ - selector: preempted_nodes_average
540
name: preempted
541
- - selector: machine_learning.unusable_nodes_average
541
+ - selector: unusable_nodes_average
542
name: unusable
543
- id: am_azure_machine_learning__total_nodes
544
title: Azure Machine Learning Total Nodes
@@ -548,7 +548,7 @@ template:
548
units: nodes
549
algorithm: absolute
550
dimensions:
551
- - selector: machine_learning.total_nodes_average
551
+ - selector: total_nodes_average
552
name: total
553
- id: am_azure_machine_learning__quota_utilization
554
title: Azure Machine Learning Quota Utilization
@@ -558,7 +558,7 @@ template:
558
units: percentage
559
algorithm: absolute
560
dimensions:
561
- - selector: machine_learning.quota_utilization_percentage_average
561
+ - selector: quota_utilization_percentage_average
562
name: utilization
563
- id: am_azure_machine_learning__cpu_utilization
564
title: Azure Machine Learning CPU Utilization
@@ -568,9 +568,9 @@ template:
568
units: percentage
569
algorithm: absolute
570
dimensions:
571
- - selector: machine_learning.cpu_utilization_average
571
+ - selector: cpu_utilization_average
572
name: cluster_cpu
573
- - selector: machine_learning.cpu_utilization_percentage_average
573
+ - selector: cpu_utilization_percentage_average
574
name: node_cpu
575
- id: am_azure_machine_learning__cpu_millicores
576
title: Azure Machine Learning CPU Millicores
@@ -580,9 +580,9 @@ template:
580
units: millicores
581
algorithm: absolute
582
dimensions:
583
- - selector: machine_learning.cpu_utilization_millicores_average
583
+ - selector: cpu_utilization_millicores_average
584
name: used
585
- - selector: machine_learning.cpu_capacity_millicores_average
585
+ - selector: cpu_capacity_millicores_average
586
name: capacity
587
- id: am_azure_machine_learning__cpu_memory_utilization
588
title: Azure Machine Learning CPU Memory Utilization
@@ -592,7 +592,7 @@ template:
592
units: percentage
593
algorithm: absolute
594
dimensions:
595
- - selector: machine_learning.cpu_memory_utilization_percentage_average
595
+ - selector: cpu_memory_utilization_percentage_average
596
name: utilization
597
- id: am_azure_machine_learning__cpu_memory_megabytes
598
title: Azure Machine Learning CPU Memory
@@ -602,9 +602,9 @@ template:
602
units: megabytes
603
algorithm: absolute
604
dimensions:
605
- - selector: machine_learning.cpu_memory_utilization_megabytes_average
605
+ - selector: cpu_memory_utilization_megabytes_average
606
name: used
607
- - selector: machine_learning.cpu_memory_capacity_megabytes_average
607
+ - selector: cpu_memory_capacity_megabytes_average
608
name: capacity
609
- id: am_azure_machine_learning__gpu_utilization
610
title: Azure Machine Learning GPU Utilization
@@ -614,9 +614,9 @@ template:
614
units: percentage
615
algorithm: absolute
616
dimensions:
617
- - selector: machine_learning.gpu_utilization_average
617
+ - selector: gpu_utilization_average
618
name: cluster_gpu
619
- - selector: machine_learning.gpu_utilization_percentage_average
619
+ - selector: gpu_utilization_percentage_average
620
name: node_gpu
621
- id: am_azure_machine_learning__gpu_milligpus
622
title: Azure Machine Learning GPU MilliGPUs
@@ -626,9 +626,9 @@ template:
626
units: milliGPUs
627
algorithm: absolute
628
dimensions:
629
- - selector: machine_learning.gpu_utilization_milli_gpus_average
629
+ - selector: gpu_utilization_milli_gpus_average
630
name: used
631
- - selector: machine_learning.gpu_capacity_milli_gpus_average
631
+ - selector: gpu_capacity_milli_gpus_average
632
name: capacity
633
- id: am_azure_machine_learning__gpu_memory_utilization
634
title: Azure Machine Learning GPU Memory Utilization
@@ -638,9 +638,9 @@ template:
638
units: percentage
639
algorithm: absolute
640
dimensions:
641
- - selector: machine_learning.gpu_memory_utilization_average
641
+ - selector: gpu_memory_utilization_average
642
name: cluster_gpu_memory
643
- - selector: machine_learning.gpu_memory_utilization_percentage_average
643
+ - selector: gpu_memory_utilization_percentage_average
644
name: node_gpu_memory
645
- id: am_azure_machine_learning__gpu_memory_megabytes
646
title: Azure Machine Learning GPU Memory
@@ -650,9 +650,9 @@ template:
650
units: megabytes
651
algorithm: absolute
652
dimensions:
653
- - selector: machine_learning.gpu_memory_utilization_megabytes_average
653
+ - selector: gpu_memory_utilization_megabytes_average
654
name: used
655
- - selector: machine_learning.gpu_memory_capacity_megabytes_average
655
+ - selector: gpu_memory_capacity_megabytes_average
656
name: capacity
657
- id: am_azure_machine_learning__gpu_energy
658
title: Azure Machine Learning GPU Energy
@@ -662,7 +662,7 @@ template:
662
units: joules/s
663
algorithm: incremental
664
dimensions:
665
- - selector: machine_learning.gpu_energy_joules_total
665
+ - selector: gpu_energy_joules_total
666
name: energy
667
- id: am_azure_machine_learning__disk_usage
668
title: Azure Machine Learning Disk Usage
@@ -672,9 +672,9 @@ template:
672
units: megabytes
673
algorithm: absolute
674
dimensions:
675
- - selector: machine_learning.disk_used_megabytes_average
675
+ - selector: disk_used_megabytes_average
676
name: used
677
- - selector: machine_learning.disk_avail_megabytes_average
677
+ - selector: disk_avail_megabytes_average
678
name: available
679
- id: am_azure_machine_learning__disk_io
680
title: Azure Machine Learning Disk I/O
@@ -684,9 +684,9 @@ template:
684
units: megabytes/s
685
algorithm: incremental
686
dimensions:
687
- - selector: machine_learning.disk_read_megabytes_total
687
+ - selector: disk_read_megabytes_total
688
name: read
689
- - selector: machine_learning.disk_write_megabytes_total
689
+ - selector: disk_write_megabytes_total
690
name: write
691
- id: am_azure_machine_learning__network_traffic
692
title: Azure Machine Learning Network Traffic
@@ -696,9 +696,9 @@ template:
696
units: megabytes/s
697
algorithm: incremental
698
dimensions:
699
- - selector: machine_learning.network_input_megabytes_total
699
+ - selector: network_input_megabytes_total
700
name: in
701
- - selector: machine_learning.network_output_megabytes_total
701
+ - selector: network_output_megabytes_total
702
name: out
703
- id: am_azure_machine_learning__infiniband_traffic
704
title: Azure Machine Learning InfiniBand Traffic
@@ -708,9 +708,9 @@ template:
708
units: megabytes/s
709
algorithm: incremental
710
dimensions:
711
- - selector: machine_learning.ib_receive_megabytes_total
711
+ - selector: ib_receive_megabytes_total
712
name: receive
713
- - selector: machine_learning.ib_transmit_megabytes_total
713
+ - selector: ib_transmit_megabytes_total
714
name: transmit
715
- id: am_azure_machine_learning__storage_api_calls
716
title: Azure Machine Learning Storage API Calls
@@ -720,9 +720,9 @@ template:
720
units: calls/s
721
algorithm: incremental
722
dimensions:
723
- - selector: machine_learning.storage_api_success_count_total
723
+ - selector: storage_api_success_count_total
724
name: success
725
- - selector: machine_learning.storage_api_failure_count_total
725
+ - selector: storage_api_failure_count_total
726
name: failure
727
- id: am_azure_machine_learning__run_lifecycle
728
title: Azure Machine Learning Run Lifecycle
@@ -732,17 +732,17 @@ template:
732
units: runs/s
733
algorithm: incremental
734
dimensions:
735
- - selector: machine_learning.not_started_runs_total
735
+ - selector: not_started_runs_total
736
name: not_started
737
- - selector: machine_learning.starting_runs_total
737
+ - selector: starting_runs_total
738
name: starting
739
- - selector: machine_learning.preparing_runs_total
739
+ - selector: preparing_runs_total
740
name: preparing
741
- - selector: machine_learning.provisioning_runs_total
741
+ - selector: provisioning_runs_total
742
name: provisioning
743
- - selector: machine_learning.queued_runs_total
743
+ - selector: queued_runs_total
744
name: queued
745
- - selector: machine_learning.started_runs_total
745
+ - selector: started_runs_total
746
name: started
747
- id: am_azure_machine_learning__run_completion
748
title: Azure Machine Learning Run Completion
@@ -752,17 +752,17 @@ template:
752
units: runs/s
753
algorithm: incremental
754
dimensions:
755
- - selector: machine_learning.completed_runs_total
755
+ - selector: completed_runs_total
756
name: completed
757
- - selector: machine_learning.failed_runs_total
757
+ - selector: failed_runs_total
758
name: failed
759
- - selector: machine_learning.finalizing_runs_total
759
+ - selector: finalizing_runs_total
760
name: finalizing
761
- - selector: machine_learning.cancelled_runs_total
761
+ - selector: cancelled_runs_total
762
name: cancelled
763
- - selector: machine_learning.cancel_requested_runs_total
763
+ - selector: cancel_requested_runs_total
764
name: cancel_requested
765
- - selector: machine_learning.not_responding_runs_total
765
+ - selector: not_responding_runs_total
766
name: not_responding
767
- id: am_azure_machine_learning__run_issues
768
title: Azure Machine Learning Run Issues
@@ -772,7 +772,7 @@ template:
772
units: events/s
773
algorithm: incremental
774
dimensions:
775
- - selector: machine_learning.errors_total
775
+ - selector: errors_total
776
name: errors
777
- - selector: machine_learning.warnings_total
777
+ - selector: warnings_total
778
name: warnings
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/mysql_flexible.yaml
+55
-55
@@ -354,7 +354,7 @@ template:
354
units: percentage
355
algorithm: absolute
356
dimensions:
357
- - selector: mysql_flexible.cpu_percent_average
357
+ - selector: cpu_percent_average
358
name: average
359
- id: am_azure_mysql_flexible__memory
360
title: Azure MySQL Flexible Server Memory Utilization
@@ -364,7 +364,7 @@ template:
364
units: percentage
365
algorithm: absolute
366
dimensions:
367
- - selector: mysql_flexible.memory_percent_average
367
+ - selector: memory_percent_average
368
name: average
369
- id: am_azure_mysql_flexible__io_utilization
370
title: Azure MySQL Flexible Server Storage I/O Utilization
@@ -374,7 +374,7 @@ template:
374
units: percentage
375
algorithm: absolute
376
dimensions:
377
- - selector: mysql_flexible.io_consumption_percent_average
377
+ - selector: io_consumption_percent_average
378
name: average
379
- id: am_azure_mysql_flexible__cpu_credits
380
title: Azure MySQL Flexible Server CPU Credits
@@ -384,9 +384,9 @@ template:
384
units: credits
385
algorithm: absolute
386
dimensions:
387
- - selector: mysql_flexible.cpu_credits_consumed_average
387
+ - selector: cpu_credits_consumed_average
388
name: consumed
389
- - selector: mysql_flexible.cpu_credits_remaining_average
389
+ - selector: cpu_credits_remaining_average
390
name: remaining
391
- id: am_azure_mysql_flexible__ha_status
392
title: Azure MySQL Flexible Server HA Replication Status
@@ -396,9 +396,9 @@ template:
396
units: status
397
algorithm: absolute
398
dimensions:
399
- - selector: mysql_flexible.ha_io_status_maximum
399
+ - selector: ha_io_status_maximum
400
name: io
401
- - selector: mysql_flexible.ha_sql_status_maximum
401
+ - selector: ha_sql_status_maximum
402
name: sql
403
- id: am_azure_mysql_flexible__replica_status
404
title: Azure MySQL Flexible Server Replica Status
@@ -408,9 +408,9 @@ template:
408
units: status
409
algorithm: absolute
410
dimensions:
411
- - selector: mysql_flexible.replica_io_running_maximum
411
+ - selector: replica_io_running_maximum
412
name: io
413
- - selector: mysql_flexible.replica_sql_running_maximum
413
+ - selector: replica_sql_running_maximum
414
name: sql
415
- id: am_azure_mysql_flexible__uptime
416
title: Azure MySQL Flexible Server Uptime
@@ -420,7 +420,7 @@ template:
420
units: seconds
421
algorithm: absolute
422
dimensions:
423
- - selector: mysql_flexible.uptime_maximum
423
+ - selector: uptime_maximum
424
name: uptime
425
- id: am_azure_mysql_flexible__replication_lag
426
title: Azure MySQL Flexible Server Replication Lag
@@ -430,9 +430,9 @@ template:
430
units: seconds
431
algorithm: absolute
432
dimensions:
433
- - selector: mysql_flexible.replication_lag_average
433
+ - selector: replication_lag_average
434
name: replica
435
- - selector: mysql_flexible.ha_replication_lag_average
435
+ - selector: ha_replication_lag_average
436
name: ha
437
- id: am_azure_mysql_flexible__innodb_row_lock_time
438
title: Azure MySQL Flexible Server InnoDB Row Lock Time
@@ -442,7 +442,7 @@ template:
442
units: milliseconds
443
algorithm: absolute
444
dimensions:
445
- - selector: mysql_flexible.innodb_row_lock_time_average
445
+ - selector: innodb_row_lock_time_average
446
name: average
447
- id: am_azure_mysql_flexible__innodb_row_lock_waits
448
title: Azure MySQL Flexible Server InnoDB Row Lock Waits
@@ -452,7 +452,7 @@ template:
452
units: waits/s
453
algorithm: incremental
454
dimensions:
455
- - selector: mysql_flexible.innodb_row_lock_waits_total
455
+ - selector: innodb_row_lock_waits_total
456
name: total
457
- id: am_azure_mysql_flexible__aborted_connections
458
title: Azure MySQL Flexible Server Aborted Connections
@@ -462,7 +462,7 @@ template:
462
units: connections/s
463
algorithm: incremental
464
dimensions:
465
- - selector: mysql_flexible.aborted_connections_total
465
+ - selector: aborted_connections_total
466
name: total
467
- id: am_azure_mysql_flexible__active_connections
468
title: Azure MySQL Flexible Server Active Connections
@@ -472,7 +472,7 @@ template:
472
units: connections
473
algorithm: absolute
474
dimensions:
475
- - selector: mysql_flexible.active_connections_average
475
+ - selector: active_connections_average
476
name: average
477
- id: am_azure_mysql_flexible__total_connections
478
title: Azure MySQL Flexible Server Total Connections
@@ -482,7 +482,7 @@ template:
482
units: connections/s
483
algorithm: incremental
484
dimensions:
485
- - selector: mysql_flexible.total_connections_total
485
+ - selector: total_connections_total
486
name: total
487
- id: am_azure_mysql_flexible__active_transactions
488
title: Azure MySQL Flexible Server Active Transactions
@@ -492,7 +492,7 @@ template:
492
units: transactions
493
algorithm: absolute
494
dimensions:
495
- - selector: mysql_flexible.active_transactions_average
495
+ - selector: active_transactions_average
496
name: average
497
- id: am_azure_mysql_flexible__threads_running
498
title: Azure MySQL Flexible Server Threads Running
@@ -502,7 +502,7 @@ template:
502
units: threads
503
algorithm: absolute
504
dimensions:
505
- - selector: mysql_flexible.threads_running_maximum
505
+ - selector: threads_running_maximum
506
name: maximum
507
- id: am_azure_mysql_flexible__queries
508
title: Azure MySQL Flexible Server Queries
@@ -512,9 +512,9 @@ template:
512
units: queries/s
513
algorithm: incremental
514
dimensions:
515
- - selector: mysql_flexible.queries_total
515
+ - selector: queries_total
516
name: total
517
- - selector: mysql_flexible.slow_queries_total
517
+ - selector: slow_queries_total
518
name: slow
519
- id: am_azure_mysql_flexible__dml_statements
520
title: Azure MySQL Flexible Server DML Statements
@@ -524,13 +524,13 @@ template:
524
units: statements/s
525
algorithm: incremental
526
dimensions:
527
- - selector: mysql_flexible.com_select_total
527
+ - selector: com_select_total
528
name: select
529
- - selector: mysql_flexible.com_insert_total
529
+ - selector: com_insert_total
530
name: insert
531
- - selector: mysql_flexible.com_update_total
531
+ - selector: com_update_total
532
name: update
533
- - selector: mysql_flexible.com_delete_total
533
+ - selector: com_delete_total
534
name: delete
535
- id: am_azure_mysql_flexible__ddl_statements
536
title: Azure MySQL Flexible Server DDL Statements
@@ -540,15 +540,15 @@ template:
540
units: statements/s
541
algorithm: incremental
542
dimensions:
543
- - selector: mysql_flexible.com_create_table_total
543
+ - selector: com_create_table_total
544
name: create_table
545
- - selector: mysql_flexible.com_alter_table_total
545
+ - selector: com_alter_table_total
546
name: alter_table
547
- - selector: mysql_flexible.com_drop_table_total
547
+ - selector: com_drop_table_total
548
name: drop_table
549
- - selector: mysql_flexible.com_create_db_total
549
+ - selector: com_create_db_total
550
name: create_db
551
- - selector: mysql_flexible.com_drop_db_total
551
+ - selector: com_drop_db_total
552
name: drop_db
553
- id: am_azure_mysql_flexible__lock_deadlocks
554
title: Azure MySQL Flexible Server Deadlocks
@@ -558,7 +558,7 @@ template:
558
units: deadlocks/s
559
algorithm: incremental
560
dimensions:
561
- - selector: mysql_flexible.lock_deadlocks_total
561
+ - selector: lock_deadlocks_total
562
name: total
563
- id: am_azure_mysql_flexible__lock_timeouts
564
title: Azure MySQL Flexible Server Lock Timeouts
@@ -568,7 +568,7 @@ template:
568
units: timeouts/s
569
algorithm: incremental
570
dimensions:
571
- - selector: mysql_flexible.lock_timeouts_total
571
+ - selector: lock_timeouts_total
572
name: total
573
- id: am_azure_mysql_flexible__innodb_buffer_pool_pages
574
title: Azure MySQL Flexible Server InnoDB Buffer Pool Pages
@@ -578,13 +578,13 @@ template:
578
units: pages
579
algorithm: absolute
580
dimensions:
581
- - selector: mysql_flexible.innodb_buffer_pool_pages_data_maximum
581
+ - selector: innodb_buffer_pool_pages_data_maximum
582
name: data
583
- - selector: mysql_flexible.innodb_buffer_pool_pages_dirty_maximum
583
+ - selector: innodb_buffer_pool_pages_dirty_maximum
584
name: dirty
585
- - selector: mysql_flexible.innodb_buffer_pool_pages_free_maximum
585
+ - selector: innodb_buffer_pool_pages_free_maximum
586
name: free
587
- - selector: mysql_flexible.innodb_buffer_pool_pages_flushed_average
587
+ - selector: innodb_buffer_pool_pages_flushed_average
588
name: flushed
589
- id: am_azure_mysql_flexible__innodb_buffer_pool_io
590
title: Azure MySQL Flexible Server InnoDB Buffer Pool I/O
@@ -594,9 +594,9 @@ template:
594
units: requests/s
595
algorithm: incremental
596
dimensions:
597
- - selector: mysql_flexible.innodb_buffer_pool_read_requests_total
597
+ - selector: innodb_buffer_pool_read_requests_total
598
name: read_requests
599
- - selector: mysql_flexible.innodb_buffer_pool_reads_total
599
+ - selector: innodb_buffer_pool_reads_total
600
name: disk_reads
601
- id: am_azure_mysql_flexible__innodb_data_writes
602
title: Azure MySQL Flexible Server InnoDB Data Writes
@@ -606,7 +606,7 @@ template:
606
units: writes/s
607
algorithm: incremental
608
dimensions:
609
- - selector: mysql_flexible.innodb_data_writes_total
609
+ - selector: innodb_data_writes_total
610
name: total
611
- id: am_azure_mysql_flexible__sort_merge_passes
612
title: Azure MySQL Flexible Server Sort Merge Passes
@@ -616,7 +616,7 @@ template:
616
units: passes/s
617
algorithm: incremental
618
dimensions:
619
- - selector: mysql_flexible.sort_merge_passes_total
619
+ - selector: sort_merge_passes_total
620
name: total
621
- id: am_azure_mysql_flexible__network
622
title: Azure MySQL Flexible Server Network Traffic
@@ -626,9 +626,9 @@ template:
626
units: bytes/s
627
algorithm: incremental
628
dimensions:
629
- - selector: mysql_flexible.network_bytes_ingress_total
629
+ - selector: network_bytes_ingress_total
630
name: in
631
- - selector: mysql_flexible.network_bytes_egress_total
631
+ - selector: network_bytes_egress_total
632
name: out
633
- id: am_azure_mysql_flexible__storage_io
634
title: Azure MySQL Flexible Server Storage I/O
@@ -638,7 +638,7 @@ template:
638
units: operations/s
639
algorithm: incremental
640
dimensions:
641
- - selector: mysql_flexible.storage_io_count_total
641
+ - selector: storage_io_count_total
642
name: total
643
- id: am_azure_mysql_flexible__storage
644
title: Azure MySQL Flexible Server Storage
@@ -648,9 +648,9 @@ template:
648
units: bytes
649
algorithm: absolute
650
dimensions:
651
- - selector: mysql_flexible.storage_used_average
651
+ - selector: storage_used_average
652
name: used
653
- - selector: mysql_flexible.storage_limit_maximum
653
+ - selector: storage_limit_maximum
654
name: limit
655
- id: am_azure_mysql_flexible__storage_utilization
656
title: Azure MySQL Flexible Server Storage Utilization
@@ -660,7 +660,7 @@ template:
660
units: percentage
661
algorithm: absolute
662
dimensions:
663
- - selector: mysql_flexible.storage_percent_average
663
+ - selector: storage_percent_average
664
name: average
665
- id: am_azure_mysql_flexible__storage_breakdown
666
title: Azure MySQL Flexible Server Storage Breakdown
@@ -670,13 +670,13 @@ template:
670
units: bytes
671
algorithm: absolute
672
dimensions:
673
- - selector: mysql_flexible.data_storage_used_average
673
+ - selector: data_storage_used_average
674
name: data
675
- - selector: mysql_flexible.ibdata1_storage_used_average
675
+ - selector: ibdata1_storage_used_average
676
name: ibdata1
677
- - selector: mysql_flexible.binlog_storage_used_average
677
+ - selector: binlog_storage_used_average
678
name: binlog
679
- - selector: mysql_flexible.others_storage_used_average
679
+ - selector: others_storage_used_average
680
name: others
681
- id: am_azure_mysql_flexible__backup_storage
682
title: Azure MySQL Flexible Server Backup Storage
@@ -686,7 +686,7 @@ template:
686
units: bytes
687
algorithm: absolute
688
dimensions:
689
- - selector: mysql_flexible.backup_storage_used_average
689
+ - selector: backup_storage_used_average
690
name: used
691
- id: am_azure_mysql_flexible__serverlog_storage
692
title: Azure MySQL Flexible Server Server Log Storage
@@ -696,9 +696,9 @@ template:
696
units: bytes
697
algorithm: absolute
698
dimensions:
699
- - selector: mysql_flexible.serverlog_storage_usage_average
699
+ - selector: serverlog_storage_usage_average
700
name: used
701
- - selector: mysql_flexible.serverlog_storage_limit_maximum
701
+ - selector: serverlog_storage_limit_maximum
702
name: limit
703
- id: am_azure_mysql_flexible__serverlog_storage_utilization
704
title: Azure MySQL Flexible Server Server Log Storage Utilization
@@ -708,7 +708,7 @@ template:
708
units: percentage
709
algorithm: absolute
710
dimensions:
711
- - selector: mysql_flexible.serverlog_storage_percent_average
711
+ - selector: serverlog_storage_percent_average
712
name: average
713
- id: am_azure_mysql_flexible__history_list_length
714
title: Azure MySQL Flexible Server History List Length
@@ -718,5 +718,5 @@ template:
718
units: entries
719
algorithm: absolute
720
dimensions:
721
- - selector: mysql_flexible.trx_rseg_history_len_maximum
721
+ - selector: trx_rseg_history_len_maximum
722
name: maximum
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/nat_gateway.yaml
+6
-6
@@ -60,7 +60,7 @@ template:
60
units: percentage
61
algorithm: absolute
62
dimensions:
63
- - selector: nat_gateway.datapath_availability_average
63
+ - selector: datapath_availability_average
64
name: average
65
- id: am_azure_nat_gateway__byte_throughput
66
title: Azure NAT Gateway Byte Throughput
@@ -70,7 +70,7 @@ template:
70
units: bytes/s
71
algorithm: incremental
72
dimensions:
73
- - selector: nat_gateway.byte_count_total
73
+ - selector: byte_count_total
74
name: total
75
- id: am_azure_nat_gateway__packet_throughput
76
title: Azure NAT Gateway Packet Throughput
@@ -80,7 +80,7 @@ template:
80
units: packets/s
81
algorithm: incremental
82
dimensions:
83
- - selector: nat_gateway.packet_count_total
83
+ - selector: packet_count_total
84
name: total
85
- id: am_azure_nat_gateway__dropped_packets
86
title: Azure NAT Gateway Dropped Packets
@@ -90,7 +90,7 @@ template:
90
units: packets/s
91
algorithm: incremental
92
dimensions:
93
- - selector: nat_gateway.packet_drop_count_total
93
+ - selector: packet_drop_count_total
94
name: total
95
- id: am_azure_nat_gateway__snat_connections
96
title: Azure NAT Gateway SNAT Connections
@@ -100,7 +100,7 @@ template:
100
units: connections
101
algorithm: absolute
102
dimensions:
103
- - selector: nat_gateway.snat_connection_count_total
103
+ - selector: snat_connection_count_total
104
name: total
105
- id: am_azure_nat_gateway__total_connections
106
title: Azure NAT Gateway Total SNAT Connections
@@ -110,5 +110,5 @@ template:
110
units: connections
111
algorithm: absolute
112
dimensions:
113
- - selector: nat_gateway.total_connection_count_total
113
+ - selector: total_connection_count_total
114
name: total
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/postgres_flexible.yaml
+71
-71
@@ -450,7 +450,7 @@ template:
450
units: percentage
451
algorithm: absolute
452
dimensions:
453
- - selector: postgres_flexible.cpu_percent_average
453
+ - selector: cpu_percent_average
454
name: average
455
- id: am_azure_postgres_flexible__memory
456
title: Azure PostgreSQL Flexible Server Memory Utilization
@@ -460,7 +460,7 @@ template:
460
units: percentage
461
algorithm: absolute
462
dimensions:
463
- - selector: postgres_flexible.memory_percent_average
463
+ - selector: memory_percent_average
464
name: average
465
- id: am_azure_postgres_flexible__availability
466
title: Azure PostgreSQL Flexible Server Database Alive
@@ -470,7 +470,7 @@ template:
470
units: state
471
algorithm: absolute
472
dimensions:
473
- - selector: postgres_flexible.is_db_alive_maximum
473
+ - selector: is_db_alive_maximum
474
name: maximum
475
- id: am_azure_postgres_flexible__iops
476
title: Azure PostgreSQL Flexible Server IOPS
@@ -480,11 +480,11 @@ template:
480
units: operations/s
481
algorithm: absolute
482
dimensions:
483
- - selector: postgres_flexible.iops_average
483
+ - selector: iops_average
484
name: total
485
- - selector: postgres_flexible.read_iops_average
485
+ - selector: read_iops_average
486
name: read
487
- - selector: postgres_flexible.write_iops_average
487
+ - selector: write_iops_average
488
name: write
489
- id: am_azure_postgres_flexible__disk_throughput
490
title: Azure PostgreSQL Flexible Server Disk Throughput
@@ -494,9 +494,9 @@ template:
494
units: bytes/s
495
algorithm: absolute
496
dimensions:
497
- - selector: postgres_flexible.read_throughput_average
497
+ - selector: read_throughput_average
498
name: read
499
- - selector: postgres_flexible.write_throughput_average
499
+ - selector: write_throughput_average
500
name: write
501
- id: am_azure_postgres_flexible__disk_saturation
502
title: Azure PostgreSQL Flexible Server Disk Saturation
@@ -506,9 +506,9 @@ template:
506
units: percentage
507
algorithm: absolute
508
dimensions:
509
- - selector: postgres_flexible.disk_bandwidth_consumed_percentage_average
509
+ - selector: disk_bandwidth_consumed_percentage_average
510
name: bandwidth
511
- - selector: postgres_flexible.disk_iops_consumed_percentage_average
511
+ - selector: disk_iops_consumed_percentage_average
512
name: iops
513
- id: am_azure_postgres_flexible__disk_queue_depth
514
title: Azure PostgreSQL Flexible Server Disk Queue Depth
@@ -518,7 +518,7 @@ template:
518
units: operations
519
algorithm: absolute
520
dimensions:
521
- - selector: postgres_flexible.disk_queue_depth_average
521
+ - selector: disk_queue_depth_average
522
name: average
523
- id: am_azure_postgres_flexible__buffer_cache
524
title: Azure PostgreSQL Flexible Server Buffer Cache
@@ -528,9 +528,9 @@ template:
528
units: blocks/s
529
algorithm: incremental
530
dimensions:
531
- - selector: postgres_flexible.blks_hit_total
531
+ - selector: blks_hit_total
532
name: hits
533
- - selector: postgres_flexible.blks_read_total
533
+ - selector: blks_read_total
534
name: reads
535
- id: am_azure_postgres_flexible__active_connections
536
title: Azure PostgreSQL Flexible Server Active Connections
@@ -540,7 +540,7 @@ template:
540
units: connections
541
algorithm: absolute
542
dimensions:
543
- - selector: postgres_flexible.active_connections_average
543
+ - selector: active_connections_average
544
name: average
545
- id: am_azure_postgres_flexible__connection_rate
546
title: Azure PostgreSQL Flexible Server Connection Rate
@@ -550,9 +550,9 @@ template:
550
units: connections/s
551
algorithm: incremental
552
dimensions:
553
- - selector: postgres_flexible.connections_succeeded_total
553
+ - selector: connections_succeeded_total
554
name: succeeded
555
- - selector: postgres_flexible.connections_failed_total
555
+ - selector: connections_failed_total
556
name: failed
557
- id: am_azure_postgres_flexible__transactions
558
title: Azure PostgreSQL Flexible Server Transactions
@@ -562,9 +562,9 @@ template:
562
units: transactions/s
563
algorithm: incremental
564
dimensions:
565
- - selector: postgres_flexible.xact_commit_total
565
+ - selector: xact_commit_total
566
name: committed
567
- - selector: postgres_flexible.xact_rollback_total
567
+ - selector: xact_rollback_total
568
name: rolled_back
569
- id: am_azure_postgres_flexible__transaction_rate
570
title: Azure PostgreSQL Flexible Server Transaction Rate
@@ -574,9 +574,9 @@ template:
574
units: transactions/s
575
algorithm: incremental
576
dimensions:
577
- - selector: postgres_flexible.tps_total
577
+ - selector: tps_total
578
name: total
579
- - selector: postgres_flexible.xact_total_total
579
+ - selector: xact_total_total
580
name: xact_total
581
- id: am_azure_postgres_flexible__deadlocks
582
title: Azure PostgreSQL Flexible Server Deadlocks
@@ -586,7 +586,7 @@ template:
586
units: deadlocks/s
587
algorithm: incremental
588
dimensions:
589
- - selector: postgres_flexible.deadlocks_total
589
+ - selector: deadlocks_total
590
name: total
591
- id: am_azure_postgres_flexible__tuple_reads
592
title: Azure PostgreSQL Flexible Server Tuple Reads
@@ -596,9 +596,9 @@ template:
596
units: tuples/s
597
algorithm: incremental
598
dimensions:
599
- - selector: postgres_flexible.tup_returned_total
599
+ - selector: tup_returned_total
600
name: returned
601
- - selector: postgres_flexible.tup_fetched_total
601
+ - selector: tup_fetched_total
602
name: fetched
603
- id: am_azure_postgres_flexible__tuple_writes
604
title: Azure PostgreSQL Flexible Server Tuple Writes
@@ -608,11 +608,11 @@ template:
608
units: tuples/s
609
algorithm: incremental
610
dimensions:
611
- - selector: postgres_flexible.tup_inserted_total
611
+ - selector: tup_inserted_total
612
name: inserted
613
- - selector: postgres_flexible.tup_updated_total
613
+ - selector: tup_updated_total
614
name: updated
615
- - selector: postgres_flexible.tup_deleted_total
615
+ - selector: tup_deleted_total
616
name: deleted
617
- id: am_azure_postgres_flexible__temp_files
618
title: Azure PostgreSQL Flexible Server Temp Files Created
@@ -622,7 +622,7 @@ template:
622
units: files/s
623
algorithm: incremental
624
dimensions:
625
- - selector: postgres_flexible.temp_files_total
625
+ - selector: temp_files_total
626
name: total
627
- id: am_azure_postgres_flexible__temp_bytes
628
title: Azure PostgreSQL Flexible Server Temp Bytes Written
@@ -632,7 +632,7 @@ template:
632
units: bytes/s
633
algorithm: incremental
634
dimensions:
635
- - selector: postgres_flexible.temp_bytes_total
635
+ - selector: temp_bytes_total
636
name: total
637
- id: am_azure_postgres_flexible__long_running
638
title: Azure PostgreSQL Flexible Server Long Running Operations
@@ -642,9 +642,9 @@ template:
642
units: seconds
643
algorithm: absolute
644
dimensions:
645
- - selector: postgres_flexible.longest_query_time_sec_maximum
645
+ - selector: longest_query_time_sec_maximum
646
name: query
647
- - selector: postgres_flexible.longest_transaction_time_sec_maximum
647
+ - selector: longest_transaction_time_sec_maximum
648
name: transaction
649
- id: am_azure_postgres_flexible__xid_usage
650
title: Azure PostgreSQL Flexible Server Transaction ID Usage
@@ -654,9 +654,9 @@ template:
654
units: transactions
655
algorithm: absolute
656
dimensions:
657
- - selector: postgres_flexible.maximum_used_transaction_ids_average
657
+ - selector: maximum_used_transaction_ids_average
658
name: max_used
659
- - selector: postgres_flexible.oldest_backend_xmin_maximum
659
+ - selector: oldest_backend_xmin_maximum
660
name: oldest_xmin
661
- id: am_azure_postgres_flexible__xmin_age
662
title: Azure PostgreSQL Flexible Server Backend XID Age
@@ -666,7 +666,7 @@ template:
666
units: transactions
667
algorithm: absolute
668
dimensions:
669
- - selector: postgres_flexible.oldest_backend_xmin_age_maximum
669
+ - selector: oldest_backend_xmin_age_maximum
670
name: maximum
671
- id: am_azure_postgres_flexible__network
672
title: Azure PostgreSQL Flexible Server Network Traffic
@@ -676,9 +676,9 @@ template:
676
units: bytes/s
677
algorithm: incremental
678
dimensions:
679
- - selector: postgres_flexible.network_bytes_ingress_total
679
+ - selector: network_bytes_ingress_total
680
name: in
681
- - selector: postgres_flexible.network_bytes_egress_total
681
+ - selector: network_bytes_egress_total
682
name: out
683
- id: am_azure_postgres_flexible__storage
684
title: Azure PostgreSQL Flexible Server Storage
@@ -688,9 +688,9 @@ template:
688
units: bytes
689
algorithm: absolute
690
dimensions:
691
- - selector: postgres_flexible.storage_used_average
691
+ - selector: storage_used_average
692
name: used
693
- - selector: postgres_flexible.storage_free_average
693
+ - selector: storage_free_average
694
name: free
695
- id: am_azure_postgres_flexible__storage_utilization
696
title: Azure PostgreSQL Flexible Server Storage Utilization
@@ -700,7 +700,7 @@ template:
700
units: percentage
701
algorithm: absolute
702
dimensions:
703
- - selector: postgres_flexible.storage_percent_average
703
+ - selector: storage_percent_average
704
name: average
705
- id: am_azure_postgres_flexible__wal_storage
706
title: Azure PostgreSQL Flexible Server WAL Storage
@@ -710,7 +710,7 @@ template:
710
units: bytes
711
algorithm: absolute
712
dimensions:
713
- - selector: postgres_flexible.txlogs_storage_used_average
713
+ - selector: txlogs_storage_used_average
714
name: used
715
- id: am_azure_postgres_flexible__database_size
716
title: Azure PostgreSQL Flexible Server Database Size
@@ -720,7 +720,7 @@ template:
720
units: bytes
721
algorithm: absolute
722
dimensions:
723
- - selector: postgres_flexible.database_size_bytes_average
723
+ - selector: database_size_bytes_average
724
name: average
725
- id: am_azure_postgres_flexible__backup_storage
726
title: Azure PostgreSQL Flexible Server Backup Storage
@@ -730,7 +730,7 @@ template:
730
units: bytes
731
algorithm: absolute
732
dimensions:
733
- - selector: postgres_flexible.backup_storage_used_average
733
+ - selector: backup_storage_used_average
734
name: used
735
- id: am_azure_postgres_flexible__replication_lag_time
736
title: Azure PostgreSQL Flexible Server Replication Lag
@@ -740,7 +740,7 @@ template:
740
units: seconds
741
algorithm: absolute
742
dimensions:
743
- - selector: postgres_flexible.physical_replication_delay_in_seconds_average
743
+ - selector: physical_replication_delay_in_seconds_average
744
name: average
745
- id: am_azure_postgres_flexible__replication_lag_bytes
746
title: Azure PostgreSQL Flexible Server Replication Lag Bytes
@@ -750,9 +750,9 @@ template:
750
units: bytes
751
algorithm: absolute
752
dimensions:
753
- - selector: postgres_flexible.physical_replication_delay_in_bytes_maximum
753
+ - selector: physical_replication_delay_in_bytes_maximum
754
name: physical
755
- - selector: postgres_flexible.logical_replication_delay_in_bytes_maximum
755
+ - selector: logical_replication_delay_in_bytes_maximum
756
name: logical
757
- id: am_azure_postgres_flexible__sessions_by_state
758
title: Azure PostgreSQL Flexible Server Sessions by State
@@ -762,7 +762,7 @@ template:
762
units: sessions
763
algorithm: absolute
764
dimensions:
765
- - selector: postgres_flexible.sessions_by_state_maximum
765
+ - selector: sessions_by_state_maximum
766
name: maximum
767
- id: am_azure_postgres_flexible__sessions_by_wait_event_type
768
title: Azure PostgreSQL Flexible Server Sessions by Wait Event Type
@@ -772,7 +772,7 @@ template:
772
units: sessions
773
algorithm: absolute
774
dimensions:
775
- - selector: postgres_flexible.sessions_by_wait_event_type_maximum
775
+ - selector: sessions_by_wait_event_type_maximum
776
name: maximum
777
- id: am_azure_postgres_flexible__autovacuum_operations
778
title: Azure PostgreSQL Flexible Server Autovacuum Operations
@@ -782,13 +782,13 @@ template:
782
units: operations
783
algorithm: absolute
784
dimensions:
785
- - selector: postgres_flexible.vacuum_count_user_tables_maximum
785
+ - selector: vacuum_count_user_tables_maximum
786
name: vacuum
787
- - selector: postgres_flexible.autovacuum_count_user_tables_maximum
787
+ - selector: autovacuum_count_user_tables_maximum
788
name: autovacuum
789
- - selector: postgres_flexible.analyze_count_user_tables_maximum
789
+ - selector: analyze_count_user_tables_maximum
790
name: analyze
791
- - selector: postgres_flexible.autoanalyze_count_user_tables_maximum
791
+ - selector: autoanalyze_count_user_tables_maximum
792
name: autoanalyze
793
- id: am_azure_postgres_flexible__autovacuum_table_coverage
794
title: Azure PostgreSQL Flexible Server Autovacuum Table Coverage
@@ -798,15 +798,15 @@ template:
798
units: tables
799
algorithm: absolute
800
dimensions:
801
- - selector: postgres_flexible.tables_vacuumed_user_tables_maximum
801
+ - selector: tables_vacuumed_user_tables_maximum
802
name: vacuumed
803
- - selector: postgres_flexible.tables_autovacuumed_user_tables_maximum
803
+ - selector: tables_autovacuumed_user_tables_maximum
804
name: autovacuumed
805
- - selector: postgres_flexible.tables_analyzed_user_tables_maximum
805
+ - selector: tables_analyzed_user_tables_maximum
806
name: analyzed
807
- - selector: postgres_flexible.tables_autoanalyzed_user_tables_maximum
807
+ - selector: tables_autoanalyzed_user_tables_maximum
808
name: autoanalyzed
809
- - selector: postgres_flexible.tables_counter_user_tables_maximum
809
+ - selector: tables_counter_user_tables_maximum
810
name: total
811
- id: am_azure_postgres_flexible__tuple_liveness
812
title: Azure PostgreSQL Flexible Server Tuple Liveness
@@ -816,11 +816,11 @@ template:
816
units: tuples
817
algorithm: absolute
818
dimensions:
819
- - selector: postgres_flexible.n_live_tup_user_tables_maximum
819
+ - selector: n_live_tup_user_tables_maximum
820
name: live
821
- - selector: postgres_flexible.n_dead_tup_user_tables_maximum
821
+ - selector: n_dead_tup_user_tables_maximum
822
name: dead
823
- - selector: postgres_flexible.n_mod_since_analyze_user_tables_maximum
823
+ - selector: n_mod_since_analyze_user_tables_maximum
824
name: modified_since_analyze
825
- id: am_azure_postgres_flexible__bloat
826
title: Azure PostgreSQL Flexible Server Table Bloat
@@ -830,7 +830,7 @@ template:
830
units: percentage
831
algorithm: absolute
832
dimensions:
833
- - selector: postgres_flexible.bloat_percent_maximum
833
+ - selector: bloat_percent_maximum
834
name: maximum
835
- id: am_azure_postgres_flexible__backend_count
836
title: Azure PostgreSQL Flexible Server Backend Count
@@ -840,7 +840,7 @@ template:
840
units: connections
841
algorithm: absolute
842
dimensions:
843
- - selector: postgres_flexible.numbackends_maximum
843
+ - selector: numbackends_maximum
844
name: maximum
845
- id: am_azure_postgres_flexible__pgbouncer_client_connections
846
title: Azure PostgreSQL Flexible Server PgBouncer Client Connections
@@ -850,9 +850,9 @@ template:
850
units: connections
851
algorithm: absolute
852
dimensions:
853
- - selector: postgres_flexible.client_connections_active_maximum
853
+ - selector: client_connections_active_maximum
854
name: active
855
- - selector: postgres_flexible.client_connections_waiting_maximum
855
+ - selector: client_connections_waiting_maximum
856
name: waiting
857
- id: am_azure_postgres_flexible__pgbouncer_server_connections
858
title: Azure PostgreSQL Flexible Server PgBouncer Server Connections
@@ -862,9 +862,9 @@ template:
862
units: connections
863
algorithm: absolute
864
dimensions:
865
- - selector: postgres_flexible.server_connections_active_maximum
865
+ - selector: server_connections_active_maximum
866
name: active
867
- - selector: postgres_flexible.server_connections_idle_maximum
867
+ - selector: server_connections_idle_maximum
868
name: idle
869
- id: am_azure_postgres_flexible__pgbouncer_pool_count
870
title: Azure PostgreSQL Flexible Server PgBouncer Pool Count
@@ -874,7 +874,7 @@ template:
874
units: pools
875
algorithm: absolute
876
dimensions:
877
- - selector: postgres_flexible.num_pools_maximum
877
+ - selector: num_pools_maximum
878
name: pools
879
- id: am_azure_postgres_flexible__pgbouncer_pooled_connections
880
title: Azure PostgreSQL Flexible Server PgBouncer Pooled Connections
@@ -884,7 +884,7 @@ template:
884
units: connections
885
algorithm: absolute
886
dimensions:
887
- - selector: postgres_flexible.total_pooled_connections_maximum
887
+ - selector: total_pooled_connections_maximum
888
name: pooled_connections
889
- id: am_azure_postgres_flexible__cpu_credits
890
title: Azure PostgreSQL Flexible Server CPU Credits
@@ -894,9 +894,9 @@ template:
894
units: credits
895
algorithm: absolute
896
dimensions:
897
- - selector: postgres_flexible.cpu_credits_consumed_average
897
+ - selector: cpu_credits_consumed_average
898
name: consumed
899
- - selector: postgres_flexible.cpu_credits_remaining_average
899
+ - selector: cpu_credits_remaining_average
900
name: remaining
901
- id: am_azure_postgres_flexible__postmaster_cpu
902
title: Azure PostgreSQL Flexible Server Postmaster CPU Usage
@@ -906,7 +906,7 @@ template:
906
units: percentage
907
algorithm: absolute
908
dimensions:
909
- - selector: postgres_flexible.postmaster_process_cpu_usage_percent_average
909
+ - selector: postmaster_process_cpu_usage_percent_average
910
name: average
911
- id: am_azure_postgres_flexible__max_connections
912
title: Azure PostgreSQL Flexible Server Max Connections
@@ -916,7 +916,7 @@ template:
916
units: connections
917
algorithm: absolute
918
dimensions:
919
- - selector: postgres_flexible.max_connections_maximum
919
+ - selector: max_connections_maximum
920
name: maximum
921
- id: am_azure_postgres_flexible__tcp_connection_backlog
922
title: Azure PostgreSQL Flexible Server TCP Connection Backlog
@@ -926,5 +926,5 @@ template:
926
units: connections
927
algorithm: absolute
928
dimensions:
929
- - selector: postgres_flexible.tcp_connection_backlog_maximum
929
+ - selector: tcp_connection_backlog_maximum
930
name: maximum
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/redis_cache.yaml
+46
-46
@@ -300,9 +300,9 @@ template:
300
units: operations/s
301
algorithm: incremental
302
dimensions:
303
- - selector: redis_cache.cachehits_total
303
+ - selector: cachehits_total
304
name: hits
305
- - selector: redis_cache.cachemisses_total
305
+ - selector: cachemisses_total
306
name: misses
307
- id: am_azure_redis_cache__throughput
308
title: Azure Cache for Redis Throughput
@@ -312,9 +312,9 @@ template:
312
units: bytes/s
313
algorithm: absolute
314
dimensions:
315
- - selector: redis_cache.cache_read_maximum
315
+ - selector: cache_read_maximum
316
name: read
317
- - selector: redis_cache.cache_write_maximum
317
+ - selector: cache_write_maximum
318
name: write
319
- id: am_azure_redis_cache__server_load
320
title: Azure Cache for Redis Server Load
@@ -324,7 +324,7 @@ template:
324
units: percentage
325
algorithm: absolute
326
dimensions:
327
- - selector: redis_cache.server_load_maximum
327
+ - selector: server_load_maximum
328
name: maximum
329
- id: am_azure_redis_cache__cpu
330
title: Azure Cache for Redis CPU Utilization
@@ -334,7 +334,7 @@ template:
334
units: percentage
335
algorithm: absolute
336
dimensions:
337
- - selector: redis_cache.percent_processor_time_maximum
337
+ - selector: percent_processor_time_maximum
338
name: maximum
339
- id: am_azure_redis_cache__memory_usage
340
title: Azure Cache for Redis Memory Usage
@@ -344,9 +344,9 @@ template:
344
units: bytes
345
algorithm: absolute
346
dimensions:
347
- - selector: redis_cache.usedmemory_maximum
347
+ - selector: usedmemory_maximum
348
name: used
349
- - selector: redis_cache.usedmemory_rss_maximum
349
+ - selector: usedmemory_rss_maximum
350
name: rss
351
- id: am_azure_redis_cache__memory_utilization
352
title: Azure Cache for Redis Memory Utilization
@@ -356,7 +356,7 @@ template:
356
units: percentage
357
algorithm: absolute
358
dimensions:
359
- - selector: redis_cache.usedmemorypercentage_maximum
359
+ - selector: usedmemorypercentage_maximum
360
name: maximum
361
- id: am_azure_redis_cache__clients
362
title: Azure Cache for Redis Connected Clients
@@ -366,7 +366,7 @@ template:
366
units: clients
367
algorithm: absolute
368
dimensions:
369
- - selector: redis_cache.connectedclients_maximum
369
+ - selector: connectedclients_maximum
370
name: maximum
371
- id: am_azure_redis_cache__operations
372
title: Azure Cache for Redis Operations
@@ -376,7 +376,7 @@ template:
376
units: operations/s
377
algorithm: absolute
378
dimensions:
379
- - selector: redis_cache.operations_per_second_maximum
379
+ - selector: operations_per_second_maximum
380
name: maximum
381
- id: am_azure_redis_cache__commands
382
title: Azure Cache for Redis Commands Processed
@@ -386,7 +386,7 @@ template:
386
units: commands/s
387
algorithm: incremental
388
dimensions:
389
- - selector: redis_cache.totalcommandsprocessed_total
389
+ - selector: totalcommandsprocessed_total
390
name: total
391
- id: am_azure_redis_cache__command_types
392
title: Azure Cache for Redis Command Types
@@ -396,9 +396,9 @@ template:
396
units: commands/s
397
algorithm: incremental
398
dimensions:
399
- - selector: redis_cache.getcommands_total
399
+ - selector: getcommands_total
400
name: get
401
- - selector: redis_cache.setcommands_total
401
+ - selector: setcommands_total
402
name: set
403
- id: am_azure_redis_cache__latency
404
title: Azure Cache for Redis Latency
@@ -408,7 +408,7 @@ template:
408
units: microseconds
409
algorithm: absolute
410
dimensions:
411
- - selector: redis_cache.cache_latency_average
411
+ - selector: cache_latency_average
412
name: average
413
- id: am_azure_redis_cache__key_events
414
title: Azure Cache for Redis Key Events
@@ -418,9 +418,9 @@ template:
418
units: keys/s
419
algorithm: incremental
420
dimensions:
421
- - selector: redis_cache.evictedkeys_total
421
+ - selector: evictedkeys_total
422
name: evicted
423
- - selector: redis_cache.expiredkeys_total
423
+ - selector: expiredkeys_total
424
name: expired
425
- id: am_azure_redis_cache__total_keys
426
title: Azure Cache for Redis Total Keys
@@ -430,7 +430,7 @@ template:
430
units: keys
431
algorithm: absolute
432
dimensions:
433
- - selector: redis_cache.totalkeys_maximum
433
+ - selector: totalkeys_maximum
434
name: maximum
435
- id: am_azure_redis_cache__errors
436
title: Azure Cache for Redis Errors
@@ -440,7 +440,7 @@ template:
440
units: errors
441
algorithm: absolute
442
dimensions:
443
- - selector: redis_cache.errors_maximum
443
+ - selector: errors_maximum
444
name: maximum
445
- id: am_azure_redis_cache__miss_rate
446
title: Azure Cache for Redis Miss Rate
@@ -450,7 +450,7 @@ template:
450
units: percentage
451
algorithm: absolute
452
dimensions:
453
- - selector: redis_cache.cachemissrate_total
453
+ - selector: cachemissrate_total
454
name: miss_rate
455
- id: am_azure_redis_cache__latency_p99
456
title: Azure Cache for Redis P99 Latency
@@ -460,7 +460,7 @@ template:
460
units: microseconds
461
algorithm: absolute
462
dimensions:
463
- - selector: redis_cache.latency_p99_average
463
+ - selector: latency_p99_average
464
name: p99
465
- id: am_azure_redis_cache__connection_rate
466
title: Azure Cache for Redis Connection Rate
@@ -470,9 +470,9 @@ template:
470
units: connections/s
471
algorithm: absolute
472
dimensions:
473
- - selector: redis_cache.all_connections_created_per_second_maximum
473
+ - selector: all_connections_created_per_second_maximum
474
name: created
475
- - selector: redis_cache.all_connections_closed_per_second_maximum
475
+ - selector: all_connections_closed_per_second_maximum
476
name: closed
477
- id: am_azure_redis_cache__aad_clients
478
title: Azure Cache for Redis Entra Token Clients
@@ -482,7 +482,7 @@ template:
482
units: clients
483
algorithm: absolute
484
dimensions:
485
- - selector: redis_cache.connected_clients_using_aad_token_maximum
485
+ - selector: connected_clients_using_aad_token_maximum
486
name: maximum
487
- id: am_azure_redis_cache__instance_cache_hits
488
title: Azure Cache for Redis Instance Hit Rate
@@ -492,9 +492,9 @@ template:
492
units: operations/s
493
algorithm: incremental
494
dimensions:
495
- - selector: redis_cache.allcachehits_total
495
+ - selector: allcachehits_total
496
name: hits
497
- - selector: redis_cache.allcachemisses_total
497
+ - selector: allcachemisses_total
498
name: misses
499
- id: am_azure_redis_cache__instance_throughput
500
title: Azure Cache for Redis Instance Throughput
@@ -504,9 +504,9 @@ template:
504
units: bytes/s
505
algorithm: absolute
506
dimensions:
507
- - selector: redis_cache.allcache_read_maximum
507
+ - selector: allcache_read_maximum
508
name: read
509
- - selector: redis_cache.allcache_write_maximum
509
+ - selector: allcache_write_maximum
510
name: write
511
- id: am_azure_redis_cache__instance_server_load
512
title: Azure Cache for Redis Instance Server Load
@@ -516,9 +516,9 @@ template:
516
units: percentage
517
algorithm: absolute
518
dimensions:
519
- - selector: redis_cache.allserver_load_maximum
519
+ - selector: allserver_load_maximum
520
name: server_load
521
- - selector: redis_cache.allpercentprocessortime_maximum
521
+ - selector: allpercentprocessortime_maximum
522
name: cpu
523
- id: am_azure_redis_cache__instance_memory_usage
524
title: Azure Cache for Redis Instance Memory Usage
@@ -528,9 +528,9 @@ template:
528
units: bytes
529
algorithm: absolute
530
dimensions:
531
- - selector: redis_cache.allusedmemory_maximum
531
+ - selector: allusedmemory_maximum
532
name: used
533
- - selector: redis_cache.allusedmemory_rss_maximum
533
+ - selector: allusedmemory_rss_maximum
534
name: rss
535
- id: am_azure_redis_cache__instance_memory_utilization
536
title: Azure Cache for Redis Instance Memory Utilization
@@ -540,7 +540,7 @@ template:
540
units: percentage
541
algorithm: absolute
542
dimensions:
543
- - selector: redis_cache.allusedmemorypercentage_maximum
543
+ - selector: allusedmemorypercentage_maximum
544
name: maximum
545
- id: am_azure_redis_cache__instance_clients
546
title: Azure Cache for Redis Instance Connected Clients
@@ -550,7 +550,7 @@ template:
550
units: clients
551
algorithm: absolute
552
dimensions:
553
- - selector: redis_cache.allconnectedclients_maximum
553
+ - selector: allconnectedclients_maximum
554
name: maximum
555
- id: am_azure_redis_cache__instance_operations
556
title: Azure Cache for Redis Instance Operations
@@ -560,7 +560,7 @@ template:
560
units: operations/s
561
algorithm: absolute
562
dimensions:
563
- - selector: redis_cache.alloperations_per_second_maximum
563
+ - selector: alloperations_per_second_maximum
564
name: maximum
565
- id: am_azure_redis_cache__instance_commands
566
title: Azure Cache for Redis Instance Commands Processed
@@ -570,11 +570,11 @@ template:
570
units: commands/s
571
algorithm: incremental
572
dimensions:
573
- - selector: redis_cache.alltotalcommandsprocessed_total
573
+ - selector: alltotalcommandsprocessed_total
574
name: total
575
- - selector: redis_cache.allgetcommands_total
575
+ - selector: allgetcommands_total
576
name: get
577
- - selector: redis_cache.allsetcommands_total
577
+ - selector: allsetcommands_total
578
name: set
579
- id: am_azure_redis_cache__instance_total_keys
580
title: Azure Cache for Redis Instance Total Keys
@@ -584,7 +584,7 @@ template:
584
units: keys
585
algorithm: absolute
586
dimensions:
587
- - selector: redis_cache.alltotalkeys_maximum
587
+ - selector: alltotalkeys_maximum
588
name: maximum
589
- id: am_azure_redis_cache__instance_key_events
590
title: Azure Cache for Redis Instance Key Events
@@ -594,9 +594,9 @@ template:
594
units: keys/s
595
algorithm: incremental
596
dimensions:
597
- - selector: redis_cache.allevictedkeys_total
597
+ - selector: allevictedkeys_total
598
name: evicted
599
- - selector: redis_cache.allexpiredkeys_total
599
+ - selector: allexpiredkeys_total
600
name: expired
601
- id: am_azure_redis_cache__geo_replication_lag
602
title: Azure Cache for Redis Geo-Replication Connectivity Lag
@@ -606,7 +606,7 @@ template:
606
units: seconds
607
algorithm: absolute
608
dimensions:
609
- - selector: redis_cache.geo_replication_connectivity_lag_average
609
+ - selector: geo_replication_connectivity_lag_average
610
name: average
611
- id: am_azure_redis_cache__geo_replication_sync_offset
612
title: Azure Cache for Redis Geo-Replication Data Sync Offset
@@ -616,7 +616,7 @@ template:
616
units: bytes
617
algorithm: absolute
618
dimensions:
619
- - selector: redis_cache.geo_replication_data_sync_offset_average
619
+ - selector: geo_replication_data_sync_offset_average
620
name: average
621
- id: am_azure_redis_cache__geo_replication_sync_events
622
title: Azure Cache for Redis Geo-Replication Sync Events
@@ -626,9 +626,9 @@ template:
626
units: events/s
627
algorithm: incremental
628
dimensions:
629
- - selector: redis_cache.geo_replication_full_sync_event_started_count
629
+ - selector: geo_replication_full_sync_event_started_count
630
name: started
631
- - selector: redis_cache.geo_replication_full_sync_event_finished_count
631
+ - selector: geo_replication_full_sync_event_finished_count
632
name: finished
633
- id: am_azure_redis_cache__geo_replication_health
634
title: Azure Cache for Redis Geo-Replication Health
@@ -638,5 +638,5 @@ template:
638
units: status
639
algorithm: absolute
640
dimensions:
641
- - selector: redis_cache.geo_replication_healthy_average
641
+ - selector: geo_replication_healthy_average
642
name: average
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/service_bus.yaml
+25
-25
@@ -174,9 +174,9 @@ template:
174
units: messages/s
175
algorithm: incremental
176
dimensions:
177
- - selector: service_bus.incoming_messages_total
177
+ - selector: incoming_messages_total
178
name: in
179
- - selector: service_bus.outgoing_messages_total
179
+ - selector: outgoing_messages_total
180
name: out
181
- id: am_azure_service_bus__message_operations
182
title: Azure Service Bus Message Operations
@@ -186,9 +186,9 @@ template:
186
units: messages/s
187
algorithm: incremental
188
dimensions:
189
- - selector: service_bus.complete_message_total
189
+ - selector: complete_message_total
190
name: completed
191
- - selector: service_bus.abandon_message_total
191
+ - selector: abandon_message_total
192
name: abandoned
193
- id: am_azure_service_bus__queue_depth
194
title: Azure Service Bus Queue Depth
@@ -198,7 +198,7 @@ template:
198
units: messages
199
algorithm: absolute
200
dimensions:
201
- - selector: service_bus.active_messages_average
201
+ - selector: active_messages_average
202
name: active
203
- id: am_azure_service_bus__problem_messages
204
title: Azure Service Bus Problem Messages
@@ -208,9 +208,9 @@ template:
208
units: messages
209
algorithm: absolute
210
dimensions:
211
- - selector: service_bus.deadlettered_messages_average
211
+ - selector: deadlettered_messages_average
212
name: dead_lettered
213
- - selector: service_bus.scheduled_messages_average
213
+ - selector: scheduled_messages_average
214
name: scheduled
215
- id: am_azure_service_bus__total_messages
216
title: Azure Service Bus Total Messages
@@ -220,7 +220,7 @@ template:
220
units: messages
221
algorithm: absolute
222
dimensions:
223
- - selector: service_bus.messages_average
223
+ - selector: messages_average
224
name: total
225
- id: am_azure_service_bus__requests
226
title: Azure Service Bus Requests
@@ -230,9 +230,9 @@ template:
230
units: requests/s
231
algorithm: incremental
232
dimensions:
233
- - selector: service_bus.incoming_requests_total
233
+ - selector: incoming_requests_total
234
name: incoming
235
- - selector: service_bus.successful_requests_total
235
+ - selector: successful_requests_total
236
name: successful
237
- id: am_azure_service_bus__errors
238
title: Azure Service Bus Errors
@@ -242,11 +242,11 @@ template:
242
units: errors/s
243
algorithm: incremental
244
dimensions:
245
- - selector: service_bus.server_errors_total
245
+ - selector: server_errors_total
246
name: server
247
- - selector: service_bus.user_errors_total
247
+ - selector: user_errors_total
248
name: user
249
- - selector: service_bus.throttled_requests_total
249
+ - selector: throttled_requests_total
250
name: throttled
251
- id: am_azure_service_bus__connections
252
title: Azure Service Bus Active Connections
@@ -256,7 +256,7 @@ template:
256
units: connections
257
algorithm: absolute
258
dimensions:
259
- - selector: service_bus.active_connections_total
259
+ - selector: active_connections_total
260
name: active
261
- id: am_azure_service_bus__connection_events
262
title: Azure Service Bus Connection Events
@@ -266,9 +266,9 @@ template:
266
units: connections
267
algorithm: absolute
268
dimensions:
269
- - selector: service_bus.connections_opened_average
269
+ - selector: connections_opened_average
270
name: opened
271
- - selector: service_bus.connections_closed_average
271
+ - selector: connections_closed_average
272
name: closed
273
- id: am_azure_service_bus__namespace_size
274
title: Azure Service Bus Namespace Size
@@ -278,7 +278,7 @@ template:
278
units: bytes
279
algorithm: absolute
280
dimensions:
281
- - selector: service_bus.size_average
281
+ - selector: size_average
282
name: average
283
- id: am_azure_service_bus__data_throughput
284
title: Azure Service Bus Data Throughput
@@ -288,9 +288,9 @@ template:
288
units: bytes/s
289
algorithm: incremental
290
dimensions:
291
- - selector: service_bus.incoming_bytes_total
291
+ - selector: incoming_bytes_total
292
name: in
293
- - selector: service_bus.outgoing_bytes_total
293
+ - selector: outgoing_bytes_total
294
name: out
295
- id: am_azure_service_bus__namespace_resources
296
title: Azure Service Bus Namespace Resources
@@ -300,9 +300,9 @@ template:
300
units: percentage
301
algorithm: absolute
302
dimensions:
303
- - selector: service_bus.namespace_cpu_usage_maximum
303
+ - selector: namespace_cpu_usage_maximum
304
name: cpu
305
- - selector: service_bus.namespace_memory_usage_maximum
305
+ - selector: namespace_memory_usage_maximum
306
name: memory
307
- id: am_azure_service_bus__send_latency
308
title: Azure Service Bus Send Latency
@@ -312,7 +312,7 @@ template:
312
units: milliseconds
313
algorithm: absolute
314
dimensions:
315
- - selector: service_bus.server_send_latency_average
315
+ - selector: server_send_latency_average
316
name: average
317
- id: am_azure_service_bus__replication_lag
318
title: Azure Service Bus Replication Lag
@@ -322,7 +322,7 @@ template:
322
units: messages
323
algorithm: absolute
324
dimensions:
325
- - selector: service_bus.replication_lag_count_maximum
325
+ - selector: replication_lag_count_maximum
326
name: messages
327
- id: am_azure_service_bus__replication_lag_duration
328
title: Azure Service Bus Replication Lag Duration
@@ -332,7 +332,7 @@ template:
332
units: seconds
333
algorithm: absolute
334
dimensions:
335
- - selector: service_bus.replication_lag_duration_maximum
335
+ - selector: replication_lag_duration_maximum
336
name: duration
337
- id: am_azure_service_bus__checkpoint_operations
338
title: Azure Service Bus Pending Checkpoint Operations
@@ -342,5 +342,5 @@ template:
342
units: operations
343
algorithm: absolute
344
dimensions:
345
- - selector: service_bus.pending_checkpoint_operation_count_total
345
+ - selector: pending_checkpoint_operation_count_total
346
name: pending
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/sql_database.yaml
+36
-36
@@ -236,9 +236,9 @@ template:
236
units: percentage
237
algorithm: absolute
238
dimensions:
239
- - selector: sql_database.cpu_percent_average
239
+ - selector: cpu_percent_average
240
name: average
241
- - selector: sql_database.cpu_percent_maximum
241
+ - selector: cpu_percent_maximum
242
name: maximum
243
- id: am_azure_sql_database__instance_cpu
244
title: Azure SQL Database Instance CPU Utilization
@@ -248,7 +248,7 @@ template:
248
units: percentage
249
algorithm: absolute
250
dimensions:
251
- - selector: sql_database.sql_instance_cpu_percent_average
251
+ - selector: sql_instance_cpu_percent_average
252
name: average
253
- id: am_azure_sql_database__instance_memory
254
title: Azure SQL Database Instance Memory Utilization
@@ -258,7 +258,7 @@ template:
258
units: percentage
259
algorithm: absolute
260
dimensions:
261
- - selector: sql_database.sql_instance_memory_percent_average
261
+ - selector: sql_instance_memory_percent_average
262
name: average
263
- id: am_azure_sql_database__dtu_consumption
264
title: Azure SQL Database DTU Consumption
@@ -268,7 +268,7 @@ template:
268
units: percentage
269
algorithm: absolute
270
dimensions:
271
- - selector: sql_database.dtu_consumption_percent_average
271
+ - selector: dtu_consumption_percent_average
272
name: average
273
- id: am_azure_sql_database__io_utilization
274
title: Azure SQL Database I/O Utilization
@@ -278,9 +278,9 @@ template:
278
units: percentage
279
algorithm: absolute
280
dimensions:
281
- - selector: sql_database.physical_data_read_percent_average
281
+ - selector: physical_data_read_percent_average
282
name: data_read
283
- - selector: sql_database.log_write_percent_average
283
+ - selector: log_write_percent_average
284
name: log_write
285
- id: am_azure_sql_database__resource_utilization
286
title: Azure SQL Database Resource Utilization
@@ -290,9 +290,9 @@ template:
290
units: percentage
291
algorithm: absolute
292
dimensions:
293
- - selector: sql_database.workers_percent_average
293
+ - selector: workers_percent_average
294
name: workers
295
- - selector: sql_database.sessions_percent_average
295
+ - selector: sessions_percent_average
296
name: sessions
297
- id: am_azure_sql_database__availability
298
title: Azure SQL Database Availability
@@ -302,7 +302,7 @@ template:
302
units: percentage
303
algorithm: absolute
304
dimensions:
305
- - selector: sql_database.availability_average
305
+ - selector: availability_average
306
name: average
307
- id: am_azure_sql_database__connections
308
title: Azure SQL Database Connection Events
@@ -312,13 +312,13 @@ template:
312
units: connections/s
313
algorithm: incremental
314
dimensions:
315
- - selector: sql_database.connection_successful_total
315
+ - selector: connection_successful_total
316
name: successful
317
- - selector: sql_database.connection_failed_total
317
+ - selector: connection_failed_total
318
name: failed_system
319
- - selector: sql_database.connection_failed_user_error_total
319
+ - selector: connection_failed_user_error_total
320
name: failed_user
321
- - selector: sql_database.blocked_by_firewall_total
321
+ - selector: blocked_by_firewall_total
322
name: firewall_blocked
323
- id: am_azure_sql_database__deadlocks
324
title: Azure SQL Database Deadlocks
@@ -328,7 +328,7 @@ template:
328
units: deadlocks/s
329
algorithm: incremental
330
dimensions:
331
- - selector: sql_database.deadlock_total
331
+ - selector: deadlock_total
332
name: total
333
- id: am_azure_sql_database__storage
334
title: Azure SQL Database Storage
@@ -338,9 +338,9 @@ template:
338
units: bytes
339
algorithm: absolute
340
dimensions:
341
- - selector: sql_database.storage_average
341
+ - selector: storage_average
342
name: used
343
- - selector: sql_database.allocated_data_storage_average
343
+ - selector: allocated_data_storage_average
344
name: allocated
345
- id: am_azure_sql_database__storage_utilization
346
title: Azure SQL Database Storage Utilization
@@ -350,7 +350,7 @@ template:
350
units: percentage
351
algorithm: absolute
352
dimensions:
353
- - selector: sql_database.storage_percent_average
353
+ - selector: storage_percent_average
354
name: average
355
- id: am_azure_sql_database__tempdb_size
356
title: Azure SQL Database Tempdb Size
@@ -360,9 +360,9 @@ template:
360
units: KiB
361
algorithm: absolute
362
dimensions:
363
- - selector: sql_database.tempdb_data_size_average
363
+ - selector: tempdb_data_size_average
364
name: data
365
- - selector: sql_database.tempdb_log_size_average
365
+ - selector: tempdb_log_size_average
366
name: log
367
- id: am_azure_sql_database__tempdb_log_utilization
368
title: Azure SQL Database Tempdb Log Utilization
@@ -372,7 +372,7 @@ template:
372
units: percentage
373
algorithm: absolute
374
dimensions:
375
- - selector: sql_database.tempdb_log_used_percent_average
375
+ - selector: tempdb_log_used_percent_average
376
name: average
377
- id: am_azure_sql_database__vcore_usage
378
title: Azure SQL Database vCore Usage
@@ -382,9 +382,9 @@ template:
382
units: vCores
383
algorithm: absolute
384
dimensions:
385
- - selector: sql_database.cpu_used_average
385
+ - selector: cpu_used_average
386
name: used
387
- - selector: sql_database.cpu_limit_average
387
+ - selector: cpu_limit_average
388
name: limit
389
- id: am_azure_sql_database__dtu_usage
390
title: Azure SQL Database DTU Usage
@@ -394,9 +394,9 @@ template:
394
units: DTU
395
algorithm: absolute
396
dimensions:
397
- - selector: sql_database.dtu_used_average
397
+ - selector: dtu_used_average
398
name: used
399
- - selector: sql_database.dtu_limit_average
399
+ - selector: dtu_limit_average
400
name: limit
401
- id: am_azure_sql_database__sessions_count
402
title: Azure SQL Database Sessions Count
@@ -406,7 +406,7 @@ template:
406
units: sessions
407
algorithm: absolute
408
dimensions:
409
- - selector: sql_database.sessions_count_average
409
+ - selector: sessions_count_average
410
name: average
411
- id: am_azure_sql_database__replication_lag
412
title: Azure SQL Database Replication Lag
@@ -416,7 +416,7 @@ template:
416
units: seconds
417
algorithm: absolute
418
dimensions:
419
- - selector: sql_database.replication_lag_seconds_average
419
+ - selector: replication_lag_seconds_average
420
name: average
421
- id: am_azure_sql_database__xtp_storage
422
title: Azure SQL Database In-Memory OLTP Storage
@@ -426,7 +426,7 @@ template:
426
units: percentage
427
algorithm: absolute
428
dimensions:
429
- - selector: sql_database.xtp_storage_percent_average
429
+ - selector: xtp_storage_percent_average
430
name: average
431
- id: am_azure_sql_database__serverless_utilization
432
title: Azure SQL Database Serverless Utilization
@@ -436,9 +436,9 @@ template:
436
units: percentage
437
algorithm: absolute
438
dimensions:
439
- - selector: sql_database.app_cpu_percent_average
439
+ - selector: app_cpu_percent_average
440
name: cpu
441
- - selector: sql_database.app_memory_percent_average
441
+ - selector: app_memory_percent_average
442
name: memory
443
- id: am_azure_sql_database__serverless_billing
444
title: Azure SQL Database Serverless Billing
@@ -448,9 +448,9 @@ template:
448
units: vCore-seconds/s
449
algorithm: incremental
450
dimensions:
451
- - selector: sql_database.app_cpu_billed_total
451
+ - selector: app_cpu_billed_total
452
name: total
453
- - selector: sql_database.app_cpu_billed_ha_replicas_total
453
+ - selector: app_cpu_billed_ha_replicas_total
454
name: ha_replicas
455
- id: am_azure_sql_database__free_tier_usage
456
title: Azure SQL Database Free Tier Usage
@@ -460,9 +460,9 @@ template:
460
units: vCore-seconds
461
algorithm: absolute
462
dimensions:
463
- - selector: sql_database.free_amount_consumed_average
463
+ - selector: free_amount_consumed_average
464
name: consumed
465
- - selector: sql_database.free_amount_remaining_average
465
+ - selector: free_amount_remaining_average
466
name: remaining
467
- id: am_azure_sql_database__ledger_digest
468
title: Azure SQL Database Ledger Digest Uploads
@@ -472,7 +472,7 @@ template:
472
units: events/s
473
algorithm: incremental
474
dimensions:
475
- - selector: sql_database.ledger_digest_upload_success_count
475
+ - selector: ledger_digest_upload_success_count
476
name: success
477
- - selector: sql_database.ledger_digest_upload_failed_count
477
+ - selector: ledger_digest_upload_failed_count
478
name: failed
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/sql_elastic_pool.yaml
+26
-26
@@ -176,9 +176,9 @@ template:
176
units: percentage
177
algorithm: absolute
178
dimensions:
179
- - selector: sql_elastic_pool.cpu_percent_average
179
+ - selector: cpu_percent_average
180
name: average
181
- - selector: sql_elastic_pool.cpu_percent_maximum
181
+ - selector: cpu_percent_maximum
182
name: maximum
183
- id: am_azure_sql_elastic_pool__instance_cpu
184
title: Azure SQL Elastic Pool Instance CPU Utilization
@@ -188,7 +188,7 @@ template:
188
units: percentage
189
algorithm: absolute
190
dimensions:
191
- - selector: sql_elastic_pool.sql_instance_cpu_percent_average
191
+ - selector: sql_instance_cpu_percent_average
192
name: average
193
- id: am_azure_sql_elastic_pool__instance_memory
194
title: Azure SQL Elastic Pool Instance Memory Utilization
@@ -198,7 +198,7 @@ template:
198
units: percentage
199
algorithm: absolute
200
dimensions:
201
- - selector: sql_elastic_pool.sql_instance_memory_percent_average
201
+ - selector: sql_instance_memory_percent_average
202
name: average
203
- id: am_azure_sql_elastic_pool__dtu_consumption
204
title: Azure SQL Elastic Pool DTU Consumption
@@ -208,7 +208,7 @@ template:
208
units: percentage
209
algorithm: absolute
210
dimensions:
211
- - selector: sql_elastic_pool.dtu_consumption_percent_average
211
+ - selector: dtu_consumption_percent_average
212
name: average
213
- id: am_azure_sql_elastic_pool__io_utilization
214
title: Azure SQL Elastic Pool I/O Utilization
@@ -218,9 +218,9 @@ template:
218
units: percentage
219
algorithm: absolute
220
dimensions:
221
- - selector: sql_elastic_pool.physical_data_read_percent_average
221
+ - selector: physical_data_read_percent_average
222
name: data_read
223
- - selector: sql_elastic_pool.log_write_percent_average
223
+ - selector: log_write_percent_average
224
name: log_write
225
- id: am_azure_sql_elastic_pool__resource_utilization
226
title: Azure SQL Elastic Pool Resource Utilization
@@ -230,9 +230,9 @@ template:
230
units: percentage
231
algorithm: absolute
232
dimensions:
233
- - selector: sql_elastic_pool.workers_percent_average
233
+ - selector: workers_percent_average
234
name: workers
235
- - selector: sql_elastic_pool.sessions_percent_average
235
+ - selector: sessions_percent_average
236
name: sessions
237
- id: am_azure_sql_elastic_pool__sessions_count
238
title: Azure SQL Elastic Pool Sessions Count
@@ -242,7 +242,7 @@ template:
242
units: sessions
243
algorithm: absolute
244
dimensions:
245
- - selector: sql_elastic_pool.sessions_count_average
245
+ - selector: sessions_count_average
246
name: average
247
- id: am_azure_sql_elastic_pool__storage
248
title: Azure SQL Elastic Pool Storage
@@ -252,11 +252,11 @@ template:
252
units: bytes
253
algorithm: absolute
254
dimensions:
255
- - selector: sql_elastic_pool.storage_used_average
255
+ - selector: storage_used_average
256
name: used
257
- - selector: sql_elastic_pool.allocated_data_storage_average
257
+ - selector: allocated_data_storage_average
258
name: allocated
259
- - selector: sql_elastic_pool.storage_limit_average
259
+ - selector: storage_limit_average
260
name: limit
261
- id: am_azure_sql_elastic_pool__storage_utilization
262
title: Azure SQL Elastic Pool Storage Utilization
@@ -266,9 +266,9 @@ template:
266
units: percentage
267
algorithm: absolute
268
dimensions:
269
- - selector: sql_elastic_pool.storage_percent_average
269
+ - selector: storage_percent_average
270
name: used
271
- - selector: sql_elastic_pool.allocated_data_storage_percent_average
271
+ - selector: allocated_data_storage_percent_average
272
name: allocated
273
- id: am_azure_sql_elastic_pool__xtp_storage
274
title: Azure SQL Elastic Pool In-Memory OLTP Storage
@@ -278,7 +278,7 @@ template:
278
units: percentage
279
algorithm: absolute
280
dimensions:
281
- - selector: sql_elastic_pool.xtp_storage_percent_average
281
+ - selector: xtp_storage_percent_average
282
name: average
283
- id: am_azure_sql_elastic_pool__tempdb_size
284
title: Azure SQL Elastic Pool Tempdb Size
@@ -288,9 +288,9 @@ template:
288
units: KiB
289
algorithm: absolute
290
dimensions:
291
- - selector: sql_elastic_pool.tempdb_data_size_average
291
+ - selector: tempdb_data_size_average
292
name: data
293
- - selector: sql_elastic_pool.tempdb_log_size_average
293
+ - selector: tempdb_log_size_average
294
name: log
295
- id: am_azure_sql_elastic_pool__tempdb_log_utilization
296
title: Azure SQL Elastic Pool Tempdb Log Utilization
@@ -300,7 +300,7 @@ template:
300
units: percentage
301
algorithm: absolute
302
dimensions:
303
- - selector: sql_elastic_pool.tempdb_log_used_percent_average
303
+ - selector: tempdb_log_used_percent_average
304
name: average
305
- id: am_azure_sql_elastic_pool__vcore_usage
306
title: Azure SQL Elastic Pool vCore Usage
@@ -310,9 +310,9 @@ template:
310
units: vCores
311
algorithm: absolute
312
dimensions:
313
- - selector: sql_elastic_pool.cpu_used_average
313
+ - selector: cpu_used_average
314
name: used
315
- - selector: sql_elastic_pool.cpu_limit_average
315
+ - selector: cpu_limit_average
316
name: limit
317
- id: am_azure_sql_elastic_pool__edtu_usage
318
title: Azure SQL Elastic Pool eDTU Usage
@@ -322,9 +322,9 @@ template:
322
units: eDTU
323
algorithm: absolute
324
dimensions:
325
- - selector: sql_elastic_pool.e_dtu_used_average
325
+ - selector: e_dtu_used_average
326
name: used
327
- - selector: sql_elastic_pool.e_dtu_limit_average
327
+ - selector: e_dtu_limit_average
328
name: limit
329
- id: am_azure_sql_elastic_pool__serverless_utilization
330
title: Azure SQL Elastic Pool Serverless Utilization
@@ -334,9 +334,9 @@ template:
334
units: percentage
335
algorithm: absolute
336
dimensions:
337
- - selector: sql_elastic_pool.app_cpu_percent_average
337
+ - selector: app_cpu_percent_average
338
name: cpu
339
- - selector: sql_elastic_pool.app_memory_percent_average
339
+ - selector: app_memory_percent_average
340
name: memory
341
- id: am_azure_sql_elastic_pool__serverless_billing
342
title: Azure SQL Elastic Pool Serverless Billing
@@ -346,5 +346,5 @@ template:
346
units: vCore-seconds/s
347
algorithm: incremental
348
dimensions:
349
- - selector: sql_elastic_pool.app_cpu_billed_total
349
+ - selector: app_cpu_billed_total
350
name: total
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/sql_managed_instance.yaml
+8
-8
@@ -68,9 +68,9 @@ template:
68
units: percentage
69
algorithm: absolute
70
dimensions:
71
- - selector: sql_managed_instance.avg_cpu_percent_average
71
+ - selector: avg_cpu_percent_average
72
name: average
73
- - selector: sql_managed_instance.avg_cpu_percent_maximum
73
+ - selector: avg_cpu_percent_maximum
74
name: maximum
75
- id: am_azure_sql_managed_instance__io_throughput
76
title: Azure SQL Managed Instance I/O Throughput
@@ -80,9 +80,9 @@ template:
80
units: bytes/s
81
algorithm: absolute
82
dimensions:
83
- - selector: sql_managed_instance.io_bytes_read_average
83
+ - selector: io_bytes_read_average
84
name: read
85
- - selector: sql_managed_instance.io_bytes_written_average
85
+ - selector: io_bytes_written_average
86
name: written
87
- id: am_azure_sql_managed_instance__io_requests
88
title: Azure SQL Managed Instance I/O Requests
@@ -92,7 +92,7 @@ template:
92
units: requests/s
93
algorithm: absolute
94
dimensions:
95
- - selector: sql_managed_instance.io_requests_average
95
+ - selector: io_requests_average
96
name: average
97
- id: am_azure_sql_managed_instance__storage
98
title: Azure SQL Managed Instance Storage
@@ -102,9 +102,9 @@ template:
102
units: MiB
103
algorithm: absolute
104
dimensions:
105
- - selector: sql_managed_instance.reserved_storage_mb_average
105
+ - selector: reserved_storage_mb_average
106
name: reserved
107
- - selector: sql_managed_instance.storage_space_used_mb_average
107
+ - selector: storage_space_used_mb_average
108
name: used
109
- id: am_azure_sql_managed_instance__virtual_core_count
110
title: Azure SQL Managed Instance Virtual Core Count
@@ -114,5 +114,5 @@ template:
114
units: cores
115
algorithm: absolute
116
dimensions:
117
- - selector: sql_managed_instance.virtual_core_count_average
117
+ - selector: virtual_core_count_average
118
name: average
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/storage_accounts.yaml
+9
-9
@@ -70,7 +70,7 @@ template:
70
units: percentage
71
algorithm: absolute
72
dimensions:
73
- - selector: storage_accounts.availability_average
73
+ - selector: availability_average
74
name: average
75
- id: am_azure_storage_accounts__transactions
76
title: Azure Storage Account Transactions
@@ -80,7 +80,7 @@ template:
80
units: transactions/s
81
algorithm: incremental
82
dimensions:
83
- - selector: storage_accounts.transactions_total
83
+ - selector: transactions_total
84
name: total
85
- id: am_azure_storage_accounts__throughput
86
title: Azure Storage Account Throughput
@@ -90,9 +90,9 @@ template:
90
units: bytes/s
91
algorithm: incremental
92
dimensions:
93
- - selector: storage_accounts.ingress_total
93
+ - selector: ingress_total
94
name: ingress
95
- - selector: storage_accounts.egress_total
95
+ - selector: egress_total
96
name: egress
97
- id: am_azure_storage_accounts__e2e_latency
98
title: Azure Storage Account End-to-End Latency
@@ -102,9 +102,9 @@ template:
102
units: milliseconds
103
algorithm: absolute
104
dimensions:
105
- - selector: storage_accounts.success_e2e_latency_average
105
+ - selector: success_e2e_latency_average
106
name: average
107
- - selector: storage_accounts.success_e2e_latency_maximum
107
+ - selector: success_e2e_latency_maximum
108
name: maximum
109
- id: am_azure_storage_accounts__server_latency
110
title: Azure Storage Account Server Latency
@@ -114,9 +114,9 @@ template:
114
units: milliseconds
115
algorithm: absolute
116
dimensions:
117
- - selector: storage_accounts.success_server_latency_average
117
+ - selector: success_server_latency_average
118
name: average
119
- - selector: storage_accounts.success_server_latency_maximum
119
+ - selector: success_server_latency_maximum
120
name: maximum
121
- id: am_azure_storage_accounts__used_capacity
122
title: Azure Storage Account Used Capacity
@@ -126,5 +126,5 @@ template:
126
units: bytes
127
algorithm: absolute
128
dimensions:
129
- - selector: storage_accounts.used_capacity_average
129
+ - selector: used_capacity_average
130
name: average
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/stream_analytics.yaml
+17
-17
@@ -142,9 +142,9 @@ template:
142
units: events/s
143
algorithm: incremental
144
dimensions:
145
- - selector: stream_analytics.input_events_total
145
+ - selector: input_events_total
146
name: in
147
- - selector: stream_analytics.output_events_total
147
+ - selector: output_events_total
148
name: out
149
- id: am_azure_stream_analytics__input_data_throughput
150
title: Azure Stream Analytics Input Data Throughput
@@ -154,7 +154,7 @@ template:
154
units: bytes/s
155
algorithm: incremental
156
dimensions:
157
- - selector: stream_analytics.input_event_bytes_total
157
+ - selector: input_event_bytes_total
158
name: received
159
- id: am_azure_stream_analytics__input_sources_received
160
title: Azure Stream Analytics Input Sources Received
@@ -164,7 +164,7 @@ template:
164
units: sources/s
165
algorithm: incremental
166
dimensions:
167
- - selector: stream_analytics.input_events_sources_per_second_total
167
+ - selector: input_events_sources_per_second_total
168
name: received
169
- id: am_azure_stream_analytics__event_timing
170
title: Azure Stream Analytics Event Timing Issues
@@ -174,11 +174,11 @@ template:
174
units: events/s
175
algorithm: incremental
176
dimensions:
177
- - selector: stream_analytics.late_input_events_total
177
+ - selector: late_input_events_total
178
name: late
179
- - selector: stream_analytics.early_input_events_total
179
+ - selector: early_input_events_total
180
name: early
181
- - selector: stream_analytics.dropped_or_adjusted_events_total
181
+ - selector: dropped_or_adjusted_events_total
182
name: out_of_order
183
- id: am_azure_stream_analytics__backlogged_events
184
title: Azure Stream Analytics Backlogged Events
@@ -188,7 +188,7 @@ template:
188
units: events
189
algorithm: absolute
190
dimensions:
191
- - selector: stream_analytics.input_events_sources_backlogged_average
191
+ - selector: input_events_sources_backlogged_average
192
name: backlogged
193
- id: am_azure_stream_analytics__watermark_delay
194
title: Azure Stream Analytics Watermark Delay
@@ -198,7 +198,7 @@ template:
198
units: seconds
199
algorithm: absolute
200
dimensions:
201
- - selector: stream_analytics.output_watermark_delay_seconds_maximum
201
+ - selector: output_watermark_delay_seconds_maximum
202
name: delay
203
- id: am_azure_stream_analytics__errors
204
title: Azure Stream Analytics Errors
@@ -208,11 +208,11 @@ template:
208
units: errors/s
209
algorithm: incremental
210
dimensions:
211
- - selector: stream_analytics.errors_total
211
+ - selector: errors_total
212
name: runtime
213
- - selector: stream_analytics.conversion_errors_total
213
+ - selector: conversion_errors_total
214
name: data_conversion
215
- - selector: stream_analytics.deserialization_error_total
215
+ - selector: deserialization_error_total
216
name: deserialization
217
- id: am_azure_stream_analytics__function_requests
218
title: Azure Stream Analytics Function Requests
@@ -222,9 +222,9 @@ template:
222
units: requests/s
223
algorithm: incremental
224
dimensions:
225
- - selector: stream_analytics.aml_callout_requests_total
225
+ - selector: aml_callout_requests_total
226
name: total
227
- - selector: stream_analytics.aml_callout_failed_requests_total
227
+ - selector: aml_callout_failed_requests_total
228
name: failed
229
- id: am_azure_stream_analytics__function_events
230
title: Azure Stream Analytics Function Events
@@ -234,7 +234,7 @@ template:
234
units: events/s
235
algorithm: incremental
236
dimensions:
237
- - selector: stream_analytics.aml_callout_input_events_total
237
+ - selector: aml_callout_input_events_total
238
name: input
239
- id: am_azure_stream_analytics__resource_utilization
240
title: Azure Stream Analytics Resource Utilization
@@ -244,7 +244,7 @@ template:
244
units: percentage
245
algorithm: absolute
246
dimensions:
247
- - selector: stream_analytics.process_cpu_usage_percentage_average
247
+ - selector: process_cpu_usage_percentage_average
248
name: cpu
249
- - selector: stream_analytics.resource_utilization_average
249
+ - selector: resource_utilization_average
250
name: su_memory
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/synapse.yaml
+24
-24
@@ -180,7 +180,7 @@ template:
180
units: bytes/s
181
algorithm: incremental
182
dimensions:
183
- - selector: synapse.builtin_sql_pool_data_processed_bytes_total
183
+ - selector: builtin_sql_pool_data_processed_bytes_total
184
name: processed
185
- id: am_azure_synapse__builtin_sql_pool_login_attempts
186
title: Azure Synapse Built-in SQL Pool Login Attempts
@@ -190,7 +190,7 @@ template:
190
units: attempts/s
191
algorithm: incremental
192
dimensions:
193
- - selector: synapse.builtin_sql_pool_login_attempts_total
193
+ - selector: builtin_sql_pool_login_attempts_total
194
name: login_attempts
195
- id: am_azure_synapse__builtin_sql_pool_requests
196
title: Azure Synapse Built-in SQL Pool Requests Ended
@@ -200,7 +200,7 @@ template:
200
units: requests/s
201
algorithm: incremental
202
dimensions:
203
- - selector: synapse.builtin_sql_pool_requests_ended_total
203
+ - selector: builtin_sql_pool_requests_ended_total
204
name: requests
205
- id: am_azure_synapse__activity_runs
206
title: Azure Synapse Activity Runs
@@ -210,7 +210,7 @@ template:
210
units: runs/s
211
algorithm: incremental
212
dimensions:
213
- - selector: synapse.integration_activity_runs_ended_total
213
+ - selector: integration_activity_runs_ended_total
214
name: ended
215
- id: am_azure_synapse__pipeline_runs
216
title: Azure Synapse Pipeline Runs
@@ -220,7 +220,7 @@ template:
220
units: runs/s
221
algorithm: incremental
222
dimensions:
223
- - selector: synapse.integration_pipeline_runs_ended_total
223
+ - selector: integration_pipeline_runs_ended_total
224
name: ended
225
- id: am_azure_synapse__trigger_runs
226
title: Azure Synapse Trigger Runs
@@ -230,7 +230,7 @@ template:
230
units: runs/s
231
algorithm: incremental
232
dimensions:
233
- - selector: synapse.integration_trigger_runs_ended_total
233
+ - selector: integration_trigger_runs_ended_total
234
name: ended
235
- id: am_azure_synapse__link_connection_events
236
title: Azure Synapse Link Connection Events
@@ -240,7 +240,7 @@ template:
240
units: events/s
241
algorithm: incremental
242
dimensions:
243
- - selector: synapse.integration_link_connection_events_total
243
+ - selector: integration_link_connection_events_total
244
name: events
245
- id: am_azure_synapse__link_table_events
246
title: Azure Synapse Link Table Events
@@ -250,7 +250,7 @@ template:
250
units: events/s
251
algorithm: incremental
252
dimensions:
253
- - selector: synapse.integration_link_table_events_total
253
+ - selector: integration_link_table_events_total
254
name: events
255
- id: am_azure_synapse__link_processed_rows
256
title: Azure Synapse Link Processed Changed Rows
@@ -260,7 +260,7 @@ template:
260
units: rows/s
261
algorithm: incremental
262
dimensions:
263
- - selector: synapse.integration_link_processed_changed_rows_total
263
+ - selector: integration_link_processed_changed_rows_total
264
name: changed_rows
265
- id: am_azure_synapse__link_data_volume
266
title: Azure Synapse Link Processed Data Volume
@@ -270,7 +270,7 @@ template:
270
units: bytes/s
271
algorithm: incremental
272
dimensions:
273
- - selector: synapse.integration_link_processed_data_volume_total
273
+ - selector: integration_link_processed_data_volume_total
274
name: processed
275
- id: am_azure_synapse__link_processing_latency
276
title: Azure Synapse Link Processing Latency
@@ -280,7 +280,7 @@ template:
280
units: seconds
281
algorithm: absolute
282
dimensions:
283
- - selector: synapse.integration_link_processing_latency_in_seconds_average
283
+ - selector: integration_link_processing_latency_in_seconds_average
284
name: average
285
- id: am_azure_synapse__streaming_event_flow
286
title: Azure Synapse Streaming Event Flow
@@ -290,9 +290,9 @@ template:
290
units: events/s
291
algorithm: incremental
292
dimensions:
293
- - selector: synapse.sql_streaming_input_events_total
293
+ - selector: sql_streaming_input_events_total
294
name: in
295
- - selector: synapse.sql_streaming_output_events_total
295
+ - selector: sql_streaming_output_events_total
296
name: out
297
- id: am_azure_synapse__streaming_input_throughput
298
title: Azure Synapse Streaming Input Data Throughput
@@ -302,7 +302,7 @@ template:
302
units: bytes/s
303
algorithm: incremental
304
dimensions:
305
- - selector: synapse.sql_streaming_input_event_bytes_total
305
+ - selector: sql_streaming_input_event_bytes_total
306
name: received
307
- id: am_azure_synapse__streaming_input_sources
308
title: Azure Synapse Streaming Input Sources Received
@@ -312,7 +312,7 @@ template:
312
units: sources/s
313
algorithm: incremental
314
dimensions:
315
- - selector: synapse.sql_streaming_input_events_sources_per_second_total
315
+ - selector: sql_streaming_input_events_sources_per_second_total
316
name: received
317
- id: am_azure_synapse__streaming_event_timing
318
title: Azure Synapse Streaming Event Timing Issues
@@ -322,13 +322,13 @@ template:
322
units: events/s
323
algorithm: incremental
324
dimensions:
325
- - selector: synapse.sql_streaming_late_input_events_total
325
+ - selector: sql_streaming_late_input_events_total
326
name: late
327
- - selector: synapse.sql_streaming_early_input_events_total
327
+ - selector: sql_streaming_early_input_events_total
328
name: early
329
- - selector: synapse.sql_streaming_out_of_order_events_total
329
+ - selector: sql_streaming_out_of_order_events_total
330
name: out_of_order
331
- - selector: synapse.sql_streaming_backlogged_input_event_sources_total
331
+ - selector: sql_streaming_backlogged_input_event_sources_total
332
name: backlogged
333
- id: am_azure_synapse__streaming_watermark_delay
334
title: Azure Synapse Streaming Watermark Delay
@@ -338,7 +338,7 @@ template:
338
units: seconds
339
algorithm: absolute
340
dimensions:
341
- - selector: synapse.sql_streaming_output_watermark_delay_seconds_maximum
341
+ - selector: sql_streaming_output_watermark_delay_seconds_maximum
342
name: delay
343
- id: am_azure_synapse__streaming_errors
344
title: Azure Synapse Streaming Errors
@@ -348,11 +348,11 @@ template:
348
units: errors/s
349
algorithm: incremental
350
dimensions:
351
- - selector: synapse.sql_streaming_runtime_errors_total
351
+ - selector: sql_streaming_runtime_errors_total
352
name: runtime
353
- - selector: synapse.sql_streaming_conversion_errors_total
353
+ - selector: sql_streaming_conversion_errors_total
354
name: data_conversion
355
- - selector: synapse.sql_streaming_deserialization_error_total
355
+ - selector: sql_streaming_deserialization_error_total
356
name: deserialization
357
- id: am_azure_synapse__streaming_resource_utilization
358
title: Azure Synapse Streaming Resource Utilization
@@ -362,5 +362,5 @@ template:
362
units: percentage
363
algorithm: absolute
364
dimensions:
365
- - selector: synapse.sql_streaming_resource_utilization_average
365
+ - selector: sql_streaming_resource_utilization_average
366
name: utilization
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/virtual_machines.yaml
+62
-62
@@ -396,7 +396,7 @@ template:
396
units: percentage
397
algorithm: absolute
398
dimensions:
399
- - selector: virtual_machines.percentage_cpu_average
399
+ - selector: percentage_cpu_average
400
name: average
401
- id: am_azure_virtual_machines__cpu_credits
402
title: Azure Virtual Machine CPU Credits
@@ -406,9 +406,9 @@ template:
406
units: credits
407
algorithm: absolute
408
dimensions:
409
- - selector: virtual_machines.cpu_credits_consumed_average
409
+ - selector: cpu_credits_consumed_average
410
name: consumed
411
- - selector: virtual_machines.cpu_credits_remaining_average
411
+ - selector: cpu_credits_remaining_average
412
name: remaining
413
- id: am_azure_virtual_machines__memory
414
title: Azure Virtual Machine Available Memory
@@ -418,7 +418,7 @@ template:
418
units: bytes
419
algorithm: absolute
420
dimensions:
421
- - selector: virtual_machines.available_memory_bytes_average
421
+ - selector: available_memory_bytes_average
422
name: available
423
- id: am_azure_virtual_machines__memory_percentage
424
title: Azure Virtual Machine Available Memory Percentage
@@ -428,7 +428,7 @@ template:
428
units: percentage
429
algorithm: absolute
430
dimensions:
431
- - selector: virtual_machines.available_memory_percentage_average
431
+ - selector: available_memory_percentage_average
432
name: available
433
- id: am_azure_virtual_machines__availability
434
title: Azure Virtual Machine Availability
@@ -438,7 +438,7 @@ template:
438
units: state
439
algorithm: absolute
440
dimensions:
441
- - selector: virtual_machines.vm_availability_metric_average
441
+ - selector: vm_availability_metric_average
442
name: average
443
- id: am_azure_virtual_machines__network_traffic
444
title: Azure Virtual Machine Network Traffic
@@ -448,9 +448,9 @@ template:
448
units: bytes/s
449
algorithm: incremental
450
dimensions:
451
- - selector: virtual_machines.network_in_total_total
451
+ - selector: network_in_total_total
452
name: in
453
- - selector: virtual_machines.network_out_total_total
453
+ - selector: network_out_total_total
454
name: out
455
- id: am_azure_virtual_machines__network_flows
456
title: Azure Virtual Machine Network Flows
@@ -460,9 +460,9 @@ template:
460
units: flows
461
algorithm: absolute
462
dimensions:
463
- - selector: virtual_machines.inbound_flows_average
463
+ - selector: inbound_flows_average
464
name: in
465
- - selector: virtual_machines.outbound_flows_average
465
+ - selector: outbound_flows_average
466
name: out
467
- id: am_azure_virtual_machines__network_flow_creation_rate
468
title: Azure Virtual Machine Network Flow Creation Rate
@@ -472,9 +472,9 @@ template:
472
units: flows/s
473
algorithm: absolute
474
dimensions:
475
- - selector: virtual_machines.inbound_flows_maximum_creation_rate_average
475
+ - selector: inbound_flows_maximum_creation_rate_average
476
name: in
477
- - selector: virtual_machines.outbound_flows_maximum_creation_rate_average
477
+ - selector: outbound_flows_maximum_creation_rate_average
478
name: out
479
- id: am_azure_virtual_machines__disk_throughput
480
title: Azure Virtual Machine Disk Throughput
@@ -484,9 +484,9 @@ template:
484
units: bytes/s
485
algorithm: incremental
486
dimensions:
487
- - selector: virtual_machines.disk_read_bytes_total
487
+ - selector: disk_read_bytes_total
488
name: read
489
- - selector: virtual_machines.disk_write_bytes_total
489
+ - selector: disk_write_bytes_total
490
name: write
491
- id: am_azure_virtual_machines__disk_iops
492
title: Azure Virtual Machine Disk IOPS
@@ -496,9 +496,9 @@ template:
496
units: operations/s
497
algorithm: absolute
498
dimensions:
499
- - selector: virtual_machines.disk_read_operations_sec_average
499
+ - selector: disk_read_operations_sec_average
500
name: read
501
- - selector: virtual_machines.disk_write_operations_sec_average
501
+ - selector: disk_write_operations_sec_average
502
name: write
503
- id: am_azure_virtual_machines__os_disk_throughput
504
title: Azure Virtual Machine OS Disk Throughput
@@ -508,9 +508,9 @@ template:
508
units: bytes/s
509
algorithm: absolute
510
dimensions:
511
- - selector: virtual_machines.os_disk_read_bytes_sec_average
511
+ - selector: os_disk_read_bytes_sec_average
512
name: read
513
- - selector: virtual_machines.os_disk_write_bytes_sec_average
513
+ - selector: os_disk_write_bytes_sec_average
514
name: write
515
- id: am_azure_virtual_machines__os_disk_iops
516
title: Azure Virtual Machine OS Disk IOPS
@@ -520,9 +520,9 @@ template:
520
units: operations/s
521
algorithm: absolute
522
dimensions:
523
- - selector: virtual_machines.os_disk_read_operations_sec_average
523
+ - selector: os_disk_read_operations_sec_average
524
name: read
525
- - selector: virtual_machines.os_disk_write_operations_sec_average
525
+ - selector: os_disk_write_operations_sec_average
526
name: write
527
- id: am_azure_virtual_machines__os_disk_latency
528
title: Azure Virtual Machine OS Disk Latency
@@ -532,7 +532,7 @@ template:
532
units: milliseconds
533
algorithm: absolute
534
dimensions:
535
- - selector: virtual_machines.os_disk_latency_average
535
+ - selector: os_disk_latency_average
536
name: average
537
- id: am_azure_virtual_machines__os_disk_queue_depth
538
title: Azure Virtual Machine OS Disk Queue Depth
@@ -542,7 +542,7 @@ template:
542
units: operations
543
algorithm: absolute
544
dimensions:
545
- - selector: virtual_machines.os_disk_queue_depth_average
545
+ - selector: os_disk_queue_depth_average
546
name: average
547
- id: am_azure_virtual_machines__os_disk_throttling
548
title: Azure Virtual Machine OS Disk Throttling
@@ -552,9 +552,9 @@ template:
552
units: percentage
553
algorithm: absolute
554
dimensions:
555
- - selector: virtual_machines.os_disk_bandwidth_consumed_percentage_average
555
+ - selector: os_disk_bandwidth_consumed_percentage_average
556
name: bandwidth
557
- - selector: virtual_machines.os_disk_iops_consumed_percentage_average
557
+ - selector: os_disk_iops_consumed_percentage_average
558
name: iops
559
- id: am_azure_virtual_machines__os_disk_burst_capacity
560
title: Azure Virtual Machine OS Disk Burst Capacity
@@ -564,9 +564,9 @@ template:
564
units: bytes/s
565
algorithm: absolute
566
dimensions:
567
- - selector: virtual_machines.os_disk_max_burst_bandwidth_average
567
+ - selector: os_disk_max_burst_bandwidth_average
568
name: max_burst
569
- - selector: virtual_machines.os_disk_target_bandwidth_average
569
+ - selector: os_disk_target_bandwidth_average
570
name: target
571
- id: am_azure_virtual_machines__os_disk_burst_iops_capacity
572
title: Azure Virtual Machine OS Disk Burst IOPS Capacity
@@ -576,9 +576,9 @@ template:
576
units: iops
577
algorithm: absolute
578
dimensions:
579
- - selector: virtual_machines.os_disk_max_burst_iops_average
579
+ - selector: os_disk_max_burst_iops_average
580
name: max_burst
581
- - selector: virtual_machines.os_disk_target_iops_average
581
+ - selector: os_disk_target_iops_average
582
name: target
583
- id: am_azure_virtual_machines__os_disk_burst_credits
584
title: Azure Virtual Machine OS Disk Burst Credits Used
@@ -588,9 +588,9 @@ template:
588
units: percentage
589
algorithm: absolute
590
dimensions:
591
- - selector: virtual_machines.os_disk_used_burst_bps_credits_percentage_average
591
+ - selector: os_disk_used_burst_bps_credits_percentage_average
592
name: bandwidth
593
- - selector: virtual_machines.os_disk_used_burst_io_credits_percentage_average
593
+ - selector: os_disk_used_burst_io_credits_percentage_average
594
name: io
595
- id: am_azure_virtual_machines__data_disk_throughput
596
title: Azure Virtual Machine Data Disk Throughput
@@ -600,9 +600,9 @@ template:
600
units: bytes/s
601
algorithm: absolute
602
dimensions:
603
- - selector: virtual_machines.data_disk_read_bytes_sec_average
603
+ - selector: data_disk_read_bytes_sec_average
604
name: read
605
- - selector: virtual_machines.data_disk_write_bytes_sec_average
605
+ - selector: data_disk_write_bytes_sec_average
606
name: write
607
- id: am_azure_virtual_machines__data_disk_iops
608
title: Azure Virtual Machine Data Disk IOPS
@@ -612,9 +612,9 @@ template:
612
units: operations/s
613
algorithm: absolute
614
dimensions:
615
- - selector: virtual_machines.data_disk_read_operations_sec_average
615
+ - selector: data_disk_read_operations_sec_average
616
name: read
617
- - selector: virtual_machines.data_disk_write_operations_sec_average
617
+ - selector: data_disk_write_operations_sec_average
618
name: write
619
- id: am_azure_virtual_machines__data_disk_latency
620
title: Azure Virtual Machine Data Disk Latency
@@ -624,7 +624,7 @@ template:
624
units: milliseconds
625
algorithm: absolute
626
dimensions:
627
- - selector: virtual_machines.data_disk_latency_average
627
+ - selector: data_disk_latency_average
628
name: average
629
- id: am_azure_virtual_machines__data_disk_queue_depth
630
title: Azure Virtual Machine Data Disk Queue Depth
@@ -634,7 +634,7 @@ template:
634
units: operations
635
algorithm: absolute
636
dimensions:
637
- - selector: virtual_machines.data_disk_queue_depth_average
637
+ - selector: data_disk_queue_depth_average
638
name: average
639
- id: am_azure_virtual_machines__data_disk_throttling
640
title: Azure Virtual Machine Data Disk Throttling
@@ -644,9 +644,9 @@ template:
644
units: percentage
645
algorithm: absolute
646
dimensions:
647
- - selector: virtual_machines.data_disk_bandwidth_consumed_percentage_average
647
+ - selector: data_disk_bandwidth_consumed_percentage_average
648
name: bandwidth
649
- - selector: virtual_machines.data_disk_iops_consumed_percentage_average
649
+ - selector: data_disk_iops_consumed_percentage_average
650
name: iops
651
- id: am_azure_virtual_machines__data_disk_burst_capacity
652
title: Azure Virtual Machine Data Disk Burst Capacity
@@ -656,9 +656,9 @@ template:
656
units: bytes/s
657
algorithm: absolute
658
dimensions:
659
- - selector: virtual_machines.data_disk_max_burst_bandwidth_average
659
+ - selector: data_disk_max_burst_bandwidth_average
660
name: max_burst
661
- - selector: virtual_machines.data_disk_target_bandwidth_average
661
+ - selector: data_disk_target_bandwidth_average
662
name: target
663
- id: am_azure_virtual_machines__data_disk_burst_iops_capacity
664
title: Azure Virtual Machine Data Disk Burst IOPS Capacity
@@ -668,9 +668,9 @@ template:
668
units: iops
669
algorithm: absolute
670
dimensions:
671
- - selector: virtual_machines.data_disk_max_burst_iops_average
671
+ - selector: data_disk_max_burst_iops_average
672
name: max_burst
673
- - selector: virtual_machines.data_disk_target_iops_average
673
+ - selector: data_disk_target_iops_average
674
name: target
675
- id: am_azure_virtual_machines__data_disk_burst_credits
676
title: Azure Virtual Machine Data Disk Burst Credits Used
@@ -680,9 +680,9 @@ template:
680
units: percentage
681
algorithm: absolute
682
dimensions:
683
- - selector: virtual_machines.data_disk_used_burst_bps_credits_percentage_average
683
+ - selector: data_disk_used_burst_bps_credits_percentage_average
684
name: bandwidth
685
- - selector: virtual_machines.data_disk_used_burst_io_credits_percentage_average
685
+ - selector: data_disk_used_burst_io_credits_percentage_average
686
name: io
687
- id: am_azure_virtual_machines__temp_disk_throughput
688
title: Azure Virtual Machine Temp Disk Throughput
@@ -692,9 +692,9 @@ template:
692
units: bytes/s
693
algorithm: absolute
694
dimensions:
695
- - selector: virtual_machines.temp_disk_read_bytes_sec_average
695
+ - selector: temp_disk_read_bytes_sec_average
696
name: read
697
- - selector: virtual_machines.temp_disk_write_bytes_sec_average
697
+ - selector: temp_disk_write_bytes_sec_average
698
name: write
699
- id: am_azure_virtual_machines__temp_disk_iops
700
title: Azure Virtual Machine Temp Disk IOPS
@@ -704,9 +704,9 @@ template:
704
units: operations/s
705
algorithm: absolute
706
dimensions:
707
- - selector: virtual_machines.temp_disk_read_operations_sec_average
707
+ - selector: temp_disk_read_operations_sec_average
708
name: read
709
- - selector: virtual_machines.temp_disk_write_operations_sec_average
709
+ - selector: temp_disk_write_operations_sec_average
710
name: write
711
- id: am_azure_virtual_machines__temp_disk_latency
712
title: Azure Virtual Machine Temp Disk Latency
@@ -716,7 +716,7 @@ template:
716
units: milliseconds
717
algorithm: absolute
718
dimensions:
719
- - selector: virtual_machines.temp_disk_latency_average
719
+ - selector: temp_disk_latency_average
720
name: average
721
- id: am_azure_virtual_machines__temp_disk_queue_depth
722
title: Azure Virtual Machine Temp Disk Queue Depth
@@ -726,7 +726,7 @@ template:
726
units: operations
727
algorithm: absolute
728
dimensions:
729
- - selector: virtual_machines.temp_disk_queue_depth_average
729
+ - selector: temp_disk_queue_depth_average
730
name: average
731
- id: am_azure_virtual_machines__premium_data_disk_cache
732
title: Azure Virtual Machine Premium Data Disk Cache
@@ -736,9 +736,9 @@ template:
736
units: percentage
737
algorithm: absolute
738
dimensions:
739
- - selector: virtual_machines.premium_data_disk_cache_read_hit_average
739
+ - selector: premium_data_disk_cache_read_hit_average
740
name: hit
741
- - selector: virtual_machines.premium_data_disk_cache_read_miss_average
741
+ - selector: premium_data_disk_cache_read_miss_average
742
name: miss
743
- id: am_azure_virtual_machines__premium_os_disk_cache
744
title: Azure Virtual Machine Premium OS Disk Cache
@@ -748,9 +748,9 @@ template:
748
units: percentage
749
algorithm: absolute
750
dimensions:
751
- - selector: virtual_machines.premium_os_disk_cache_read_hit_average
751
+ - selector: premium_os_disk_cache_read_hit_average
752
name: hit
753
- - selector: virtual_machines.premium_os_disk_cache_read_miss_average
753
+ - selector: premium_os_disk_cache_read_miss_average
754
name: miss
755
- id: am_azure_virtual_machines__vm_cached_throttling
756
title: Azure Virtual Machine Cached IO Throttling
@@ -760,9 +760,9 @@ template:
760
units: percentage
761
algorithm: absolute
762
dimensions:
763
- - selector: virtual_machines.vm_cached_bandwidth_consumed_percentage_average
763
+ - selector: vm_cached_bandwidth_consumed_percentage_average
764
name: bandwidth
765
- - selector: virtual_machines.vm_cached_iops_consumed_percentage_average
765
+ - selector: vm_cached_iops_consumed_percentage_average
766
name: iops
767
- id: am_azure_virtual_machines__vm_uncached_throttling
768
title: Azure Virtual Machine Uncached IO Throttling
@@ -772,9 +772,9 @@ template:
772
units: percentage
773
algorithm: absolute
774
dimensions:
775
- - selector: virtual_machines.vm_uncached_bandwidth_consumed_percentage_average
775
+ - selector: vm_uncached_bandwidth_consumed_percentage_average
776
name: bandwidth
777
- - selector: virtual_machines.vm_uncached_iops_consumed_percentage_average
777
+ - selector: vm_uncached_iops_consumed_percentage_average
778
name: iops
779
- id: am_azure_virtual_machines__vm_cached_burst_credits
780
title: Azure Virtual Machine Cached Burst Credits Used
@@ -784,9 +784,9 @@ template:
784
units: percentage
785
algorithm: absolute
786
dimensions:
787
- - selector: virtual_machines.vm_local_used_burst_bps_credits_percentage_average
787
+ - selector: vm_local_used_burst_bps_credits_percentage_average
788
name: bandwidth
789
- - selector: virtual_machines.vm_local_used_burst_io_credits_percentage_average
789
+ - selector: vm_local_used_burst_io_credits_percentage_average
790
name: io
791
- id: am_azure_virtual_machines__vm_uncached_burst_credits
792
title: Azure Virtual Machine Uncached Burst Credits Used
@@ -796,7 +796,7 @@ template:
796
units: percentage
797
algorithm: absolute
798
dimensions:
799
- - selector: virtual_machines.vm_remote_used_burst_bps_credits_percentage_average
799
+ - selector: vm_remote_used_burst_bps_credits_percentage_average
800
name: bandwidth
801
- - selector: virtual_machines.vm_remote_used_burst_io_credits_percentage_average
801
+ - selector: vm_remote_used_burst_io_credits_percentage_average
802
name: io
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/vmss.yaml
+62
-62
@@ -396,7 +396,7 @@ template:
396
units: percentage
397
algorithm: absolute
398
dimensions:
399
- - selector: vmss.percentage_cpu_average
399
+ - selector: percentage_cpu_average
400
name: average
401
- id: am_azure_vmss__cpu_credits
402
title: Azure VMSS CPU Credits
@@ -406,9 +406,9 @@ template:
406
units: credits
407
algorithm: absolute
408
dimensions:
409
- - selector: vmss.cpu_credits_consumed_average
409
+ - selector: cpu_credits_consumed_average
410
name: consumed
411
- - selector: vmss.cpu_credits_remaining_average
411
+ - selector: cpu_credits_remaining_average
412
name: remaining
413
- id: am_azure_vmss__memory
414
title: Azure VMSS Available Memory
@@ -418,7 +418,7 @@ template:
418
units: bytes
419
algorithm: absolute
420
dimensions:
421
- - selector: vmss.available_memory_bytes_average
421
+ - selector: available_memory_bytes_average
422
name: available
423
- id: am_azure_vmss__memory_percentage
424
title: Azure VMSS Available Memory Percentage
@@ -428,7 +428,7 @@ template:
428
units: percentage
429
algorithm: absolute
430
dimensions:
431
- - selector: vmss.available_memory_percentage_average
431
+ - selector: available_memory_percentage_average
432
name: available
433
- id: am_azure_vmss__availability
434
title: Azure VMSS Availability
@@ -438,7 +438,7 @@ template:
438
units: state
439
algorithm: absolute
440
dimensions:
441
- - selector: vmss.vm_availability_metric_average
441
+ - selector: vm_availability_metric_average
442
name: average
443
- id: am_azure_vmss__network_traffic
444
title: Azure VMSS Network Traffic
@@ -448,9 +448,9 @@ template:
448
units: bytes/s
449
algorithm: incremental
450
dimensions:
451
- - selector: vmss.network_in_total_total
451
+ - selector: network_in_total_total
452
name: in
453
- - selector: vmss.network_out_total_total
453
+ - selector: network_out_total_total
454
name: out
455
- id: am_azure_vmss__network_flows
456
title: Azure VMSS Network Flows
@@ -460,9 +460,9 @@ template:
460
units: flows
461
algorithm: absolute
462
dimensions:
463
- - selector: vmss.inbound_flows_average
463
+ - selector: inbound_flows_average
464
name: in
465
- - selector: vmss.outbound_flows_average
465
+ - selector: outbound_flows_average
466
name: out
467
- id: am_azure_vmss__network_flow_creation_rate
468
title: Azure VMSS Network Flow Creation Rate
@@ -472,9 +472,9 @@ template:
472
units: flows/s
473
algorithm: absolute
474
dimensions:
475
- - selector: vmss.inbound_flows_maximum_creation_rate_average
475
+ - selector: inbound_flows_maximum_creation_rate_average
476
name: in
477
- - selector: vmss.outbound_flows_maximum_creation_rate_average
477
+ - selector: outbound_flows_maximum_creation_rate_average
478
name: out
479
- id: am_azure_vmss__disk_throughput
480
title: Azure VMSS Disk Throughput
@@ -484,9 +484,9 @@ template:
484
units: bytes/s
485
algorithm: incremental
486
dimensions:
487
- - selector: vmss.disk_read_bytes_total
487
+ - selector: disk_read_bytes_total
488
name: read
489
- - selector: vmss.disk_write_bytes_total
489
+ - selector: disk_write_bytes_total
490
name: write
491
- id: am_azure_vmss__disk_iops
492
title: Azure VMSS Disk IOPS
@@ -496,9 +496,9 @@ template:
496
units: operations/s
497
algorithm: absolute
498
dimensions:
499
- - selector: vmss.disk_read_operations_sec_average
499
+ - selector: disk_read_operations_sec_average
500
name: read
501
- - selector: vmss.disk_write_operations_sec_average
501
+ - selector: disk_write_operations_sec_average
502
name: write
503
- id: am_azure_vmss__os_disk_throughput
504
title: Azure VMSS OS Disk Throughput
@@ -508,9 +508,9 @@ template:
508
units: bytes/s
509
algorithm: absolute
510
dimensions:
511
- - selector: vmss.os_disk_read_bytes_sec_average
511
+ - selector: os_disk_read_bytes_sec_average
512
name: read
513
- - selector: vmss.os_disk_write_bytes_sec_average
513
+ - selector: os_disk_write_bytes_sec_average
514
name: write
515
- id: am_azure_vmss__os_disk_iops
516
title: Azure VMSS OS Disk IOPS
@@ -520,9 +520,9 @@ template:
520
units: operations/s
521
algorithm: absolute
522
dimensions:
523
- - selector: vmss.os_disk_read_operations_sec_average
523
+ - selector: os_disk_read_operations_sec_average
524
name: read
525
- - selector: vmss.os_disk_write_operations_sec_average
525
+ - selector: os_disk_write_operations_sec_average
526
name: write
527
- id: am_azure_vmss__os_disk_latency
528
title: Azure VMSS OS Disk Latency
@@ -532,7 +532,7 @@ template:
532
units: milliseconds
533
algorithm: absolute
534
dimensions:
535
- - selector: vmss.os_disk_latency_average
535
+ - selector: os_disk_latency_average
536
name: average
537
- id: am_azure_vmss__os_disk_queue_depth
538
title: Azure VMSS OS Disk Queue Depth
@@ -542,7 +542,7 @@ template:
542
units: operations
543
algorithm: absolute
544
dimensions:
545
- - selector: vmss.os_disk_queue_depth_average
545
+ - selector: os_disk_queue_depth_average
546
name: average
547
- id: am_azure_vmss__os_disk_throttling
548
title: Azure VMSS OS Disk Throttling
@@ -552,9 +552,9 @@ template:
552
units: percentage
553
algorithm: absolute
554
dimensions:
555
- - selector: vmss.os_disk_bandwidth_consumed_percentage_average
555
+ - selector: os_disk_bandwidth_consumed_percentage_average
556
name: bandwidth
557
- - selector: vmss.os_disk_iops_consumed_percentage_average
557
+ - selector: os_disk_iops_consumed_percentage_average
558
name: iops
559
- id: am_azure_vmss__os_disk_burst_capacity
560
title: Azure VMSS OS Disk Burst Capacity
@@ -564,9 +564,9 @@ template:
564
units: bytes/s
565
algorithm: absolute
566
dimensions:
567
- - selector: vmss.os_disk_max_burst_bandwidth_average
567
+ - selector: os_disk_max_burst_bandwidth_average
568
name: max_burst
569
- - selector: vmss.os_disk_target_bandwidth_average
569
+ - selector: os_disk_target_bandwidth_average
570
name: target
571
- id: am_azure_vmss__os_disk_burst_iops_capacity
572
title: Azure VMSS OS Disk Burst IOPS Capacity
@@ -576,9 +576,9 @@ template:
576
units: iops
577
algorithm: absolute
578
dimensions:
579
- - selector: vmss.os_disk_max_burst_iops_average
579
+ - selector: os_disk_max_burst_iops_average
580
name: max_burst
581
- - selector: vmss.os_disk_target_iops_average
581
+ - selector: os_disk_target_iops_average
582
name: target
583
- id: am_azure_vmss__os_disk_burst_credits
584
title: Azure VMSS OS Disk Burst Credits Used
@@ -588,9 +588,9 @@ template:
588
units: percentage
589
algorithm: absolute
590
dimensions:
591
- - selector: vmss.os_disk_used_burst_bps_credits_percentage_average
591
+ - selector: os_disk_used_burst_bps_credits_percentage_average
592
name: bandwidth
593
- - selector: vmss.os_disk_used_burst_io_credits_percentage_average
593
+ - selector: os_disk_used_burst_io_credits_percentage_average
594
name: io
595
- id: am_azure_vmss__data_disk_throughput
596
title: Azure VMSS Data Disk Throughput
@@ -600,9 +600,9 @@ template:
600
units: bytes/s
601
algorithm: absolute
602
dimensions:
603
- - selector: vmss.data_disk_read_bytes_sec_average
603
+ - selector: data_disk_read_bytes_sec_average
604
name: read
605
- - selector: vmss.data_disk_write_bytes_sec_average
605
+ - selector: data_disk_write_bytes_sec_average
606
name: write
607
- id: am_azure_vmss__data_disk_iops
608
title: Azure VMSS Data Disk IOPS
@@ -612,9 +612,9 @@ template:
612
units: operations/s
613
algorithm: absolute
614
dimensions:
615
- - selector: vmss.data_disk_read_operations_sec_average
615
+ - selector: data_disk_read_operations_sec_average
616
name: read
617
- - selector: vmss.data_disk_write_operations_sec_average
617
+ - selector: data_disk_write_operations_sec_average
618
name: write
619
- id: am_azure_vmss__data_disk_latency
620
title: Azure VMSS Data Disk Latency
@@ -624,7 +624,7 @@ template:
624
units: milliseconds
625
algorithm: absolute
626
dimensions:
627
- - selector: vmss.data_disk_latency_average
627
+ - selector: data_disk_latency_average
628
name: average
629
- id: am_azure_vmss__data_disk_queue_depth
630
title: Azure VMSS Data Disk Queue Depth
@@ -634,7 +634,7 @@ template:
634
units: operations
635
algorithm: absolute
636
dimensions:
637
- - selector: vmss.data_disk_queue_depth_average
637
+ - selector: data_disk_queue_depth_average
638
name: average
639
- id: am_azure_vmss__data_disk_throttling
640
title: Azure VMSS Data Disk Throttling
@@ -644,9 +644,9 @@ template:
644
units: percentage
645
algorithm: absolute
646
dimensions:
647
- - selector: vmss.data_disk_bandwidth_consumed_percentage_average
647
+ - selector: data_disk_bandwidth_consumed_percentage_average
648
name: bandwidth
649
- - selector: vmss.data_disk_iops_consumed_percentage_average
649
+ - selector: data_disk_iops_consumed_percentage_average
650
name: iops
651
- id: am_azure_vmss__data_disk_burst_capacity
652
title: Azure VMSS Data Disk Burst Capacity
@@ -656,9 +656,9 @@ template:
656
units: bytes/s
657
algorithm: absolute
658
dimensions:
659
- - selector: vmss.data_disk_max_burst_bandwidth_average
659
+ - selector: data_disk_max_burst_bandwidth_average
660
name: max_burst
661
- - selector: vmss.data_disk_target_bandwidth_average
661
+ - selector: data_disk_target_bandwidth_average
662
name: target
663
- id: am_azure_vmss__data_disk_burst_iops_capacity
664
title: Azure VMSS Data Disk Burst IOPS Capacity
@@ -668,9 +668,9 @@ template:
668
units: iops
669
algorithm: absolute
670
dimensions:
671
- - selector: vmss.data_disk_max_burst_iops_average
671
+ - selector: data_disk_max_burst_iops_average
672
name: max_burst
673
- - selector: vmss.data_disk_target_iops_average
673
+ - selector: data_disk_target_iops_average
674
name: target
675
- id: am_azure_vmss__data_disk_burst_credits
676
title: Azure VMSS Data Disk Burst Credits Used
@@ -680,9 +680,9 @@ template:
680
units: percentage
681
algorithm: absolute
682
dimensions:
683
- - selector: vmss.data_disk_used_burst_bps_credits_percentage_average
683
+ - selector: data_disk_used_burst_bps_credits_percentage_average
684
name: bandwidth
685
- - selector: vmss.data_disk_used_burst_io_credits_percentage_average
685
+ - selector: data_disk_used_burst_io_credits_percentage_average
686
name: io
687
- id: am_azure_vmss__temp_disk_throughput
688
title: Azure VMSS Temp Disk Throughput
@@ -692,9 +692,9 @@ template:
692
units: bytes/s
693
algorithm: absolute
694
dimensions:
695
- - selector: vmss.temp_disk_read_bytes_sec_average
695
+ - selector: temp_disk_read_bytes_sec_average
696
name: read
697
- - selector: vmss.temp_disk_write_bytes_sec_average
697
+ - selector: temp_disk_write_bytes_sec_average
698
name: write
699
- id: am_azure_vmss__temp_disk_iops
700
title: Azure VMSS Temp Disk IOPS
@@ -704,9 +704,9 @@ template:
704
units: operations/s
705
algorithm: absolute
706
dimensions:
707
- - selector: vmss.temp_disk_read_operations_sec_average
707
+ - selector: temp_disk_read_operations_sec_average
708
name: read
709
- - selector: vmss.temp_disk_write_operations_sec_average
709
+ - selector: temp_disk_write_operations_sec_average
710
name: write
711
- id: am_azure_vmss__temp_disk_latency
712
title: Azure VMSS Temp Disk Latency
@@ -716,7 +716,7 @@ template:
716
units: milliseconds
717
algorithm: absolute
718
dimensions:
719
- - selector: vmss.temp_disk_latency_average
719
+ - selector: temp_disk_latency_average
720
name: average
721
- id: am_azure_vmss__temp_disk_queue_depth
722
title: Azure VMSS Temp Disk Queue Depth
@@ -726,7 +726,7 @@ template:
726
units: operations
727
algorithm: absolute
728
dimensions:
729
- - selector: vmss.temp_disk_queue_depth_average
729
+ - selector: temp_disk_queue_depth_average
730
name: average
731
- id: am_azure_vmss__premium_data_disk_cache
732
title: Azure VMSS Premium Data Disk Cache
@@ -736,9 +736,9 @@ template:
736
units: percentage
737
algorithm: absolute
738
dimensions:
739
- - selector: vmss.premium_data_disk_cache_read_hit_average
739
+ - selector: premium_data_disk_cache_read_hit_average
740
name: hit
741
- - selector: vmss.premium_data_disk_cache_read_miss_average
741
+ - selector: premium_data_disk_cache_read_miss_average
742
name: miss
743
- id: am_azure_vmss__premium_os_disk_cache
744
title: Azure VMSS Premium OS Disk Cache
@@ -748,9 +748,9 @@ template:
748
units: percentage
749
algorithm: absolute
750
dimensions:
751
- - selector: vmss.premium_os_disk_cache_read_hit_average
751
+ - selector: premium_os_disk_cache_read_hit_average
752
name: hit
753
- - selector: vmss.premium_os_disk_cache_read_miss_average
753
+ - selector: premium_os_disk_cache_read_miss_average
754
name: miss
755
- id: am_azure_vmss__vm_cached_throttling
756
title: Azure VMSS Cached IO Throttling
@@ -760,9 +760,9 @@ template:
760
units: percentage
761
algorithm: absolute
762
dimensions:
763
- - selector: vmss.vm_cached_bandwidth_consumed_percentage_average
763
+ - selector: vm_cached_bandwidth_consumed_percentage_average
764
name: bandwidth
765
- - selector: vmss.vm_cached_iops_consumed_percentage_average
765
+ - selector: vm_cached_iops_consumed_percentage_average
766
name: iops
767
- id: am_azure_vmss__vm_uncached_throttling
768
title: Azure VMSS Uncached IO Throttling
@@ -772,9 +772,9 @@ template:
772
units: percentage
773
algorithm: absolute
774
dimensions:
775
- - selector: vmss.vm_uncached_bandwidth_consumed_percentage_average
775
+ - selector: vm_uncached_bandwidth_consumed_percentage_average
776
name: bandwidth
777
- - selector: vmss.vm_uncached_iops_consumed_percentage_average
777
+ - selector: vm_uncached_iops_consumed_percentage_average
778
name: iops
779
- id: am_azure_vmss__vm_cached_burst_credits
780
title: Azure VMSS Cached Burst Credits Used
@@ -784,9 +784,9 @@ template:
784
units: percentage
785
algorithm: absolute
786
dimensions:
787
- - selector: vmss.vm_local_used_burst_bps_credits_percentage_average
787
+ - selector: vm_local_used_burst_bps_credits_percentage_average
788
name: bandwidth
789
- - selector: vmss.vm_local_used_burst_io_credits_percentage_average
789
+ - selector: vm_local_used_burst_io_credits_percentage_average
790
name: io
791
- id: am_azure_vmss__vm_uncached_burst_credits
792
title: Azure VMSS Uncached Burst Credits Used
@@ -796,7 +796,7 @@ template:
796
units: percentage
797
algorithm: absolute
798
dimensions:
799
- - selector: vmss.vm_remote_used_burst_bps_credits_percentage_average
799
+ - selector: vm_remote_used_burst_bps_credits_percentage_average
800
name: bandwidth
801
- - selector: vmss.vm_remote_used_burst_io_credits_percentage_average
801
+ - selector: vm_remote_used_burst_io_credits_percentage_average
802
name: io
src/go/plugin/go.d/config/go.d/azure_monitor.profiles/default/vpn_gateway.yaml
+49
-49
@@ -318,7 +318,7 @@ template:
318
units: bytes/s
319
algorithm: absolute
320
dimensions:
321
- - selector: vpn_gateway.average_bandwidth_average
321
+ - selector: average_bandwidth_average
322
name: average
323
- id: am_azure_vpn_gateway__p2s_bandwidth
324
title: Azure VPN Gateway P2S Bandwidth
@@ -328,7 +328,7 @@ template:
328
units: bytes/s
329
algorithm: absolute
330
dimensions:
331
- - selector: vpn_gateway.p2s_bandwidth_average
331
+ - selector: p2s_bandwidth_average
332
name: average
333
- id: am_azure_vpn_gateway__p2s_connections
334
title: Azure VPN Gateway P2S Connection Count
@@ -338,7 +338,7 @@ template:
338
units: connections
339
algorithm: absolute
340
dimensions:
341
- - selector: vpn_gateway.p2s_connection_count_total
341
+ - selector: p2s_connection_count_total
342
name: total
343
- id: am_azure_vpn_gateway__gateway_flows
344
title: Azure VPN Gateway Flows
@@ -348,9 +348,9 @@ template:
348
units: flows
349
algorithm: absolute
350
dimensions:
351
- - selector: vpn_gateway.inbound_flows_count_maximum
351
+ - selector: inbound_flows_count_maximum
352
name: inbound
353
- - selector: vpn_gateway.outbound_flows_count_maximum
353
+ - selector: outbound_flows_count_maximum
354
name: outbound
355
- id: am_azure_vpn_gateway__tunnel_bandwidth
356
title: Azure VPN Gateway Tunnel Bandwidth
@@ -360,7 +360,7 @@ template:
360
units: bytes/s
361
algorithm: absolute
362
dimensions:
363
- - selector: vpn_gateway.tunnel_average_bandwidth_average
363
+ - selector: tunnel_average_bandwidth_average
364
name: average
365
- id: am_azure_vpn_gateway__tunnel_bytes
366
title: Azure VPN Gateway Tunnel Bytes
@@ -370,9 +370,9 @@ template:
370
units: bytes/s
371
algorithm: incremental
372
dimensions:
373
- - selector: vpn_gateway.tunnel_egress_bytes_total
373
+ - selector: tunnel_egress_bytes_total
374
name: egress
375
- - selector: vpn_gateway.tunnel_ingress_bytes_total
375
+ - selector: tunnel_ingress_bytes_total
376
name: ingress
377
- id: am_azure_vpn_gateway__tunnel_packets
378
title: Azure VPN Gateway Tunnel Packets
@@ -382,9 +382,9 @@ template:
382
units: packets/s
383
algorithm: incremental
384
dimensions:
385
- - selector: vpn_gateway.tunnel_egress_packets_total
385
+ - selector: tunnel_egress_packets_total
386
name: egress
387
- - selector: vpn_gateway.tunnel_ingress_packets_total
387
+ - selector: tunnel_ingress_packets_total
388
name: ingress
389
- id: am_azure_vpn_gateway__tunnel_peak_pps
390
title: Azure VPN Gateway Tunnel Peak PPS
@@ -394,7 +394,7 @@ template:
394
units: packets/s
395
algorithm: absolute
396
dimensions:
397
- - selector: vpn_gateway.tunnel_peak_packets_maximum
397
+ - selector: tunnel_peak_packets_maximum
398
name: peak
399
- id: am_azure_vpn_gateway__tunnel_total_flows
400
title: Azure VPN Gateway Tunnel Total Flows
@@ -404,7 +404,7 @@ template:
404
units: flows/s
405
algorithm: incremental
406
dimensions:
407
- - selector: vpn_gateway.tunnel_total_flow_count_total
407
+ - selector: tunnel_total_flow_count_total
408
name: total
409
- id: am_azure_vpn_gateway__tunnel_nat_allocations
410
title: Azure VPN Gateway Tunnel NAT Allocations
@@ -414,7 +414,7 @@ template:
414
units: allocations/s
415
algorithm: incremental
416
dimensions:
417
- - selector: vpn_gateway.tunnel_nat_allocations_total
417
+ - selector: tunnel_nat_allocations_total
418
name: total
419
- id: am_azure_vpn_gateway__tunnel_nated_bytes
420
title: Azure VPN Gateway Tunnel NATed Bytes
@@ -424,9 +424,9 @@ template:
424
units: bytes/s
425
algorithm: incremental
426
dimensions:
427
- - selector: vpn_gateway.tunnel_nated_bytes_total
427
+ - selector: tunnel_nated_bytes_total
428
name: nated
429
- - selector: vpn_gateway.tunnel_reverse_nated_bytes_total
429
+ - selector: tunnel_reverse_nated_bytes_total
430
name: reverse_nated
431
- id: am_azure_vpn_gateway__tunnel_nated_packets
432
title: Azure VPN Gateway Tunnel NATed Packets
@@ -436,9 +436,9 @@ template:
436
units: packets/s
437
algorithm: incremental
438
dimensions:
439
- - selector: vpn_gateway.tunnel_nated_packets_total
439
+ - selector: tunnel_nated_packets_total
440
name: nated
441
- - selector: vpn_gateway.tunnel_reverse_nated_packets_total
441
+ - selector: tunnel_reverse_nated_packets_total
442
name: reverse_nated
443
- id: am_azure_vpn_gateway__tunnel_nat_flows
444
title: Azure VPN Gateway Tunnel NAT Flows
@@ -448,7 +448,7 @@ template:
448
units: flows/s
449
algorithm: incremental
450
dimensions:
451
- - selector: vpn_gateway.tunnel_nat_flow_count_total
451
+ - selector: tunnel_nat_flow_count_total
452
name: total
453
- id: am_azure_vpn_gateway__tunnel_packet_drops
454
title: Azure VPN Gateway Tunnel Packet Drops
@@ -458,9 +458,9 @@ template:
458
units: packets/s
459
algorithm: incremental
460
dimensions:
461
- - selector: vpn_gateway.tunnel_egress_packet_drop_count_total
461
+ - selector: tunnel_egress_packet_drop_count_total
462
name: egress
463
- - selector: vpn_gateway.tunnel_ingress_packet_drop_count_total
463
+ - selector: tunnel_ingress_packet_drop_count_total
464
name: ingress
465
- id: am_azure_vpn_gateway__tunnel_ts_mismatch_drops
466
title: Azure VPN Gateway Tunnel TS Mismatch Drops
@@ -470,9 +470,9 @@ template:
470
units: packets/s
471
algorithm: incremental
472
dimensions:
473
- - selector: vpn_gateway.tunnel_egress_packet_drop_ts_mismatch_total
473
+ - selector: tunnel_egress_packet_drop_ts_mismatch_total
474
name: egress
475
- - selector: vpn_gateway.tunnel_ingress_packet_drop_ts_mismatch_total
475
+ - selector: tunnel_ingress_packet_drop_ts_mismatch_total
476
name: ingress
477
- id: am_azure_vpn_gateway__tunnel_nat_packet_drops
478
title: Azure VPN Gateway Tunnel NAT Packet Drops
@@ -482,7 +482,7 @@ template:
482
units: packets/s
483
algorithm: incremental
484
dimensions:
485
- - selector: vpn_gateway.tunnel_nat_packet_drop_total
485
+ - selector: tunnel_nat_packet_drop_total
486
name: total
487
- id: am_azure_vpn_gateway__ipsec_sa
488
title: Azure VPN Gateway IPsec Security Associations
@@ -492,9 +492,9 @@ template:
492
units: associations
493
algorithm: absolute
494
dimensions:
495
- - selector: vpn_gateway.mmsa_count_total
495
+ - selector: mmsa_count_total
496
name: mmsa
497
- - selector: vpn_gateway.qmsa_count_total
497
+ - selector: qmsa_count_total
498
name: qmsa
499
- id: am_azure_vpn_gateway__bgp_peer_status
500
title: Azure VPN Gateway BGP Peer Status
@@ -504,7 +504,7 @@ template:
504
units: status
505
algorithm: absolute
506
dimensions:
507
- - selector: vpn_gateway.bgp_peer_status_average
507
+ - selector: bgp_peer_status_average
508
name: average
509
- id: am_azure_vpn_gateway__bgp_routes
510
title: Azure VPN Gateway BGP Routes
@@ -514,9 +514,9 @@ template:
514
units: routes/s
515
algorithm: incremental
516
dimensions:
517
- - selector: vpn_gateway.bgp_routes_advertised_total
517
+ - selector: bgp_routes_advertised_total
518
name: advertised
519
- - selector: vpn_gateway.bgp_routes_learned_total
519
+ - selector: bgp_routes_learned_total
520
name: learned
521
- id: am_azure_vpn_gateway__route_counts
522
title: Azure VPN Gateway Route Counts
@@ -526,9 +526,9 @@ template:
526
units: routes
527
algorithm: absolute
528
dimensions:
529
- - selector: vpn_gateway.user_vpn_route_count_total
529
+ - selector: user_vpn_route_count_total
530
name: user_vpn
531
- - selector: vpn_gateway.vnet_address_prefix_count_total
531
+ - selector: vnet_address_prefix_count_total
532
name: vnet_prefix
533
- id: am_azure_vpn_gateway__er_gateway_bandwidth
534
title: Azure VPN Gateway ExpressRoute Bandwidth
@@ -538,7 +538,7 @@ template:
538
units: bits/s
539
algorithm: absolute
540
dimensions:
541
- - selector: vpn_gateway.express_route_gateway_bits_per_second_average
541
+ - selector: express_route_gateway_bits_per_second_average
542
name: average
543
- id: am_azure_vpn_gateway__er_gateway_cpu
544
title: Azure VPN Gateway ExpressRoute CPU Utilization
@@ -548,7 +548,7 @@ template:
548
units: percentage
549
algorithm: absolute
550
dimensions:
551
- - selector: vpn_gateway.express_route_gateway_cpu_utilization_average
551
+ - selector: express_route_gateway_cpu_utilization_average
552
name: average
553
- id: am_azure_vpn_gateway__er_gateway_packets
554
title: Azure VPN Gateway ExpressRoute Packets
@@ -558,7 +558,7 @@ template:
558
units: packets/s
559
algorithm: absolute
560
dimensions:
561
- - selector: vpn_gateway.express_route_gateway_packets_per_second_average
561
+ - selector: express_route_gateway_packets_per_second_average
562
name: average
563
- id: am_azure_vpn_gateway__er_gateway_active_flows
564
title: Azure VPN Gateway ExpressRoute Active Flows
@@ -568,7 +568,7 @@ template:
568
units: flows
569
algorithm: absolute
570
dimensions:
571
- - selector: vpn_gateway.express_route_gateway_active_flows_average
571
+ - selector: express_route_gateway_active_flows_average
572
name: average
573
- id: am_azure_vpn_gateway__er_gateway_routes_advertised
574
title: Azure VPN Gateway ExpressRoute Routes Advertised to Peer
@@ -578,7 +578,7 @@ template:
578
units: routes
579
algorithm: absolute
580
dimensions:
581
- - selector: vpn_gateway.express_route_gateway_count_of_routes_advertised_to_peer_maximum
581
+ - selector: express_route_gateway_count_of_routes_advertised_to_peer_maximum
582
name: maximum
583
- id: am_azure_vpn_gateway__er_gateway_routes_learned
584
title: Azure VPN Gateway ExpressRoute Routes Learned from Peer
@@ -588,7 +588,7 @@ template:
588
units: routes
589
algorithm: absolute
590
dimensions:
591
- - selector: vpn_gateway.express_route_gateway_count_of_routes_learned_from_peer_maximum
591
+ - selector: express_route_gateway_count_of_routes_learned_from_peer_maximum
592
name: maximum
593
- id: am_azure_vpn_gateway__er_gateway_route_changes
594
title: Azure VPN Gateway ExpressRoute Route Changes
@@ -598,7 +598,7 @@ template:
598
units: changes/s
599
algorithm: incremental
600
dimensions:
601
- - selector: vpn_gateway.express_route_gateway_frequency_of_routes_changed_total
601
+ - selector: express_route_gateway_frequency_of_routes_changed_total
602
name: total
603
- id: am_azure_vpn_gateway__er_gateway_max_flows_rate
604
title: Azure VPN Gateway ExpressRoute Max Flow Creation Rate
@@ -608,7 +608,7 @@ template:
608
units: flows/s
609
algorithm: absolute
610
dimensions:
611
- - selector: vpn_gateway.express_route_gateway_max_flows_creation_rate_maximum
611
+ - selector: express_route_gateway_max_flows_creation_rate_maximum
612
name: maximum
613
- id: am_azure_vpn_gateway__er_gateway_vm_count
614
title: Azure VPN Gateway ExpressRoute VMs in VNet
@@ -618,7 +618,7 @@ template:
618
units: VMs
619
algorithm: absolute
620
dimensions:
621
- - selector: vpn_gateway.express_route_gateway_number_of_vm_in_vnet_maximum
621
+ - selector: express_route_gateway_number_of_vm_in_vnet_maximum
622
name: maximum
623
- id: am_azure_vpn_gateway__scalable_er_bandwidth
624
title: Azure VPN Gateway Scalable ExpressRoute Bandwidth
@@ -628,7 +628,7 @@ template:
628
units: bits/s
629
algorithm: absolute
630
dimensions:
631
- - selector: vpn_gateway.scalable_express_route_gateway_bits_per_second_average
631
+ - selector: scalable_express_route_gateway_bits_per_second_average
632
name: average
633
- id: am_azure_vpn_gateway__scalable_er_cpu
634
title: Azure VPN Gateway Scalable ExpressRoute CPU Utilization
@@ -638,7 +638,7 @@ template:
638
units: percentage
639
algorithm: absolute
640
dimensions:
641
- - selector: vpn_gateway.scalable_express_route_gateway_cpu_utilization_average
641
+ - selector: scalable_express_route_gateway_cpu_utilization_average
642
name: average
643
- id: am_azure_vpn_gateway__scalable_er_packets
644
title: Azure VPN Gateway Scalable ExpressRoute Packets
@@ -648,7 +648,7 @@ template:
648
units: packets/s
649
algorithm: absolute
650
dimensions:
651
- - selector: vpn_gateway.scalable_express_route_gateway_packets_per_second_average
651
+ - selector: scalable_express_route_gateway_packets_per_second_average
652
name: average
653
- id: am_azure_vpn_gateway__scalable_er_active_flows
654
title: Azure VPN Gateway Scalable ExpressRoute Active Flows
@@ -658,7 +658,7 @@ template:
658
units: flows
659
algorithm: absolute
660
dimensions:
661
- - selector: vpn_gateway.scalable_express_route_gateway_active_flows_average
661
+ - selector: scalable_express_route_gateway_active_flows_average
662
name: average
663
- id: am_azure_vpn_gateway__scalable_er_routes_advertised
664
title: Azure VPN Gateway Scalable ExpressRoute Routes Advertised
@@ -668,7 +668,7 @@ template:
668
units: routes
669
algorithm: absolute
670
dimensions:
671
- - selector: vpn_gateway.scalable_express_route_gateway_count_of_routes_advertised_to_peer_maximum
671
+ - selector: scalable_express_route_gateway_count_of_routes_advertised_to_peer_maximum
672
name: maximum
673
- id: am_azure_vpn_gateway__scalable_er_routes_learned
674
title: Azure VPN Gateway Scalable ExpressRoute Routes Learned
@@ -678,7 +678,7 @@ template:
678
units: routes
679
algorithm: absolute
680
dimensions:
681
- - selector: vpn_gateway.scalable_express_route_gateway_count_of_routes_learned_from_peer_maximum
681
+ - selector: scalable_express_route_gateway_count_of_routes_learned_from_peer_maximum
682
name: maximum
683
- id: am_azure_vpn_gateway__scalable_er_route_changes
684
title: Azure VPN Gateway Scalable ExpressRoute Route Changes
@@ -688,7 +688,7 @@ template:
688
units: changes/s
689
algorithm: incremental
690
dimensions:
691
- - selector: vpn_gateway.scalable_express_route_gateway_frequency_of_routes_changed_total
691
+ - selector: scalable_express_route_gateway_frequency_of_routes_changed_total
692
name: total
693
- id: am_azure_vpn_gateway__scalable_er_max_flows_rate
694
title: Azure VPN Gateway Scalable ExpressRoute Max Flow Creation Rate
@@ -698,7 +698,7 @@ template:
698
units: flows/s
699
algorithm: absolute
700
dimensions:
701
- - selector: vpn_gateway.scalable_express_route_gateway_max_flows_creation_rate_maximum
701
+ - selector: scalable_express_route_gateway_max_flows_creation_rate_maximum
702
name: maximum
703
- id: am_azure_vpn_gateway__scalable_er_vm_count
704
title: Azure VPN Gateway Scalable ExpressRoute VMs in VNet
@@ -708,7 +708,7 @@ template:
708
units: VMs
709
algorithm: absolute
710
dimensions:
711
- - selector: vpn_gateway.scalable_express_route_gateway_number_of_vm_in_vnet_maximum
711
+ - selector: scalable_express_route_gateway_number_of_vm_in_vnet_maximum
712
name: maximum
713
- id: am_azure_vpn_gateway__scalable_er_scale_units
714
title: Azure VPN Gateway Scalable ExpressRoute Scale Units
@@ -718,5 +718,5 @@ template:
718
units: units
719
algorithm: absolute
720
dimensions:
721
- - selector: vpn_gateway.scalable_express_route_gateway_scale_unit_maximum
721
+ - selector: scalable_express_route_gateway_scale_unit_maximum
722
name: maximum