-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
metric.go
1084 lines (972 loc) · 52.3 KB
/
metric.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright The OpenTelemetry Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Code generated from semantic convention specification. DO NOT EDIT.
package semconv // import "go.opentelemetry.io/otel/semconv/v1.24.0"
import "go.opentelemetry.io/otel/attribute"
const (
// DBClientConnectionsUsage is the metric conforming to the
// "db.client.connections.usage" semantic conventions. It represents the number
// of connections that are currently in state described by the `state`
// attribute
// Instrument: updowncounter
// Unit: {connection}
// Stability: None
DBClientConnectionsUsageName = attribute.Key("db.client.connections.usage")
DBClientConnectionsUsageUnit = attribute.Key("{connection}")
DBClientConnectionsUsageDescription = attribute.Key("The number of connections that are currently in state described by the `state` attribute")
// DBClientConnectionsIdleMax is the metric conforming to the
// "db.client.connections.idle.max" semantic conventions. It represents the
// maximum number of idle open connections allowed
// Instrument: updowncounter
// Unit: {connection}
// Stability: None
DBClientConnectionsIdleMaxName = attribute.Key("db.client.connections.idle.max")
DBClientConnectionsIdleMaxUnit = attribute.Key("{connection}")
DBClientConnectionsIdleMaxDescription = attribute.Key("The maximum number of idle open connections allowed")
// DBClientConnectionsIdleMin is the metric conforming to the
// "db.client.connections.idle.min" semantic conventions. It represents the
// minimum number of idle open connections allowed
// Instrument: updowncounter
// Unit: {connection}
// Stability: None
DBClientConnectionsIdleMinName = attribute.Key("db.client.connections.idle.min")
DBClientConnectionsIdleMinUnit = attribute.Key("{connection}")
DBClientConnectionsIdleMinDescription = attribute.Key("The minimum number of idle open connections allowed")
// DBClientConnectionsMax is the metric conforming to the
// "db.client.connections.max" semantic conventions. It represents the maximum
// number of open connections allowed
// Instrument: updowncounter
// Unit: {connection}
// Stability: None
DBClientConnectionsMaxName = attribute.Key("db.client.connections.max")
DBClientConnectionsMaxUnit = attribute.Key("{connection}")
DBClientConnectionsMaxDescription = attribute.Key("The maximum number of open connections allowed")
// DBClientConnectionsPendingRequests is the metric conforming to the
// "db.client.connections.pending_requests" semantic conventions. It represents
// the number of pending requests for an open connection, cumulative for the
// entire pool
// Instrument: updowncounter
// Unit: {request}
// Stability: None
DBClientConnectionsPendingRequestsName = attribute.Key("db.client.connections.pending_requests")
DBClientConnectionsPendingRequestsUnit = attribute.Key("{request}")
DBClientConnectionsPendingRequestsDescription = attribute.Key("The number of pending requests for an open connection, cumulative for the entire pool")
// DBClientConnectionsTimeouts is the metric conforming to the
// "db.client.connections.timeouts" semantic conventions. It represents the
// number of connection timeouts that have occurred trying to obtain a
// connection from the pool
// Instrument: counter
// Unit: {timeout}
// Stability: None
DBClientConnectionsTimeoutsName = attribute.Key("db.client.connections.timeouts")
DBClientConnectionsTimeoutsUnit = attribute.Key("{timeout}")
DBClientConnectionsTimeoutsDescription = attribute.Key("The number of connection timeouts that have occurred trying to obtain a connection from the pool")
// DBClientConnectionsCreateTime is the metric conforming to the
// "db.client.connections.create_time" semantic conventions. It represents the
// time it took to create a new connection
// Instrument: histogram
// Unit: ms
// Stability: None
DBClientConnectionsCreateTimeName = attribute.Key("db.client.connections.create_time")
DBClientConnectionsCreateTimeUnit = attribute.Key("ms")
DBClientConnectionsCreateTimeDescription = attribute.Key("The time it took to create a new connection")
// DBClientConnectionsWaitTime is the metric conforming to the
// "db.client.connections.wait_time" semantic conventions. It represents the
// time it took to obtain an open connection from the pool
// Instrument: histogram
// Unit: ms
// Stability: None
DBClientConnectionsWaitTimeName = attribute.Key("db.client.connections.wait_time")
DBClientConnectionsWaitTimeUnit = attribute.Key("ms")
DBClientConnectionsWaitTimeDescription = attribute.Key("The time it took to obtain an open connection from the pool")
// DBClientConnectionsUseTime is the metric conforming to the
// "db.client.connections.use_time" semantic conventions. It represents the
// time between borrowing a connection and returning it to the pool
// Instrument: histogram
// Unit: ms
// Stability: None
DBClientConnectionsUseTimeName = attribute.Key("db.client.connections.use_time")
DBClientConnectionsUseTimeUnit = attribute.Key("ms")
DBClientConnectionsUseTimeDescription = attribute.Key("The time between borrowing a connection and returning it to the pool")
// AspnetcoreRoutingMatchAttempts is the metric conforming to the
// "aspnetcore.routing.match_attempts" semantic conventions. It represents the
// number of requests that were attempted to be matched to an endpoint.
// Instrument: counter
// Unit: {match_attempt}
// Stability: None
AspnetcoreRoutingMatchAttemptsName = attribute.Key("aspnetcore.routing.match_attempts")
AspnetcoreRoutingMatchAttemptsUnit = attribute.Key("{match_attempt}")
AspnetcoreRoutingMatchAttemptsDescription = attribute.Key("Number of requests that were attempted to be matched to an endpoint.")
// AspnetcoreDiagnosticsExceptions is the metric conforming to the
// "aspnetcore.diagnostics.exceptions" semantic conventions. It represents the
// number of exceptions caught by exception handling middleware.
// Instrument: counter
// Unit: {exception}
// Stability: None
AspnetcoreDiagnosticsExceptionsName = attribute.Key("aspnetcore.diagnostics.exceptions")
AspnetcoreDiagnosticsExceptionsUnit = attribute.Key("{exception}")
AspnetcoreDiagnosticsExceptionsDescription = attribute.Key("Number of exceptions caught by exception handling middleware.")
// AspnetcoreRateLimitingActiveRequestLeases is the metric conforming to the
// "aspnetcore.rate_limiting.active_request_leases" semantic conventions. It
// represents the number of requests that are currently active on the server
// that hold a rate limiting lease.
// Instrument: updowncounter
// Unit: {request}
// Stability: None
AspnetcoreRateLimitingActiveRequestLeasesName = attribute.Key("aspnetcore.rate_limiting.active_request_leases")
AspnetcoreRateLimitingActiveRequestLeasesUnit = attribute.Key("{request}")
AspnetcoreRateLimitingActiveRequestLeasesDescription = attribute.Key("Number of requests that are currently active on the server that hold a rate limiting lease.")
// AspnetcoreRateLimitingRequestLeaseDuration is the metric conforming to the
// "aspnetcore.rate_limiting.request_lease.duration" semantic conventions. It
// represents the duration of rate limiting lease held by requests on the
// server.
// Instrument: histogram
// Unit: s
// Stability: None
AspnetcoreRateLimitingRequestLeaseDurationName = attribute.Key("aspnetcore.rate_limiting.request_lease.duration")
AspnetcoreRateLimitingRequestLeaseDurationUnit = attribute.Key("s")
AspnetcoreRateLimitingRequestLeaseDurationDescription = attribute.Key("The duration of rate limiting lease held by requests on the server.")
// AspnetcoreRateLimitingRequestTimeInQueue is the metric conforming to the
// "aspnetcore.rate_limiting.request.time_in_queue" semantic conventions. It
// represents the time the request spent in a queue waiting to acquire a rate
// limiting lease.
// Instrument: histogram
// Unit: s
// Stability: None
AspnetcoreRateLimitingRequestTimeInQueueName = attribute.Key("aspnetcore.rate_limiting.request.time_in_queue")
AspnetcoreRateLimitingRequestTimeInQueueUnit = attribute.Key("s")
AspnetcoreRateLimitingRequestTimeInQueueDescription = attribute.Key("The time the request spent in a queue waiting to acquire a rate limiting lease.")
// AspnetcoreRateLimitingQueuedRequests is the metric conforming to the
// "aspnetcore.rate_limiting.queued_requests" semantic conventions. It
// represents the number of requests that are currently queued, waiting to
// acquire a rate limiting lease.
// Instrument: updowncounter
// Unit: {request}
// Stability: None
AspnetcoreRateLimitingQueuedRequestsName = attribute.Key("aspnetcore.rate_limiting.queued_requests")
AspnetcoreRateLimitingQueuedRequestsUnit = attribute.Key("{request}")
AspnetcoreRateLimitingQueuedRequestsDescription = attribute.Key("Number of requests that are currently queued, waiting to acquire a rate limiting lease.")
// AspnetcoreRateLimitingRequests is the metric conforming to the
// "aspnetcore.rate_limiting.requests" semantic conventions. It represents the
// number of requests that tried to acquire a rate limiting lease.
// Instrument: counter
// Unit: {request}
// Stability: None
AspnetcoreRateLimitingRequestsName = attribute.Key("aspnetcore.rate_limiting.requests")
AspnetcoreRateLimitingRequestsUnit = attribute.Key("{request}")
AspnetcoreRateLimitingRequestsDescription = attribute.Key("Number of requests that tried to acquire a rate limiting lease.")
// DNSLookupDuration is the metric conforming to the "dns.lookup.duration"
// semantic conventions. It represents the measures the time taken to perform a
// DNS lookup.
// Instrument: histogram
// Unit: s
// Stability: None
DNSLookupDurationName = attribute.Key("dns.lookup.duration")
DNSLookupDurationUnit = attribute.Key("s")
DNSLookupDurationDescription = attribute.Key("Measures the time taken to perform a DNS lookup.")
// HTTPClientOpenConnections is the metric conforming to the
// "http.client.open_connections" semantic conventions. It represents the
// number of outbound HTTP connections that are currently active or idle on the
// client.
// Instrument: updowncounter
// Unit: {connection}
// Stability: None
HTTPClientOpenConnectionsName = attribute.Key("http.client.open_connections")
HTTPClientOpenConnectionsUnit = attribute.Key("{connection}")
HTTPClientOpenConnectionsDescription = attribute.Key("Number of outbound HTTP connections that are currently active or idle on the client.")
// HTTPClientConnectionDuration is the metric conforming to the
// "http.client.connection.duration" semantic conventions. It represents the
// duration of the successfully established outbound HTTP connections.
// Instrument: histogram
// Unit: s
// Stability: None
HTTPClientConnectionDurationName = attribute.Key("http.client.connection.duration")
HTTPClientConnectionDurationUnit = attribute.Key("s")
HTTPClientConnectionDurationDescription = attribute.Key("The duration of the successfully established outbound HTTP connections.")
// HTTPClientActiveRequests is the metric conforming to the
// "http.client.active_requests" semantic conventions. It represents the number
// of active HTTP requests.
// Instrument: updowncounter
// Unit: {request}
// Stability: None
HTTPClientActiveRequestsName = attribute.Key("http.client.active_requests")
HTTPClientActiveRequestsUnit = attribute.Key("{request}")
HTTPClientActiveRequestsDescription = attribute.Key("Number of active HTTP requests.")
// HTTPClientRequestTimeInQueue is the metric conforming to the
// "http.client.request.time_in_queue" semantic conventions. It represents the
// amount of time requests spent on a queue waiting for an available
// connection.
// Instrument: histogram
// Unit: s
// Stability: None
HTTPClientRequestTimeInQueueName = attribute.Key("http.client.request.time_in_queue")
HTTPClientRequestTimeInQueueUnit = attribute.Key("s")
HTTPClientRequestTimeInQueueDescription = attribute.Key("The amount of time requests spent on a queue waiting for an available connection.")
// KestrelActiveConnections is the metric conforming to the
// "kestrel.active_connections" semantic conventions. It represents the number
// of connections that are currently active on the server.
// Instrument: updowncounter
// Unit: {connection}
// Stability: None
KestrelActiveConnectionsName = attribute.Key("kestrel.active_connections")
KestrelActiveConnectionsUnit = attribute.Key("{connection}")
KestrelActiveConnectionsDescription = attribute.Key("Number of connections that are currently active on the server.")
// KestrelConnectionDuration is the metric conforming to the
// "kestrel.connection.duration" semantic conventions. It represents the
// duration of connections on the server.
// Instrument: histogram
// Unit: s
// Stability: None
KestrelConnectionDurationName = attribute.Key("kestrel.connection.duration")
KestrelConnectionDurationUnit = attribute.Key("s")
KestrelConnectionDurationDescription = attribute.Key("The duration of connections on the server.")
// KestrelRejectedConnections is the metric conforming to the
// "kestrel.rejected_connections" semantic conventions. It represents the
// number of connections rejected by the server.
// Instrument: counter
// Unit: {connection}
// Stability: None
KestrelRejectedConnectionsName = attribute.Key("kestrel.rejected_connections")
KestrelRejectedConnectionsUnit = attribute.Key("{connection}")
KestrelRejectedConnectionsDescription = attribute.Key("Number of connections rejected by the server.")
// KestrelQueuedConnections is the metric conforming to the
// "kestrel.queued_connections" semantic conventions. It represents the number
// of connections that are currently queued and are waiting to start.
// Instrument: updowncounter
// Unit: {connection}
// Stability: None
KestrelQueuedConnectionsName = attribute.Key("kestrel.queued_connections")
KestrelQueuedConnectionsUnit = attribute.Key("{connection}")
KestrelQueuedConnectionsDescription = attribute.Key("Number of connections that are currently queued and are waiting to start.")
// KestrelQueuedRequests is the metric conforming to the
// "kestrel.queued_requests" semantic conventions. It represents the number of
// HTTP requests on multiplexed connections (HTTP/2 and HTTP/3) that are
// currently queued and are waiting to start.
// Instrument: updowncounter
// Unit: {request}
// Stability: None
KestrelQueuedRequestsName = attribute.Key("kestrel.queued_requests")
KestrelQueuedRequestsUnit = attribute.Key("{request}")
KestrelQueuedRequestsDescription = attribute.Key("Number of HTTP requests on multiplexed connections (HTTP/2 and HTTP/3) that are currently queued and are waiting to start.")
// KestrelUpgradedConnections is the metric conforming to the
// "kestrel.upgraded_connections" semantic conventions. It represents the
// number of connections that are currently upgraded (WebSockets). .
// Instrument: updowncounter
// Unit: {connection}
// Stability: None
KestrelUpgradedConnectionsName = attribute.Key("kestrel.upgraded_connections")
KestrelUpgradedConnectionsUnit = attribute.Key("{connection}")
KestrelUpgradedConnectionsDescription = attribute.Key("Number of connections that are currently upgraded (WebSockets). .")
// KestrelTLSHandshakeDuration is the metric conforming to the
// "kestrel.tls_handshake.duration" semantic conventions. It represents the
// duration of TLS handshakes on the server.
// Instrument: histogram
// Unit: s
// Stability: None
KestrelTLSHandshakeDurationName = attribute.Key("kestrel.tls_handshake.duration")
KestrelTLSHandshakeDurationUnit = attribute.Key("s")
KestrelTLSHandshakeDurationDescription = attribute.Key("The duration of TLS handshakes on the server.")
// KestrelActiveTLSHandshakes is the metric conforming to the
// "kestrel.active_tls_handshakes" semantic conventions. It represents the
// number of TLS handshakes that are currently in progress on the server.
// Instrument: updowncounter
// Unit: {handshake}
// Stability: None
KestrelActiveTLSHandshakesName = attribute.Key("kestrel.active_tls_handshakes")
KestrelActiveTLSHandshakesUnit = attribute.Key("{handshake}")
KestrelActiveTLSHandshakesDescription = attribute.Key("Number of TLS handshakes that are currently in progress on the server.")
// SignalrServerConnectionDuration is the metric conforming to the
// "signalr.server.connection.duration" semantic conventions. It represents the
// duration of connections on the server.
// Instrument: histogram
// Unit: s
// Stability: None
SignalrServerConnectionDurationName = attribute.Key("signalr.server.connection.duration")
SignalrServerConnectionDurationUnit = attribute.Key("s")
SignalrServerConnectionDurationDescription = attribute.Key("The duration of connections on the server.")
// SignalrServerActiveConnections is the metric conforming to the
// "signalr.server.active_connections" semantic conventions. It represents the
// number of connections that are currently active on the server.
// Instrument: updowncounter
// Unit: {connection}
// Stability: None
SignalrServerActiveConnectionsName = attribute.Key("signalr.server.active_connections")
SignalrServerActiveConnectionsUnit = attribute.Key("{connection}")
SignalrServerActiveConnectionsDescription = attribute.Key("Number of connections that are currently active on the server.")
// FaaSInvokeDuration is the metric conforming to the "faas.invoke_duration"
// semantic conventions. It represents the measures the duration of the
// function's logic execution
// Instrument: histogram
// Unit: s
// Stability: None
FaaSInvokeDurationName = attribute.Key("faas.invoke_duration")
FaaSInvokeDurationUnit = attribute.Key("s")
FaaSInvokeDurationDescription = attribute.Key("Measures the duration of the function's logic execution")
// FaaSInitDuration is the metric conforming to the "faas.init_duration"
// semantic conventions. It represents the measures the duration of the
// function's initialization, such as a cold start
// Instrument: histogram
// Unit: s
// Stability: None
FaaSInitDurationName = attribute.Key("faas.init_duration")
FaaSInitDurationUnit = attribute.Key("s")
FaaSInitDurationDescription = attribute.Key("Measures the duration of the function's initialization, such as a cold start")
// FaaSColdstarts is the metric conforming to the "faas.coldstarts" semantic
// conventions. It represents the number of invocation cold starts
// Instrument: counter
// Unit: {coldstart}
// Stability: None
FaaSColdstartsName = attribute.Key("faas.coldstarts")
FaaSColdstartsUnit = attribute.Key("{coldstart}")
FaaSColdstartsDescription = attribute.Key("Number of invocation cold starts")
// FaaSErrors is the metric conforming to the "faas.errors" semantic
// conventions. It represents the number of invocation errors
// Instrument: counter
// Unit: {error}
// Stability: None
FaaSErrorsName = attribute.Key("faas.errors")
FaaSErrorsUnit = attribute.Key("{error}")
FaaSErrorsDescription = attribute.Key("Number of invocation errors")
// FaaSInvocations is the metric conforming to the "faas.invocations" semantic
// conventions. It represents the number of successful invocations
// Instrument: counter
// Unit: {invocation}
// Stability: None
FaaSInvocationsName = attribute.Key("faas.invocations")
FaaSInvocationsUnit = attribute.Key("{invocation}")
FaaSInvocationsDescription = attribute.Key("Number of successful invocations")
// FaaSTimeouts is the metric conforming to the "faas.timeouts" semantic
// conventions. It represents the number of invocation timeouts
// Instrument: counter
// Unit: {timeout}
// Stability: None
FaaSTimeoutsName = attribute.Key("faas.timeouts")
FaaSTimeoutsUnit = attribute.Key("{timeout}")
FaaSTimeoutsDescription = attribute.Key("Number of invocation timeouts")
// FaaSMemUsage is the metric conforming to the "faas.mem_usage" semantic
// conventions. It represents the distribution of max memory usage per
// invocation
// Instrument: histogram
// Unit: By
// Stability: None
FaaSMemUsageName = attribute.Key("faas.mem_usage")
FaaSMemUsageUnit = attribute.Key("By")
FaaSMemUsageDescription = attribute.Key("Distribution of max memory usage per invocation")
// FaaSCPUUsage is the metric conforming to the "faas.cpu_usage" semantic
// conventions. It represents the distribution of CPU usage per invocation
// Instrument: histogram
// Unit: s
// Stability: None
FaaSCPUUsageName = attribute.Key("faas.cpu_usage")
FaaSCPUUsageUnit = attribute.Key("s")
FaaSCPUUsageDescription = attribute.Key("Distribution of CPU usage per invocation")
// FaaSNetIo is the metric conforming to the "faas.net_io" semantic
// conventions. It represents the distribution of net I/O usage per invocation
// Instrument: histogram
// Unit: By
// Stability: None
FaaSNetIoName = attribute.Key("faas.net_io")
FaaSNetIoUnit = attribute.Key("By")
FaaSNetIoDescription = attribute.Key("Distribution of net I/O usage per invocation")
// HTTPServerRequestDuration is the metric conforming to the
// "http.server.request.duration" semantic conventions. It represents the
// duration of HTTP server requests.
// Instrument: histogram
// Unit: s
// Stability: StabilityLevel.STABLE
HTTPServerRequestDurationName = attribute.Key("http.server.request.duration")
HTTPServerRequestDurationUnit = attribute.Key("s")
HTTPServerRequestDurationDescription = attribute.Key("Duration of HTTP server requests.")
// HTTPServerActiveRequests is the metric conforming to the
// "http.server.active_requests" semantic conventions. It represents the number
// of active HTTP server requests.
// Instrument: updowncounter
// Unit: {request}
// Stability: None
HTTPServerActiveRequestsName = attribute.Key("http.server.active_requests")
HTTPServerActiveRequestsUnit = attribute.Key("{request}")
HTTPServerActiveRequestsDescription = attribute.Key("Number of active HTTP server requests.")
// HTTPServerRequestBodySize is the metric conforming to the
// "http.server.request.body.size" semantic conventions. It represents the size
// of HTTP server request bodies.
// Instrument: histogram
// Unit: By
// Stability: None
HTTPServerRequestBodySizeName = attribute.Key("http.server.request.body.size")
HTTPServerRequestBodySizeUnit = attribute.Key("By")
HTTPServerRequestBodySizeDescription = attribute.Key("Size of HTTP server request bodies.")
// HTTPServerResponseBodySize is the metric conforming to the
// "http.server.response.body.size" semantic conventions. It represents the
// size of HTTP server response bodies.
// Instrument: histogram
// Unit: By
// Stability: None
HTTPServerResponseBodySizeName = attribute.Key("http.server.response.body.size")
HTTPServerResponseBodySizeUnit = attribute.Key("By")
HTTPServerResponseBodySizeDescription = attribute.Key("Size of HTTP server response bodies.")
// HTTPClientRequestDuration is the metric conforming to the
// "http.client.request.duration" semantic conventions. It represents the
// duration of HTTP client requests.
// Instrument: histogram
// Unit: s
// Stability: StabilityLevel.STABLE
HTTPClientRequestDurationName = attribute.Key("http.client.request.duration")
HTTPClientRequestDurationUnit = attribute.Key("s")
HTTPClientRequestDurationDescription = attribute.Key("Duration of HTTP client requests.")
// HTTPClientRequestBodySize is the metric conforming to the
// "http.client.request.body.size" semantic conventions. It represents the size
// of HTTP client request bodies.
// Instrument: histogram
// Unit: By
// Stability: None
HTTPClientRequestBodySizeName = attribute.Key("http.client.request.body.size")
HTTPClientRequestBodySizeUnit = attribute.Key("By")
HTTPClientRequestBodySizeDescription = attribute.Key("Size of HTTP client request bodies.")
// HTTPClientResponseBodySize is the metric conforming to the
// "http.client.response.body.size" semantic conventions. It represents the
// size of HTTP client response bodies.
// Instrument: histogram
// Unit: By
// Stability: None
HTTPClientResponseBodySizeName = attribute.Key("http.client.response.body.size")
HTTPClientResponseBodySizeUnit = attribute.Key("By")
HTTPClientResponseBodySizeDescription = attribute.Key("Size of HTTP client response bodies.")
// JvmMemoryInit is the metric conforming to the "jvm.memory.init" semantic
// conventions. It represents the measure of initial memory requested.
// Instrument: updowncounter
// Unit: By
// Stability: None
JvmMemoryInitName = attribute.Key("jvm.memory.init")
JvmMemoryInitUnit = attribute.Key("By")
JvmMemoryInitDescription = attribute.Key("Measure of initial memory requested.")
// JvmSystemCPUUtilization is the metric conforming to the
// "jvm.system.cpu.utilization" semantic conventions. It represents the recent
// CPU utilization for the whole system as reported by the JVM.
// Instrument: gauge
// Unit: 1
// Stability: None
JvmSystemCPUUtilizationName = attribute.Key("jvm.system.cpu.utilization")
JvmSystemCPUUtilizationUnit = attribute.Key("1")
JvmSystemCPUUtilizationDescription = attribute.Key("Recent CPU utilization for the whole system as reported by the JVM.")
// JvmSystemCPULoad1m is the metric conforming to the "jvm.system.cpu.load_1m"
// semantic conventions. It represents the average CPU load of the whole system
// for the last minute as reported by the JVM.
// Instrument: gauge
// Unit: {run_queue_item}
// Stability: None
JvmSystemCPULoad1mName = attribute.Key("jvm.system.cpu.load_1m")
JvmSystemCPULoad1mUnit = attribute.Key("{run_queue_item}")
JvmSystemCPULoad1mDescription = attribute.Key("Average CPU load of the whole system for the last minute as reported by the JVM.")
// JvmBufferMemoryUsage is the metric conforming to the
// "jvm.buffer.memory.usage" semantic conventions. It represents the measure of
// memory used by buffers.
// Instrument: updowncounter
// Unit: By
// Stability: None
JvmBufferMemoryUsageName = attribute.Key("jvm.buffer.memory.usage")
JvmBufferMemoryUsageUnit = attribute.Key("By")
JvmBufferMemoryUsageDescription = attribute.Key("Measure of memory used by buffers.")
// JvmBufferMemoryLimit is the metric conforming to the
// "jvm.buffer.memory.limit" semantic conventions. It represents the measure of
// total memory capacity of buffers.
// Instrument: updowncounter
// Unit: By
// Stability: None
JvmBufferMemoryLimitName = attribute.Key("jvm.buffer.memory.limit")
JvmBufferMemoryLimitUnit = attribute.Key("By")
JvmBufferMemoryLimitDescription = attribute.Key("Measure of total memory capacity of buffers.")
// JvmBufferCount is the metric conforming to the "jvm.buffer.count" semantic
// conventions. It represents the number of buffers in the pool.
// Instrument: updowncounter
// Unit: {buffer}
// Stability: None
JvmBufferCountName = attribute.Key("jvm.buffer.count")
JvmBufferCountUnit = attribute.Key("{buffer}")
JvmBufferCountDescription = attribute.Key("Number of buffers in the pool.")
// JvmMemoryUsed is the metric conforming to the "jvm.memory.used" semantic
// conventions. It represents the measure of memory used.
// Instrument: updowncounter
// Unit: By
// Stability: StabilityLevel.STABLE
JvmMemoryUsedName = attribute.Key("jvm.memory.used")
JvmMemoryUsedUnit = attribute.Key("By")
JvmMemoryUsedDescription = attribute.Key("Measure of memory used.")
// JvmMemoryCommitted is the metric conforming to the "jvm.memory.committed"
// semantic conventions. It represents the measure of memory committed.
// Instrument: updowncounter
// Unit: By
// Stability: StabilityLevel.STABLE
JvmMemoryCommittedName = attribute.Key("jvm.memory.committed")
JvmMemoryCommittedUnit = attribute.Key("By")
JvmMemoryCommittedDescription = attribute.Key("Measure of memory committed.")
// JvmMemoryLimit is the metric conforming to the "jvm.memory.limit" semantic
// conventions. It represents the measure of max obtainable memory.
// Instrument: updowncounter
// Unit: By
// Stability: StabilityLevel.STABLE
JvmMemoryLimitName = attribute.Key("jvm.memory.limit")
JvmMemoryLimitUnit = attribute.Key("By")
JvmMemoryLimitDescription = attribute.Key("Measure of max obtainable memory.")
// JvmMemoryUsedAfterLastGc is the metric conforming to the
// "jvm.memory.used_after_last_gc" semantic conventions. It represents the
// measure of memory used, as measured after the most recent garbage collection
// event on this pool.
// Instrument: updowncounter
// Unit: By
// Stability: StabilityLevel.STABLE
JvmMemoryUsedAfterLastGcName = attribute.Key("jvm.memory.used_after_last_gc")
JvmMemoryUsedAfterLastGcUnit = attribute.Key("By")
JvmMemoryUsedAfterLastGcDescription = attribute.Key("Measure of memory used, as measured after the most recent garbage collection event on this pool.")
// JvmGcDuration is the metric conforming to the "jvm.gc.duration" semantic
// conventions. It represents the duration of JVM garbage collection actions.
// Instrument: histogram
// Unit: s
// Stability: StabilityLevel.STABLE
JvmGcDurationName = attribute.Key("jvm.gc.duration")
JvmGcDurationUnit = attribute.Key("s")
JvmGcDurationDescription = attribute.Key("Duration of JVM garbage collection actions.")
// JvmThreadCount is the metric conforming to the "jvm.thread.count" semantic
// conventions. It represents the number of executing platform threads.
// Instrument: updowncounter
// Unit: {thread}
// Stability: StabilityLevel.STABLE
JvmThreadCountName = attribute.Key("jvm.thread.count")
JvmThreadCountUnit = attribute.Key("{thread}")
JvmThreadCountDescription = attribute.Key("Number of executing platform threads.")
// JvmClassLoaded is the metric conforming to the "jvm.class.loaded" semantic
// conventions. It represents the number of classes loaded since JVM start.
// Instrument: counter
// Unit: {class}
// Stability: StabilityLevel.STABLE
JvmClassLoadedName = attribute.Key("jvm.class.loaded")
JvmClassLoadedUnit = attribute.Key("{class}")
JvmClassLoadedDescription = attribute.Key("Number of classes loaded since JVM start.")
// JvmClassUnloaded is the metric conforming to the "jvm.class.unloaded"
// semantic conventions. It represents the number of classes unloaded since JVM
// start.
// Instrument: counter
// Unit: {class}
// Stability: StabilityLevel.STABLE
JvmClassUnloadedName = attribute.Key("jvm.class.unloaded")
JvmClassUnloadedUnit = attribute.Key("{class}")
JvmClassUnloadedDescription = attribute.Key("Number of classes unloaded since JVM start.")
// JvmClassCount is the metric conforming to the "jvm.class.count" semantic
// conventions. It represents the number of classes currently loaded.
// Instrument: updowncounter
// Unit: {class}
// Stability: StabilityLevel.STABLE
JvmClassCountName = attribute.Key("jvm.class.count")
JvmClassCountUnit = attribute.Key("{class}")
JvmClassCountDescription = attribute.Key("Number of classes currently loaded.")
// JvmCPUCount is the metric conforming to the "jvm.cpu.count" semantic
// conventions. It represents the number of processors available to the Java
// virtual machine.
// Instrument: updowncounter
// Unit: {cpu}
// Stability: StabilityLevel.STABLE
JvmCPUCountName = attribute.Key("jvm.cpu.count")
JvmCPUCountUnit = attribute.Key("{cpu}")
JvmCPUCountDescription = attribute.Key("Number of processors available to the Java virtual machine.")
// JvmCPUTime is the metric conforming to the "jvm.cpu.time" semantic
// conventions. It represents the cPU time used by the process as reported by
// the JVM.
// Instrument: counter
// Unit: s
// Stability: StabilityLevel.STABLE
JvmCPUTimeName = attribute.Key("jvm.cpu.time")
JvmCPUTimeUnit = attribute.Key("s")
JvmCPUTimeDescription = attribute.Key("CPU time used by the process as reported by the JVM.")
// JvmCPURecentUtilization is the metric conforming to the
// "jvm.cpu.recent_utilization" semantic conventions. It represents the recent
// CPU utilization for the process as reported by the JVM.
// Instrument: gauge
// Unit: 1
// Stability: StabilityLevel.STABLE
JvmCPURecentUtilizationName = attribute.Key("jvm.cpu.recent_utilization")
JvmCPURecentUtilizationUnit = attribute.Key("1")
JvmCPURecentUtilizationDescription = attribute.Key("Recent CPU utilization for the process as reported by the JVM.")
// MessagingPublishDuration is the metric conforming to the
// "messaging.publish.duration" semantic conventions. It represents the
// measures the duration of publish operation.
// Instrument: histogram
// Unit: s
// Stability: None
MessagingPublishDurationName = attribute.Key("messaging.publish.duration")
MessagingPublishDurationUnit = attribute.Key("s")
MessagingPublishDurationDescription = attribute.Key("Measures the duration of publish operation.")
// MessagingReceiveDuration is the metric conforming to the
// "messaging.receive.duration" semantic conventions. It represents the
// measures the duration of receive operation.
// Instrument: histogram
// Unit: s
// Stability: None
MessagingReceiveDurationName = attribute.Key("messaging.receive.duration")
MessagingReceiveDurationUnit = attribute.Key("s")
MessagingReceiveDurationDescription = attribute.Key("Measures the duration of receive operation.")
// MessagingDeliverDuration is the metric conforming to the
// "messaging.deliver.duration" semantic conventions. It represents the
// measures the duration of deliver operation.
// Instrument: histogram
// Unit: s
// Stability: None
MessagingDeliverDurationName = attribute.Key("messaging.deliver.duration")
MessagingDeliverDurationUnit = attribute.Key("s")
MessagingDeliverDurationDescription = attribute.Key("Measures the duration of deliver operation.")
// MessagingPublishMessages is the metric conforming to the
// "messaging.publish.messages" semantic conventions. It represents the
// measures the number of published messages.
// Instrument: counter
// Unit: {message}
// Stability: None
MessagingPublishMessagesName = attribute.Key("messaging.publish.messages")
MessagingPublishMessagesUnit = attribute.Key("{message}")
MessagingPublishMessagesDescription = attribute.Key("Measures the number of published messages.")
// MessagingReceiveMessages is the metric conforming to the
// "messaging.receive.messages" semantic conventions. It represents the
// measures the number of received messages.
// Instrument: counter
// Unit: {message}
// Stability: None
MessagingReceiveMessagesName = attribute.Key("messaging.receive.messages")
MessagingReceiveMessagesUnit = attribute.Key("{message}")
MessagingReceiveMessagesDescription = attribute.Key("Measures the number of received messages.")
// MessagingDeliverMessages is the metric conforming to the
// "messaging.deliver.messages" semantic conventions. It represents the
// measures the number of delivered messages.
// Instrument: counter
// Unit: {message}
// Stability: None
MessagingDeliverMessagesName = attribute.Key("messaging.deliver.messages")
MessagingDeliverMessagesUnit = attribute.Key("{message}")
MessagingDeliverMessagesDescription = attribute.Key("Measures the number of delivered messages.")
// RPCServerDuration is the metric conforming to the "rpc.server.duration"
// semantic conventions. It represents the measures the duration of inbound
// RPC.
// Instrument: histogram
// Unit: ms
// Stability: None
RPCServerDurationName = attribute.Key("rpc.server.duration")
RPCServerDurationUnit = attribute.Key("ms")
RPCServerDurationDescription = attribute.Key("Measures the duration of inbound RPC.")
// RPCServerRequestSize is the metric conforming to the
// "rpc.server.request.size" semantic conventions. It represents the measures
// the size of RPC request messages (uncompressed).
// Instrument: histogram
// Unit: By
// Stability: None
RPCServerRequestSizeName = attribute.Key("rpc.server.request.size")
RPCServerRequestSizeUnit = attribute.Key("By")
RPCServerRequestSizeDescription = attribute.Key("Measures the size of RPC request messages (uncompressed).")
// RPCServerResponseSize is the metric conforming to the
// "rpc.server.response.size" semantic conventions. It represents the measures
// the size of RPC response messages (uncompressed).
// Instrument: histogram
// Unit: By
// Stability: None
RPCServerResponseSizeName = attribute.Key("rpc.server.response.size")
RPCServerResponseSizeUnit = attribute.Key("By")
RPCServerResponseSizeDescription = attribute.Key("Measures the size of RPC response messages (uncompressed).")
// RPCServerRequestsPerRPC is the metric conforming to the
// "rpc.server.requests_per_rpc" semantic conventions. It represents the
// measures the number of messages received per RPC.
// Instrument: histogram
// Unit: {count}
// Stability: None
RPCServerRequestsPerRPCName = attribute.Key("rpc.server.requests_per_rpc")
RPCServerRequestsPerRPCUnit = attribute.Key("{count}")
RPCServerRequestsPerRPCDescription = attribute.Key("Measures the number of messages received per RPC.")
// RPCServerResponsesPerRPC is the metric conforming to the
// "rpc.server.responses_per_rpc" semantic conventions. It represents the
// measures the number of messages sent per RPC.
// Instrument: histogram
// Unit: {count}
// Stability: None
RPCServerResponsesPerRPCName = attribute.Key("rpc.server.responses_per_rpc")
RPCServerResponsesPerRPCUnit = attribute.Key("{count}")
RPCServerResponsesPerRPCDescription = attribute.Key("Measures the number of messages sent per RPC.")
// RPCClientDuration is the metric conforming to the "rpc.client.duration"
// semantic conventions. It represents the measures the duration of outbound
// RPC.
// Instrument: histogram
// Unit: ms
// Stability: None
RPCClientDurationName = attribute.Key("rpc.client.duration")
RPCClientDurationUnit = attribute.Key("ms")
RPCClientDurationDescription = attribute.Key("Measures the duration of outbound RPC.")
// RPCClientRequestSize is the metric conforming to the
// "rpc.client.request.size" semantic conventions. It represents the measures
// the size of RPC request messages (uncompressed).
// Instrument: histogram
// Unit: By
// Stability: None
RPCClientRequestSizeName = attribute.Key("rpc.client.request.size")
RPCClientRequestSizeUnit = attribute.Key("By")
RPCClientRequestSizeDescription = attribute.Key("Measures the size of RPC request messages (uncompressed).")
// RPCClientResponseSize is the metric conforming to the
// "rpc.client.response.size" semantic conventions. It represents the measures
// the size of RPC response messages (uncompressed).
// Instrument: histogram
// Unit: By
// Stability: None
RPCClientResponseSizeName = attribute.Key("rpc.client.response.size")
RPCClientResponseSizeUnit = attribute.Key("By")
RPCClientResponseSizeDescription = attribute.Key("Measures the size of RPC response messages (uncompressed).")
// RPCClientRequestsPerRPC is the metric conforming to the
// "rpc.client.requests_per_rpc" semantic conventions. It represents the
// measures the number of messages received per RPC.
// Instrument: histogram
// Unit: {count}
// Stability: None
RPCClientRequestsPerRPCName = attribute.Key("rpc.client.requests_per_rpc")
RPCClientRequestsPerRPCUnit = attribute.Key("{count}")
RPCClientRequestsPerRPCDescription = attribute.Key("Measures the number of messages received per RPC.")
// RPCClientResponsesPerRPC is the metric conforming to the
// "rpc.client.responses_per_rpc" semantic conventions. It represents the
// measures the number of messages sent per RPC.
// Instrument: histogram
// Unit: {count}
// Stability: None
RPCClientResponsesPerRPCName = attribute.Key("rpc.client.responses_per_rpc")
RPCClientResponsesPerRPCUnit = attribute.Key("{count}")
RPCClientResponsesPerRPCDescription = attribute.Key("Measures the number of messages sent per RPC.")
// SystemCPUTime is the metric conforming to the "system.cpu.time" semantic
// conventions. It represents the seconds each logical CPU spent on each mode
// Instrument: counter
// Unit: s
// Stability: None
SystemCPUTimeName = attribute.Key("system.cpu.time")
SystemCPUTimeUnit = attribute.Key("s")
SystemCPUTimeDescription = attribute.Key("Seconds each logical CPU spent on each mode")
// SystemCPUUtilization is the metric conforming to the
// "system.cpu.utilization" semantic conventions. It represents the difference
// in system.cpu.time since the last measurement, divided by the elapsed time
// and number of logical CPUs
// Instrument: gauge
// Unit: 1
// Stability: None
SystemCPUUtilizationName = attribute.Key("system.cpu.utilization")
SystemCPUUtilizationUnit = attribute.Key("1")
SystemCPUUtilizationDescription = attribute.Key("Difference in system.cpu.time since the last measurement, divided by the elapsed time and number of logical CPUs")
// SystemCPUFrequency is the metric conforming to the "system.cpu.frequency"
// semantic conventions. It represents the reports the current frequency of the
// CPU in Hz
// Instrument: gauge
// Unit: {Hz}
// Stability: None
SystemCPUFrequencyName = attribute.Key("system.cpu.frequency")
SystemCPUFrequencyUnit = attribute.Key("{Hz}")
SystemCPUFrequencyDescription = attribute.Key("Reports the current frequency of the CPU in Hz")
// SystemCPUPhysicalCount is the metric conforming to the
// "system.cpu.physical.count" semantic conventions. It represents the reports
// the number of actual physical processor cores on the hardware
// Instrument: updowncounter
// Unit: {cpu}
// Stability: None
SystemCPUPhysicalCountName = attribute.Key("system.cpu.physical.count")
SystemCPUPhysicalCountUnit = attribute.Key("{cpu}")
SystemCPUPhysicalCountDescription = attribute.Key("Reports the number of actual physical processor cores on the hardware")
// SystemCPULogicalCount is the metric conforming to the
// "system.cpu.logical.count" semantic conventions. It represents the reports
// the number of logical (virtual) processor cores created by the operating
// system to manage multitasking
// Instrument: updowncounter
// Unit: {cpu}
// Stability: None
SystemCPULogicalCountName = attribute.Key("system.cpu.logical.count")
SystemCPULogicalCountUnit = attribute.Key("{cpu}")
SystemCPULogicalCountDescription = attribute.Key("Reports the number of logical (virtual) processor cores created by the operating system to manage multitasking")
// SystemMemoryUsage is the metric conforming to the "system.memory.usage"
// semantic conventions. It represents the reports memory in use by state.
// Instrument: updowncounter
// Unit: By
// Stability: None
SystemMemoryUsageName = attribute.Key("system.memory.usage")
SystemMemoryUsageUnit = attribute.Key("By")
SystemMemoryUsageDescription = attribute.Key("Reports memory in use by state.")
// SystemMemoryLimit is the metric conforming to the "system.memory.limit"
// semantic conventions. It represents the total memory available in the
// system.
// Instrument: updowncounter
// Unit: By
// Stability: None
SystemMemoryLimitName = attribute.Key("system.memory.limit")
SystemMemoryLimitUnit = attribute.Key("By")
SystemMemoryLimitDescription = attribute.Key("Total memory available in the system.")
// SystemMemoryUtilization is the metric conforming to the
// "system.memory.utilization" semantic conventions. It represents the
// Instrument: gauge
// Unit: 1
// Stability: None
SystemMemoryUtilizationName = attribute.Key("system.memory.utilization")
SystemMemoryUtilizationUnit = attribute.Key("1")
SystemMemoryUtilizationDescription = attribute.Key("")
// SystemPagingUsage is the metric conforming to the "system.paging.usage"
// semantic conventions. It represents the unix swap or windows pagefile usage
// Instrument: updowncounter
// Unit: By
// Stability: None
SystemPagingUsageName = attribute.Key("system.paging.usage")
SystemPagingUsageUnit = attribute.Key("By")
SystemPagingUsageDescription = attribute.Key("Unix swap or windows pagefile usage")
// SystemPagingUtilization is the metric conforming to the
// "system.paging.utilization" semantic conventions. It represents the
// Instrument: gauge
// Unit: 1
// Stability: None
SystemPagingUtilizationName = attribute.Key("system.paging.utilization")
SystemPagingUtilizationUnit = attribute.Key("1")
SystemPagingUtilizationDescription = attribute.Key("")
// SystemPagingFaults is the metric conforming to the "system.paging.faults"
// semantic conventions. It represents the
// Instrument: counter
// Unit: {fault}
// Stability: None
SystemPagingFaultsName = attribute.Key("system.paging.faults")
SystemPagingFaultsUnit = attribute.Key("{fault}")
SystemPagingFaultsDescription = attribute.Key("")
// SystemPagingOperations is the metric conforming to the
// "system.paging.operations" semantic conventions. It represents the
// Instrument: counter
// Unit: {operation}
// Stability: None
SystemPagingOperationsName = attribute.Key("system.paging.operations")
SystemPagingOperationsUnit = attribute.Key("{operation}")
SystemPagingOperationsDescription = attribute.Key("")
// SystemDiskIo is the metric conforming to the "system.disk.io" semantic
// conventions. It represents the
// Instrument: counter
// Unit: By
// Stability: None
SystemDiskIoName = attribute.Key("system.disk.io")
SystemDiskIoUnit = attribute.Key("By")
SystemDiskIoDescription = attribute.Key("")
// SystemDiskOperations is the metric conforming to the
// "system.disk.operations" semantic conventions. It represents the
// Instrument: counter
// Unit: {operation}
// Stability: None
SystemDiskOperationsName = attribute.Key("system.disk.operations")
SystemDiskOperationsUnit = attribute.Key("{operation}")
SystemDiskOperationsDescription = attribute.Key("")
// SystemDiskIoTime is the metric conforming to the "system.disk.io_time"
// semantic conventions. It represents the time disk spent activated
// Instrument: counter
// Unit: s
// Stability: None
SystemDiskIoTimeName = attribute.Key("system.disk.io_time")
SystemDiskIoTimeUnit = attribute.Key("s")
SystemDiskIoTimeDescription = attribute.Key("Time disk spent activated")
// SystemDiskOperationTime is the metric conforming to the
// "system.disk.operation_time" semantic conventions. It represents the sum of
// the time each operation took to complete
// Instrument: counter
// Unit: s
// Stability: None
SystemDiskOperationTimeName = attribute.Key("system.disk.operation_time")
SystemDiskOperationTimeUnit = attribute.Key("s")
SystemDiskOperationTimeDescription = attribute.Key("Sum of the time each operation took to complete")
// SystemDiskMerged is the metric conforming to the "system.disk.merged"
// semantic conventions. It represents the
// Instrument: counter
// Unit: {operation}
// Stability: None
SystemDiskMergedName = attribute.Key("system.disk.merged")
SystemDiskMergedUnit = attribute.Key("{operation}")
SystemDiskMergedDescription = attribute.Key("")
// SystemFilesystemUsage is the metric conforming to the
// "system.filesystem.usage" semantic conventions. It represents the
// Instrument: updowncounter
// Unit: By
// Stability: None
SystemFilesystemUsageName = attribute.Key("system.filesystem.usage")
SystemFilesystemUsageUnit = attribute.Key("By")
SystemFilesystemUsageDescription = attribute.Key("")
// SystemFilesystemUtilization is the metric conforming to the
// "system.filesystem.utilization" semantic conventions. It represents the