-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathUsageSummaryResponse.java
More file actions
7689 lines (6786 loc) · 306 KB
/
UsageSummaryResponse.java
File metadata and controls
7689 lines (6786 loc) · 306 KB
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 2019-Present Datadog, Inc.
*/
package com.datadog.api.client.v1.model;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
/**
* Response summarizing all usage aggregated across the months in the request for all organizations,
* and broken down by month and by organization.
*/
@JsonPropertyOrder({
UsageSummaryResponse.JSON_PROPERTY_AGENT_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_APM_AZURE_APP_SERVICE_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_APM_FARGATE_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_APM_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_ASM_SERVERLESS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_AUDIT_LOGS_LINES_INDEXED_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_AUDIT_TRAIL_ENABLED_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_AVG_PROFILED_FARGATE_TASKS_SUM,
UsageSummaryResponse.JSON_PROPERTY_AWS_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_AWS_LAMBDA_FUNC_COUNT,
UsageSummaryResponse.JSON_PROPERTY_AWS_LAMBDA_INVOCATIONS_SUM,
UsageSummaryResponse.JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_AZURE_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_BILLABLE_INGESTED_BYTES_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_BROWSER_RUM_UNITS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST_SUM,
UsageSummaryResponse.JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST_SUM,
UsageSummaryResponse.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CI_TEST_INDEXED_SPANS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CI_VISIBILITY_ITR_COMMITTERS_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_CI_VISIBILITY_PIPELINE_COMMITTERS_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_CI_VISIBILITY_TEST_COMMITTERS_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_CLOUD_COST_MANAGEMENT_AWS_HOST_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CLOUD_COST_MANAGEMENT_AZURE_HOST_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CLOUD_COST_MANAGEMENT_GCP_HOST_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CLOUD_COST_MANAGEMENT_HOST_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CLOUD_COST_MANAGEMENT_OCI_HOST_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CLOUD_SIEM_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CODE_ANALYSIS_SA_COMMITTERS_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_CODE_ANALYSIS_SCA_COMMITTERS_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_CODE_SECURITY_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CONTAINER_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CONTAINER_EXCL_AGENT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CONTAINER_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_COMPLIANCE_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_CWS_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_TOTAL_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSM_HOST_ENTERPRISE_AAS_HOST_COUNT_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSM_HOST_ENTERPRISE_AWS_HOST_COUNT_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSM_HOST_ENTERPRISE_AZURE_HOST_COUNT_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSM_HOST_ENTERPRISE_COMPLIANCE_HOST_COUNT_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSM_HOST_ENTERPRISE_CWS_HOST_COUNT_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSM_HOST_ENTERPRISE_GCP_HOST_COUNT_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSM_HOST_ENTERPRISE_TOTAL_HOST_COUNT_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSPM_AAS_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSPM_AWS_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSPM_AZURE_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSPM_CONTAINER_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSPM_CONTAINER_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSPM_GCP_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CSPM_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_CUSTOM_HISTORICAL_TS_SUM,
UsageSummaryResponse.JSON_PROPERTY_CUSTOM_LIVE_TS_SUM,
UsageSummaryResponse.JSON_PROPERTY_CUSTOM_TS_SUM,
UsageSummaryResponse.JSON_PROPERTY_CWS_CONTAINER_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CWS_FARGATE_TASK_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CWS_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_DATA_JOBS_MONITORING_HOST_HR_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_DBM_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_DBM_QUERIES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_END_DATE,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_AGENT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_ALIBABA_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_AWS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_AZURE_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_ENT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_GCP_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_HEROKU_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_ONLY_AAS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_ONLY_VSPHERE_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_APM_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_PRO_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_PROXMOX_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_CORRELATED_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_CORRELATED_RELATED_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_STARTER_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_RETENTION_ADJUSTMENT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_STORED_LOGS_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FORWARDING_EVENTS_BYTES_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_GCP_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_HEROKU_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_INDEXED_EVENTS_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_LAST_UPDATED,
UsageSummaryResponse.JSON_PROPERTY_LIVE_INDEXED_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_LIVE_INGESTED_BYTES_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_LLM_OBSERVABILITY_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_LLM_OBSERVABILITY_MIN_SPEND_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_LOGS_BY_RETENTION,
UsageSummaryResponse.JSON_PROPERTY_MOBILE_RUM_LITE_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_ANDROID_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_FLUTTER_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_IOS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_REACTNATIVE_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_ROKU_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_MOBILE_RUM_UNITS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_NDM_NETFLOW_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_NETFLOW_INDEXED_EVENTS_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_NETWORK_DEVICE_WIRELESS_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_NPM_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_OCI_HOST_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_OCI_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_ON_CALL_SEAT_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_PRODUCT_ANALYTICS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_PROFILING_AAS_COUNT_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_PROFILING_CONTAINER_AGENT_COUNT_AVG,
UsageSummaryResponse.JSON_PROPERTY_PROFILING_HOST_COUNT_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_PROXMOX_HOST_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_PROXMOX_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_PUBLISHED_APP_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_REHYDRATED_INDEXED_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_REHYDRATED_INGESTED_BYTES_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_BROWSER_AND_MOBILE_SESSION_COUNT,
UsageSummaryResponse.JSON_PROPERTY_RUM_BROWSER_LEGACY_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_BROWSER_LITE_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_BROWSER_REPLAY_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_INDEXED_SESSIONS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_INGESTED_SESSIONS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_LITE_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_ANDROID_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_FLUTTER_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_IOS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_REACTNATIVE_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_ROKU_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ANDROID_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_FLUTTER_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_IOS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_KOTLINMULTIPLATFORM_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_REACTNATIVE_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ROKU_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_UNITY_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_ANDROID_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_IOS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_KOTLINMULTIPLATFORM_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_REACTNATIVE_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_REPLAY_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_SESSION_REPLAY_ADD_ON_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_TOTAL_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_RUM_UNITS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SCA_FARGATE_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SCA_FARGATE_COUNT_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_SDS_APM_SCANNED_BYTES_SUM,
UsageSummaryResponse.JSON_PROPERTY_SDS_EVENTS_SCANNED_BYTES_SUM,
UsageSummaryResponse.JSON_PROPERTY_SDS_LOGS_SCANNED_BYTES_SUM,
UsageSummaryResponse.JSON_PROPERTY_SDS_RUM_SCANNED_BYTES_SUM,
UsageSummaryResponse.JSON_PROPERTY_SDS_TOTAL_SCANNED_BYTES_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_APPSERVICE_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_AZUREFUNCTION_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_CONTAINERAPP_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_APM_APM_FARGATE_ECS_TASKS_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_CLOUDFUNCTION_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_CLOUDRUN_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_APM_AVG_SUM,
UsageSummaryResponse
.JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_APPSERVICE_INSTANCES_AVG_SUM,
UsageSummaryResponse
.JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_AZUREFUNCTION_INSTANCES_AVG_SUM,
UsageSummaryResponse
.JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_CONTAINERAPP_INSTANCES_AVG_SUM,
UsageSummaryResponse
.JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_CLOUDFUNCTION_INSTANCES_AVG_SUM,
UsageSummaryResponse
.JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_CLOUDRUN_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_AZURE_CONTAINER_APP_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_AZURE_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_AZURE_FUNCTION_APP_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_AZURE_WEB_APP_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_ECS_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_EKS_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AVG_SUM,
UsageSummaryResponse
.JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_CONTAINER_APP_INSTANCES_AVG_SUM,
UsageSummaryResponse
.JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_FUNCTION_APP_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_AZURE_WEB_APP_INSTANCES_AVG_SUM,
UsageSummaryResponse
.JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_GOOGLE_CLOUD_FUNCTIONS_INSTANCES_AVG_SUM,
UsageSummaryResponse
.JSON_PROPERTY_SERVERLESS_APPS_EXCL_FARGATE_GOOGLE_CLOUD_RUN_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_CLOUD_FUNCTIONS_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_CLOUD_RUN_INSTANCES_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_GOOGLE_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_START_DATE,
UsageSummaryResponse.JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_SYNTHETICS_PARALLEL_TESTING_MAX_SLOTS_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_TRACE_SEARCH_INDEXED_EVENTS_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_TWOL_INGESTED_EVENTS_BYTES_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_UNIVERSAL_SERVICE_MONITORING_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_USAGE,
UsageSummaryResponse.JSON_PROPERTY_VSPHERE_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_VULN_MANAGEMENT_HOST_COUNT_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_WORKFLOW_EXECUTIONS_USAGE_AGG_SUM
})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class UsageSummaryResponse {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_AGENT_HOST_TOP99P_SUM = "agent_host_top99p_sum";
private Long agentHostTop99pSum;
public static final String JSON_PROPERTY_APM_AZURE_APP_SERVICE_HOST_TOP99P_SUM =
"apm_azure_app_service_host_top99p_sum";
private Long apmAzureAppServiceHostTop99pSum;
public static final String JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P_SUM =
"apm_devsecops_host_top99p_sum";
private Long apmDevsecopsHostTop99pSum;
public static final String JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P_SUM =
"apm_enterprise_standalone_hosts_top99p_sum";
private Long apmEnterpriseStandaloneHostsTop99pSum;
public static final String JSON_PROPERTY_APM_FARGATE_COUNT_AVG_SUM = "apm_fargate_count_avg_sum";
private Long apmFargateCountAvgSum;
public static final String JSON_PROPERTY_APM_HOST_TOP99P_SUM = "apm_host_top99p_sum";
private Long apmHostTop99pSum;
public static final String JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P_SUM =
"apm_pro_standalone_hosts_top99p_sum";
private Long apmProStandaloneHostsTop99pSum;
public static final String JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG_SUM =
"appsec_fargate_count_avg_sum";
private Long appsecFargateCountAvgSum;
public static final String JSON_PROPERTY_ASM_SERVERLESS_AGG_SUM = "asm_serverless_agg_sum";
private Long asmServerlessAggSum;
public static final String JSON_PROPERTY_AUDIT_LOGS_LINES_INDEXED_AGG_SUM =
"audit_logs_lines_indexed_agg_sum";
private Long auditLogsLinesIndexedAggSum;
public static final String JSON_PROPERTY_AUDIT_TRAIL_ENABLED_HWM_SUM =
"audit_trail_enabled_hwm_sum";
private Long auditTrailEnabledHwmSum;
public static final String JSON_PROPERTY_AVG_PROFILED_FARGATE_TASKS_SUM =
"avg_profiled_fargate_tasks_sum";
private Long avgProfiledFargateTasksSum;
public static final String JSON_PROPERTY_AWS_HOST_TOP99P_SUM = "aws_host_top99p_sum";
private Long awsHostTop99pSum;
public static final String JSON_PROPERTY_AWS_LAMBDA_FUNC_COUNT = "aws_lambda_func_count";
private Long awsLambdaFuncCount;
public static final String JSON_PROPERTY_AWS_LAMBDA_INVOCATIONS_SUM =
"aws_lambda_invocations_sum";
private Long awsLambdaInvocationsSum;
public static final String JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P_SUM =
"azure_app_service_top99p_sum";
private Long azureAppServiceTop99pSum;
public static final String JSON_PROPERTY_AZURE_HOST_TOP99P_SUM = "azure_host_top99p_sum";
private Long azureHostTop99pSum;
public static final String JSON_PROPERTY_BILLABLE_INGESTED_BYTES_AGG_SUM =
"billable_ingested_bytes_agg_sum";
private Long billableIngestedBytesAggSum;
public static final String JSON_PROPERTY_BITS_AI_INVESTIGATIONS_AGG_SUM =
"bits_ai_investigations_agg_sum";
private Long bitsAiInvestigationsAggSum;
public static final String JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_AGG_SUM =
"browser_rum_lite_session_count_agg_sum";
private Long browserRumLiteSessionCountAggSum;
public static final String JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_AGG_SUM =
"browser_rum_replay_session_count_agg_sum";
private Long browserRumReplaySessionCountAggSum;
public static final String JSON_PROPERTY_BROWSER_RUM_UNITS_AGG_SUM = "browser_rum_units_agg_sum";
private Long browserRumUnitsAggSum;
public static final String JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST_SUM =
"ccm_spend_monitored_ent_last_sum";
private Long ccmSpendMonitoredEntLastSum;
public static final String JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST_SUM =
"ccm_spend_monitored_pro_last_sum";
private Long ccmSpendMonitoredProLastSum;
public static final String JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_AGG_SUM =
"ci_pipeline_indexed_spans_agg_sum";
private Long ciPipelineIndexedSpansAggSum;
public static final String JSON_PROPERTY_CI_TEST_INDEXED_SPANS_AGG_SUM =
"ci_test_indexed_spans_agg_sum";
private Long ciTestIndexedSpansAggSum;
public static final String JSON_PROPERTY_CI_VISIBILITY_ITR_COMMITTERS_HWM_SUM =
"ci_visibility_itr_committers_hwm_sum";
private Long ciVisibilityItrCommittersHwmSum;
public static final String JSON_PROPERTY_CI_VISIBILITY_PIPELINE_COMMITTERS_HWM_SUM =
"ci_visibility_pipeline_committers_hwm_sum";
private Long ciVisibilityPipelineCommittersHwmSum;
public static final String JSON_PROPERTY_CI_VISIBILITY_TEST_COMMITTERS_HWM_SUM =
"ci_visibility_test_committers_hwm_sum";
private Long ciVisibilityTestCommittersHwmSum;
public static final String JSON_PROPERTY_CLOUD_COST_MANAGEMENT_AWS_HOST_COUNT_AVG_SUM =
"cloud_cost_management_aws_host_count_avg_sum";
private Long cloudCostManagementAwsHostCountAvgSum;
public static final String JSON_PROPERTY_CLOUD_COST_MANAGEMENT_AZURE_HOST_COUNT_AVG_SUM =
"cloud_cost_management_azure_host_count_avg_sum";
private Long cloudCostManagementAzureHostCountAvgSum;
public static final String JSON_PROPERTY_CLOUD_COST_MANAGEMENT_GCP_HOST_COUNT_AVG_SUM =
"cloud_cost_management_gcp_host_count_avg_sum";
private Long cloudCostManagementGcpHostCountAvgSum;
public static final String JSON_PROPERTY_CLOUD_COST_MANAGEMENT_HOST_COUNT_AVG_SUM =
"cloud_cost_management_host_count_avg_sum";
private Long cloudCostManagementHostCountAvgSum;
public static final String JSON_PROPERTY_CLOUD_COST_MANAGEMENT_OCI_HOST_COUNT_AVG_SUM =
"cloud_cost_management_oci_host_count_avg_sum";
private Long cloudCostManagementOciHostCountAvgSum;
public static final String JSON_PROPERTY_CLOUD_SIEM_EVENTS_AGG_SUM = "cloud_siem_events_agg_sum";
private Long cloudSiemEventsAggSum;
public static final String JSON_PROPERTY_CODE_ANALYSIS_SA_COMMITTERS_HWM_SUM =
"code_analysis_sa_committers_hwm_sum";
private Long codeAnalysisSaCommittersHwmSum;
public static final String JSON_PROPERTY_CODE_ANALYSIS_SCA_COMMITTERS_HWM_SUM =
"code_analysis_sca_committers_hwm_sum";
private Long codeAnalysisScaCommittersHwmSum;
public static final String JSON_PROPERTY_CODE_SECURITY_HOST_TOP99P_SUM =
"code_security_host_top99p_sum";
private Long codeSecurityHostTop99pSum;
public static final String JSON_PROPERTY_CONTAINER_AVG_SUM = "container_avg_sum";
private Long containerAvgSum;
public static final String JSON_PROPERTY_CONTAINER_EXCL_AGENT_AVG_SUM =
"container_excl_agent_avg_sum";
private Long containerExclAgentAvgSum;
public static final String JSON_PROPERTY_CONTAINER_HWM_SUM = "container_hwm_sum";
private Long containerHwmSum;
public static final String JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_COMPLIANCE_COUNT_AGG_SUM =
"csm_container_enterprise_compliance_count_agg_sum";
private Long csmContainerEnterpriseComplianceCountAggSum;
public static final String JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_CWS_COUNT_AGG_SUM =
"csm_container_enterprise_cws_count_agg_sum";
private Long csmContainerEnterpriseCwsCountAggSum;
public static final String JSON_PROPERTY_CSM_CONTAINER_ENTERPRISE_TOTAL_COUNT_AGG_SUM =
"csm_container_enterprise_total_count_agg_sum";
private Long csmContainerEnterpriseTotalCountAggSum;
public static final String JSON_PROPERTY_CSM_HOST_ENTERPRISE_AAS_HOST_COUNT_TOP99P_SUM =
"csm_host_enterprise_aas_host_count_top99p_sum";
private Long csmHostEnterpriseAasHostCountTop99pSum;
public static final String JSON_PROPERTY_CSM_HOST_ENTERPRISE_AWS_HOST_COUNT_TOP99P_SUM =
"csm_host_enterprise_aws_host_count_top99p_sum";
private Long csmHostEnterpriseAwsHostCountTop99pSum;
public static final String JSON_PROPERTY_CSM_HOST_ENTERPRISE_AZURE_HOST_COUNT_TOP99P_SUM =
"csm_host_enterprise_azure_host_count_top99p_sum";
private Long csmHostEnterpriseAzureHostCountTop99pSum;
public static final String JSON_PROPERTY_CSM_HOST_ENTERPRISE_COMPLIANCE_HOST_COUNT_TOP99P_SUM =
"csm_host_enterprise_compliance_host_count_top99p_sum";
private Long csmHostEnterpriseComplianceHostCountTop99pSum;
public static final String JSON_PROPERTY_CSM_HOST_ENTERPRISE_CWS_HOST_COUNT_TOP99P_SUM =
"csm_host_enterprise_cws_host_count_top99p_sum";
private Long csmHostEnterpriseCwsHostCountTop99pSum;
public static final String JSON_PROPERTY_CSM_HOST_ENTERPRISE_GCP_HOST_COUNT_TOP99P_SUM =
"csm_host_enterprise_gcp_host_count_top99p_sum";
private Long csmHostEnterpriseGcpHostCountTop99pSum;
public static final String JSON_PROPERTY_CSM_HOST_ENTERPRISE_TOTAL_HOST_COUNT_TOP99P_SUM =
"csm_host_enterprise_total_host_count_top99p_sum";
private Long csmHostEnterpriseTotalHostCountTop99pSum;
public static final String JSON_PROPERTY_CSPM_AAS_HOST_TOP99P_SUM = "cspm_aas_host_top99p_sum";
private Long cspmAasHostTop99pSum;
public static final String JSON_PROPERTY_CSPM_AWS_HOST_TOP99P_SUM = "cspm_aws_host_top99p_sum";
private Long cspmAwsHostTop99pSum;
public static final String JSON_PROPERTY_CSPM_AZURE_HOST_TOP99P_SUM =
"cspm_azure_host_top99p_sum";
private Long cspmAzureHostTop99pSum;
public static final String JSON_PROPERTY_CSPM_CONTAINER_AVG_SUM = "cspm_container_avg_sum";
private Long cspmContainerAvgSum;
public static final String JSON_PROPERTY_CSPM_CONTAINER_HWM_SUM = "cspm_container_hwm_sum";
private Long cspmContainerHwmSum;
public static final String JSON_PROPERTY_CSPM_GCP_HOST_TOP99P_SUM = "cspm_gcp_host_top99p_sum";
private Long cspmGcpHostTop99pSum;
public static final String JSON_PROPERTY_CSPM_HOST_TOP99P_SUM = "cspm_host_top99p_sum";
private Long cspmHostTop99pSum;
public static final String JSON_PROPERTY_CUSTOM_HISTORICAL_TS_SUM = "custom_historical_ts_sum";
private Long customHistoricalTsSum;
public static final String JSON_PROPERTY_CUSTOM_LIVE_TS_SUM = "custom_live_ts_sum";
private Long customLiveTsSum;
public static final String JSON_PROPERTY_CUSTOM_TS_SUM = "custom_ts_sum";
private Long customTsSum;
public static final String JSON_PROPERTY_CWS_CONTAINER_AVG_SUM = "cws_container_avg_sum";
private Long cwsContainerAvgSum;
public static final String JSON_PROPERTY_CWS_FARGATE_TASK_AVG_SUM = "cws_fargate_task_avg_sum";
private Long cwsFargateTaskAvgSum;
public static final String JSON_PROPERTY_CWS_HOST_TOP99P_SUM = "cws_host_top99p_sum";
private Long cwsHostTop99pSum;
public static final String JSON_PROPERTY_DATA_JOBS_MONITORING_HOST_HR_AGG_SUM =
"data_jobs_monitoring_host_hr_agg_sum";
private Long dataJobsMonitoringHostHrAggSum;
public static final String JSON_PROPERTY_DBM_HOST_TOP99P_SUM = "dbm_host_top99p_sum";
private Long dbmHostTop99pSum;
public static final String JSON_PROPERTY_DBM_QUERIES_AVG_SUM = "dbm_queries_avg_sum";
private Long dbmQueriesAvgSum;
public static final String JSON_PROPERTY_END_DATE = "end_date";
private OffsetDateTime endDate;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_AGENT_AGG_SUM =
"eph_infra_host_agent_agg_sum";
private Long ephInfraHostAgentAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_ALIBABA_AGG_SUM =
"eph_infra_host_alibaba_agg_sum";
private Long ephInfraHostAlibabaAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_AWS_AGG_SUM =
"eph_infra_host_aws_agg_sum";
private Long ephInfraHostAwsAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_AZURE_AGG_SUM =
"eph_infra_host_azure_agg_sum";
private Long ephInfraHostAzureAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_ENT_AGG_SUM =
"eph_infra_host_ent_agg_sum";
private Long ephInfraHostEntAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_GCP_AGG_SUM =
"eph_infra_host_gcp_agg_sum";
private Long ephInfraHostGcpAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_HEROKU_AGG_SUM =
"eph_infra_host_heroku_agg_sum";
private Long ephInfraHostHerokuAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_ONLY_AAS_AGG_SUM =
"eph_infra_host_only_aas_agg_sum";
private Long ephInfraHostOnlyAasAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_ONLY_VSPHERE_AGG_SUM =
"eph_infra_host_only_vsphere_agg_sum";
private Long ephInfraHostOnlyVsphereAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_AGG_SUM =
"eph_infra_host_opentelemetry_agg_sum";
private Long ephInfraHostOpentelemetryAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_APM_AGG_SUM =
"eph_infra_host_opentelemetry_apm_agg_sum";
private Long ephInfraHostOpentelemetryApmAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_PRO_AGG_SUM =
"eph_infra_host_pro_agg_sum";
private Long ephInfraHostProAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_AGG_SUM =
"eph_infra_host_proplus_agg_sum";
private Long ephInfraHostProplusAggSum;
public static final String JSON_PROPERTY_EPH_INFRA_HOST_PROXMOX_AGG_SUM =
"eph_infra_host_proxmox_agg_sum";
private Long ephInfraHostProxmoxAggSum;
public static final String JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM =
"error_tracking_apm_error_events_agg_sum";
private Long errorTrackingApmErrorEventsAggSum;
public static final String JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_AGG_SUM =
"error_tracking_error_events_agg_sum";
private Long errorTrackingErrorEventsAggSum;
public static final String JSON_PROPERTY_ERROR_TRACKING_EVENTS_AGG_SUM =
"error_tracking_events_agg_sum";
private Long errorTrackingEventsAggSum;
public static final String JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_AGG_SUM =
"error_tracking_rum_error_events_agg_sum";
private Long errorTrackingRumErrorEventsAggSum;
public static final String JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_AGG_SUM =
"event_management_correlation_agg_sum";
private Long eventManagementCorrelationAggSum;
public static final String JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_CORRELATED_EVENTS_AGG_SUM =
"event_management_correlation_correlated_events_agg_sum";
private Long eventManagementCorrelationCorrelatedEventsAggSum;
public static final String
JSON_PROPERTY_EVENT_MANAGEMENT_CORRELATION_CORRELATED_RELATED_EVENTS_AGG_SUM =
"event_management_correlation_correlated_related_events_agg_sum";
private Long eventManagementCorrelationCorrelatedRelatedEventsAggSum;
public static final String JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG_SUM =
"fargate_container_profiler_profiling_fargate_avg_sum";
private Long fargateContainerProfilerProfilingFargateAvgSum;
public static final String
JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG_SUM =
"fargate_container_profiler_profiling_fargate_eks_avg_sum";
private Long fargateContainerProfilerProfilingFargateEksAvgSum;
public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG_SUM =
"fargate_tasks_count_avg_sum";
private Long fargateTasksCountAvgSum;
public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM_SUM =
"fargate_tasks_count_hwm_sum";
private Long fargateTasksCountHwmSum;
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM =
"flex_logs_compute_large_avg_sum";
private Long flexLogsComputeLargeAvgSum;
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG_SUM =
"flex_logs_compute_medium_avg_sum";
private Long flexLogsComputeMediumAvgSum;
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG_SUM =
"flex_logs_compute_small_avg_sum";
private Long flexLogsComputeSmallAvgSum;
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG_SUM =
"flex_logs_compute_xlarge_avg_sum";
private Long flexLogsComputeXlargeAvgSum;
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG_SUM =
"flex_logs_compute_xsmall_avg_sum";
private Long flexLogsComputeXsmallAvgSum;
public static final String JSON_PROPERTY_FLEX_LOGS_STARTER_AVG_SUM = "flex_logs_starter_avg_sum";
private Long flexLogsStarterAvgSum;
public static final String JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG_SUM =
"flex_logs_starter_storage_index_avg_sum";
private Long flexLogsStarterStorageIndexAvgSum;
public static final String JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_RETENTION_ADJUSTMENT_AVG_SUM =
"flex_logs_starter_storage_retention_adjustment_avg_sum";
private Long flexLogsStarterStorageRetentionAdjustmentAvgSum;
public static final String JSON_PROPERTY_FLEX_STORED_LOGS_AVG_SUM = "flex_stored_logs_avg_sum";
private Long flexStoredLogsAvgSum;
public static final String JSON_PROPERTY_FORWARDING_EVENTS_BYTES_AGG_SUM =
"forwarding_events_bytes_agg_sum";
private Long forwardingEventsBytesAggSum;
public static final String JSON_PROPERTY_GCP_HOST_TOP99P_SUM = "gcp_host_top99p_sum";
private Long gcpHostTop99pSum;
public static final String JSON_PROPERTY_HEROKU_HOST_TOP99P_SUM = "heroku_host_top99p_sum";
private Long herokuHostTop99pSum;
public static final String JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM_SUM =
"incident_management_monthly_active_users_hwm_sum";
private Long incidentManagementMonthlyActiveUsersHwmSum;
public static final String JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM =
"incident_management_seats_hwm_sum";
private Long incidentManagementSeatsHwmSum;
public static final String JSON_PROPERTY_INDEXED_EVENTS_COUNT_AGG_SUM =
"indexed_events_count_agg_sum";
private Long indexedEventsCountAggSum;
public static final String JSON_PROPERTY_INFRA_HOST_TOP99P_SUM = "infra_host_top99p_sum";
private Long infraHostTop99pSum;
public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM =
"ingested_events_bytes_agg_sum";
private Long ingestedEventsBytesAggSum;
public static final String JSON_PROPERTY_IOT_DEVICE_AGG_SUM = "iot_device_agg_sum";
private Long iotDeviceAggSum;
public static final String JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM = "iot_device_top99p_sum";
private Long iotDeviceTop99pSum;
public static final String JSON_PROPERTY_LAST_UPDATED = "last_updated";
private OffsetDateTime lastUpdated;
public static final String JSON_PROPERTY_LIVE_INDEXED_EVENTS_AGG_SUM =
"live_indexed_events_agg_sum";
private Long liveIndexedEventsAggSum;
public static final String JSON_PROPERTY_LIVE_INGESTED_BYTES_AGG_SUM =
"live_ingested_bytes_agg_sum";
private Long liveIngestedBytesAggSum;
public static final String JSON_PROPERTY_LLM_OBSERVABILITY_AGG_SUM = "llm_observability_agg_sum";
private Long llmObservabilityAggSum;
public static final String JSON_PROPERTY_LLM_OBSERVABILITY_MIN_SPEND_AGG_SUM =
"llm_observability_min_spend_agg_sum";
private Long llmObservabilityMinSpendAggSum;
public static final String JSON_PROPERTY_LOGS_BY_RETENTION = "logs_by_retention";
private LogsByRetention logsByRetention;
public static final String JSON_PROPERTY_MOBILE_RUM_LITE_SESSION_COUNT_AGG_SUM =
"mobile_rum_lite_session_count_agg_sum";
private Long mobileRumLiteSessionCountAggSum;
public static final String JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_AGG_SUM =
"mobile_rum_session_count_agg_sum";
private Long mobileRumSessionCountAggSum;
public static final String JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_ANDROID_AGG_SUM =
"mobile_rum_session_count_android_agg_sum";
private Long mobileRumSessionCountAndroidAggSum;
public static final String JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_FLUTTER_AGG_SUM =
"mobile_rum_session_count_flutter_agg_sum";
private Long mobileRumSessionCountFlutterAggSum;
public static final String JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_IOS_AGG_SUM =
"mobile_rum_session_count_ios_agg_sum";
private Long mobileRumSessionCountIosAggSum;
public static final String JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_REACTNATIVE_AGG_SUM =
"mobile_rum_session_count_reactnative_agg_sum";
private Long mobileRumSessionCountReactnativeAggSum;
public static final String JSON_PROPERTY_MOBILE_RUM_SESSION_COUNT_ROKU_AGG_SUM =
"mobile_rum_session_count_roku_agg_sum";
private Long mobileRumSessionCountRokuAggSum;
public static final String JSON_PROPERTY_MOBILE_RUM_UNITS_AGG_SUM = "mobile_rum_units_agg_sum";
private Long mobileRumUnitsAggSum;
public static final String JSON_PROPERTY_NDM_NETFLOW_EVENTS_AGG_SUM =
"ndm_netflow_events_agg_sum";
private Long ndmNetflowEventsAggSum;
public static final String JSON_PROPERTY_NETFLOW_INDEXED_EVENTS_COUNT_AGG_SUM =
"netflow_indexed_events_count_agg_sum";
private Long netflowIndexedEventsCountAggSum;
public static final String JSON_PROPERTY_NETWORK_DEVICE_WIRELESS_TOP99P_SUM =
"network_device_wireless_top99p_sum";
private Long networkDeviceWirelessTop99pSum;
public static final String JSON_PROPERTY_NPM_HOST_TOP99P_SUM = "npm_host_top99p_sum";
private Long npmHostTop99pSum;
public static final String JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_AGG_SUM =
"observability_pipelines_bytes_processed_agg_sum";
private Long observabilityPipelinesBytesProcessedAggSum;
public static final String JSON_PROPERTY_OCI_HOST_AGG_SUM = "oci_host_agg_sum";
private Long ociHostAggSum;
public static final String JSON_PROPERTY_OCI_HOST_TOP99P_SUM = "oci_host_top99p_sum";
private Long ociHostTop99pSum;
public static final String JSON_PROPERTY_ON_CALL_SEAT_HWM_SUM = "on_call_seat_hwm_sum";
private Long onCallSeatHwmSum;
public static final String JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_AGG_SUM =
"online_archive_events_count_agg_sum";
private Long onlineArchiveEventsCountAggSum;
public static final String JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P_SUM =
"opentelemetry_apm_host_top99p_sum";
private Long opentelemetryApmHostTop99pSum;
public static final String JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P_SUM =
"opentelemetry_host_top99p_sum";
private Long opentelemetryHostTop99pSum;
public static final String JSON_PROPERTY_PRODUCT_ANALYTICS_AGG_SUM = "product_analytics_agg_sum";
private Long productAnalyticsAggSum;
public static final String JSON_PROPERTY_PROFILING_AAS_COUNT_TOP99P_SUM =
"profiling_aas_count_top99p_sum";
private Long profilingAasCountTop99pSum;
public static final String JSON_PROPERTY_PROFILING_CONTAINER_AGENT_COUNT_AVG =
"profiling_container_agent_count_avg";
private Long profilingContainerAgentCountAvg;
public static final String JSON_PROPERTY_PROFILING_HOST_COUNT_TOP99P_SUM =
"profiling_host_count_top99p_sum";
private Long profilingHostCountTop99pSum;
public static final String JSON_PROPERTY_PROXMOX_HOST_AGG_SUM = "proxmox_host_agg_sum";
private Long proxmoxHostAggSum;
public static final String JSON_PROPERTY_PROXMOX_HOST_TOP99P_SUM = "proxmox_host_top99p_sum";
private Long proxmoxHostTop99pSum;
public static final String JSON_PROPERTY_PUBLISHED_APP_HWM_SUM = "published_app_hwm_sum";
private Long publishedAppHwmSum;
public static final String JSON_PROPERTY_REHYDRATED_INDEXED_EVENTS_AGG_SUM =
"rehydrated_indexed_events_agg_sum";
private Long rehydratedIndexedEventsAggSum;
public static final String JSON_PROPERTY_REHYDRATED_INGESTED_BYTES_AGG_SUM =
"rehydrated_ingested_bytes_agg_sum";
private Long rehydratedIngestedBytesAggSum;
public static final String JSON_PROPERTY_RUM_BROWSER_AND_MOBILE_SESSION_COUNT =
"rum_browser_and_mobile_session_count";
private Long rumBrowserAndMobileSessionCount;
public static final String JSON_PROPERTY_RUM_BROWSER_LEGACY_SESSION_COUNT_AGG_SUM =
"rum_browser_legacy_session_count_agg_sum";
private Long rumBrowserLegacySessionCountAggSum;
public static final String JSON_PROPERTY_RUM_BROWSER_LITE_SESSION_COUNT_AGG_SUM =
"rum_browser_lite_session_count_agg_sum";
private Long rumBrowserLiteSessionCountAggSum;
public static final String JSON_PROPERTY_RUM_BROWSER_REPLAY_SESSION_COUNT_AGG_SUM =
"rum_browser_replay_session_count_agg_sum";
private Long rumBrowserReplaySessionCountAggSum;
public static final String JSON_PROPERTY_RUM_INDEXED_SESSIONS_AGG_SUM =
"rum_indexed_sessions_agg_sum";
private Long rumIndexedSessionsAggSum;
public static final String JSON_PROPERTY_RUM_INGESTED_SESSIONS_AGG_SUM =
"rum_ingested_sessions_agg_sum";
private Long rumIngestedSessionsAggSum;
public static final String JSON_PROPERTY_RUM_LITE_SESSION_COUNT_AGG_SUM =
"rum_lite_session_count_agg_sum";
private Long rumLiteSessionCountAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_ANDROID_AGG_SUM =
"rum_mobile_legacy_session_count_android_agg_sum";
private Long rumMobileLegacySessionCountAndroidAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_FLUTTER_AGG_SUM =
"rum_mobile_legacy_session_count_flutter_agg_sum";
private Long rumMobileLegacySessionCountFlutterAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_IOS_AGG_SUM =
"rum_mobile_legacy_session_count_ios_agg_sum";
private Long rumMobileLegacySessionCountIosAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_REACTNATIVE_AGG_SUM =
"rum_mobile_legacy_session_count_reactnative_agg_sum";
private Long rumMobileLegacySessionCountReactnativeAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LEGACY_SESSION_COUNT_ROKU_AGG_SUM =
"rum_mobile_legacy_session_count_roku_agg_sum";
private Long rumMobileLegacySessionCountRokuAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ANDROID_AGG_SUM =
"rum_mobile_lite_session_count_android_agg_sum";
private Long rumMobileLiteSessionCountAndroidAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_FLUTTER_AGG_SUM =
"rum_mobile_lite_session_count_flutter_agg_sum";
private Long rumMobileLiteSessionCountFlutterAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_IOS_AGG_SUM =
"rum_mobile_lite_session_count_ios_agg_sum";
private Long rumMobileLiteSessionCountIosAggSum;
public static final String
JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_KOTLINMULTIPLATFORM_AGG_SUM =
"rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum";
private Long rumMobileLiteSessionCountKotlinmultiplatformAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_REACTNATIVE_AGG_SUM =
"rum_mobile_lite_session_count_reactnative_agg_sum";
private Long rumMobileLiteSessionCountReactnativeAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ROKU_AGG_SUM =
"rum_mobile_lite_session_count_roku_agg_sum";
private Long rumMobileLiteSessionCountRokuAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_UNITY_AGG_SUM =
"rum_mobile_lite_session_count_unity_agg_sum";
private Long rumMobileLiteSessionCountUnityAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_ANDROID_AGG_SUM =
"rum_mobile_replay_session_count_android_agg_sum";
private Long rumMobileReplaySessionCountAndroidAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_IOS_AGG_SUM =
"rum_mobile_replay_session_count_ios_agg_sum";
private Long rumMobileReplaySessionCountIosAggSum;
public static final String
JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_KOTLINMULTIPLATFORM_AGG_SUM =
"rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum";
private Long rumMobileReplaySessionCountKotlinmultiplatformAggSum;
public static final String JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_REACTNATIVE_AGG_SUM =
"rum_mobile_replay_session_count_reactnative_agg_sum";
private Long rumMobileReplaySessionCountReactnativeAggSum;
public static final String JSON_PROPERTY_RUM_REPLAY_SESSION_COUNT_AGG_SUM =
"rum_replay_session_count_agg_sum";
private Long rumReplaySessionCountAggSum;
public static final String JSON_PROPERTY_RUM_SESSION_COUNT_AGG_SUM = "rum_session_count_agg_sum";
private Long rumSessionCountAggSum;
public static final String JSON_PROPERTY_RUM_SESSION_REPLAY_ADD_ON_AGG_SUM =
"rum_session_replay_add_on_agg_sum";
private Long rumSessionReplayAddOnAggSum;
public static final String JSON_PROPERTY_RUM_TOTAL_SESSION_COUNT_AGG_SUM =
"rum_total_session_count_agg_sum";
private Long rumTotalSessionCountAggSum;
public static final String JSON_PROPERTY_RUM_UNITS_AGG_SUM = "rum_units_agg_sum";
private Long rumUnitsAggSum;
public static final String JSON_PROPERTY_SCA_FARGATE_COUNT_AVG_SUM = "sca_fargate_count_avg_sum";
private Long scaFargateCountAvgSum;
public static final String JSON_PROPERTY_SCA_FARGATE_COUNT_HWM_SUM = "sca_fargate_count_hwm_sum";
private Long scaFargateCountHwmSum;
public static final String JSON_PROPERTY_SDS_APM_SCANNED_BYTES_SUM = "sds_apm_scanned_bytes_sum";
private Long sdsApmScannedBytesSum;
public static final String JSON_PROPERTY_SDS_EVENTS_SCANNED_BYTES_SUM =
"sds_events_scanned_bytes_sum";
private Long sdsEventsScannedBytesSum;
public static final String JSON_PROPERTY_SDS_LOGS_SCANNED_BYTES_SUM =
"sds_logs_scanned_bytes_sum";
private Long sdsLogsScannedBytesSum;
public static final String JSON_PROPERTY_SDS_RUM_SCANNED_BYTES_SUM = "sds_rum_scanned_bytes_sum";
private Long sdsRumScannedBytesSum;
public static final String JSON_PROPERTY_SDS_TOTAL_SCANNED_BYTES_SUM =
"sds_total_scanned_bytes_sum";
private Long sdsTotalScannedBytesSum;
public static final String
JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_APPSERVICE_INSTANCES_AVG_SUM =
"serverless_apps_apm_apm_azure_appservice_instances_avg_sum";
private Long serverlessAppsApmApmAzureAppserviceInstancesAvgSum;
public static final String
JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_AZUREFUNCTION_INSTANCES_AVG_SUM =
"serverless_apps_apm_apm_azure_azurefunction_instances_avg_sum";
private Long serverlessAppsApmApmAzureAzurefunctionInstancesAvgSum;
public static final String
JSON_PROPERTY_SERVERLESS_APPS_APM_APM_AZURE_CONTAINERAPP_INSTANCES_AVG_SUM =
"serverless_apps_apm_apm_azure_containerapp_instances_avg_sum";
private Long serverlessAppsApmApmAzureContainerappInstancesAvgSum;
public static final String JSON_PROPERTY_SERVERLESS_APPS_APM_APM_FARGATE_ECS_TASKS_AVG_SUM =
"serverless_apps_apm_apm_fargate_ecs_tasks_avg_sum";
private Long serverlessAppsApmApmFargateEcsTasksAvgSum;
public static final String
JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_CLOUDFUNCTION_INSTANCES_AVG_SUM =
"serverless_apps_apm_apm_gcp_cloudfunction_instances_avg_sum";
private Long serverlessAppsApmApmGcpCloudfunctionInstancesAvgSum;
public static final String JSON_PROPERTY_SERVERLESS_APPS_APM_APM_GCP_CLOUDRUN_INSTANCES_AVG_SUM =
"serverless_apps_apm_apm_gcp_cloudrun_instances_avg_sum";
private Long serverlessAppsApmApmGcpCloudrunInstancesAvgSum;
public static final String JSON_PROPERTY_SERVERLESS_APPS_APM_AVG_SUM =
"serverless_apps_apm_avg_sum";
private Long serverlessAppsApmAvgSum;
public static final String
JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_APPSERVICE_INSTANCES_AVG_SUM =
"serverless_apps_apm_excl_fargate_apm_azure_appservice_instances_avg_sum";
private Long serverlessAppsApmExclFargateApmAzureAppserviceInstancesAvgSum;
public static final String
JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_AZUREFUNCTION_INSTANCES_AVG_SUM =
"serverless_apps_apm_excl_fargate_apm_azure_azurefunction_instances_avg_sum";
private Long serverlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvgSum;
public static final String
JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_AZURE_CONTAINERAPP_INSTANCES_AVG_SUM =
"serverless_apps_apm_excl_fargate_apm_azure_containerapp_instances_avg_sum";
private Long serverlessAppsApmExclFargateApmAzureContainerappInstancesAvgSum;
public static final String
JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_CLOUDFUNCTION_INSTANCES_AVG_SUM =
"serverless_apps_apm_excl_fargate_apm_gcp_cloudfunction_instances_avg_sum";
private Long serverlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvgSum;
public static final String
JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_APM_GCP_CLOUDRUN_INSTANCES_AVG_SUM =
"serverless_apps_apm_excl_fargate_apm_gcp_cloudrun_instances_avg_sum";
private Long serverlessAppsApmExclFargateApmGcpCloudrunInstancesAvgSum;
public static final String JSON_PROPERTY_SERVERLESS_APPS_APM_EXCL_FARGATE_AVG_SUM =
"serverless_apps_apm_excl_fargate_avg_sum";
private Long serverlessAppsApmExclFargateAvgSum;