-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathUsageSummaryDateOrg.ts
1523 lines (1516 loc) · 50.4 KB
/
UsageSummaryDateOrg.ts
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
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Global hourly report of all data billed by Datadog for a given organization.
*/
export class UsageSummaryDateOrg {
/**
* The account name.
*/
"accountName"?: string;
/**
* The account public id.
*/
"accountPublicId"?: string;
/**
* Shows the 99th percentile of all agent hosts over all hours in the current date for the given org.
*/
"agentHostTop99p"?: number;
/**
* Shows the 99th percentile of all Azure app services using APM over all hours in the current date for the given org.
*/
"apmAzureAppServiceHostTop99p"?: number;
/**
* Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
*/
"apmDevsecopsHostTop99p"?: number;
/**
* Shows the average of all APM ECS Fargate tasks over all hours in the current month for the given org.
*/
"apmFargateCountAvg"?: number;
/**
* Shows the 99th percentile of all distinct APM hosts over all hours in the current date for the given org.
*/
"apmHostTop99p"?: number;
/**
* Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for the given org.
*/
"appsecFargateCountAvg"?: number;
/**
* Shows the sum of all Application Security Monitoring Serverless invocations over all hours in the current month for the given org.
*/
"asmServerlessSum"?: number;
/**
* Shows the sum of all audit logs lines indexed over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"auditLogsLinesIndexedSum"?: number;
/**
* Shows whether Audit Trail is enabled for the current date for the given org.
*/
"auditTrailEnabledHwm"?: number;
/**
* The average total count for Fargate Container Profiler over all hours in the current month for the given org.
*/
"avgProfiledFargateTasks"?: number;
/**
* Shows the 99th percentile of all AWS hosts over all hours in the current date for the given org.
*/
"awsHostTop99p"?: number;
/**
* Shows the sum of all AWS Lambda invocations over all hours in the current date for the given org.
*/
"awsLambdaFuncCount"?: number;
/**
* Shows the sum of all AWS Lambda invocations over all hours in the current date for the given org.
*/
"awsLambdaInvocationsSum"?: number;
/**
* Shows the 99th percentile of all Azure app services over all hours in the current date for the given org.
*/
"azureAppServiceTop99p"?: number;
/**
* Shows the sum of all log bytes ingested over all hours in the current date for the given org.
*/
"billableIngestedBytesSum"?: number;
/**
* Shows the sum of all browser lite sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"browserRumLiteSessionCountSum"?: number;
/**
* Shows the sum of all browser replay sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"browserRumReplaySessionCountSum"?: number;
/**
* Shows the sum of all browser RUM units over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"browserRumUnitsSum"?: number;
/**
* Shows the sum of all CI pipeline indexed spans over all hours in the current date for the given org.
*/
"ciPipelineIndexedSpansSum"?: number;
/**
* Shows the sum of all CI test indexed spans over all hours in the current date for the given org.
*/
"ciTestIndexedSpansSum"?: number;
/**
* Shows the high-water mark of all CI visibility intelligent test runner committers over all hours in the current date for the given org.
*/
"ciVisibilityItrCommittersHwm"?: number;
/**
* Shows the high-water mark of all CI visibility pipeline committers over all hours in the current date for the given org.
*/
"ciVisibilityPipelineCommittersHwm"?: number;
/**
* Shows the high-water mark of all CI visibility test committers over all hours in the current date for the given org.
*/
"ciVisibilityTestCommittersHwm"?: number;
/**
* Host count average of Cloud Cost Management for AWS for the given date and given org.
*/
"cloudCostManagementAwsHostCountAvg"?: number;
/**
* Host count average of Cloud Cost Management for Azure for the given date and given org.
*/
"cloudCostManagementAzureHostCountAvg"?: number;
/**
* Host count average of Cloud Cost Management for GCP for the given date and given org.
*/
"cloudCostManagementGcpHostCountAvg"?: number;
/**
* Host count average of Cloud Cost Management for all cloud providers for the given date and given org.
*/
"cloudCostManagementHostCountAvg"?: number;
/**
* Shows the sum of all Cloud Security Information and Event Management events over all hours in the current date for the given org.
*/
"cloudSiemEventsSum"?: number;
/**
* Shows the high-water mark of all Static Analysis committers over all hours in the current date for the given org.
*/
"codeAnalysisSaCommittersHwm"?: number;
/**
* Shows the high-water mark of all static Software Composition Analysis committers over all hours in the current date for the given org.
*/
"codeAnalysisScaCommittersHwm"?: number;
/**
* Shows the 99th percentile of all Code Security hosts over all hours in the current date for the given org.
*/
"codeSecurityHostTop99p"?: number;
/**
* Shows the average of all distinct containers over all hours in the current date for the given org.
*/
"containerAvg"?: number;
/**
* Shows the average of containers without the Datadog Agent over all hours in the current date for the given organization.
*/
"containerExclAgentAvg"?: number;
/**
* Shows the high-water mark of all distinct containers over all hours in the current date for the given org.
*/
"containerHwm"?: number;
/**
* Shows the sum of all Cloud Security Management Enterprise compliance containers over all hours in the current date for the given org.
*/
"csmContainerEnterpriseComplianceCountSum"?: number;
/**
* Shows the sum of all Cloud Security Management Enterprise Cloud Workload Security containers over all hours in the current date for the given org.
*/
"csmContainerEnterpriseCwsCountSum"?: number;
/**
* Shows the sum of all Cloud Security Management Enterprise containers over all hours in the current date for the given org.
*/
"csmContainerEnterpriseTotalCountSum"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Enterprise Azure app services hosts over all hours in the current date for the given org.
*/
"csmHostEnterpriseAasHostCountTop99p"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Enterprise AWS hosts over all hours in the current date for the given org.
*/
"csmHostEnterpriseAwsHostCountTop99p"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Enterprise Azure hosts over all hours in the current date for the given org.
*/
"csmHostEnterpriseAzureHostCountTop99p"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Enterprise compliance hosts over all hours in the current date for the given org.
*/
"csmHostEnterpriseComplianceHostCountTop99p"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Enterprise Cloud Workload Security hosts over all hours in the current date for the given org.
*/
"csmHostEnterpriseCwsHostCountTop99p"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current date for the given org.
*/
"csmHostEnterpriseGcpHostCountTop99p"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org.
*/
"csmHostEnterpriseTotalHostCountTop99p"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current date for the given org.
*/
"cspmAasHostTop99p"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Pro AWS hosts over all hours in the current date for the given org.
*/
"cspmAwsHostTop99p"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Pro Azure hosts over all hours in the current date for the given org.
*/
"cspmAzureHostTop99p"?: number;
/**
* Shows the average number of Cloud Security Management Pro containers over all hours in the current date for the given org.
*/
"cspmContainerAvg"?: number;
/**
* Shows the high-water mark of Cloud Security Management Pro containers over all hours in the current date for the given org.
*/
"cspmContainerHwm"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Pro GCP hosts over all hours in the current date for the given org.
*/
"cspmGcpHostTop99p"?: number;
/**
* Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current date for the given org.
*/
"cspmHostTop99p"?: number;
/**
* Shows the average number of distinct historical custom metrics over all hours in the current date for the given org.
*/
"customHistoricalTsAvg"?: number;
/**
* Shows the average number of distinct live custom metrics over all hours in the current date for the given org.
*/
"customLiveTsAvg"?: number;
/**
* Shows the average number of distinct custom metrics over all hours in the current date for the given org.
*/
"customTsAvg"?: number;
/**
* Shows the average of all distinct Cloud Workload Security containers over all hours in the current date for the given org.
*/
"cwsContainerCountAvg"?: number;
/**
* Shows the average of all distinct Cloud Workload Security Fargate tasks over all hours in the current date for the given org.
*/
"cwsFargateTaskAvg"?: number;
/**
* Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for the given org.
*/
"cwsHostTop99p"?: number;
/**
* Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org.
*/
"dataJobsMonitoringHostHrSum"?: number;
/**
* Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for the given org.
*/
"dbmHostTop99pSum"?: number;
/**
* Shows the average of all distinct Database Monitoring normalized queries over all hours in the current month for the given org.
*/
"dbmQueriesAvgSum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
*/
"ephInfraHostAgentSum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts on Alibaba over all hours in the current date for the given org.
*/
"ephInfraHostAlibabaSum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts on AWS over all hours in the current date for the given org.
*/
"ephInfraHostAwsSum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts on Azure over all hours in the current date for the given org.
*/
"ephInfraHostAzureSum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts for Enterprise over all hours in the current date for the given org.
*/
"ephInfraHostEntSum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts on GCP over all hours in the current date for the given org.
*/
"ephInfraHostGcpSum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts on Heroku over all hours in the current date for the given org.
*/
"ephInfraHostHerokuSum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts with only Azure App Services over all hours in the current date for the given org.
*/
"ephInfraHostOnlyAasSum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts with only vSphere over all hours in the current date for the given org.
*/
"ephInfraHostOnlyVsphereSum"?: number;
/**
* Shows the sum of all ephemeral APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
*/
"ephInfraHostOpentelemetryApmSum"?: number;
/**
* Shows the sum of all ephemeral hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
*/
"ephInfraHostOpentelemetrySum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts for Pro over all hours in the current date for the given org.
*/
"ephInfraHostProSum"?: number;
/**
* Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current date for the given org.
*/
"ephInfraHostProplusSum"?: number;
/**
* Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
*/
"errorTrackingErrorEventsSum"?: number;
/**
* Shows the sum of all Error Tracking events over all hours in the current date for the given org.
*/
"errorTrackingEventsSum"?: number;
/**
* Shows the sum of all Error Tracking RUM error events over all hours in the current date for the given org.
*/
"errorTrackingRumErrorEventsSum"?: number;
/**
* The average number of Profiling Fargate tasks over all hours in the current month for the given org.
*/
"fargateContainerProfilerProfilingFargateAvg"?: number;
/**
* The average number of Profiling Fargate Elastic Kubernetes Service tasks over all hours in the current month for the given org.
*/
"fargateContainerProfilerProfilingFargateEksAvg"?: number;
/**
* The average task count for Fargate.
*/
"fargateTasksCountAvg"?: number;
/**
* Shows the high-water mark of all Fargate tasks over all hours in the current date for the given org.
*/
"fargateTasksCountHwm"?: number;
/**
* Shows the average number of Flex Logs Compute Large Instances over all hours in the current date for the given org.
*/
"flexLogsComputeLargeAvg"?: number;
/**
* Shows the average number of Flex Logs Compute Medium Instances over all hours in the current date for the given org.
*/
"flexLogsComputeMediumAvg"?: number;
/**
* Shows the average number of Flex Logs Compute Small Instances over all hours in the current date for the given org.
*/
"flexLogsComputeSmallAvg"?: number;
/**
* Shows the average number of Flex Logs Compute Extra Small Instances over all hours in the current date for the given org.
*/
"flexLogsComputeXsmallAvg"?: number;
/**
* Shows the average number of Flex Logs Starter Instances over all hours in the current date for the given org.
*/
"flexLogsStarterAvg"?: number;
/**
* Shows the average number of Flex Logs Starter Storage Index Instances over all hours in the current date for the given org.
*/
"flexLogsStarterStorageIndexAvg"?: number;
/**
* Shows the average number of Flex Logs Starter Storage Retention Adjustment Instances over all hours in the current date for the given org.
*/
"flexLogsStarterStorageRetentionAdjustmentAvg"?: number;
/**
* Shows the average of all Flex Stored Logs over all hours in the current date for the given org.
*/
"flexStoredLogsAvg"?: number;
/**
* Shows the sum of all log bytes forwarded over all hours in the current date for the given org.
*/
"forwardingEventsBytesSum"?: number;
/**
* Shows the 99th percentile of all GCP hosts over all hours in the current date for the given org.
*/
"gcpHostTop99p"?: number;
/**
* Shows the 99th percentile of all Heroku dynos over all hours in the current date for the given org.
*/
"herokuHostTop99p"?: number;
/**
* The organization id.
*/
"id"?: string;
/**
* Shows the high-water mark of incident management monthly active users over all hours in the current date for the given org.
*/
"incidentManagementMonthlyActiveUsersHwm"?: number;
/**
* Shows the sum of all log events indexed over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"indexedEventsCountSum"?: number;
/**
* Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
*/
"infraHostTop99p"?: number;
/**
* Shows the sum of all log bytes ingested over all hours in the current date for the given org.
*/
"ingestedEventsBytesSum"?: number;
/**
* Shows the sum of all IoT devices over all hours in the current date for the given org.
*/
"iotDeviceAggSum"?: number;
/**
* Shows the 99th percentile of all IoT devices over all hours in the current date for the given org.
*/
"iotDeviceTop99pSum"?: number;
/**
* Shows the sum of all mobile lite sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"mobileRumLiteSessionCountSum"?: number;
/**
* Shows the sum of all mobile RUM sessions on Android over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"mobileRumSessionCountAndroidSum"?: number;
/**
* Shows the sum of all mobile RUM sessions on Flutter over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"mobileRumSessionCountFlutterSum"?: number;
/**
* Shows the sum of all mobile RUM sessions on iOS over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"mobileRumSessionCountIosSum"?: number;
/**
* Shows the sum of all mobile RUM sessions on React Native over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"mobileRumSessionCountReactnativeSum"?: number;
/**
* Shows the sum of all mobile RUM sessions on Roku over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"mobileRumSessionCountRokuSum"?: number;
/**
* Shows the sum of all mobile RUM sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"mobileRumSessionCountSum"?: number;
/**
* Shows the sum of all mobile RUM units over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"mobileRumUnitsSum"?: number;
/**
* The organization name.
*/
"name"?: string;
/**
* Shows the sum of all Network Device Monitoring NetFlow events over all hours in the current date for the given org.
*/
"ndmNetflowEventsSum"?: number;
/**
* Shows the sum of all Network flows indexed over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"netflowIndexedEventsCountSum"?: number;
/**
* Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current date for the given org.
*/
"npmHostTop99p"?: number;
/**
* Sum of all observability pipelines bytes processed over all hours in the current date for the given org.
*/
"observabilityPipelinesBytesProcessedSum"?: number;
/**
* Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
*/
"ociHostSum"?: number;
/**
* Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
*/
"ociHostTop99p"?: number;
/**
* Sum of all online archived events over all hours in the current date for the given org.
*/
"onlineArchiveEventsCountSum"?: number;
/**
* Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
*/
"opentelemetryApmHostTop99p"?: number;
/**
* Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
*/
"opentelemetryHostTop99p"?: number;
/**
* Shows the 99th percentile of all profiled Azure app services over all hours in the current date for all organizations.
*/
"profilingAasCountTop99p"?: number;
/**
* Shows the 99th percentile of all profiled hosts over all hours within the current date for the given org.
*/
"profilingHostTop99p"?: number;
/**
* The organization public id.
*/
"publicId"?: string;
/**
* The region of the organization.
*/
"region"?: string;
/**
* Shows the sum of all mobile sessions and all browser lite and legacy sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"rumBrowserAndMobileSessionCount"?: number;
/**
* Shows the sum of all browser RUM legacy sessions over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumBrowserLegacySessionCountSum"?: number;
/**
* Shows the sum of all browser RUM lite sessions over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumBrowserLiteSessionCountSum"?: number;
/**
* Shows the sum of all browser RUM Session Replay counts over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumBrowserReplaySessionCountSum"?: number;
/**
* Shows the sum of all RUM lite sessions (browser and mobile) over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumLiteSessionCountSum"?: number;
/**
* Shows the sum of all mobile RUM legacy sessions on Android over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumMobileLegacySessionCountAndroidSum"?: number;
/**
* Shows the sum of all mobile RUM legacy sessions on Flutter over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumMobileLegacySessionCountFlutterSum"?: number;
/**
* Shows the sum of all mobile RUM legacy sessions on iOS over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumMobileLegacySessionCountIosSum"?: number;
/**
* Shows the sum of all mobile RUM legacy sessions on React Native over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumMobileLegacySessionCountReactnativeSum"?: number;
/**
* Shows the sum of all mobile RUM legacy sessions on Roku over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumMobileLegacySessionCountRokuSum"?: number;
/**
* Shows the sum of all mobile RUM lite sessions on Android over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumMobileLiteSessionCountAndroidSum"?: number;
/**
* Shows the sum of all mobile RUM lite sessions on Flutter over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumMobileLiteSessionCountFlutterSum"?: number;
/**
* Shows the sum of all mobile RUM lite sessions on iOS over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumMobileLiteSessionCountIosSum"?: number;
/**
* Shows the sum of all mobile RUM lite sessions on React Native over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumMobileLiteSessionCountReactnativeSum"?: number;
/**
* Shows the sum of all mobile RUM lite sessions on Roku over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumMobileLiteSessionCountRokuSum"?: number;
/**
* Shows the sum of all mobile RUM replay sessions on Android over all hours within the current date for the given org.
*/
"rumMobileReplaySessionCountAndroidSum"?: number;
/**
* Shows the sum of all mobile RUM replay sessions on iOS over all hours within the current date for the given org.
*/
"rumMobileReplaySessionCountIosSum"?: number;
/**
* Shows the sum of all mobile RUM replay sessions on React Native over all hours within the current date for the given org.
*/
"rumMobileReplaySessionCountReactnativeSum"?: number;
/**
* Shows the sum of all RUM Session Replay counts over all hours in the current date for the given org (To be introduced on October 1st, 2024).
*/
"rumReplaySessionCountSum"?: number;
/**
* Shows the sum of all browser RUM lite sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"rumSessionCountSum"?: number;
/**
* Shows the sum of RUM sessions (browser and mobile) over all hours in the current date for the given org.
*/
"rumTotalSessionCountSum"?: number;
/**
* Shows the sum of all browser and mobile RUM units over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
*/
"rumUnitsSum"?: number;
/**
* Shows the average of all Software Composition Analysis Fargate tasks over all hours in the current date for the given org.
*/
"scaFargateCountAvg"?: number;
/**
* Shows the sum of the high-water marks of all Software Composition Analysis Fargate tasks over all hours in the current date for the given org.
*/
"scaFargateCountHwm"?: number;
/**
* Sum of all APM bytes scanned with sensitive data scanner over all hours in the current date for the given org.
*/
"sdsApmScannedBytesSum"?: number;
/**
* Sum of all event stream events bytes scanned with sensitive data scanner over all hours in the current date for the given org.
*/
"sdsEventsScannedBytesSum"?: number;
/**
* Shows the sum of all bytes scanned of logs usage by the Sensitive Data Scanner over all hours in the current month for the given org.
*/
"sdsLogsScannedBytesSum"?: number;
/**
* Sum of all RUM bytes scanned with sensitive data scanner over all hours in the current date for the given org.
*/
"sdsRumScannedBytesSum"?: number;
/**
* Shows the sum of all bytes scanned across all usage types by the Sensitive Data Scanner over all hours in the current month for the given org.
*/
"sdsTotalScannedBytesSum"?: number;
/**
* Shows the average of the number of Serverless Apps for Azure for the given date and given org.
*/
"serverlessAppsAzureCountAvg"?: number;
/**
* Shows the average of the number of Serverless Apps for Google Cloud for the given date and given org.
*/
"serverlessAppsGoogleCountAvg"?: number;
/**
* Shows the average of the number of Serverless Apps for Azure and Google Cloud for the given date and given org.
*/
"serverlessAppsTotalCountAvg"?: number;
/**
* Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current date for the given org.
*/
"siemAnalyzedLogsAddOnCountSum"?: number;
/**
* Shows the sum of all Synthetic browser tests over all hours in the current date for the given org.
*/
"syntheticsBrowserCheckCallsCountSum"?: number;
/**
* Shows the sum of all Synthetic API tests over all hours in the current date for the given org.
*/
"syntheticsCheckCallsCountSum"?: number;
/**
* Shows the sum of all Synthetic mobile application tests over all hours in the current date for the given org.
*/
"syntheticsMobileTestRunsSum"?: number;
/**
* Shows the high-water mark of used synthetics parallel testing slots over all hours in the current date for the given org.
*/
"syntheticsParallelTestingMaxSlotsHwm"?: number;
/**
* Shows the sum of all Indexed Spans indexed over all hours in the current date for the given org.
*/
"traceSearchIndexedEventsCountSum"?: number;
/**
* Shows the sum of all ingested APM span bytes over all hours in the current date for the given org.
*/
"twolIngestedEventsBytesSum"?: number;
/**
* Shows the 99th percentile of all Universal Service Monitoring hosts over all hours in the current date for the given org.
*/
"universalServiceMonitoringHostTop99p"?: number;
/**
* Shows the 99th percentile of all vSphere hosts over all hours in the current date for the given org.
*/
"vsphereHostTop99p"?: number;
/**
* Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current date for the given org.
*/
"vulnManagementHostCountTop99p"?: number;
/**
* Sum of all workflows executed over all hours in the current date for the given org.
*/
"workflowExecutionsUsageSum"?: number;
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: { [key: string]: any };
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap = {
accountName: {
baseName: "account_name",
type: "string",
},
accountPublicId: {
baseName: "account_public_id",
type: "string",
},
agentHostTop99p: {
baseName: "agent_host_top99p",
type: "number",
format: "int64",
},
apmAzureAppServiceHostTop99p: {
baseName: "apm_azure_app_service_host_top99p",
type: "number",
format: "int64",
},
apmDevsecopsHostTop99p: {
baseName: "apm_devsecops_host_top99p",
type: "number",
format: "int64",
},
apmFargateCountAvg: {
baseName: "apm_fargate_count_avg",
type: "number",
format: "int64",
},
apmHostTop99p: {
baseName: "apm_host_top99p",
type: "number",
format: "int64",
},
appsecFargateCountAvg: {
baseName: "appsec_fargate_count_avg",
type: "number",
format: "int64",
},
asmServerlessSum: {
baseName: "asm_serverless_sum",
type: "number",
format: "int64",
},
auditLogsLinesIndexedSum: {
baseName: "audit_logs_lines_indexed_sum",
type: "number",
format: "int64",
},
auditTrailEnabledHwm: {
baseName: "audit_trail_enabled_hwm",
type: "number",
format: "int64",
},
avgProfiledFargateTasks: {
baseName: "avg_profiled_fargate_tasks",
type: "number",
format: "int64",
},
awsHostTop99p: {
baseName: "aws_host_top99p",
type: "number",
format: "int64",
},
awsLambdaFuncCount: {
baseName: "aws_lambda_func_count",
type: "number",
format: "int64",
},
awsLambdaInvocationsSum: {
baseName: "aws_lambda_invocations_sum",
type: "number",
format: "int64",
},
azureAppServiceTop99p: {
baseName: "azure_app_service_top99p",
type: "number",
format: "int64",
},
billableIngestedBytesSum: {
baseName: "billable_ingested_bytes_sum",
type: "number",
format: "int64",
},
browserRumLiteSessionCountSum: {
baseName: "browser_rum_lite_session_count_sum",
type: "number",
format: "int64",
},
browserRumReplaySessionCountSum: {
baseName: "browser_rum_replay_session_count_sum",
type: "number",
format: "int64",
},
browserRumUnitsSum: {
baseName: "browser_rum_units_sum",
type: "number",
format: "int64",
},
ciPipelineIndexedSpansSum: {
baseName: "ci_pipeline_indexed_spans_sum",
type: "number",
format: "int64",
},
ciTestIndexedSpansSum: {
baseName: "ci_test_indexed_spans_sum",
type: "number",
format: "int64",
},
ciVisibilityItrCommittersHwm: {
baseName: "ci_visibility_itr_committers_hwm",
type: "number",
format: "int64",
},
ciVisibilityPipelineCommittersHwm: {
baseName: "ci_visibility_pipeline_committers_hwm",
type: "number",
format: "int64",
},
ciVisibilityTestCommittersHwm: {
baseName: "ci_visibility_test_committers_hwm",
type: "number",
format: "int64",
},
cloudCostManagementAwsHostCountAvg: {
baseName: "cloud_cost_management_aws_host_count_avg",
type: "number",
format: "int64",
},
cloudCostManagementAzureHostCountAvg: {
baseName: "cloud_cost_management_azure_host_count_avg",
type: "number",
format: "int64",
},
cloudCostManagementGcpHostCountAvg: {
baseName: "cloud_cost_management_gcp_host_count_avg",
type: "number",
format: "int64",
},
cloudCostManagementHostCountAvg: {
baseName: "cloud_cost_management_host_count_avg",
type: "number",
format: "int64",
},
cloudSiemEventsSum: {
baseName: "cloud_siem_events_sum",
type: "number",
format: "int64",
},
codeAnalysisSaCommittersHwm: {
baseName: "code_analysis_sa_committers_hwm",
type: "number",
format: "int64",
},
codeAnalysisScaCommittersHwm: {
baseName: "code_analysis_sca_committers_hwm",
type: "number",
format: "int64",
},
codeSecurityHostTop99p: {
baseName: "code_security_host_top99p",
type: "number",
format: "int64",
},
containerAvg: {
baseName: "container_avg",
type: "number",
format: "int64",
},
containerExclAgentAvg: {
baseName: "container_excl_agent_avg",
type: "number",
format: "int64",
},
containerHwm: {
baseName: "container_hwm",
type: "number",
format: "int64",
},
csmContainerEnterpriseComplianceCountSum: {
baseName: "csm_container_enterprise_compliance_count_sum",
type: "number",
format: "int64",
},
csmContainerEnterpriseCwsCountSum: {
baseName: "csm_container_enterprise_cws_count_sum",
type: "number",
format: "int64",
},
csmContainerEnterpriseTotalCountSum: {
baseName: "csm_container_enterprise_total_count_sum",
type: "number",
format: "int64",
},
csmHostEnterpriseAasHostCountTop99p: {
baseName: "csm_host_enterprise_aas_host_count_top99p",
type: "number",
format: "int64",
},
csmHostEnterpriseAwsHostCountTop99p: {
baseName: "csm_host_enterprise_aws_host_count_top99p",
type: "number",
format: "int64",
},
csmHostEnterpriseAzureHostCountTop99p: {
baseName: "csm_host_enterprise_azure_host_count_top99p",
type: "number",
format: "int64",
},
csmHostEnterpriseComplianceHostCountTop99p: {
baseName: "csm_host_enterprise_compliance_host_count_top99p",
type: "number",
format: "int64",
},
csmHostEnterpriseCwsHostCountTop99p: {
baseName: "csm_host_enterprise_cws_host_count_top99p",
type: "number",
format: "int64",
},
csmHostEnterpriseGcpHostCountTop99p: {
baseName: "csm_host_enterprise_gcp_host_count_top99p",
type: "number",
format: "int64",
},
csmHostEnterpriseTotalHostCountTop99p: {
baseName: "csm_host_enterprise_total_host_count_top99p",
type: "number",
format: "int64",
},
cspmAasHostTop99p: {
baseName: "cspm_aas_host_top99p",
type: "number",
format: "int64",
},
cspmAwsHostTop99p: {
baseName: "cspm_aws_host_top99p",
type: "number",
format: "int64",
},
cspmAzureHostTop99p: {
baseName: "cspm_azure_host_top99p",
type: "number",
format: "int64",
},
cspmContainerAvg: {
baseName: "cspm_container_avg",
type: "number",
format: "int64",
},
cspmContainerHwm: {
baseName: "cspm_container_hwm",
type: "number",
format: "int64",
},
cspmGcpHostTop99p: {
baseName: "cspm_gcp_host_top99p",
type: "number",
format: "int64",
},
cspmHostTop99p: {
baseName: "cspm_host_top99p",
type: "number",
format: "int64",
},
customHistoricalTsAvg: {
baseName: "custom_historical_ts_avg",
type: "number",
format: "int64",
},
customLiveTsAvg: {
baseName: "custom_live_ts_avg",
type: "number",
format: "int64",
},
customTsAvg: {
baseName: "custom_ts_avg",
type: "number",
format: "int64",
},
cwsContainerCountAvg: {
baseName: "cws_container_count_avg",
type: "number",
format: "int64",
},
cwsFargateTaskAvg: {
baseName: "cws_fargate_task_avg",
type: "number",
format: "int64",
},
cwsHostTop99p: {
baseName: "cws_host_top99p",
type: "number",
format: "int64",
},
dataJobsMonitoringHostHrSum: {
baseName: "data_jobs_monitoring_host_hr_sum",
type: "number",
format: "int64",
},
dbmHostTop99pSum: {
baseName: "dbm_host_top99p_sum",
type: "number",
format: "int64",
},
dbmQueriesAvgSum: {
baseName: "dbm_queries_avg_sum",
type: "number",
format: "int64",
},
ephInfraHostAgentSum: {
baseName: "eph_infra_host_agent_sum",
type: "number",