-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathmodel_usage_summary_date.go
More file actions
7689 lines (6814 loc) · 368 KB
/
model_usage_summary_date.go
File metadata and controls
7689 lines (6814 loc) · 368 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 datadogV1
import (
"time"
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
)
// UsageSummaryDate Response with hourly report of all data billed by Datadog all organizations.
type UsageSummaryDate struct {
// Shows the 99th percentile of all agent hosts over all hours in the current date for all organizations.
AgentHostTop99p *int64 `json:"agent_host_top99p,omitempty"`
// Shows the 99th percentile of all Azure app services using APM over all hours in the current date all organizations.
ApmAzureAppServiceHostTop99p *int64 `json:"apm_azure_app_service_host_top99p,omitempty"`
// Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
ApmDevsecopsHostTop99p *int64 `json:"apm_devsecops_host_top99p,omitempty"`
// Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for all organizations.
ApmEnterpriseStandaloneHostsTop99p *int64 `json:"apm_enterprise_standalone_hosts_top99p,omitempty"`
// Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations.
ApmFargateCountAvg *int64 `json:"apm_fargate_count_avg,omitempty"`
// Shows the 99th percentile of all distinct APM hosts over all hours in the current date for all organizations.
ApmHostTop99p *int64 `json:"apm_host_top99p,omitempty"`
// Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for all organizations.
ApmProStandaloneHostsTop99p *int64 `json:"apm_pro_standalone_hosts_top99p,omitempty"`
// Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current date for all organizations.
AppsecFargateCountAvg *int64 `json:"appsec_fargate_count_avg,omitempty"`
// Shows the sum of all Application Security Monitoring Serverless invocations over all hours in the current date for all organizations.
AsmServerlessSum *int64 `json:"asm_serverless_sum,omitempty"`
// Shows the sum of audit logs lines indexed over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
AuditLogsLinesIndexedSum *int64 `json:"audit_logs_lines_indexed_sum,omitempty"`
// Shows the number of organizations that had Audit Trail enabled in the current date.
AuditTrailEnabledHwm *int64 `json:"audit_trail_enabled_hwm,omitempty"`
// The average total count for Fargate Container Profiler over all hours in the current date for all organizations.
AvgProfiledFargateTasks *int64 `json:"avg_profiled_fargate_tasks,omitempty"`
// Shows the 99th percentile of all AWS hosts over all hours in the current date for all organizations.
AwsHostTop99p *int64 `json:"aws_host_top99p,omitempty"`
// Shows the average of the number of functions that executed 1 or more times each hour in the current date for all organizations.
AwsLambdaFuncCount *int64 `json:"aws_lambda_func_count,omitempty"`
// Shows the sum of all AWS Lambda invocations over all hours in the current date for all organizations.
AwsLambdaInvocationsSum *int64 `json:"aws_lambda_invocations_sum,omitempty"`
// Shows the 99th percentile of all Azure app services over all hours in the current date for all organizations.
AzureAppServiceTop99p *int64 `json:"azure_app_service_top99p,omitempty"`
// Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
BillableIngestedBytesSum *int64 `json:"billable_ingested_bytes_sum,omitempty"`
// Shows the sum of all Bits AI Investigations over all hours in the current date for all organizations.
BitsAiInvestigationsSum *int64 `json:"bits_ai_investigations_sum,omitempty"`
// Shows the sum of all browser lite sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
BrowserRumLiteSessionCountSum *int64 `json:"browser_rum_lite_session_count_sum,omitempty"`
// Shows the sum of all browser replay sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
BrowserRumReplaySessionCountSum *int64 `json:"browser_rum_replay_session_count_sum,omitempty"`
// Shows the sum of all browser RUM units over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
BrowserRumUnitsSum *int64 `json:"browser_rum_units_sum,omitempty"`
// Shows the last value of the amount of cloud spend monitored for Enterprise over all hours in the current date for all organizations.
CcmSpendMonitoredEntLast *int64 `json:"ccm_spend_monitored_ent_last,omitempty"`
// Shows the last value of the amount of cloud spend monitored for Pro over all hours in the current date for all organizations.
CcmSpendMonitoredProLast *int64 `json:"ccm_spend_monitored_pro_last,omitempty"`
// Shows the sum of all CI pipeline indexed spans over all hours in the current month for all organizations.
CiPipelineIndexedSpansSum *int64 `json:"ci_pipeline_indexed_spans_sum,omitempty"`
// Shows the sum of all CI test indexed spans over all hours in the current month for all organizations.
CiTestIndexedSpansSum *int64 `json:"ci_test_indexed_spans_sum,omitempty"`
// Shows the high-water mark of all CI visibility intelligent test runner committers over all hours in the current month for all organizations.
CiVisibilityItrCommittersHwm *int64 `json:"ci_visibility_itr_committers_hwm,omitempty"`
// Shows the high-water mark of all CI visibility pipeline committers over all hours in the current month for all organizations.
CiVisibilityPipelineCommittersHwm *int64 `json:"ci_visibility_pipeline_committers_hwm,omitempty"`
// Shows the high-water mark of all CI visibility test committers over all hours in the current month for all organizations.
CiVisibilityTestCommittersHwm *int64 `json:"ci_visibility_test_committers_hwm,omitempty"`
// Host count average of Cloud Cost Management for AWS for the given date and given organization.
CloudCostManagementAwsHostCountAvg *int64 `json:"cloud_cost_management_aws_host_count_avg,omitempty"`
// Host count average of Cloud Cost Management for Azure for the given date and given organization.
CloudCostManagementAzureHostCountAvg *int64 `json:"cloud_cost_management_azure_host_count_avg,omitempty"`
// Host count average of Cloud Cost Management for GCP for the given date and given organization.
CloudCostManagementGcpHostCountAvg *int64 `json:"cloud_cost_management_gcp_host_count_avg,omitempty"`
// Host count average of Cloud Cost Management for all cloud providers for the given date and given organization.
CloudCostManagementHostCountAvg *int64 `json:"cloud_cost_management_host_count_avg,omitempty"`
// Average host count for Cloud Cost Management on OCI for the given date and organization.
CloudCostManagementOciHostCountAvg *int64 `json:"cloud_cost_management_oci_host_count_avg,omitempty"`
// Shows the sum of all Cloud Security Information and Event Management events over all hours in the current date for the given org.
CloudSiemEventsSum *int64 `json:"cloud_siem_events_sum,omitempty"`
// Shows the high-water mark of all Static Analysis committers over all hours in the current date for the given org.
CodeAnalysisSaCommittersHwm *int64 `json:"code_analysis_sa_committers_hwm,omitempty"`
// Shows the high-water mark of all static Software Composition Analysis committers over all hours in the current date for the given org.
CodeAnalysisScaCommittersHwm *int64 `json:"code_analysis_sca_committers_hwm,omitempty"`
// Shows the 99th percentile of all Code Security hosts over all hours in the current date for the given org.
CodeSecurityHostTop99p *int64 `json:"code_security_host_top99p,omitempty"`
// Shows the average of all distinct containers over all hours in the current date for all organizations.
ContainerAvg *int64 `json:"container_avg,omitempty"`
// Shows the average of containers without the Datadog Agent over all hours in the current date for all organizations.
ContainerExclAgentAvg *int64 `json:"container_excl_agent_avg,omitempty"`
// Shows the high-water mark of all distinct containers over all hours in the current date for all organizations.
ContainerHwm *int64 `json:"container_hwm,omitempty"`
// Shows the sum of all Cloud Security Management Enterprise compliance containers over all hours in the current date for the given org.
CsmContainerEnterpriseComplianceCountSum *int64 `json:"csm_container_enterprise_compliance_count_sum,omitempty"`
// 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 *int64 `json:"csm_container_enterprise_cws_count_sum,omitempty"`
// Shows the sum of all Cloud Security Management Enterprise containers over all hours in the current date for the given org.
CsmContainerEnterpriseTotalCountSum *int64 `json:"csm_container_enterprise_total_count_sum,omitempty"`
// 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 *int64 `json:"csm_host_enterprise_aas_host_count_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Enterprise AWS hosts over all hours in the current date for the given org.
CsmHostEnterpriseAwsHostCountTop99p *int64 `json:"csm_host_enterprise_aws_host_count_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Enterprise Azure hosts over all hours in the current date for the given org.
CsmHostEnterpriseAzureHostCountTop99p *int64 `json:"csm_host_enterprise_azure_host_count_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Enterprise compliance hosts over all hours in the current date for the given org.
CsmHostEnterpriseComplianceHostCountTop99p *int64 `json:"csm_host_enterprise_compliance_host_count_top99p,omitempty"`
// 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 *int64 `json:"csm_host_enterprise_cws_host_count_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current date for the given org.
CsmHostEnterpriseGcpHostCountTop99p *int64 `json:"csm_host_enterprise_gcp_host_count_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Enterprise OCI hosts over all hours in the current date for the given org.
CsmHostEnterpriseOciHostCountTop99p *int64 `json:"csm_host_enterprise_oci_host_count_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org.
CsmHostEnterpriseTotalHostCountTop99p *int64 `json:"csm_host_enterprise_total_host_count_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Pro OCI hosts over all hours in the current date for the given org.
CsmHostProOciHostCountTop99p *int64 `json:"csm_host_pro_oci_host_count_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current date for all organizations.
CspmAasHostTop99p *int64 `json:"cspm_aas_host_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Pro AWS hosts over all hours in the current date for all organizations.
CspmAwsHostTop99p *int64 `json:"cspm_aws_host_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Pro Azure hosts over all hours in the current date for all organizations.
CspmAzureHostTop99p *int64 `json:"cspm_azure_host_top99p,omitempty"`
// Shows the average number of Cloud Security Management Pro containers over all hours in the current date for all organizations.
CspmContainerAvg *int64 `json:"cspm_container_avg,omitempty"`
// Shows the high-water mark of Cloud Security Management Pro containers over all hours in the current date for all organizations.
CspmContainerHwm *int64 `json:"cspm_container_hwm,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Pro GCP hosts over all hours in the current date for all organizations.
CspmGcpHostTop99p *int64 `json:"cspm_gcp_host_top99p,omitempty"`
// Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current date for all organizations.
CspmHostTop99p *int64 `json:"cspm_host_top99p,omitempty"`
// Shows the average number of distinct custom metrics over all hours in the current date for all organizations.
CustomTsAvg *int64 `json:"custom_ts_avg,omitempty"`
// Shows the average of all distinct Cloud Workload Security containers over all hours in the current date for all organizations.
CwsContainerCountAvg *int64 `json:"cws_container_count_avg,omitempty"`
// Shows the average of all distinct Cloud Workload Security Fargate tasks over all hours in the current date for all organizations.
CwsFargateTaskAvg *int64 `json:"cws_fargate_task_avg,omitempty"`
// Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for all organizations.
CwsHostTop99p *int64 `json:"cws_host_top99p,omitempty"`
// Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org.
DataJobsMonitoringHostHrSum *int64 `json:"data_jobs_monitoring_host_hr_sum,omitempty"`
// The date for the usage.
Date *time.Time `json:"date,omitempty"`
// Shows the 99th percentile of all Database Monitoring hosts over all hours in the current date for all organizations.
DbmHostTop99p *int64 `json:"dbm_host_top99p,omitempty"`
// Shows the average of all normalized Database Monitoring queries over all hours in the current date for all organizations.
DbmQueriesCountAvg *int64 `json:"dbm_queries_count_avg,omitempty"`
// Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
EphInfraHostAgentSum *int64 `json:"eph_infra_host_agent_sum,omitempty"`
// Shows the sum of all ephemeral infrastructure hosts on Alibaba over all hours in the current date for the given org.
EphInfraHostAlibabaSum *int64 `json:"eph_infra_host_alibaba_sum,omitempty"`
// Shows the sum of all ephemeral infrastructure hosts on AWS over all hours in the current date for the given org.
EphInfraHostAwsSum *int64 `json:"eph_infra_host_aws_sum,omitempty"`
// Shows the sum of all ephemeral infrastructure hosts on Azure over all hours in the current date for the given org.
EphInfraHostAzureSum *int64 `json:"eph_infra_host_azure_sum,omitempty"`
// Shows the sum of all ephemeral infrastructure hosts for Enterprise over all hours in the current date for the given org.
EphInfraHostEntSum *int64 `json:"eph_infra_host_ent_sum,omitempty"`
// Shows the sum of all ephemeral infrastructure hosts on GCP over all hours in the current date for the given org.
EphInfraHostGcpSum *int64 `json:"eph_infra_host_gcp_sum,omitempty"`
// Shows the sum of all ephemeral infrastructure hosts on Heroku over all hours in the current date for the given org.
EphInfraHostHerokuSum *int64 `json:"eph_infra_host_heroku_sum,omitempty"`
// 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 *int64 `json:"eph_infra_host_only_aas_sum,omitempty"`
// Shows the sum of all ephemeral infrastructure hosts with only vSphere over all hours in the current date for the given org.
EphInfraHostOnlyVsphereSum *int64 `json:"eph_infra_host_only_vsphere_sum,omitempty"`
// 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 *int64 `json:"eph_infra_host_opentelemetry_apm_sum,omitempty"`
// 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 *int64 `json:"eph_infra_host_opentelemetry_sum,omitempty"`
// Shows the sum of all ephemeral infrastructure hosts for Pro over all hours in the current date for the given org.
EphInfraHostProSum *int64 `json:"eph_infra_host_pro_sum,omitempty"`
// Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current date for the given org.
EphInfraHostProplusSum *int64 `json:"eph_infra_host_proplus_sum,omitempty"`
// Sum of all ephemeral infrastructure hosts for Proxmox over all hours in the current date for all organizations.
EphInfraHostProxmoxSum *int64 `json:"eph_infra_host_proxmox_sum,omitempty"`
// Shows the sum of all Error Tracking APM error events over all hours in the current date for the given org.
ErrorTrackingApmErrorEventsSum *int64 `json:"error_tracking_apm_error_events_sum,omitempty"`
// Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
ErrorTrackingErrorEventsSum *int64 `json:"error_tracking_error_events_sum,omitempty"`
// Shows the sum of all Error Tracking events over all hours in the current date for the given org.
ErrorTrackingEventsSum *int64 `json:"error_tracking_events_sum,omitempty"`
// Shows the sum of all Error Tracking RUM error events over all hours in the current date for the given org.
ErrorTrackingRumErrorEventsSum *int64 `json:"error_tracking_rum_error_events_sum,omitempty"`
// Shows the sum of all Event Management correlated events over all hours in the current date for all organizations.
EventManagementCorrelationCorrelatedEventsSum *int64 `json:"event_management_correlation_correlated_events_sum,omitempty"`
// Shows the sum of all Event Management correlated related events over all hours in the current date for all organizations.
EventManagementCorrelationCorrelatedRelatedEventsSum *int64 `json:"event_management_correlation_correlated_related_events_sum,omitempty"`
// Shows the sum of all Event Management correlations over all hours in the current date for all organizations.
EventManagementCorrelationSum *int64 `json:"event_management_correlation_sum,omitempty"`
// The average number of Profiling Fargate tasks over all hours in the current date for all organizations.
FargateContainerProfilerProfilingFargateAvg *int64 `json:"fargate_container_profiler_profiling_fargate_avg,omitempty"`
// The average number of Profiling Fargate Elastic Kubernetes Service tasks over all hours in the current date for all organizations.
FargateContainerProfilerProfilingFargateEksAvg *int64 `json:"fargate_container_profiler_profiling_fargate_eks_avg,omitempty"`
// Shows the high-watermark of all Fargate tasks over all hours in the current date for all organizations.
FargateTasksCountAvg *int64 `json:"fargate_tasks_count_avg,omitempty"`
// Shows the average of all Fargate tasks over all hours in the current date for all organizations.
FargateTasksCountHwm *int64 `json:"fargate_tasks_count_hwm,omitempty"`
// Shows the average number of Flex Logs Compute Large Instances over all hours in the current date for the given org.
FlexLogsComputeLargeAvg *int64 `json:"flex_logs_compute_large_avg,omitempty"`
// Shows the average number of Flex Logs Compute Medium Instances over all hours in the current date for the given org.
FlexLogsComputeMediumAvg *int64 `json:"flex_logs_compute_medium_avg,omitempty"`
// Shows the average number of Flex Logs Compute Small Instances over all hours in the current date for the given org.
FlexLogsComputeSmallAvg *int64 `json:"flex_logs_compute_small_avg,omitempty"`
// Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the current date for the given org.
FlexLogsComputeXlargeAvg *int64 `json:"flex_logs_compute_xlarge_avg,omitempty"`
// Shows the average number of Flex Logs Compute Extra Small Instances over all hours in the current date for the given org.
FlexLogsComputeXsmallAvg *int64 `json:"flex_logs_compute_xsmall_avg,omitempty"`
// Shows the average number of Flex Logs Starter Instances over all hours in the current date for the given org.
FlexLogsStarterAvg *int64 `json:"flex_logs_starter_avg,omitempty"`
// Shows the average number of Flex Logs Starter Storage Index Instances over all hours in the current date for the given org.
FlexLogsStarterStorageIndexAvg *int64 `json:"flex_logs_starter_storage_index_avg,omitempty"`
// Shows the average number of Flex Logs Starter Storage Retention Adjustment Instances over all hours in the current date for the given org.
FlexLogsStarterStorageRetentionAdjustmentAvg *int64 `json:"flex_logs_starter_storage_retention_adjustment_avg,omitempty"`
// Shows the average of all Flex Stored Logs over all hours in the current date for the given org.
FlexStoredLogsAvg *int64 `json:"flex_stored_logs_avg,omitempty"`
// Shows the sum of all log bytes forwarded over all hours in the current date for all organizations.
ForwardingEventsBytesSum *int64 `json:"forwarding_events_bytes_sum,omitempty"`
// Shows the 99th percentile of all GCP hosts over all hours in the current date for all organizations.
GcpHostTop99p *int64 `json:"gcp_host_top99p,omitempty"`
// Shows the 99th percentile of all Heroku dynos over all hours in the current date for all organizations.
HerokuHostTop99p *int64 `json:"heroku_host_top99p,omitempty"`
// Shows the high-water mark of incident management monthly active users over all hours in the current date for all organizations.
IncidentManagementMonthlyActiveUsersHwm *int64 `json:"incident_management_monthly_active_users_hwm,omitempty"`
// Shows the high-water mark of Incident Management seats over all hours on the current date for all organizations.
IncidentManagementSeatsHwm *int64 `json:"incident_management_seats_hwm,omitempty"`
// Shows the sum of all log events indexed over all hours in the current date for all organizations.
IndexedEventsCountSum *int64 `json:"indexed_events_count_sum,omitempty"`
// Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current date for all organizations.
InfraEdgeMonitoringDevicesTop99p *int64 `json:"infra_edge_monitoring_devices_top99p,omitempty"`
// Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
InfraHostTop99p *int64 `json:"infra_host_top99p,omitempty"`
// Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
IngestedEventsBytesSum *int64 `json:"ingested_events_bytes_sum,omitempty"`
// Shows the sum of all IoT devices over all hours in the current date for all organizations.
IotDeviceSum *int64 `json:"iot_device_sum,omitempty"`
// Shows the 99th percentile of all IoT devices over all hours in the current date all organizations.
IotDeviceTop99p *int64 `json:"iot_device_top99p,omitempty"`
// Sum of all LLM observability minimum spend over all hours in the current date for all organizations.
LlmObservabilityMinSpendSum *int64 `json:"llm_observability_min_spend_sum,omitempty"`
// Sum of all LLM observability sessions over all hours in the current date for all organizations.
LlmObservabilitySum *int64 `json:"llm_observability_sum,omitempty"`
// Shows the sum of all mobile lite sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
MobileRumLiteSessionCountSum *int64 `json:"mobile_rum_lite_session_count_sum,omitempty"`
// Shows the sum of all mobile RUM sessions on Android over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
MobileRumSessionCountAndroidSum *int64 `json:"mobile_rum_session_count_android_sum,omitempty"`
// Shows the sum of all mobile RUM sessions on Flutter over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
MobileRumSessionCountFlutterSum *int64 `json:"mobile_rum_session_count_flutter_sum,omitempty"`
// Shows the sum of all mobile RUM sessions on iOS over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
MobileRumSessionCountIosSum *int64 `json:"mobile_rum_session_count_ios_sum,omitempty"`
// Shows the sum of all mobile RUM sessions on React Native over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
MobileRumSessionCountReactnativeSum *int64 `json:"mobile_rum_session_count_reactnative_sum,omitempty"`
// Shows the sum of all mobile RUM sessions on Roku over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
MobileRumSessionCountRokuSum *int64 `json:"mobile_rum_session_count_roku_sum,omitempty"`
// Shows the sum of all mobile RUM sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
MobileRumSessionCountSum *int64 `json:"mobile_rum_session_count_sum,omitempty"`
// Shows the sum of all mobile RUM units over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
MobileRumUnitsSum *int64 `json:"mobile_rum_units_sum,omitempty"`
// Shows the sum of all Network Device Monitoring NetFlow events over all hours in the current date for the given org.
NdmNetflowEventsSum *int64 `json:"ndm_netflow_events_sum,omitempty"`
// Shows the sum of all Network flows indexed over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
NetflowIndexedEventsCountSum *int64 `json:"netflow_indexed_events_count_sum,omitempty"`
// Shows the 99th percentile of all Network Device Monitoring wireless devices over all hours in the current date for all organizations.
NetworkDeviceWirelessTop99p *int64 `json:"network_device_wireless_top99p,omitempty"`
// Shows the sum of all Network Path scheduled tests over all hours in the current date for all organizations.
NetworkPathSum *int64 `json:"network_path_sum,omitempty"`
// Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current date for all organizations.
NpmHostTop99p *int64 `json:"npm_host_top99p,omitempty"`
// Sum of all observability pipelines bytes processed over all hours in the current date for the given org.
ObservabilityPipelinesBytesProcessedSum *int64 `json:"observability_pipelines_bytes_processed_sum,omitempty"`
// Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
OciHostSum *int64 `json:"oci_host_sum,omitempty"`
// Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
OciHostTop99p *int64 `json:"oci_host_top99p,omitempty"`
// Shows the high-water mark of On-Call seats over all hours in the current date for all organizations.
OnCallSeatHwm *int64 `json:"on_call_seat_hwm,omitempty"`
// Sum of all online archived events over all hours in the current date for all organizations.
OnlineArchiveEventsCountSum *int64 `json:"online_archive_events_count_sum,omitempty"`
// Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for all organizations.
OpentelemetryApmHostTop99p *int64 `json:"opentelemetry_apm_host_top99p,omitempty"`
// Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for all organizations.
OpentelemetryHostTop99p *int64 `json:"opentelemetry_host_top99p,omitempty"`
// Organizations associated with a user.
Orgs []UsageSummaryDateOrg `json:"orgs,omitempty"`
// Sum of all product analytics sessions over all hours in the current date for all organizations.
ProductAnalyticsSum *int64 `json:"product_analytics_sum,omitempty"`
// Shows the 99th percentile of all profiled Azure app services over all hours in the current date for all organizations.
ProfilingAasCountTop99p *int64 `json:"profiling_aas_count_top99p,omitempty"`
// Shows the 99th percentile of all profiled hosts over all hours within the current date for all organizations.
ProfilingHostTop99p *int64 `json:"profiling_host_top99p,omitempty"`
// Sum of all Proxmox hosts over all hours in the current date for all organizations.
ProxmoxHostSum *int64 `json:"proxmox_host_sum,omitempty"`
// 99th percentile of all Proxmox hosts over all hours in the current date for all organizations.
ProxmoxHostTop99p *int64 `json:"proxmox_host_top99p,omitempty"`
// Shows the high-water mark of all published applications over all hours in the current date for all organizations.
PublishedAppHwm *int64 `json:"published_app_hwm,omitempty"`
// Shows the sum of all mobile sessions and all browser lite and legacy sessions over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
RumBrowserAndMobileSessionCount *int64 `json:"rum_browser_and_mobile_session_count,omitempty"`
// Shows the sum of all browser RUM legacy sessions over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumBrowserLegacySessionCountSum *int64 `json:"rum_browser_legacy_session_count_sum,omitempty"`
// Shows the sum of all browser RUM lite sessions over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumBrowserLiteSessionCountSum *int64 `json:"rum_browser_lite_session_count_sum,omitempty"`
// Shows the sum of all browser RUM Session Replay counts over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumBrowserReplaySessionCountSum *int64 `json:"rum_browser_replay_session_count_sum,omitempty"`
// Sum of all RUM indexed sessions over all hours in the current date for all organizations.
RumIndexedSessionsSum *int64 `json:"rum_indexed_sessions_sum,omitempty"`
// Sum of all RUM ingested sessions over all hours in the current date for all organizations.
RumIngestedSessionsSum *int64 `json:"rum_ingested_sessions_sum,omitempty"`
// Shows the sum of all RUM lite sessions (browser and mobile) over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumLiteSessionCountSum *int64 `json:"rum_lite_session_count_sum,omitempty"`
// Shows the sum of all mobile RUM legacy sessions on Android over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumMobileLegacySessionCountAndroidSum *int64 `json:"rum_mobile_legacy_session_count_android_sum,omitempty"`
// Shows the sum of all mobile RUM legacy Sessions on Flutter over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumMobileLegacySessionCountFlutterSum *int64 `json:"rum_mobile_legacy_session_count_flutter_sum,omitempty"`
// Shows the sum of all mobile RUM legacy sessions on iOS over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumMobileLegacySessionCountIosSum *int64 `json:"rum_mobile_legacy_session_count_ios_sum,omitempty"`
// Shows the sum of all mobile RUM legacy sessions on React Native over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumMobileLegacySessionCountReactnativeSum *int64 `json:"rum_mobile_legacy_session_count_reactnative_sum,omitempty"`
// Shows the sum of all mobile RUM legacy sessions on Roku over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumMobileLegacySessionCountRokuSum *int64 `json:"rum_mobile_legacy_session_count_roku_sum,omitempty"`
// Shows the sum of all mobile RUM lite sessions on Android over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumMobileLiteSessionCountAndroidSum *int64 `json:"rum_mobile_lite_session_count_android_sum,omitempty"`
// Shows the sum of all mobile RUM lite sessions on Flutter over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumMobileLiteSessionCountFlutterSum *int64 `json:"rum_mobile_lite_session_count_flutter_sum,omitempty"`
// Shows the sum of all mobile RUM lite sessions on iOS over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumMobileLiteSessionCountIosSum *int64 `json:"rum_mobile_lite_session_count_ios_sum,omitempty"`
// Shows the sum of all mobile RUM lite sessions on Kotlin Multiplatform over all hours within the current date for all organizations.
RumMobileLiteSessionCountKotlinmultiplatformSum *int64 `json:"rum_mobile_lite_session_count_kotlinmultiplatform_sum,omitempty"`
// Shows the sum of all mobile RUM lite sessions on React Native over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumMobileLiteSessionCountReactnativeSum *int64 `json:"rum_mobile_lite_session_count_reactnative_sum,omitempty"`
// Shows the sum of all mobile RUM lite sessions on Roku over all hours within the current date for all organizations (To be introduced on October 1st, 2024).
RumMobileLiteSessionCountRokuSum *int64 `json:"rum_mobile_lite_session_count_roku_sum,omitempty"`
// Shows the sum of all mobile RUM lite sessions on Unity over all hours within the current date for all organizations.
RumMobileLiteSessionCountUnitySum *int64 `json:"rum_mobile_lite_session_count_unity_sum,omitempty"`
// Shows the sum of all mobile RUM replay sessions on Android over all hours within the current date for the given org.
RumMobileReplaySessionCountAndroidSum *int64 `json:"rum_mobile_replay_session_count_android_sum,omitempty"`
// Shows the sum of all mobile RUM replay sessions on iOS over all hours within the current date for the given org.
RumMobileReplaySessionCountIosSum *int64 `json:"rum_mobile_replay_session_count_ios_sum,omitempty"`
// Shows the sum of all mobile RUM replay sessions on Kotlin Multiplatform over all hours within the current date for all organizations.
RumMobileReplaySessionCountKotlinmultiplatformSum *int64 `json:"rum_mobile_replay_session_count_kotlinmultiplatform_sum,omitempty"`
// Shows the sum of all mobile RUM replay sessions on React Native over all hours within the current date for the given org.
RumMobileReplaySessionCountReactnativeSum *int64 `json:"rum_mobile_replay_session_count_reactnative_sum,omitempty"`
// Shows the sum of all RUM Session Replay counts over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
RumReplaySessionCountSum *int64 `json:"rum_replay_session_count_sum,omitempty"`
// Shows the sum of all browser RUM lite sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
RumSessionCountSum *int64 `json:"rum_session_count_sum,omitempty"`
// Sum of all RUM session replay add-on sessions over all hours in the current date for all organizations.
RumSessionReplayAddOnSum *int64 `json:"rum_session_replay_add_on_sum,omitempty"`
// Shows the sum of RUM sessions (browser and mobile) over all hours in the current date for all organizations.
RumTotalSessionCountSum *int64 `json:"rum_total_session_count_sum,omitempty"`
// Shows the sum of all browser and mobile RUM units over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
// Deprecated
RumUnitsSum *int64 `json:"rum_units_sum,omitempty"`
// Shows the average of all Software Composition Analysis Fargate tasks over all hours in the current date for the given org.
ScaFargateCountAvg *int64 `json:"sca_fargate_count_avg,omitempty"`
// 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 *int64 `json:"sca_fargate_count_hwm,omitempty"`
// Sum of all APM bytes scanned with sensitive data scanner over all hours in the current date for all organizations.
SdsApmScannedBytesSum *int64 `json:"sds_apm_scanned_bytes_sum,omitempty"`
// Sum of all event stream events bytes scanned with sensitive data scanner over all hours in the current date for all organizations.
SdsEventsScannedBytesSum *int64 `json:"sds_events_scanned_bytes_sum,omitempty"`
// Shows the sum of all bytes scanned of logs usage by the Sensitive Data Scanner over all hours in the current month for all organizations.
SdsLogsScannedBytesSum *int64 `json:"sds_logs_scanned_bytes_sum,omitempty"`
// Sum of all RUM bytes scanned with sensitive data scanner over all hours in the current date for all organizations.
SdsRumScannedBytesSum *int64 `json:"sds_rum_scanned_bytes_sum,omitempty"`
// Shows the sum of all bytes scanned across all usage types by the Sensitive Data Scanner over all hours in the current month for all organizations.
SdsTotalScannedBytesSum *int64 `json:"sds_total_scanned_bytes_sum,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring for Azure App Service instances for the current date for all organizations.
ServerlessAppsApmApmAzureAppserviceInstancesAvg *int64 `json:"serverless_apps_apm_apm_azure_appservice_instances_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring for Azure Function instances for the current date for all organizations.
ServerlessAppsApmApmAzureAzurefunctionInstancesAvg *int64 `json:"serverless_apps_apm_apm_azure_azurefunction_instances_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring for Azure Container App instances for the current date for all organizations.
ServerlessAppsApmApmAzureContainerappInstancesAvg *int64 `json:"serverless_apps_apm_apm_azure_containerapp_instances_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring for Fargate Elastic Container Service tasks for the current date for all organizations.
ServerlessAppsApmApmFargateEcsTasksAvg *int64 `json:"serverless_apps_apm_apm_fargate_ecs_tasks_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring for Google Cloud Platform Cloud Function instances for the current date for all organizations.
ServerlessAppsApmApmGcpCloudfunctionInstancesAvg *int64 `json:"serverless_apps_apm_apm_gcp_cloudfunction_instances_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring for Google Cloud Platform Cloud Run instances for the current date for all organizations.
ServerlessAppsApmApmGcpCloudrunInstancesAvg *int64 `json:"serverless_apps_apm_apm_gcp_cloudrun_instances_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring for the current date for all organizations.
ServerlessAppsApmAvg *int64 `json:"serverless_apps_apm_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring excluding Fargate for Azure App Service instances for the current date for all organizations.
ServerlessAppsApmExclFargateApmAzureAppserviceInstancesAvg *int64 `json:"serverless_apps_apm_excl_fargate_apm_azure_appservice_instances_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring excluding Fargate for Azure Function instances for the current date for all organizations.
ServerlessAppsApmExclFargateApmAzureAzurefunctionInstancesAvg *int64 `json:"serverless_apps_apm_excl_fargate_apm_azure_azurefunction_instances_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring excluding Fargate for Azure Container App instances for the current date for all organizations.
ServerlessAppsApmExclFargateApmAzureContainerappInstancesAvg *int64 `json:"serverless_apps_apm_excl_fargate_apm_azure_containerapp_instances_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring excluding Fargate for Google Cloud Platform Cloud Function instances for the current date for all organizations.
ServerlessAppsApmExclFargateApmGcpCloudfunctionInstancesAvg *int64 `json:"serverless_apps_apm_excl_fargate_apm_gcp_cloudfunction_instances_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring excluding Fargate for Google Cloud Platform Cloud Run instances for the current date for all organizations.
ServerlessAppsApmExclFargateApmGcpCloudrunInstancesAvg *int64 `json:"serverless_apps_apm_excl_fargate_apm_gcp_cloudrun_instances_avg,omitempty"`
// Shows the average number of Serverless Apps with Application Performance Monitoring excluding Fargate for the current date for all organizations.
ServerlessAppsApmExclFargateAvg *int64 `json:"serverless_apps_apm_excl_fargate_avg,omitempty"`
// Shows the average number of Serverless Apps for Azure Container App instances for the current date for all organizations.
ServerlessAppsAzureContainerAppInstancesAvg *int64 `json:"serverless_apps_azure_container_app_instances_avg,omitempty"`
// Shows the average number of Serverless Apps for Azure for the given date and given org.
ServerlessAppsAzureCountAvg *int64 `json:"serverless_apps_azure_count_avg,omitempty"`
// Shows the average number of Serverless Apps for Azure Function App instances for the current date for all organizations.
ServerlessAppsAzureFunctionAppInstancesAvg *int64 `json:"serverless_apps_azure_function_app_instances_avg,omitempty"`
// Shows the average number of Serverless Apps for Azure Web App instances for the current date for all organizations.
ServerlessAppsAzureWebAppInstancesAvg *int64 `json:"serverless_apps_azure_web_app_instances_avg,omitempty"`
// Shows the average number of Serverless Apps for Elastic Container Service for the current date for all organizations.
ServerlessAppsEcsAvg *int64 `json:"serverless_apps_ecs_avg,omitempty"`
// Shows the average number of Serverless Apps for Elastic Kubernetes Service for the current date for all organizations.
ServerlessAppsEksAvg *int64 `json:"serverless_apps_eks_avg,omitempty"`
// Shows the average number of Serverless Apps excluding Fargate for the current date for all organizations.
ServerlessAppsExclFargateAvg *int64 `json:"serverless_apps_excl_fargate_avg,omitempty"`
// Shows the average number of Serverless Apps excluding Fargate for Azure Container App instances for the current date for all organizations.
ServerlessAppsExclFargateAzureContainerAppInstancesAvg *int64 `json:"serverless_apps_excl_fargate_azure_container_app_instances_avg,omitempty"`
// Shows the average number of Serverless Apps excluding Fargate for Azure Function App instances for the current date for all organizations.
ServerlessAppsExclFargateAzureFunctionAppInstancesAvg *int64 `json:"serverless_apps_excl_fargate_azure_function_app_instances_avg,omitempty"`
// Shows the average number of Serverless Apps excluding Fargate for Azure Web App instances for the current date for all organizations.
ServerlessAppsExclFargateAzureWebAppInstancesAvg *int64 `json:"serverless_apps_excl_fargate_azure_web_app_instances_avg,omitempty"`
// Shows the average number of Serverless Apps excluding Fargate for Google Cloud Platform Cloud Functions instances for the current date for all organizations.
ServerlessAppsExclFargateGoogleCloudFunctionsInstancesAvg *int64 `json:"serverless_apps_excl_fargate_google_cloud_functions_instances_avg,omitempty"`
// Shows the average number of Serverless Apps excluding Fargate for Google Cloud Platform Cloud Run instances for the current date for all organizations.
ServerlessAppsExclFargateGoogleCloudRunInstancesAvg *int64 `json:"serverless_apps_excl_fargate_google_cloud_run_instances_avg,omitempty"`
// Shows the average number of Serverless Apps for Google Cloud Platform Cloud Functions instances for the current date for all organizations.
ServerlessAppsGoogleCloudFunctionsInstancesAvg *int64 `json:"serverless_apps_google_cloud_functions_instances_avg,omitempty"`
// Shows the average number of Serverless Apps for Google Cloud Platform Cloud Run instances for the current date for all organizations.
ServerlessAppsGoogleCloudRunInstancesAvg *int64 `json:"serverless_apps_google_cloud_run_instances_avg,omitempty"`
// Shows the average number of Serverless Apps for Google Cloud for the given date and given org.
ServerlessAppsGoogleCountAvg *int64 `json:"serverless_apps_google_count_avg,omitempty"`
// Shows the average number of Serverless Apps for Azure and Google Cloud for the given date and given org.
ServerlessAppsTotalCountAvg *int64 `json:"serverless_apps_total_count_avg,omitempty"`
// Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current date for the given org.
SiemAnalyzedLogsAddOnCountSum *int64 `json:"siem_analyzed_logs_add_on_count_sum,omitempty"`
// Shows the sum of all Synthetic browser tests over all hours in the current date for all organizations.
SyntheticsBrowserCheckCallsCountSum *int64 `json:"synthetics_browser_check_calls_count_sum,omitempty"`
// Shows the sum of all Synthetic API tests over all hours in the current date for all organizations.
SyntheticsCheckCallsCountSum *int64 `json:"synthetics_check_calls_count_sum,omitempty"`
// Shows the sum of all Synthetic mobile application tests over all hours in the current date for all organizations.
SyntheticsMobileTestRunsSum *int64 `json:"synthetics_mobile_test_runs_sum,omitempty"`
// Shows the high-water mark of used synthetics parallel testing slots over all hours in the current date for all organizations.
SyntheticsParallelTestingMaxSlotsHwm *int64 `json:"synthetics_parallel_testing_max_slots_hwm,omitempty"`
// Shows the sum of all Indexed Spans indexed over all hours in the current date for all organizations.
TraceSearchIndexedEventsCountSum *int64 `json:"trace_search_indexed_events_count_sum,omitempty"`
// Shows the sum of all ingested APM span bytes over all hours in the current date for all organizations.
TwolIngestedEventsBytesSum *int64 `json:"twol_ingested_events_bytes_sum,omitempty"`
// Shows the 99th percentile of all universal service management hosts over all hours in the current date for the given org.
UniversalServiceMonitoringHostTop99p *int64 `json:"universal_service_monitoring_host_top99p,omitempty"`
// Shows the 99th percentile of all vSphere hosts over all hours in the current date for all organizations.
VsphereHostTop99p *int64 `json:"vsphere_host_top99p,omitempty"`
// Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current date for the given org.
VulnManagementHostCountTop99p *int64 `json:"vuln_management_host_count_top99p,omitempty"`
// Sum of all workflows executed over all hours in the current date for all organizations.
WorkflowExecutionsUsageSum *int64 `json:"workflow_executions_usage_sum,omitempty"`
// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct
UnparsedObject map[string]interface{} `json:"-"`
AdditionalProperties map[string]interface{} `json:"-"`
}
// NewUsageSummaryDate instantiates a new UsageSummaryDate object.
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed.
func NewUsageSummaryDate() *UsageSummaryDate {
this := UsageSummaryDate{}
return &this
}
// NewUsageSummaryDateWithDefaults instantiates a new UsageSummaryDate object.
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set.
func NewUsageSummaryDateWithDefaults() *UsageSummaryDate {
this := UsageSummaryDate{}
return &this
}
// GetAgentHostTop99p returns the AgentHostTop99p field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetAgentHostTop99p() int64 {
if o == nil || o.AgentHostTop99p == nil {
var ret int64
return ret
}
return *o.AgentHostTop99p
}
// GetAgentHostTop99pOk returns a tuple with the AgentHostTop99p field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetAgentHostTop99pOk() (*int64, bool) {
if o == nil || o.AgentHostTop99p == nil {
return nil, false
}
return o.AgentHostTop99p, true
}
// HasAgentHostTop99p returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasAgentHostTop99p() bool {
return o != nil && o.AgentHostTop99p != nil
}
// SetAgentHostTop99p gets a reference to the given int64 and assigns it to the AgentHostTop99p field.
func (o *UsageSummaryDate) SetAgentHostTop99p(v int64) {
o.AgentHostTop99p = &v
}
// GetApmAzureAppServiceHostTop99p returns the ApmAzureAppServiceHostTop99p field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetApmAzureAppServiceHostTop99p() int64 {
if o == nil || o.ApmAzureAppServiceHostTop99p == nil {
var ret int64
return ret
}
return *o.ApmAzureAppServiceHostTop99p
}
// GetApmAzureAppServiceHostTop99pOk returns a tuple with the ApmAzureAppServiceHostTop99p field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetApmAzureAppServiceHostTop99pOk() (*int64, bool) {
if o == nil || o.ApmAzureAppServiceHostTop99p == nil {
return nil, false
}
return o.ApmAzureAppServiceHostTop99p, true
}
// HasApmAzureAppServiceHostTop99p returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasApmAzureAppServiceHostTop99p() bool {
return o != nil && o.ApmAzureAppServiceHostTop99p != nil
}
// SetApmAzureAppServiceHostTop99p gets a reference to the given int64 and assigns it to the ApmAzureAppServiceHostTop99p field.
func (o *UsageSummaryDate) SetApmAzureAppServiceHostTop99p(v int64) {
o.ApmAzureAppServiceHostTop99p = &v
}
// GetApmDevsecopsHostTop99p returns the ApmDevsecopsHostTop99p field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetApmDevsecopsHostTop99p() int64 {
if o == nil || o.ApmDevsecopsHostTop99p == nil {
var ret int64
return ret
}
return *o.ApmDevsecopsHostTop99p
}
// GetApmDevsecopsHostTop99pOk returns a tuple with the ApmDevsecopsHostTop99p field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetApmDevsecopsHostTop99pOk() (*int64, bool) {
if o == nil || o.ApmDevsecopsHostTop99p == nil {
return nil, false
}
return o.ApmDevsecopsHostTop99p, true
}
// HasApmDevsecopsHostTop99p returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasApmDevsecopsHostTop99p() bool {
return o != nil && o.ApmDevsecopsHostTop99p != nil
}
// SetApmDevsecopsHostTop99p gets a reference to the given int64 and assigns it to the ApmDevsecopsHostTop99p field.
func (o *UsageSummaryDate) SetApmDevsecopsHostTop99p(v int64) {
o.ApmDevsecopsHostTop99p = &v
}
// GetApmEnterpriseStandaloneHostsTop99p returns the ApmEnterpriseStandaloneHostsTop99p field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetApmEnterpriseStandaloneHostsTop99p() int64 {
if o == nil || o.ApmEnterpriseStandaloneHostsTop99p == nil {
var ret int64
return ret
}
return *o.ApmEnterpriseStandaloneHostsTop99p
}
// GetApmEnterpriseStandaloneHostsTop99pOk returns a tuple with the ApmEnterpriseStandaloneHostsTop99p field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetApmEnterpriseStandaloneHostsTop99pOk() (*int64, bool) {
if o == nil || o.ApmEnterpriseStandaloneHostsTop99p == nil {
return nil, false
}
return o.ApmEnterpriseStandaloneHostsTop99p, true
}
// HasApmEnterpriseStandaloneHostsTop99p returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasApmEnterpriseStandaloneHostsTop99p() bool {
return o != nil && o.ApmEnterpriseStandaloneHostsTop99p != nil
}
// SetApmEnterpriseStandaloneHostsTop99p gets a reference to the given int64 and assigns it to the ApmEnterpriseStandaloneHostsTop99p field.
func (o *UsageSummaryDate) SetApmEnterpriseStandaloneHostsTop99p(v int64) {
o.ApmEnterpriseStandaloneHostsTop99p = &v
}
// GetApmFargateCountAvg returns the ApmFargateCountAvg field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetApmFargateCountAvg() int64 {
if o == nil || o.ApmFargateCountAvg == nil {
var ret int64
return ret
}
return *o.ApmFargateCountAvg
}
// GetApmFargateCountAvgOk returns a tuple with the ApmFargateCountAvg field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetApmFargateCountAvgOk() (*int64, bool) {
if o == nil || o.ApmFargateCountAvg == nil {
return nil, false
}
return o.ApmFargateCountAvg, true
}
// HasApmFargateCountAvg returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasApmFargateCountAvg() bool {
return o != nil && o.ApmFargateCountAvg != nil
}
// SetApmFargateCountAvg gets a reference to the given int64 and assigns it to the ApmFargateCountAvg field.
func (o *UsageSummaryDate) SetApmFargateCountAvg(v int64) {
o.ApmFargateCountAvg = &v
}
// GetApmHostTop99p returns the ApmHostTop99p field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetApmHostTop99p() int64 {
if o == nil || o.ApmHostTop99p == nil {
var ret int64
return ret
}
return *o.ApmHostTop99p
}
// GetApmHostTop99pOk returns a tuple with the ApmHostTop99p field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetApmHostTop99pOk() (*int64, bool) {
if o == nil || o.ApmHostTop99p == nil {
return nil, false
}
return o.ApmHostTop99p, true
}
// HasApmHostTop99p returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasApmHostTop99p() bool {
return o != nil && o.ApmHostTop99p != nil
}
// SetApmHostTop99p gets a reference to the given int64 and assigns it to the ApmHostTop99p field.
func (o *UsageSummaryDate) SetApmHostTop99p(v int64) {
o.ApmHostTop99p = &v
}
// GetApmProStandaloneHostsTop99p returns the ApmProStandaloneHostsTop99p field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetApmProStandaloneHostsTop99p() int64 {
if o == nil || o.ApmProStandaloneHostsTop99p == nil {
var ret int64
return ret
}
return *o.ApmProStandaloneHostsTop99p
}
// GetApmProStandaloneHostsTop99pOk returns a tuple with the ApmProStandaloneHostsTop99p field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetApmProStandaloneHostsTop99pOk() (*int64, bool) {
if o == nil || o.ApmProStandaloneHostsTop99p == nil {
return nil, false
}
return o.ApmProStandaloneHostsTop99p, true
}
// HasApmProStandaloneHostsTop99p returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasApmProStandaloneHostsTop99p() bool {
return o != nil && o.ApmProStandaloneHostsTop99p != nil
}
// SetApmProStandaloneHostsTop99p gets a reference to the given int64 and assigns it to the ApmProStandaloneHostsTop99p field.
func (o *UsageSummaryDate) SetApmProStandaloneHostsTop99p(v int64) {
o.ApmProStandaloneHostsTop99p = &v
}
// GetAppsecFargateCountAvg returns the AppsecFargateCountAvg field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetAppsecFargateCountAvg() int64 {
if o == nil || o.AppsecFargateCountAvg == nil {
var ret int64
return ret
}
return *o.AppsecFargateCountAvg
}
// GetAppsecFargateCountAvgOk returns a tuple with the AppsecFargateCountAvg field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetAppsecFargateCountAvgOk() (*int64, bool) {
if o == nil || o.AppsecFargateCountAvg == nil {
return nil, false
}
return o.AppsecFargateCountAvg, true
}
// HasAppsecFargateCountAvg returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasAppsecFargateCountAvg() bool {
return o != nil && o.AppsecFargateCountAvg != nil
}
// SetAppsecFargateCountAvg gets a reference to the given int64 and assigns it to the AppsecFargateCountAvg field.
func (o *UsageSummaryDate) SetAppsecFargateCountAvg(v int64) {
o.AppsecFargateCountAvg = &v
}
// GetAsmServerlessSum returns the AsmServerlessSum field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetAsmServerlessSum() int64 {
if o == nil || o.AsmServerlessSum == nil {
var ret int64
return ret
}
return *o.AsmServerlessSum
}
// GetAsmServerlessSumOk returns a tuple with the AsmServerlessSum field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetAsmServerlessSumOk() (*int64, bool) {
if o == nil || o.AsmServerlessSum == nil {
return nil, false
}
return o.AsmServerlessSum, true
}
// HasAsmServerlessSum returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasAsmServerlessSum() bool {
return o != nil && o.AsmServerlessSum != nil
}
// SetAsmServerlessSum gets a reference to the given int64 and assigns it to the AsmServerlessSum field.
func (o *UsageSummaryDate) SetAsmServerlessSum(v int64) {
o.AsmServerlessSum = &v
}
// GetAuditLogsLinesIndexedSum returns the AuditLogsLinesIndexedSum field value if set, zero value otherwise.
// Deprecated
func (o *UsageSummaryDate) GetAuditLogsLinesIndexedSum() int64 {
if o == nil || o.AuditLogsLinesIndexedSum == nil {
var ret int64
return ret
}
return *o.AuditLogsLinesIndexedSum
}
// GetAuditLogsLinesIndexedSumOk returns a tuple with the AuditLogsLinesIndexedSum field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated
func (o *UsageSummaryDate) GetAuditLogsLinesIndexedSumOk() (*int64, bool) {
if o == nil || o.AuditLogsLinesIndexedSum == nil {
return nil, false
}
return o.AuditLogsLinesIndexedSum, true
}
// HasAuditLogsLinesIndexedSum returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasAuditLogsLinesIndexedSum() bool {
return o != nil && o.AuditLogsLinesIndexedSum != nil
}
// SetAuditLogsLinesIndexedSum gets a reference to the given int64 and assigns it to the AuditLogsLinesIndexedSum field.
// Deprecated
func (o *UsageSummaryDate) SetAuditLogsLinesIndexedSum(v int64) {
o.AuditLogsLinesIndexedSum = &v
}
// GetAuditTrailEnabledHwm returns the AuditTrailEnabledHwm field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetAuditTrailEnabledHwm() int64 {
if o == nil || o.AuditTrailEnabledHwm == nil {
var ret int64
return ret
}
return *o.AuditTrailEnabledHwm
}
// GetAuditTrailEnabledHwmOk returns a tuple with the AuditTrailEnabledHwm field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetAuditTrailEnabledHwmOk() (*int64, bool) {
if o == nil || o.AuditTrailEnabledHwm == nil {
return nil, false
}
return o.AuditTrailEnabledHwm, true
}
// HasAuditTrailEnabledHwm returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasAuditTrailEnabledHwm() bool {
return o != nil && o.AuditTrailEnabledHwm != nil
}
// SetAuditTrailEnabledHwm gets a reference to the given int64 and assigns it to the AuditTrailEnabledHwm field.
func (o *UsageSummaryDate) SetAuditTrailEnabledHwm(v int64) {
o.AuditTrailEnabledHwm = &v
}
// GetAvgProfiledFargateTasks returns the AvgProfiledFargateTasks field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetAvgProfiledFargateTasks() int64 {
if o == nil || o.AvgProfiledFargateTasks == nil {
var ret int64
return ret
}
return *o.AvgProfiledFargateTasks
}
// GetAvgProfiledFargateTasksOk returns a tuple with the AvgProfiledFargateTasks field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetAvgProfiledFargateTasksOk() (*int64, bool) {
if o == nil || o.AvgProfiledFargateTasks == nil {
return nil, false
}
return o.AvgProfiledFargateTasks, true
}
// HasAvgProfiledFargateTasks returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasAvgProfiledFargateTasks() bool {
return o != nil && o.AvgProfiledFargateTasks != nil
}
// SetAvgProfiledFargateTasks gets a reference to the given int64 and assigns it to the AvgProfiledFargateTasks field.
func (o *UsageSummaryDate) SetAvgProfiledFargateTasks(v int64) {
o.AvgProfiledFargateTasks = &v
}
// GetAwsHostTop99p returns the AwsHostTop99p field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetAwsHostTop99p() int64 {
if o == nil || o.AwsHostTop99p == nil {
var ret int64
return ret
}
return *o.AwsHostTop99p
}
// GetAwsHostTop99pOk returns a tuple with the AwsHostTop99p field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetAwsHostTop99pOk() (*int64, bool) {
if o == nil || o.AwsHostTop99p == nil {
return nil, false
}
return o.AwsHostTop99p, true
}
// HasAwsHostTop99p returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasAwsHostTop99p() bool {
return o != nil && o.AwsHostTop99p != nil
}
// SetAwsHostTop99p gets a reference to the given int64 and assigns it to the AwsHostTop99p field.
func (o *UsageSummaryDate) SetAwsHostTop99p(v int64) {
o.AwsHostTop99p = &v
}
// GetAwsLambdaFuncCount returns the AwsLambdaFuncCount field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetAwsLambdaFuncCount() int64 {
if o == nil || o.AwsLambdaFuncCount == nil {
var ret int64
return ret
}
return *o.AwsLambdaFuncCount
}
// GetAwsLambdaFuncCountOk returns a tuple with the AwsLambdaFuncCount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetAwsLambdaFuncCountOk() (*int64, bool) {
if o == nil || o.AwsLambdaFuncCount == nil {
return nil, false
}
return o.AwsLambdaFuncCount, true
}
// HasAwsLambdaFuncCount returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasAwsLambdaFuncCount() bool {
return o != nil && o.AwsLambdaFuncCount != nil
}
// SetAwsLambdaFuncCount gets a reference to the given int64 and assigns it to the AwsLambdaFuncCount field.
func (o *UsageSummaryDate) SetAwsLambdaFuncCount(v int64) {
o.AwsLambdaFuncCount = &v
}
// GetAwsLambdaInvocationsSum returns the AwsLambdaInvocationsSum field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetAwsLambdaInvocationsSum() int64 {
if o == nil || o.AwsLambdaInvocationsSum == nil {
var ret int64
return ret
}
return *o.AwsLambdaInvocationsSum
}
// GetAwsLambdaInvocationsSumOk returns a tuple with the AwsLambdaInvocationsSum field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetAwsLambdaInvocationsSumOk() (*int64, bool) {
if o == nil || o.AwsLambdaInvocationsSum == nil {
return nil, false
}
return o.AwsLambdaInvocationsSum, true
}
// HasAwsLambdaInvocationsSum returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasAwsLambdaInvocationsSum() bool {
return o != nil && o.AwsLambdaInvocationsSum != nil
}
// SetAwsLambdaInvocationsSum gets a reference to the given int64 and assigns it to the AwsLambdaInvocationsSum field.
func (o *UsageSummaryDate) SetAwsLambdaInvocationsSum(v int64) {
o.AwsLambdaInvocationsSum = &v
}
// GetAzureAppServiceTop99p returns the AzureAppServiceTop99p field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetAzureAppServiceTop99p() int64 {
if o == nil || o.AzureAppServiceTop99p == nil {
var ret int64
return ret
}
return *o.AzureAppServiceTop99p
}
// GetAzureAppServiceTop99pOk returns a tuple with the AzureAppServiceTop99p field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetAzureAppServiceTop99pOk() (*int64, bool) {
if o == nil || o.AzureAppServiceTop99p == nil {
return nil, false
}
return o.AzureAppServiceTop99p, true
}
// HasAzureAppServiceTop99p returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasAzureAppServiceTop99p() bool {
return o != nil && o.AzureAppServiceTop99p != nil
}
// SetAzureAppServiceTop99p gets a reference to the given int64 and assigns it to the AzureAppServiceTop99p field.
func (o *UsageSummaryDate) SetAzureAppServiceTop99p(v int64) {
o.AzureAppServiceTop99p = &v
}
// GetBillableIngestedBytesSum returns the BillableIngestedBytesSum field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetBillableIngestedBytesSum() int64 {
if o == nil || o.BillableIngestedBytesSum == nil {
var ret int64
return ret
}
return *o.BillableIngestedBytesSum
}
// GetBillableIngestedBytesSumOk returns a tuple with the BillableIngestedBytesSum field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetBillableIngestedBytesSumOk() (*int64, bool) {
if o == nil || o.BillableIngestedBytesSum == nil {
return nil, false
}
return o.BillableIngestedBytesSum, true
}
// HasBillableIngestedBytesSum returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasBillableIngestedBytesSum() bool {
return o != nil && o.BillableIngestedBytesSum != nil
}
// SetBillableIngestedBytesSum gets a reference to the given int64 and assigns it to the BillableIngestedBytesSum field.
func (o *UsageSummaryDate) SetBillableIngestedBytesSum(v int64) {
o.BillableIngestedBytesSum = &v
}
// GetBitsAiInvestigationsSum returns the BitsAiInvestigationsSum field value if set, zero value otherwise.
func (o *UsageSummaryDate) GetBitsAiInvestigationsSum() int64 {
if o == nil || o.BitsAiInvestigationsSum == nil {
var ret int64
return ret
}
return *o.BitsAiInvestigationsSum
}
// GetBitsAiInvestigationsSumOk returns a tuple with the BitsAiInvestigationsSum field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UsageSummaryDate) GetBitsAiInvestigationsSumOk() (*int64, bool) {
if o == nil || o.BitsAiInvestigationsSum == nil {
return nil, false
}
return o.BitsAiInvestigationsSum, true
}
// HasBitsAiInvestigationsSum returns a boolean if a field has been set.
func (o *UsageSummaryDate) HasBitsAiInvestigationsSum() bool {
return o != nil && o.BitsAiInvestigationsSum != nil
}
// SetBitsAiInvestigationsSum gets a reference to the given int64 and assigns it to the BitsAiInvestigationsSum field.
func (o *UsageSummaryDate) SetBitsAiInvestigationsSum(v int64) {
o.BitsAiInvestigationsSum = &v
}
// GetBrowserRumLiteSessionCountSum returns the BrowserRumLiteSessionCountSum field value if set, zero value otherwise.
// Deprecated
func (o *UsageSummaryDate) GetBrowserRumLiteSessionCountSum() int64 {
if o == nil || o.BrowserRumLiteSessionCountSum == nil {
var ret int64
return ret
}
return *o.BrowserRumLiteSessionCountSum
}
// GetBrowserRumLiteSessionCountSumOk returns a tuple with the BrowserRumLiteSessionCountSum field value if set, nil otherwise