datadog_api_client 2.23.0 → 2.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/schemas/v1/openapi.yaml +666 -156
  4. data/.generator/schemas/v2/openapi.yaml +774 -89
  5. data/.generator/src/generator/replacement.json +1 -1
  6. data/.github/CODEOWNERS +5 -5
  7. data/CHANGELOG.md +26 -0
  8. data/examples/v1/dashboards/CreateDashboard_1213075383.rb +10 -4
  9. data/examples/v1/dashboards/CreateDashboard_2336428357.rb +10 -4
  10. data/examples/v1/dashboards/CreateDashboard_2563642929.rb +66 -0
  11. data/examples/v1/dashboards/CreateDashboard_3669695268.rb +10 -4
  12. data/examples/v1/dashboards/CreateDashboard_915214113.rb +10 -4
  13. data/examples/v1/monitors/UpdateMonitor.rb +1 -0
  14. data/examples/v1/synthetics/CreateSyntheticsAPITest_1241981394.rb +1 -0
  15. data/examples/v1/synthetics/CreateSyntheticsAPITest_1279271422.rb +9 -4
  16. data/examples/v1/synthetics/CreateSyntheticsAPITest_1487281163.rb +15 -0
  17. data/examples/v1/synthetics/CreateSyntheticsAPITest_1987645492.rb +134 -0
  18. data/examples/v2/api-management/ListAPIs.rb +8 -0
  19. data/examples/v2/csm-threats/CreateCSMThreatsAgentRule.rb +3 -0
  20. data/examples/v2/csm-threats/UpdateCloudWorkloadSecurityAgentRule.rb +1 -0
  21. data/examples/v2/organizations/GetOrgConfig.rb +5 -0
  22. data/examples/v2/organizations/ListOrgConfigs.rb +5 -0
  23. data/examples/v2/organizations/UpdateOrgConfig.rb +14 -0
  24. data/examples/v2/security-monitoring/TestExistingSecurityMonitoringRule.rb +21 -0
  25. data/examples/v2/security-monitoring/TestSecurityMonitoringRule.rb +58 -0
  26. data/examples/v2/security-monitoring/ValidateSecurityMonitoringRule.rb +1 -1
  27. data/lib/datadog_api_client/configuration.rb +1 -0
  28. data/lib/datadog_api_client/inflector.rb +37 -1
  29. data/lib/datadog_api_client/v1/api/monitors_api.rb +1 -1
  30. data/lib/datadog_api_client/v1/models/event.rb +1 -1
  31. data/lib/datadog_api_client/v1/models/formula_type.rb +26 -0
  32. data/lib/datadog_api_client/v1/models/geomap_widget_request.rb +14 -4
  33. data/lib/datadog_api_client/v1/models/group_type.rb +26 -0
  34. data/lib/datadog_api_client/v1/models/monitor.rb +1 -16
  35. data/lib/datadog_api_client/v1/models/monitor_update_request.rb +2 -23
  36. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +2 -2
  37. data/lib/datadog_api_client/v1/models/synthetics_api_step.rb +37 -180
  38. data/lib/datadog_api_client/v1/models/synthetics_api_test_step.rb +206 -0
  39. data/lib/datadog_api_client/v1/models/{synthetics_api_step_subtype.rb → synthetics_api_test_step_subtype.rb} +2 -2
  40. data/lib/datadog_api_client/v1/models/synthetics_api_wait_step.rb +148 -0
  41. data/lib/datadog_api_client/v1/models/synthetics_api_wait_step_subtype.rb +26 -0
  42. data/lib/datadog_api_client/v1/models/synthetics_assertion.rb +1 -0
  43. data/lib/datadog_api_client/v1/models/synthetics_assertion_body_hash_operator.rb +28 -0
  44. data/lib/datadog_api_client/v1/models/synthetics_assertion_body_hash_target.rb +140 -0
  45. data/lib/datadog_api_client/v1/models/synthetics_assertion_body_hash_type.rb +26 -0
  46. data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_target_target.rb +11 -1
  47. data/lib/datadog_api_client/v1/models/synthetics_test_options_monitor_options.rb +0 -4
  48. data/lib/datadog_api_client/v1/models/synthetics_test_request_body_file.rb +22 -1
  49. data/lib/datadog_api_client/v1/models/table_widget_request.rb +14 -4
  50. data/lib/datadog_api_client/v1/models/toplist_widget_request.rb +11 -1
  51. data/lib/datadog_api_client/v1/models/usage_rum_sessions_hour.rb +7 -7
  52. data/lib/datadog_api_client/v1/models/usage_rum_sessions_response.rb +2 -2
  53. data/lib/datadog_api_client/v1/models/usage_summary_date.rb +168 -18
  54. data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +169 -19
  55. data/lib/datadog_api_client/v1/models/usage_summary_response.rb +171 -21
  56. data/lib/datadog_api_client/v1/models/widget_formula_sort.rb +144 -0
  57. data/lib/datadog_api_client/v1/models/widget_group_sort.rb +140 -0
  58. data/lib/datadog_api_client/v1/models/widget_sort_by.rb +110 -0
  59. data/lib/datadog_api_client/v1/models/widget_sort_order_by.rb +63 -0
  60. data/lib/datadog_api_client/v2/api/api_management_api.rb +80 -2
  61. data/lib/datadog_api_client/v2/api/organizations_api.rb +197 -0
  62. data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +140 -1
  63. data/lib/datadog_api_client/v2/models/cloud_configuration_rule_payload.rb +240 -0
  64. data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_attributes.rb +13 -1
  65. data/lib/datadog_api_client/v2/models/dora_incident_request_attributes.rb +1 -1
  66. data/lib/datadog_api_client/v2/models/events_group_by.rb +5 -4
  67. data/lib/datadog_api_client/v2/models/list_apis_response.rb +92 -0
  68. data/lib/datadog_api_client/v2/models/list_apis_response_data.rb +90 -0
  69. data/lib/datadog_api_client/v2/models/list_apis_response_data_attributes.rb +80 -0
  70. data/lib/datadog_api_client/v2/models/list_apis_response_meta.rb +80 -0
  71. data/lib/datadog_api_client/v2/models/list_apis_response_meta_pagination.rb +100 -0
  72. data/lib/datadog_api_client/v2/models/org_config_get_response.rb +98 -0
  73. data/lib/datadog_api_client/v2/models/org_config_list_response.rb +100 -0
  74. data/lib/datadog_api_client/v2/models/org_config_read.rb +140 -0
  75. data/lib/datadog_api_client/v2/models/org_config_read_attributes.rb +179 -0
  76. data/lib/datadog_api_client/v2/models/org_config_type.rb +26 -0
  77. data/lib/datadog_api_client/v2/models/org_config_write.rb +119 -0
  78. data/lib/datadog_api_client/v2/models/org_config_write_attributes.rb +98 -0
  79. data/lib/datadog_api_client/v2/models/org_config_write_request.rb +98 -0
  80. data/lib/datadog_api_client/v2/models/security_monitoring_rule_query_payload.rb +118 -0
  81. data/lib/datadog_api_client/v2/models/security_monitoring_rule_query_payload_data.rb +120 -0
  82. data/lib/datadog_api_client/v2/models/security_monitoring_rule_test_payload.rb +62 -0
  83. data/lib/datadog_api_client/v2/models/security_monitoring_rule_test_request.rb +92 -0
  84. data/lib/datadog_api_client/v2/models/security_monitoring_rule_test_response.rb +84 -0
  85. data/lib/datadog_api_client/v2/models/security_monitoring_rule_type_test.rb +26 -0
  86. data/lib/datadog_api_client/v2/models/security_monitoring_rule_update_payload.rb +1 -1
  87. data/lib/datadog_api_client/v2/models/security_monitoring_rule_validate_payload.rb +64 -0
  88. data/lib/datadog_api_client/v2/models/security_monitoring_signal_rule_payload.rb +251 -0
  89. data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_create_payload.rb +1 -1
  90. data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_payload.rb +263 -0
  91. data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_response.rb +1 -1
  92. data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_test_payload.rb +263 -0
  93. data/lib/datadog_api_client/version.rb +1 -1
  94. metadata +47 -3
@@ -2197,7 +2197,7 @@ components:
2197
2197
  description: 'POSIX timestamp of the event. Must be sent as an integer (that
2198
2198
  is no quotes).
2199
2199
 
2200
- Limited to events no older than 18 hours.'
2200
+ Limited to events up to 18 hours in the past and two hours in the future.'
2201
2201
  format: int64
2202
2202
  type: integer
2203
2203
  device_name:
@@ -3043,6 +3043,14 @@ components:
3043
3043
  type: string
3044
3044
  x-enum-varnames:
3045
3045
  - METRIC
3046
+ FormulaType:
3047
+ description: Set the sort type to formula.
3048
+ enum:
3049
+ - formula
3050
+ example: formula
3051
+ type: string
3052
+ x-enum-varnames:
3053
+ - FORMULA
3046
3054
  FreeTextWidgetDefinition:
3047
3055
  description: Free text is a widget that allows you to add headings to your screenboard.
3048
3056
  Commonly used to state the overall purpose of the dashboard. Only available
@@ -3411,6 +3419,8 @@ components:
3411
3419
  $ref: '#/components/schemas/LogQueryDefinition'
3412
3420
  security_query:
3413
3421
  $ref: '#/components/schemas/LogQueryDefinition'
3422
+ sort:
3423
+ $ref: '#/components/schemas/WidgetSortBy'
3414
3424
  type: object
3415
3425
  GraphSnapshot:
3416
3426
  description: Object representing a graph snapshot.
@@ -3431,6 +3441,14 @@ components:
3431
3441
  example: https://app.datadoghq.com/s/f12345678/aaa-bbb-ccc
3432
3442
  type: string
3433
3443
  type: object
3444
+ GroupType:
3445
+ description: Set the sort type to group.
3446
+ enum:
3447
+ - group
3448
+ example: group
3449
+ type: string
3450
+ x-enum-varnames:
3451
+ - GROUP
3434
3452
  GroupWidgetDefinition:
3435
3453
  description: The groups widget allows you to keep similar graphs together on
3436
3454
  your timeboard. Each group has a custom header, can hold one to many graphs,
@@ -6597,8 +6615,6 @@ components:
6597
6615
  priority:
6598
6616
  description: Integer from 1 (high) to 5 (low) indicating alert severity.
6599
6617
  format: int64
6600
- maximum: 5
6601
- minimum: 1
6602
6618
  nullable: true
6603
6619
  type: integer
6604
6620
  query:
@@ -7687,8 +7703,7 @@ components:
7687
7703
  priority:
7688
7704
  description: Integer from 1 (high) to 5 (low) indicating alert severity.
7689
7705
  format: int64
7690
- maximum: 5
7691
- minimum: 1
7706
+ nullable: true
7692
7707
  type: integer
7693
7708
  query:
7694
7709
  description: The monitor query.
@@ -8553,11 +8568,11 @@ components:
8553
8568
  format: double
8554
8569
  type: number
8555
8570
  rum_replay_sessions_percentage:
8556
- description: The percentage of RUM Replay Sessions usage by tag(s).
8571
+ description: The percentage of RUM Session Replay usage by tag(s).
8557
8572
  format: double
8558
8573
  type: number
8559
8574
  rum_replay_sessions_usage:
8560
- description: The total RUM Replay Sessions usage by tag(s).
8575
+ description: The total RUM Session Replay usage by tag(s).
8561
8576
  format: double
8562
8577
  type: number
8563
8578
  sds_scanned_bytes_percentage:
@@ -13351,60 +13366,11 @@ components:
13351
13366
  $ref: '#/components/schemas/WidgetStyle'
13352
13367
  type: object
13353
13368
  SyntheticsAPIStep:
13354
- description: The steps used in a Synthetic multistep API test.
13355
- properties:
13356
- allowFailure:
13357
- description: Determines whether or not to continue with test if this step
13358
- fails.
13359
- type: boolean
13360
- assertions:
13361
- default: []
13362
- description: Array of assertions used for the test.
13363
- example:
13364
- - operator: lessThan
13365
- target: 1000
13366
- type: responseTime
13367
- items:
13368
- $ref: '#/components/schemas/SyntheticsAssertion'
13369
- type: array
13370
- extractedValues:
13371
- description: Array of values to parse and save as variables from the response.
13372
- items:
13373
- $ref: '#/components/schemas/SyntheticsParsingOptions'
13374
- type: array
13375
- isCritical:
13376
- description: 'Determines whether or not to consider the entire test as failed
13377
- if this step fails.
13378
-
13379
- Can be used only if `allowFailure` is `true`.'
13380
- type: boolean
13381
- name:
13382
- description: The name of the step.
13383
- example: Example step name
13384
- type: string
13385
- request:
13386
- $ref: '#/components/schemas/SyntheticsTestRequest'
13387
- retry:
13388
- $ref: '#/components/schemas/SyntheticsTestOptionsRetry'
13389
- subtype:
13390
- $ref: '#/components/schemas/SyntheticsAPIStepSubtype'
13391
- required:
13392
- - assertions
13393
- - request
13394
- - name
13395
- - subtype
13369
+ description: The steps used in a Synthetic multi-step API test.
13370
+ oneOf:
13371
+ - $ref: '#/components/schemas/SyntheticsAPITestStep'
13372
+ - $ref: '#/components/schemas/SyntheticsAPIWaitStep'
13396
13373
  type: object
13397
- SyntheticsAPIStepSubtype:
13398
- description: The subtype of the Synthetic multistep API test step, currently
13399
- only supporting `http`.
13400
- enum:
13401
- - http
13402
- - grpc
13403
- example: http
13404
- type: string
13405
- x-enum-varnames:
13406
- - HTTP
13407
- - GRPC
13408
13374
  SyntheticsAPITest:
13409
13375
  description: Object containing details about a Synthetic API test.
13410
13376
  properties:
@@ -13593,6 +13559,60 @@ components:
13593
13559
  timings:
13594
13560
  $ref: '#/components/schemas/SyntheticsTiming'
13595
13561
  type: object
13562
+ SyntheticsAPITestStep:
13563
+ description: The Test step used in a Synthetic multi-step API test.
13564
+ properties:
13565
+ allowFailure:
13566
+ description: Determines whether or not to continue with test if this step
13567
+ fails.
13568
+ type: boolean
13569
+ assertions:
13570
+ default: []
13571
+ description: Array of assertions used for the test.
13572
+ example:
13573
+ - operator: lessThan
13574
+ target: 1000
13575
+ type: responseTime
13576
+ items:
13577
+ $ref: '#/components/schemas/SyntheticsAssertion'
13578
+ type: array
13579
+ extractedValues:
13580
+ description: Array of values to parse and save as variables from the response.
13581
+ items:
13582
+ $ref: '#/components/schemas/SyntheticsParsingOptions'
13583
+ type: array
13584
+ isCritical:
13585
+ description: 'Determines whether or not to consider the entire test as failed
13586
+ if this step fails.
13587
+
13588
+ Can be used only if `allowFailure` is `true`.'
13589
+ type: boolean
13590
+ name:
13591
+ description: The name of the step.
13592
+ example: Example step name
13593
+ type: string
13594
+ request:
13595
+ $ref: '#/components/schemas/SyntheticsTestRequest'
13596
+ retry:
13597
+ $ref: '#/components/schemas/SyntheticsTestOptionsRetry'
13598
+ subtype:
13599
+ $ref: '#/components/schemas/SyntheticsAPITestStepSubtype'
13600
+ required:
13601
+ - assertions
13602
+ - request
13603
+ - name
13604
+ - subtype
13605
+ type: object
13606
+ SyntheticsAPITestStepSubtype:
13607
+ description: The subtype of the Synthetic multi-step API test step.
13608
+ enum:
13609
+ - http
13610
+ - grpc
13611
+ example: http
13612
+ type: string
13613
+ x-enum-varnames:
13614
+ - HTTP
13615
+ - GRPC
13596
13616
  SyntheticsAPITestType:
13597
13617
  default: api
13598
13618
  description: Type of the Synthetic test, `api`.
@@ -13602,6 +13622,36 @@ components:
13602
13622
  type: string
13603
13623
  x-enum-varnames:
13604
13624
  - API
13625
+ SyntheticsAPIWaitStep:
13626
+ description: The Wait step used in a Synthetic multi-step API test.
13627
+ properties:
13628
+ name:
13629
+ description: The name of the step.
13630
+ example: Example step name
13631
+ type: string
13632
+ subtype:
13633
+ $ref: '#/components/schemas/SyntheticsAPIWaitStepSubtype'
13634
+ value:
13635
+ description: 'The time to wait in seconds. Minimum value: 0. Maximum value:
13636
+ 180.'
13637
+ example: 5
13638
+ format: int32
13639
+ maximum: 180
13640
+ minimum: 0
13641
+ type: integer
13642
+ required:
13643
+ - name
13644
+ - subtype
13645
+ - value
13646
+ type: object
13647
+ SyntheticsAPIWaitStepSubtype:
13648
+ description: The subtype of the Synthetic multi-step API wait step.
13649
+ enum:
13650
+ - wait
13651
+ example: wait
13652
+ type: string
13653
+ x-enum-varnames:
13654
+ - WAIT
13605
13655
  SyntheticsApiTestFailureCode:
13606
13656
  description: Error code that can be returned by a Synthetic test.
13607
13657
  enum:
@@ -13675,9 +13725,45 @@ components:
13675
13725
  which property they apply, and upon which target.'
13676
13726
  oneOf:
13677
13727
  - $ref: '#/components/schemas/SyntheticsAssertionTarget'
13728
+ - $ref: '#/components/schemas/SyntheticsAssertionBodyHashTarget'
13678
13729
  - $ref: '#/components/schemas/SyntheticsAssertionJSONPathTarget'
13679
13730
  - $ref: '#/components/schemas/SyntheticsAssertionJSONSchemaTarget'
13680
13731
  - $ref: '#/components/schemas/SyntheticsAssertionXPathTarget'
13732
+ SyntheticsAssertionBodyHashOperator:
13733
+ description: Assertion operator to apply.
13734
+ enum:
13735
+ - md5
13736
+ - sha1
13737
+ - sha256
13738
+ example: md5
13739
+ type: string
13740
+ x-enum-varnames:
13741
+ - MD5
13742
+ - SHA1
13743
+ - SHA256
13744
+ SyntheticsAssertionBodyHashTarget:
13745
+ description: An assertion which targets body hash.
13746
+ properties:
13747
+ operator:
13748
+ $ref: '#/components/schemas/SyntheticsAssertionBodyHashOperator'
13749
+ target:
13750
+ description: Value used by the operator.
13751
+ example: 123456
13752
+ type:
13753
+ $ref: '#/components/schemas/SyntheticsAssertionBodyHashType'
13754
+ required:
13755
+ - type
13756
+ - operator
13757
+ - target
13758
+ type: object
13759
+ SyntheticsAssertionBodyHashType:
13760
+ description: Type of the assertion.
13761
+ enum:
13762
+ - bodyHash
13763
+ example: bodyHash
13764
+ type: string
13765
+ x-enum-varnames:
13766
+ - BODY_HASH
13681
13767
  SyntheticsAssertionJSONPathOperator:
13682
13768
  description: Assertion operator to apply.
13683
13769
  enum:
@@ -13705,6 +13791,12 @@ components:
13705
13791
  SyntheticsAssertionJSONPathTargetTarget:
13706
13792
  description: Composed target for `validatesJSONPath` operator.
13707
13793
  properties:
13794
+ elementsOperator:
13795
+ description: The element from the list of results to assert on. To choose
13796
+ from the first element in the list `firstElementMatches`, every element
13797
+ in the list `everyElementMatches`, at least one element in the list `atLeastOneElementMatches`
13798
+ or the serialized value of the list `serializationMatches`.
13799
+ type: string
13708
13800
  jsonPath:
13709
13801
  description: The JSON path to assert.
13710
13802
  type: string
@@ -15838,7 +15930,6 @@ components:
15838
15930
 
15839
15931
  (in minutes).'
15840
15932
  format: int64
15841
- maximum: 1440
15842
15933
  minimum: 0
15843
15934
  type: integer
15844
15935
  type: object
@@ -16057,6 +16148,10 @@ components:
16057
16148
  description: Name of the file.
16058
16149
  maxLength: 1500
16059
16150
  type: string
16151
+ originalFileName:
16152
+ description: Original name of the file.
16153
+ maxLength: 1500
16154
+ type: string
16060
16155
  size:
16061
16156
  description: Size of the file.
16062
16157
  format: int64
@@ -16392,6 +16487,8 @@ components:
16392
16487
  $ref: '#/components/schemas/LogQueryDefinition'
16393
16488
  security_query:
16394
16489
  $ref: '#/components/schemas/LogQueryDefinition'
16490
+ sort:
16491
+ $ref: '#/components/schemas/WidgetSortBy'
16395
16492
  type: object
16396
16493
  TagToHosts:
16397
16494
  description: In this object, the key is the tag, the value is a list of host
@@ -16728,6 +16825,8 @@ components:
16728
16825
  $ref: '#/components/schemas/LogQueryDefinition'
16729
16826
  security_query:
16730
16827
  $ref: '#/components/schemas/LogQueryDefinition'
16828
+ sort:
16829
+ $ref: '#/components/schemas/WidgetSortBy'
16731
16830
  style:
16732
16831
  $ref: '#/components/schemas/WidgetRequestStyle'
16733
16832
  type: object
@@ -18199,7 +18298,7 @@ components:
18199
18298
  x-enum-varnames:
18200
18299
  - REPORTS
18201
18300
  UsageRumSessionsHour:
18202
- description: Number of RUM Sessions recorded for each hour for a given organization.
18301
+ description: Number of RUM sessions recorded for each hour for a given organization.
18203
18302
  properties:
18204
18303
  hour:
18205
18304
  description: The hour for the usage.
@@ -18212,46 +18311,46 @@ components:
18212
18311
  description: The organization public ID.
18213
18312
  type: string
18214
18313
  replay_session_count:
18215
- description: Contains the number of RUM Replay Sessions (data available
18314
+ description: Contains the number of RUM Session Replay counts (data available
18216
18315
  beginning November 1, 2021).
18217
18316
  format: int64
18218
18317
  type: integer
18219
18318
  session_count:
18220
- description: Contains the number of browser RUM Lite Sessions.
18319
+ description: Contains the number of browser RUM lite Sessions.
18221
18320
  format: int64
18222
18321
  nullable: true
18223
18322
  type: integer
18224
18323
  session_count_android:
18225
- description: Contains the number of mobile RUM Sessions on Android (data
18324
+ description: Contains the number of mobile RUM sessions on Android (data
18226
18325
  available beginning December 1, 2020).
18227
18326
  format: int64
18228
18327
  nullable: true
18229
18328
  type: integer
18230
18329
  session_count_flutter:
18231
- description: Contains the number of mobile RUM Sessions on Flutter (data
18330
+ description: Contains the number of mobile RUM sessions on Flutter (data
18232
18331
  available beginning March 1, 2023).
18233
18332
  format: int64
18234
18333
  nullable: true
18235
18334
  type: integer
18236
18335
  session_count_ios:
18237
- description: Contains the number of mobile RUM Sessions on iOS (data available
18336
+ description: Contains the number of mobile RUM sessions on iOS (data available
18238
18337
  beginning December 1, 2020).
18239
18338
  format: int64
18240
18339
  nullable: true
18241
18340
  type: integer
18242
18341
  session_count_reactnative:
18243
- description: Contains the number of mobile RUM Sessions on React Native
18342
+ description: Contains the number of mobile RUM sessions on React Native
18244
18343
  (data available beginning May 1, 2022).
18245
18344
  format: int64
18246
18345
  nullable: true
18247
18346
  type: integer
18248
18347
  type: object
18249
18348
  UsageRumSessionsResponse:
18250
- description: Response containing the number of RUM Sessions for each hour for
18349
+ description: Response containing the number of RUM sessions for each hour for
18251
18350
  a given organization.
18252
18351
  properties:
18253
18352
  usage:
18254
- description: Get hourly usage for RUM Sessions.
18353
+ description: Get hourly usage for RUM sessions.
18255
18354
  items:
18256
18355
  $ref: '#/components/schemas/UsageRumSessionsHour'
18257
18356
  type: array
@@ -18507,7 +18606,8 @@ components:
18507
18606
  audit_logs_lines_indexed_sum:
18508
18607
  deprecated: true
18509
18608
  description: Shows the sum of audit logs lines indexed over all hours in
18510
- the current date for all organizations.
18609
+ the current date for all organizations (To be deprecated on October 1st,
18610
+ 2024).
18511
18611
  format: int64
18512
18612
  type: integer
18513
18613
  audit_trail_enabled_hwm:
@@ -18545,18 +18645,22 @@ components:
18545
18645
  format: int64
18546
18646
  type: integer
18547
18647
  browser_rum_lite_session_count_sum:
18648
+ deprecated: true
18548
18649
  description: Shows the sum of all browser lite sessions over all hours in
18549
- the current date for all organizations.
18650
+ the current date for all organizations (To be deprecated on October 1st,
18651
+ 2024).
18550
18652
  format: int64
18551
18653
  type: integer
18552
18654
  browser_rum_replay_session_count_sum:
18553
18655
  description: Shows the sum of all browser replay sessions over all hours
18554
- in the current date for all organizations.
18656
+ in the current date for all organizations (To be deprecated on October
18657
+ 1st, 2024).
18555
18658
  format: int64
18556
18659
  type: integer
18557
18660
  browser_rum_units_sum:
18661
+ deprecated: true
18558
18662
  description: Shows the sum of all browser RUM units over all hours in the
18559
- current date for all organizations.
18663
+ current date for all organizations (To be deprecated on October 1st, 2024).
18560
18664
  format: int64
18561
18665
  type: integer
18562
18666
  ci_pipeline_indexed_spans_sum:
@@ -18832,43 +18936,58 @@ components:
18832
18936
  format: int64
18833
18937
  type: integer
18834
18938
  mobile_rum_lite_session_count_sum:
18939
+ deprecated: true
18835
18940
  description: Shows the sum of all mobile lite sessions over all hours in
18836
- the current date for all organizations.
18941
+ the current date for all organizations (To be deprecated on October 1st,
18942
+ 2024).
18837
18943
  format: int64
18838
18944
  type: integer
18839
18945
  mobile_rum_session_count_android_sum:
18840
- description: Shows the sum of all mobile RUM Sessions on Android over all
18841
- hours in the current date for all organizations.
18946
+ deprecated: true
18947
+ description: Shows the sum of all mobile RUM sessions on Android over all
18948
+ hours in the current date for all organizations (To be deprecated on October
18949
+ 1st, 2024).
18842
18950
  format: int64
18843
18951
  type: integer
18844
18952
  mobile_rum_session_count_flutter_sum:
18845
- description: Shows the sum of all mobile RUM Sessions on Flutter over all
18846
- hours in the current date for all organizations.
18953
+ deprecated: true
18954
+ description: Shows the sum of all mobile RUM sessions on Flutter over all
18955
+ hours in the current date for all organizations (To be deprecated on October
18956
+ 1st, 2024).
18847
18957
  format: int64
18848
18958
  type: integer
18849
18959
  mobile_rum_session_count_ios_sum:
18850
- description: Shows the sum of all mobile RUM Sessions on iOS over all hours
18851
- in the current date for all organizations.
18960
+ deprecated: true
18961
+ description: Shows the sum of all mobile RUM sessions on iOS over all hours
18962
+ in the current date for all organizations (To be deprecated on October
18963
+ 1st, 2024).
18852
18964
  format: int64
18853
18965
  type: integer
18854
18966
  mobile_rum_session_count_reactnative_sum:
18855
- description: Shows the sum of all mobile RUM Sessions on React Native over
18856
- all hours in the current date for all organizations.
18967
+ deprecated: true
18968
+ description: Shows the sum of all mobile RUM sessions on React Native over
18969
+ all hours in the current date for all organizations (To be deprecated
18970
+ on October 1st, 2024).
18857
18971
  format: int64
18858
18972
  type: integer
18859
18973
  mobile_rum_session_count_roku_sum:
18860
- description: Shows the sum of all mobile RUM Sessions on Roku over all hours
18861
- in the current date for all organizations.
18974
+ deprecated: true
18975
+ description: Shows the sum of all mobile RUM sessions on Roku over all hours
18976
+ in the current date for all organizations (To be deprecated on October
18977
+ 1st, 2024).
18862
18978
  format: int64
18863
18979
  type: integer
18864
18980
  mobile_rum_session_count_sum:
18865
- description: Shows the sum of all mobile RUM Sessions over all hours in
18866
- the current date for all organizations
18981
+ deprecated: true
18982
+ description: Shows the sum of all mobile RUM sessions over all hours in
18983
+ the current date for all organizations (To be deprecated on October 1st,
18984
+ 2024).
18867
18985
  format: int64
18868
18986
  type: integer
18869
18987
  mobile_rum_units_sum:
18988
+ deprecated: true
18870
18989
  description: Shows the sum of all mobile RUM units over all hours in the
18871
- current date for all organizations.
18990
+ current date for all organizations (To be deprecated on October 1st, 2024).
18872
18991
  format: int64
18873
18992
  type: integer
18874
18993
  ndm_netflow_events_sum:
@@ -18877,8 +18996,10 @@ components:
18877
18996
  format: int64
18878
18997
  type: integer
18879
18998
  netflow_indexed_events_count_sum:
18999
+ deprecated: true
18880
19000
  description: Shows the sum of all Network flows indexed over all hours in
18881
- the current date for all organizations.
19001
+ the current date for all organizations (To be deprecated on October 1st,
19002
+ 2024).
18882
19003
  format: int64
18883
19004
  type: integer
18884
19005
  npm_host_top99p:
@@ -18925,22 +19046,117 @@ components:
18925
19046
  type: integer
18926
19047
  rum_browser_and_mobile_session_count:
18927
19048
  description: Shows the sum of all mobile sessions and all browser lite and
18928
- legacy sessions over all hours in the current month for all organizations.
19049
+ legacy sessions over all hours in the current month for all organizations
19050
+ (To be deprecated on October 1st, 2024).
19051
+ format: int64
19052
+ type: integer
19053
+ rum_browser_legacy_session_count_sum:
19054
+ description: Shows the sum of all browser RUM legacy sessions over all hours
19055
+ in the current date for all organizations (To be introduced on October
19056
+ 1st, 2024).
19057
+ format: int64
19058
+ type: integer
19059
+ rum_browser_lite_session_count_sum:
19060
+ description: Shows the sum of all browser RUM lite sessions over all hours
19061
+ in the current date for all organizations (To be introduced on October
19062
+ 1st, 2024).
19063
+ format: int64
19064
+ type: integer
19065
+ rum_browser_replay_session_count_sum:
19066
+ description: Shows the sum of all browser RUM Session Replay counts over
19067
+ all hours in the current date for all organizations (To be introduced
19068
+ on October 1st, 2024).
19069
+ format: int64
19070
+ type: integer
19071
+ rum_lite_session_count_sum:
19072
+ description: Shows the sum of all RUM lite sessions (browser and mobile)
19073
+ over all hours in the current date for all organizations (To be introduced
19074
+ on October 1st, 2024).
19075
+ format: int64
19076
+ type: integer
19077
+ rum_mobile_legacy_session_count_android_sum:
19078
+ description: Shows the sum of all mobile RUM legacy sessions on Android
19079
+ over all hours in the current date for all organizations (To be introduced
19080
+ on October 1st, 2024).
19081
+ format: int64
19082
+ type: integer
19083
+ rum_mobile_legacy_session_count_flutter_sum:
19084
+ description: Shows the sum of all mobile RUM legacy Sessions on Flutter
19085
+ over all hours in the current date for all organizations (To be introduced
19086
+ on October 1st, 2024).
19087
+ format: int64
19088
+ type: integer
19089
+ rum_mobile_legacy_session_count_ios_sum:
19090
+ description: Shows the sum of all mobile RUM legacy sessions on iOS over
19091
+ all hours in the current date for all organizations (To be introduced
19092
+ on October 1st, 2024).
19093
+ format: int64
19094
+ type: integer
19095
+ rum_mobile_legacy_session_count_reactnative_sum:
19096
+ description: Shows the sum of all mobile RUM legacy sessions on React Native
19097
+ over all hours in the current date for all organizations (To be introduced
19098
+ on October 1st, 2024).
19099
+ format: int64
19100
+ type: integer
19101
+ rum_mobile_legacy_session_count_roku_sum:
19102
+ description: Shows the sum of all mobile RUM legacy sessions on Roku over
19103
+ all hours in the current date for all organizations (To be introduced
19104
+ on October 1st, 2024).
19105
+ format: int64
19106
+ type: integer
19107
+ rum_mobile_lite_session_count_android_sum:
19108
+ description: Shows the sum of all mobile RUM lite sessions on Android over
19109
+ all hours in the current date for all organizations (To be introduced
19110
+ on October 1st, 2024).
19111
+ format: int64
19112
+ type: integer
19113
+ rum_mobile_lite_session_count_flutter_sum:
19114
+ description: Shows the sum of all mobile RUM lite sessions on Flutter over
19115
+ all hours in the current date for all organizations (To be introduced
19116
+ on October 1st, 2024).
19117
+ format: int64
19118
+ type: integer
19119
+ rum_mobile_lite_session_count_ios_sum:
19120
+ description: Shows the sum of all mobile RUM lite sessions on iOS over all
19121
+ hours in the current date for all organizations (To be introduced on October
19122
+ 1st, 2024).
19123
+ format: int64
19124
+ type: integer
19125
+ rum_mobile_lite_session_count_reactnative_sum:
19126
+ description: Shows the sum of all mobile RUM lite sessions on React Native
19127
+ over all hours in the current date for all organizations (To be introduced
19128
+ on October 1st, 2024).
19129
+ format: int64
19130
+ type: integer
19131
+ rum_mobile_lite_session_count_roku_sum:
19132
+ description: Shows the sum of all mobile RUM lite sessions on Roku over
19133
+ all hours in the current date for all organizations (To be introduced
19134
+ on October 1st, 2024).
19135
+ format: int64
19136
+ type: integer
19137
+ rum_replay_session_count_sum:
19138
+ description: Shows the sum of all RUM Session Replay counts over all hours
19139
+ in the current date for all organizations (To be introduced on October
19140
+ 1st, 2024).
18929
19141
  format: int64
18930
19142
  type: integer
18931
19143
  rum_session_count_sum:
18932
- description: Shows the sum of all browser RUM Lite Sessions over all hours
18933
- in the current date for all organizations
19144
+ deprecated: true
19145
+ description: Shows the sum of all browser RUM lite sessions over all hours
19146
+ in the current date for all organizations (To be deprecated on October
19147
+ 1st, 2024).
18934
19148
  format: int64
18935
19149
  type: integer
18936
19150
  rum_total_session_count_sum:
18937
- description: Shows the sum of RUM Sessions (browser and mobile) over all
19151
+ description: Shows the sum of RUM sessions (browser and mobile) over all
18938
19152
  hours in the current date for all organizations.
18939
19153
  format: int64
18940
19154
  type: integer
18941
19155
  rum_units_sum:
19156
+ deprecated: true
18942
19157
  description: Shows the sum of all browser and mobile RUM units over all
18943
- hours in the current date for all organizations.
19158
+ hours in the current date for all organizations (To be deprecated on October
19159
+ 1st, 2024).
18944
19160
  format: int64
18945
19161
  type: integer
18946
19162
  sds_apm_scanned_bytes_sum:
@@ -19077,7 +19293,8 @@ components:
19077
19293
  audit_logs_lines_indexed_sum:
19078
19294
  deprecated: true
19079
19295
  description: Shows the sum of all audit logs lines indexed over all hours
19080
- in the current date for the given org.
19296
+ in the current date for the given org (To be deprecated on October 1st,
19297
+ 2024).
19081
19298
  format: int64
19082
19299
  type: integer
19083
19300
  audit_trail_enabled_hwm:
@@ -19115,18 +19332,21 @@ components:
19115
19332
  format: int64
19116
19333
  type: integer
19117
19334
  browser_rum_lite_session_count_sum:
19335
+ deprecated: true
19118
19336
  description: Shows the sum of all browser lite sessions over all hours in
19119
- the current date for the given org.
19337
+ the current date for the given org (To be deprecated on October 1st, 2024).
19120
19338
  format: int64
19121
19339
  type: integer
19122
19340
  browser_rum_replay_session_count_sum:
19123
19341
  description: Shows the sum of all browser replay sessions over all hours
19124
- in the current date for the given org.
19342
+ in the current date for the given org (To be deprecated on October 1st,
19343
+ 2024).
19125
19344
  format: int64
19126
19345
  type: integer
19127
19346
  browser_rum_units_sum:
19347
+ deprecated: true
19128
19348
  description: Shows the sum of all browser RUM units over all hours in the
19129
- current date for the given org.
19349
+ current date for the given org (To be deprecated on October 1st, 2024).
19130
19350
  format: int64
19131
19351
  type: integer
19132
19352
  ci_pipeline_indexed_spans_sum:
@@ -19386,8 +19606,9 @@ components:
19386
19606
  format: int64
19387
19607
  type: integer
19388
19608
  indexed_events_count_sum:
19609
+ deprecated: true
19389
19610
  description: Shows the sum of all log events indexed over all hours in the
19390
- current date for the given org.
19611
+ current date for the given org (To be deprecated on October 1st, 2024).
19391
19612
  format: int64
19392
19613
  type: integer
19393
19614
  infra_host_top99p:
@@ -19411,43 +19632,56 @@ components:
19411
19632
  format: int64
19412
19633
  type: integer
19413
19634
  mobile_rum_lite_session_count_sum:
19635
+ deprecated: true
19414
19636
  description: Shows the sum of all mobile lite sessions over all hours in
19415
- the current date for the given org.
19637
+ the current date for the given org (To be deprecated on October 1st, 2024).
19416
19638
  format: int64
19417
19639
  type: integer
19418
19640
  mobile_rum_session_count_android_sum:
19419
- description: Shows the sum of all mobile RUM Sessions on Android over all
19420
- hours in the current date for the given org.
19641
+ deprecated: true
19642
+ description: Shows the sum of all mobile RUM sessions on Android over all
19643
+ hours in the current date for the given org (To be deprecated on October
19644
+ 1st, 2024).
19421
19645
  format: int64
19422
19646
  type: integer
19423
19647
  mobile_rum_session_count_flutter_sum:
19424
- description: Shows the sum of all mobile RUM Sessions on Flutter over all
19425
- hours in the current date for the given org.
19648
+ deprecated: true
19649
+ description: Shows the sum of all mobile RUM sessions on Flutter over all
19650
+ hours in the current date for the given org (To be deprecated on October
19651
+ 1st, 2024).
19426
19652
  format: int64
19427
19653
  type: integer
19428
19654
  mobile_rum_session_count_ios_sum:
19429
- description: Shows the sum of all mobile RUM Sessions on iOS over all hours
19430
- in the current date for the given org.
19655
+ deprecated: true
19656
+ description: Shows the sum of all mobile RUM sessions on iOS over all hours
19657
+ in the current date for the given org (To be deprecated on October 1st,
19658
+ 2024).
19431
19659
  format: int64
19432
19660
  type: integer
19433
19661
  mobile_rum_session_count_reactnative_sum:
19434
- description: Shows the sum of all mobile RUM Sessions on React Native over
19435
- all hours in the current date for the given org.
19662
+ deprecated: true
19663
+ description: Shows the sum of all mobile RUM sessions on React Native over
19664
+ all hours in the current date for the given org (To be deprecated on October
19665
+ 1st, 2024).
19436
19666
  format: int64
19437
19667
  type: integer
19438
19668
  mobile_rum_session_count_roku_sum:
19439
- description: Shows the sum of all mobile RUM Sessions on Roku over all hours
19440
- in the current date for the given org.
19669
+ deprecated: true
19670
+ description: Shows the sum of all mobile RUM sessions on Roku over all hours
19671
+ in the current date for the given org (To be deprecated on October 1st,
19672
+ 2024).
19441
19673
  format: int64
19442
19674
  type: integer
19443
19675
  mobile_rum_session_count_sum:
19444
- description: Shows the sum of all mobile RUM Sessions over all hours in
19445
- the current date for the given org.
19676
+ deprecated: true
19677
+ description: Shows the sum of all mobile RUM sessions over all hours in
19678
+ the current date for the given org (To be deprecated on October 1st, 2024).
19446
19679
  format: int64
19447
19680
  type: integer
19448
19681
  mobile_rum_units_sum:
19682
+ deprecated: true
19449
19683
  description: Shows the sum of all mobile RUM units over all hours in the
19450
- current date for the given org.
19684
+ current date for the given org (To be deprecated on October 1st, 2024).
19451
19685
  format: int64
19452
19686
  type: integer
19453
19687
  name:
@@ -19459,8 +19693,9 @@ components:
19459
19693
  format: int64
19460
19694
  type: integer
19461
19695
  netflow_indexed_events_count_sum:
19696
+ deprecated: true
19462
19697
  description: Shows the sum of all Network flows indexed over all hours in
19463
- the current date for the given org.
19698
+ the current date for the given org (To be deprecated on October 1st, 2024).
19464
19699
  format: int64
19465
19700
  type: integer
19466
19701
  npm_host_top99p:
@@ -19508,22 +19743,117 @@ components:
19508
19743
  type: string
19509
19744
  rum_browser_and_mobile_session_count:
19510
19745
  description: Shows the sum of all mobile sessions and all browser lite and
19511
- legacy sessions over all hours in the current date for the given org.
19746
+ legacy sessions over all hours in the current date for the given org (To
19747
+ be deprecated on October 1st, 2024).
19748
+ format: int64
19749
+ type: integer
19750
+ rum_browser_legacy_session_count_sum:
19751
+ description: Shows the sum of all browser RUM legacy sessions over all hours
19752
+ in the current date for the given org (To be introduced on October 1st,
19753
+ 2024).
19754
+ format: int64
19755
+ type: integer
19756
+ rum_browser_lite_session_count_sum:
19757
+ description: Shows the sum of all browser RUM lite sessions over all hours
19758
+ in the current date for the given org (To be introduced on October 1st,
19759
+ 2024).
19760
+ format: int64
19761
+ type: integer
19762
+ rum_browser_replay_session_count_sum:
19763
+ description: Shows the sum of all browser RUM Session Replay counts over
19764
+ all hours in the current date for the given org (To be introduced on October
19765
+ 1st, 2024).
19766
+ format: int64
19767
+ type: integer
19768
+ rum_lite_session_count_sum:
19769
+ description: Shows the sum of all RUM lite sessions (browser and mobile)
19770
+ over all hours in the current date for the given org (To be introduced
19771
+ on October 1st, 2024).
19772
+ format: int64
19773
+ type: integer
19774
+ rum_mobile_legacy_session_count_android_sum:
19775
+ description: Shows the sum of all mobile RUM legacy sessions on Android
19776
+ over all hours in the current date for the given org (To be introduced
19777
+ on October 1st, 2024).
19778
+ format: int64
19779
+ type: integer
19780
+ rum_mobile_legacy_session_count_flutter_sum:
19781
+ description: Shows the sum of all mobile RUM legacy sessions on Flutter
19782
+ over all hours in the current date for the given org (To be introduced
19783
+ on October 1st, 2024).
19784
+ format: int64
19785
+ type: integer
19786
+ rum_mobile_legacy_session_count_ios_sum:
19787
+ description: Shows the sum of all mobile RUM legacy sessions on iOS over
19788
+ all hours in the current date for the given org (To be introduced on October
19789
+ 1st, 2024).
19790
+ format: int64
19791
+ type: integer
19792
+ rum_mobile_legacy_session_count_reactnative_sum:
19793
+ description: Shows the sum of all mobile RUM legacy sessions on React Native
19794
+ over all hours in the current date for the given org (To be introduced
19795
+ on October 1st, 2024).
19796
+ format: int64
19797
+ type: integer
19798
+ rum_mobile_legacy_session_count_roku_sum:
19799
+ description: Shows the sum of all mobile RUM legacy sessions on Roku over
19800
+ all hours in the current date for the given org (To be introduced on October
19801
+ 1st, 2024).
19802
+ format: int64
19803
+ type: integer
19804
+ rum_mobile_lite_session_count_android_sum:
19805
+ description: Shows the sum of all mobile RUM lite sessions on Android over
19806
+ all hours in the current date for the given org (To be introduced on October
19807
+ 1st, 2024).
19808
+ format: int64
19809
+ type: integer
19810
+ rum_mobile_lite_session_count_flutter_sum:
19811
+ description: Shows the sum of all mobile RUM lite sessions on Flutter over
19812
+ all hours in the current date for the given org (To be introduced on October
19813
+ 1st, 2024).
19814
+ format: int64
19815
+ type: integer
19816
+ rum_mobile_lite_session_count_ios_sum:
19817
+ description: Shows the sum of all mobile RUM lite sessions on iOS over all
19818
+ hours in the current date for the given org (To be introduced on October
19819
+ 1st, 2024).
19820
+ format: int64
19821
+ type: integer
19822
+ rum_mobile_lite_session_count_reactnative_sum:
19823
+ description: Shows the sum of all mobile RUM lite sessions on React Native
19824
+ over all hours in the current date for the given org (To be introduced
19825
+ on October 1st, 2024).
19826
+ format: int64
19827
+ type: integer
19828
+ rum_mobile_lite_session_count_roku_sum:
19829
+ description: Shows the sum of all mobile RUM lite sessions on Roku over
19830
+ all hours in the current date for the given org (To be introduced on October
19831
+ 1st, 2024).
19832
+ format: int64
19833
+ type: integer
19834
+ rum_replay_session_count_sum:
19835
+ description: Shows the sum of all RUM Session Replay counts over all hours
19836
+ in the current date for the given org (To be introduced on October 1st,
19837
+ 2024).
19512
19838
  format: int64
19513
19839
  type: integer
19514
19840
  rum_session_count_sum:
19515
- description: Shows the sum of all browser RUM Lite Sessions over all hours
19516
- in the current date for the given org.
19841
+ deprecated: true
19842
+ description: Shows the sum of all browser RUM lite sessions over all hours
19843
+ in the current date for the given org (To be deprecated on October 1st,
19844
+ 2024).
19517
19845
  format: int64
19518
19846
  type: integer
19519
19847
  rum_total_session_count_sum:
19520
- description: Shows the sum of RUM Sessions (browser and mobile) over all
19848
+ description: Shows the sum of RUM sessions (browser and mobile) over all
19521
19849
  hours in the current date for the given org.
19522
19850
  format: int64
19523
19851
  type: integer
19524
19852
  rum_units_sum:
19853
+ deprecated: true
19525
19854
  description: Shows the sum of all browser and mobile RUM units over all
19526
- hours in the current date for the given org.
19855
+ hours in the current date for the given org (To be deprecated on October
19856
+ 1st, 2024).
19527
19857
  format: int64
19528
19858
  type: integer
19529
19859
  sds_apm_scanned_bytes_sum:
@@ -19660,7 +19990,8 @@ components:
19660
19990
  audit_logs_lines_indexed_agg_sum:
19661
19991
  deprecated: true
19662
19992
  description: Shows the sum of all audit logs lines indexed over all hours
19663
- in the current month for all organizations.
19993
+ in the current month for all organizations (To be deprecated on October
19994
+ 1st, 2024).
19664
19995
  format: int64
19665
19996
  type: integer
19666
19997
  audit_trail_enabled_hwm_sum:
@@ -19704,18 +20035,23 @@ components:
19704
20035
  format: int64
19705
20036
  type: integer
19706
20037
  browser_rum_lite_session_count_agg_sum:
20038
+ deprecated: true
19707
20039
  description: Shows the sum of all browser lite sessions over all hours in
19708
- the current month for all organizations.
20040
+ the current month for all organizations (To be deprecated on October 1st,
20041
+ 2024).
19709
20042
  format: int64
19710
20043
  type: integer
19711
20044
  browser_rum_replay_session_count_agg_sum:
19712
20045
  description: Shows the sum of all browser replay sessions over all hours
19713
- in the current month for all organizations.
20046
+ in the current month for all organizations (To be deprecated on October
20047
+ 1st, 2024).
19714
20048
  format: int64
19715
20049
  type: integer
19716
20050
  browser_rum_units_agg_sum:
20051
+ deprecated: true
19717
20052
  description: Shows the sum of all browser RUM units over all hours in the
19718
- current month for all organizations.
20053
+ current month for all organizations (To be deprecated on October 1st,
20054
+ 2024).
19719
20055
  format: int64
19720
20056
  type: integer
19721
20057
  ci_pipeline_indexed_spans_agg_sum:
@@ -19975,8 +20311,10 @@ components:
19975
20311
  format: int64
19976
20312
  type: integer
19977
20313
  indexed_events_count_agg_sum:
20314
+ deprecated: true
19978
20315
  description: Shows the sum of all log events indexed over all hours in the
19979
- current month for all organizations.
20316
+ current month for all organizations (To be deprecated on October 1st,
20317
+ 2024).
19980
20318
  format: int64
19981
20319
  type: integer
19982
20320
  infra_host_top99p_sum:
@@ -20005,9 +20343,9 @@ components:
20005
20343
  format: date-time
20006
20344
  type: string
20007
20345
  live_indexed_events_agg_sum:
20346
+ deprecated: true
20008
20347
  description: Shows the sum of all live logs indexed over all hours in the
20009
- current month for all organizations (data available as of December 1,
20010
- 2020).
20348
+ current month for all organization (To be deprecated on October 1st, 2024).
20011
20349
  format: int64
20012
20350
  type: integer
20013
20351
  live_ingested_bytes_agg_sum:
@@ -20019,43 +20357,59 @@ components:
20019
20357
  logs_by_retention:
20020
20358
  $ref: '#/components/schemas/LogsByRetention'
20021
20359
  mobile_rum_lite_session_count_agg_sum:
20360
+ deprecated: true
20022
20361
  description: Shows the sum of all mobile lite sessions over all hours in
20023
- the current month for all organizations.
20362
+ the current month for all organizations (To be deprecated on October 1st,
20363
+ 2024).
20024
20364
  format: int64
20025
20365
  type: integer
20026
20366
  mobile_rum_session_count_agg_sum:
20027
- description: Shows the sum of all mobile RUM Sessions over all hours in
20028
- the current month for all organizations.
20367
+ deprecated: true
20368
+ description: Shows the sum of all mobile RUM sessions over all hours in
20369
+ the current month for all organizations (To be deprecated on October 1st,
20370
+ 2024).
20029
20371
  format: int64
20030
20372
  type: integer
20031
20373
  mobile_rum_session_count_android_agg_sum:
20032
- description: Shows the sum of all mobile RUM Sessions on Android over all
20033
- hours in the current month for all organizations.
20374
+ deprecated: true
20375
+ description: Shows the sum of all mobile RUM sessions on Android over all
20376
+ hours in the current month for all organizations (To be deprecated on
20377
+ October 1st, 2024).
20034
20378
  format: int64
20035
20379
  type: integer
20036
20380
  mobile_rum_session_count_flutter_agg_sum:
20037
- description: Shows the sum of all mobile RUM Sessions on Flutter over all
20038
- hours in the current month for all organizations.
20381
+ deprecated: true
20382
+ description: Shows the sum of all mobile RUM sessions on Flutter over all
20383
+ hours in the current month for all organizations (To be deprecated on
20384
+ October 1st, 2024).
20039
20385
  format: int64
20040
20386
  type: integer
20041
20387
  mobile_rum_session_count_ios_agg_sum:
20042
- description: Shows the sum of all mobile RUM Sessions on iOS over all hours
20043
- in the current month for all organizations.
20388
+ deprecated: true
20389
+ description: Shows the sum of all mobile RUM sessions on iOS over all hours
20390
+ in the current month for all organizations (To be deprecated on October
20391
+ 1st, 2024).
20044
20392
  format: int64
20045
20393
  type: integer
20046
20394
  mobile_rum_session_count_reactnative_agg_sum:
20047
- description: Shows the sum of all mobile RUM Sessions on React Native over
20048
- all hours in the current month for all organizations.
20395
+ deprecated: true
20396
+ description: Shows the sum of all mobile RUM sessions on React Native over
20397
+ all hours in the current month for all organizations (To be deprecated
20398
+ on October 1st, 2024).
20049
20399
  format: int64
20050
20400
  type: integer
20051
20401
  mobile_rum_session_count_roku_agg_sum:
20052
- description: Shows the sum of all mobile RUM Sessions on Roku over all hours
20053
- in the current month for all organizations.
20402
+ deprecated: true
20403
+ description: Shows the sum of all mobile RUM sessions on Roku over all hours
20404
+ in the current month for all organizations (To be deprecated on October
20405
+ 1st, 2024).
20054
20406
  format: int64
20055
20407
  type: integer
20056
20408
  mobile_rum_units_agg_sum:
20409
+ deprecated: true
20057
20410
  description: Shows the sum of all mobile RUM units over all hours in the
20058
- current month for all organizations.
20411
+ current month for all organizations (To be deprecated on October 1st,
20412
+ 2024).
20059
20413
  format: int64
20060
20414
  type: integer
20061
20415
  ndm_netflow_events_agg_sum:
@@ -20064,8 +20418,10 @@ components:
20064
20418
  format: int64
20065
20419
  type: integer
20066
20420
  netflow_indexed_events_count_agg_sum:
20421
+ deprecated: true
20067
20422
  description: Shows the sum of all Network flows indexed over all hours in
20068
- the current month for all organizations.
20423
+ the current month for all organizations (To be deprecated on October 1st,
20424
+ 2024).
20069
20425
  format: int64
20070
20426
  type: integer
20071
20427
  npm_host_top99p_sum:
@@ -20111,9 +20467,10 @@ components:
20111
20467
  format: int64
20112
20468
  type: integer
20113
20469
  rehydrated_indexed_events_agg_sum:
20470
+ deprecated: true
20114
20471
  description: Shows the sum of all rehydrated logs indexed over all hours
20115
- in the current month for all organizations (data available as of December
20116
- 1, 2020).
20472
+ in the current month for all organizations (To be deprecated on October
20473
+ 1st, 2024).
20117
20474
  format: int64
20118
20475
  type: integer
20119
20476
  rehydrated_ingested_bytes_agg_sum:
@@ -20124,22 +20481,117 @@ components:
20124
20481
  type: integer
20125
20482
  rum_browser_and_mobile_session_count:
20126
20483
  description: Shows the sum of all mobile sessions and all browser lite and
20127
- legacy sessions over all hours in the current month for all organizations.
20484
+ legacy sessions over all hours in the current month for all organizations
20485
+ (To be deprecated on October 1st, 2024).
20486
+ format: int64
20487
+ type: integer
20488
+ rum_browser_legacy_session_count_agg_sum:
20489
+ description: Shows the sum of all browser RUM legacy sessions over all hours
20490
+ in the current month for all organizations (To be introduced on October
20491
+ 1st, 2024).
20492
+ format: int64
20493
+ type: integer
20494
+ rum_browser_lite_session_count_agg_sum:
20495
+ description: Shows the sum of all browser RUM lite sessions over all hours
20496
+ in the current month for all organizations (To be introduced on October
20497
+ 1st, 2024).
20498
+ format: int64
20499
+ type: integer
20500
+ rum_browser_replay_session_count_agg_sum:
20501
+ description: Shows the sum of all browser RUM Session Replay counts over
20502
+ all hours in the current month for all organizations (To be introduced
20503
+ on October 1st, 2024).
20504
+ format: int64
20505
+ type: integer
20506
+ rum_lite_session_count_agg_sum:
20507
+ description: Shows the sum of all RUM lite sessions (browser and mobile)
20508
+ over all hours in the current month for all organizations (To be introduced
20509
+ on October 1st, 2024).
20510
+ format: int64
20511
+ type: integer
20512
+ rum_mobile_legacy_session_count_android_agg_sum:
20513
+ description: Shows the sum of all mobile RUM legacy sessions on Android
20514
+ over all hours in the current month for all organizations (To be introduced
20515
+ on October 1st, 2024).
20516
+ format: int64
20517
+ type: integer
20518
+ rum_mobile_legacy_session_count_flutter_agg_sum:
20519
+ description: Shows the sum of all mobile RUM legacy sessions on Flutter
20520
+ over all hours in the current month for all organizations (To be introduced
20521
+ on October 1st, 2024).
20522
+ format: int64
20523
+ type: integer
20524
+ rum_mobile_legacy_session_count_ios_agg_sum:
20525
+ description: Shows the sum of all mobile RUM legacy sessions on iOS over
20526
+ all hours in the current month for all organizations (To be introduced
20527
+ on October 1st, 2024).
20528
+ format: int64
20529
+ type: integer
20530
+ rum_mobile_legacy_session_count_reactnative_agg_sum:
20531
+ description: Shows the sum of all mobile RUM legacy sessions on React Native
20532
+ over all hours in the current month for all organizations (To be introduced
20533
+ on October 1st, 2024).
20534
+ format: int64
20535
+ type: integer
20536
+ rum_mobile_legacy_session_count_roku_agg_sum:
20537
+ description: Shows the sum of all mobile RUM legacy sessions on Roku over
20538
+ all hours in the current month for all organizations (To be introduced
20539
+ on October 1st, 2024).
20540
+ format: int64
20541
+ type: integer
20542
+ rum_mobile_lite_session_count_android_agg_sum:
20543
+ description: Shows the sum of all mobile RUM lite sessions on Android over
20544
+ all hours in the current month for all organizations (To be introduced
20545
+ on October 1st, 2024).
20546
+ format: int64
20547
+ type: integer
20548
+ rum_mobile_lite_session_count_flutter_agg_sum:
20549
+ description: Shows the sum of all mobile RUM lite sessions on Flutter over
20550
+ all hours in the current month for all organizations (To be introduced
20551
+ on October 1st, 2024).
20552
+ format: int64
20553
+ type: integer
20554
+ rum_mobile_lite_session_count_ios_agg_sum:
20555
+ description: Shows the sum of all mobile RUM lite sessions on iOS over all
20556
+ hours in the current month for all organizations (To be introduced on
20557
+ October 1st, 2024).
20558
+ format: int64
20559
+ type: integer
20560
+ rum_mobile_lite_session_count_reactnative_agg_sum:
20561
+ description: Shows the sum of all mobile RUM lite sessions on React Native
20562
+ over all hours in the current month for all organizations (To be introduced
20563
+ on October 1st, 2024).
20564
+ format: int64
20565
+ type: integer
20566
+ rum_mobile_lite_session_count_roku_agg_sum:
20567
+ description: Shows the sum of all mobile RUM lite sessions on Roku over
20568
+ all hours in the current month for all organizations (To be introduced
20569
+ on October 1st, 2024).
20570
+ format: int64
20571
+ type: integer
20572
+ rum_replay_session_count_agg_sum:
20573
+ description: Shows the sum of all RUM Session Replay counts over all hours
20574
+ in the current month for all organizations (To be introduced on October
20575
+ 1st, 2024).
20128
20576
  format: int64
20129
20577
  type: integer
20130
20578
  rum_session_count_agg_sum:
20131
- description: Shows the sum of all browser RUM Lite Sessions over all hours
20132
- in the current month for all organizations.
20579
+ deprecated: true
20580
+ description: Shows the sum of all browser RUM lite sessions over all hours
20581
+ in the current month for all organizations (To be deprecated on October
20582
+ 1st, 2024).
20133
20583
  format: int64
20134
20584
  type: integer
20135
20585
  rum_total_session_count_agg_sum:
20136
- description: Shows the sum of RUM Sessions (browser and mobile) over all
20586
+ description: Shows the sum of RUM sessions (browser and mobile) over all
20137
20587
  hours in the current month for all organizations.
20138
20588
  format: int64
20139
20589
  type: integer
20140
20590
  rum_units_agg_sum:
20591
+ deprecated: true
20141
20592
  description: Shows the sum of all browser and mobile RUM units over all
20142
- hours in the current month for all organizations.
20593
+ hours in the current month for all organizations (To be deprecated on
20594
+ October 1st, 2024).
20143
20595
  format: int64
20144
20596
  type: integer
20145
20597
  sds_apm_scanned_bytes_sum:
@@ -20939,6 +21391,24 @@ components:
20939
21391
  order:
20940
21392
  $ref: '#/components/schemas/QuerySortOrder'
20941
21393
  type: object
21394
+ WidgetFormulaSort:
21395
+ description: The formula to sort the widget by.
21396
+ properties:
21397
+ index:
21398
+ description: The index of the formula to sort by.
21399
+ example: 0
21400
+ format: int64
21401
+ minimum: 0
21402
+ type: integer
21403
+ order:
21404
+ $ref: '#/components/schemas/WidgetSort'
21405
+ type:
21406
+ $ref: '#/components/schemas/FormulaType'
21407
+ required:
21408
+ - type
21409
+ - index
21410
+ - order
21411
+ type: object
20942
21412
  WidgetFormulaStyle:
20943
21413
  description: Styling options for widget formulas.
20944
21414
  properties:
@@ -20953,6 +21423,22 @@ components:
20953
21423
  format: int64
20954
21424
  type: integer
20955
21425
  type: object
21426
+ WidgetGroupSort:
21427
+ description: The group to sort the widget by.
21428
+ properties:
21429
+ name:
21430
+ description: The name of the group.
21431
+ example: group_name
21432
+ type: string
21433
+ order:
21434
+ $ref: '#/components/schemas/WidgetSort'
21435
+ type:
21436
+ $ref: '#/components/schemas/GroupType'
21437
+ required:
21438
+ - type
21439
+ - name
21440
+ - order
21441
+ type: object
20956
21442
  WidgetGrouping:
20957
21443
  description: The kind of grouping to use.
20958
21444
  enum:
@@ -21328,6 +21814,25 @@ components:
21328
21814
  x-enum-varnames:
21329
21815
  - ASCENDING
21330
21816
  - DESCENDING
21817
+ WidgetSortBy:
21818
+ description: The controls for sorting the widget.
21819
+ properties:
21820
+ count:
21821
+ description: The number of items to limit the widget to.
21822
+ format: int64
21823
+ minimum: 0
21824
+ type: integer
21825
+ order_by:
21826
+ description: The array of items to sort the widget by in order.
21827
+ items:
21828
+ $ref: '#/components/schemas/WidgetSortOrderBy'
21829
+ type: array
21830
+ type: object
21831
+ WidgetSortOrderBy:
21832
+ description: The item to sort the widget by.
21833
+ oneOf:
21834
+ - $ref: '#/components/schemas/WidgetFormulaSort'
21835
+ - $ref: '#/components/schemas/WidgetGroupSort'
21331
21836
  WidgetStyle:
21332
21837
  description: Widget style definition.
21333
21838
  properties:
@@ -21436,10 +21941,14 @@ components:
21436
21941
  authorizationCode:
21437
21942
  authorizationUrl: /oauth2/v1/authorize
21438
21943
  scopes:
21944
+ apm_api_catalog_read: View API catalog and API definitions.
21945
+ apm_api_catalog_write: Add, modify, and delete API catalog definitions.
21439
21946
  apm_read: Read and query APM and Trace Analytics.
21440
21947
  apm_service_catalog_read: View service catalog and service definitions.
21441
21948
  apm_service_catalog_write: Add, modify, and delete service catalog definitions
21442
21949
  when those definitions are maintained by Datadog.
21950
+ cases_read: View Cases.
21951
+ cases_write: Create and update cases.
21443
21952
  ci_visibility_pipelines_write: Create CI Visibility pipeline spans using
21444
21953
  the API.
21445
21954
  ci_visibility_read: View CI Visibility.
@@ -21508,6 +22017,9 @@ components:
21508
22017
  user_access_manage: Disable users, manage user roles, manage SAML-to-role
21509
22018
  mappings, and configure logs restriction queries.
21510
22019
  user_access_read: View users and their roles and settings.
22020
+ workflows_read: View workflows.
22021
+ workflows_run: Run workflows.
22022
+ workflows_write: Create, edit, and delete workflows.
21511
22023
  tokenUrl: /oauth2/v1/token
21512
22024
  type: oauth2
21513
22025
  apiKeyAuth:
@@ -26892,22 +27404,20 @@ paths:
26892
27404
  description: Search and filter your monitor groups details.
26893
27405
  operationId: SearchMonitorGroups
26894
27406
  parameters:
26895
- - description: 'After entering a search query in your [Manage Monitor page][1]
27407
+ - description: 'After entering a search query on the [Triggered Monitors page][1],
26896
27408
  use the query parameter value in the
26897
27409
 
26898
- URL of the page as value for this parameter. Consult the dedicated [manage
26899
- monitor documentation][2]
26900
-
26901
- page to learn more.
27410
+ URL of the page as a value for this parameter. For more information, see
27411
+ the [Manage Monitors documentation][2].
26902
27412
 
26903
27413
 
26904
27414
  The query can contain any number of space-separated monitor attributes,
26905
- for instance `query="type:metric status:alert"`.
27415
+ for instance: `query="type:metric group_status:alert"`.
26906
27416
 
26907
27417
 
26908
- [1]: https://app.datadoghq.com/monitors/manage
27418
+ [1]: https://app.datadoghq.com/monitors/triggered
26909
27419
 
26910
- [2]: /monitors/manage/#find-the-monitors'
27420
+ [2]: /monitors/manage/#triggered-monitors'
26911
27421
  in: query
26912
27422
  name: query
26913
27423
  required: false