datadog_api_client 2.37.0 → 2.39.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.
- checksums.yaml +4 -4
- data/.generated-info +4 -0
- data/.generator/schemas/v1/openapi.yaml +513 -14
- data/.generator/schemas/v2/openapi.yaml +2101 -107
- data/.github/workflows/approved_status.yml +1 -0
- data/.github/workflows/test.yml +1 -1
- data/CHANGELOG.md +36 -0
- data/examples/v1/dashboards/CreateDashboard_1751391372.rb +41 -0
- data/examples/v1/dashboards/CreatePublicDashboard_1668947073.rb +28 -0
- data/examples/v1/dashboards/UpdatePublicDashboard_1708268778.rb +27 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_1248402480.rb +25 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_1267211320.rb +27 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_1271012410.rb +25 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_3314493032.rb +26 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_3934594739.rb +26 -0
- data/examples/v1/synthetics/SearchTests.rb +5 -0
- data/examples/v1/synthetics/SearchTests_195957771.rb +13 -0
- data/examples/v2/action-connection/GetAppKeyRegistration.rb +5 -0
- data/examples/v2/action-connection/ListAppKeyRegistrations.rb +5 -0
- data/examples/v2/action-connection/RegisterAppKey.rb +5 -0
- data/examples/v2/action-connection/UnregisterAppKey.rb +5 -0
- data/examples/v2/aws-integration/GetAWSIntegrationIAMPermissions.rb +5 -0
- data/examples/v2/cloud-cost-management/CreateCostGCPUsageCostConfig.rb +19 -0
- data/examples/v2/cloud-cost-management/DeleteCostGCPUsageCostConfig.rb +5 -0
- data/examples/v2/cloud-cost-management/ListCostGCPUsageCostConfigs.rb +5 -0
- data/examples/v2/cloud-cost-management/UpdateCostGCPUsageCostConfig.rb +14 -0
- data/examples/v2/datasets/CreateDataset.rb +27 -0
- data/examples/v2/datasets/DeleteDataset.rb +5 -0
- data/examples/v2/datasets/GetAllDatasets.rb +5 -0
- data/examples/v2/datasets/GetDataset.rb +5 -0
- data/examples/v2/events/CreateEvent.rb +4 -2
- data/examples/v2/monitors/CreateMonitorNotificationRule.rb +0 -3
- data/examples/v2/monitors/CreateMonitorUserTemplate.rb +37 -0
- data/examples/v2/monitors/DeleteMonitorNotificationRule.rb +0 -3
- data/examples/v2/monitors/DeleteMonitorUserTemplate.rb +8 -0
- data/examples/v2/monitors/GetMonitorNotificationRule.rb +0 -3
- data/examples/v2/monitors/GetMonitorNotificationRules.rb +0 -3
- data/examples/v2/monitors/GetMonitorUserTemplate.rb +11 -0
- data/examples/v2/monitors/ListMonitorUserTemplates.rb +8 -0
- data/examples/v2/monitors/UpdateMonitorNotificationRule.rb +0 -3
- data/examples/v2/monitors/UpdateMonitorUserTemplate.rb +41 -0
- data/examples/v2/monitors/ValidateExistingMonitorUserTemplate.rb +41 -0
- data/examples/v2/monitors/ValidateMonitorUserTemplate.rb +37 -0
- data/examples/v2/on-call/UpdateOnCallSchedule.rb +1 -1
- data/examples/v2/security-monitoring/ListAssetsSBOMs.rb +12 -0
- data/lib/datadog_api_client/configuration.rb +60 -5
- data/lib/datadog_api_client/inflector.rb +70 -0
- data/lib/datadog_api_client/v1/api/hosts_api.rb +1 -0
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +72 -0
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +6 -6
- data/lib/datadog_api_client/v1/models/dashboard_template_variable.rb +14 -3
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_body.rb +1 -0
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +9 -1
- data/lib/datadog_api_client/v1/models/logs_array_processor.rb +168 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation.rb +64 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_append.rb +175 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_append_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_length.rb +165 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_length_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_select.rb +207 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_select_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/logs_processor.rb +2 -1
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_body.rb +1 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +14 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +142 -1
- data/lib/datadog_api_client/v1/models/selectable_template_variable_items.rb +12 -1
- data/lib/datadog_api_client/v1/models/synthetics_mobile_test.rb +12 -1
- data/lib/datadog_api_client/v1/models/synthetics_step_type.rb +1 -0
- data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_request_dns_server_port.rb +63 -0
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +81 -1
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +81 -1
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +81 -1
- data/lib/datadog_api_client/v2/api/action_connection_api.rb +263 -4
- data/lib/datadog_api_client/v2/api/app_builder_api.rb +8 -8
- data/lib/datadog_api_client/v2/api/aws_integration_api.rb +60 -0
- data/lib/datadog_api_client/v2/api/cloud_cost_management_api.rb +264 -0
- data/lib/datadog_api_client/v2/api/datasets_api.rb +283 -0
- data/lib/datadog_api_client/v2/api/events_api.rb +10 -4
- data/lib/datadog_api_client/v2/api/monitors_api.rb +512 -30
- data/lib/datadog_api_client/v2/api/restriction_policies_api.rb +7 -3
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +111 -0
- data/lib/datadog_api_client/v2/api/usage_metering_api.rb +1 -1
- data/lib/datadog_api_client/v2/api/workflow_automation_api.rb +8 -8
- data/lib/datadog_api_client/v2/models/alert_event_custom_attributes.rb +145 -0
- data/lib/datadog_api_client/v2/models/alert_event_custom_attributes_links_items.rb +152 -0
- data/lib/datadog_api_client/v2/models/alert_event_custom_attributes_links_items_category.rb +28 -0
- data/lib/datadog_api_client/v2/models/alert_event_custom_attributes_priority.rb +30 -0
- data/lib/datadog_api_client/v2/models/alert_event_custom_attributes_status.rb +28 -0
- data/lib/datadog_api_client/v2/models/app_key_registration_data.rb +133 -0
- data/lib/datadog_api_client/v2/models/app_key_registration_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/asset_attributes.rb +13 -1
- data/lib/datadog_api_client/v2/models/aws_integration_iam_permissions_response.rb +123 -0
- data/lib/datadog_api_client/v2/models/aws_integration_iam_permissions_response_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/aws_integration_iam_permissions_response_data.rb +125 -0
- data/lib/datadog_api_client/v2/models/aws_integration_iam_permissions_response_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes.rb +19 -33
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes_author.rb +10 -31
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes_changed_resource.rb +15 -32
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes_changed_resource_type.rb +1 -1
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes_impacted_resources_items.rb +15 -32
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes_impacted_resources_items_type.rb +1 -1
- data/lib/datadog_api_client/v2/models/dataset.rb +154 -0
- data/lib/datadog_api_client/v2/models/dataset_attributes.rb +197 -0
- data/lib/datadog_api_client/v2/models/dataset_create_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/dataset_response_multi.rb +125 -0
- data/lib/datadog_api_client/v2/models/dataset_response_single.rb +123 -0
- data/lib/datadog_api_client/v2/models/event_category.rb +2 -1
- data/lib/datadog_api_client/v2/models/event_create_request.rb +32 -3
- data/lib/datadog_api_client/v2/models/event_create_request_payload.rb +20 -2
- data/lib/datadog_api_client/v2/models/event_create_response.rb +3 -3
- data/lib/datadog_api_client/v2/models/event_create_response_attributes.rb +2 -2
- data/lib/datadog_api_client/v2/models/event_create_response_attributes_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/event_create_response_attributes_attributes_evt.rb +14 -4
- data/lib/datadog_api_client/v2/models/event_create_response_payload.rb +15 -5
- data/lib/datadog_api_client/v2/models/event_create_response_payload_links.rb +105 -0
- data/lib/datadog_api_client/v2/models/event_payload.rb +48 -36
- data/lib/datadog_api_client/v2/models/event_payload_attributes.rb +3 -2
- data/lib/datadog_api_client/v2/models/event_payload_integration_id.rb +26 -0
- data/lib/datadog_api_client/v2/models/filters_per_product.rb +150 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config.rb +154 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_attributes.rb +369 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_request_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_request_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_request_attributes.rb +217 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_request_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_configs_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/get_app_key_registration_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/incident_create_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/incident_response_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/job_definition_from_rule.rb +1 -26
- data/lib/datadog_api_client/v2/models/layer_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/layer_attributes_interval.rb +1 -1
- data/lib/datadog_api_client/v2/models/list_app_key_registrations_response.rb +117 -0
- data/lib/datadog_api_client/v2/models/list_app_key_registrations_response_meta.rb +115 -0
- data/lib/datadog_api_client/v2/models/list_assets_sbo_ms_response.rb +145 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template.rb +200 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_create_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_create_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_create_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_list_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_request_attributes.rb +172 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_response_attributes.rb +188 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_response_data.rb +125 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_response_data_with_versions.rb +125 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_template_variables_items.rb +132 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_update_data.rb +165 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_update_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/register_app_key_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/sbom_attributes.rb +24 -1
- data/lib/datadog_api_client/v2/models/sbom_component.rb +46 -1
- data/lib/datadog_api_client/v2/models/sbom_component_dependency.rb +117 -0
- data/lib/datadog_api_client/v2/models/sbom_component_license.rb +123 -0
- data/lib/datadog_api_client/v2/models/sbom_component_license_license.rb +123 -0
- data/lib/datadog_api_client/v2/models/sbom_component_license_type.rb +33 -0
- data/lib/datadog_api_client/v2/models/sbom_component_property.rb +144 -0
- data/lib/datadog_api_client/v2/models/sbom_component_supplier.rb +123 -0
- data/lib/datadog_api_client/v2/models/sbom_metadata.rb +25 -3
- data/lib/datadog_api_client/v2/models/sbom_metadata_author.rb +105 -0
- data/lib/datadog_api_client/v2/models/schedule_create_request_data_attributes_layers_items.rb +1 -1
- data/lib/datadog_api_client/v2/models/schedule_update_request_data_attributes_layers_items.rb +1 -1
- data/lib/datadog_api_client/v2/models/simple_monitor_user_template.rb +188 -0
- data/lib/datadog_api_client/v2/models/vulnerability_attributes.rb +24 -1
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +103 -2
- data/.apigentools-info +0 -16
@@ -1550,6 +1550,13 @@ components:
|
|
1550
1550
|
example: host
|
1551
1551
|
nullable: true
|
1552
1552
|
type: string
|
1553
|
+
type:
|
1554
|
+
description: The type of variable. This is to differentiate between filter
|
1555
|
+
variables (interpolated in query) and group by variables (interpolated
|
1556
|
+
into group by).
|
1557
|
+
example: group
|
1558
|
+
nullable: true
|
1559
|
+
type: string
|
1553
1560
|
required:
|
1554
1561
|
- name
|
1555
1562
|
type: object
|
@@ -4164,7 +4171,10 @@ components:
|
|
4164
4171
|
type: array
|
4165
4172
|
type: object
|
4166
4173
|
HourlyUsageAttributionUsageType:
|
4167
|
-
description: Supported products for hourly usage attribution requests.
|
4174
|
+
description: 'Supported products for hourly usage attribution requests.
|
4175
|
+
|
4176
|
+
The following values have been **deprecated**: `estimated_indexed_spans_usage`,
|
4177
|
+
`estimated_ingested_spans_usage`.'
|
4168
4178
|
enum:
|
4169
4179
|
- api_usage
|
4170
4180
|
- apm_fargate_usage
|
@@ -4207,6 +4217,7 @@ components:
|
|
4207
4217
|
- ingested_spans_bytes_usage
|
4208
4218
|
- invocations_usage
|
4209
4219
|
- lambda_traced_invocations_usage
|
4220
|
+
- llm_observability_usage
|
4210
4221
|
- logs_indexed_15day_usage
|
4211
4222
|
- logs_indexed_180day_usage
|
4212
4223
|
- logs_indexed_1day_usage
|
@@ -4221,14 +4232,20 @@ components:
|
|
4221
4232
|
- mobile_app_testing_usage
|
4222
4233
|
- ndm_netflow_usage
|
4223
4234
|
- npm_host_usage
|
4235
|
+
- network_device_wireless_usage
|
4224
4236
|
- obs_pipeline_bytes_usage
|
4225
4237
|
- obs_pipelines_vcpu_usage
|
4226
4238
|
- online_archive_usage
|
4239
|
+
- product_analytics_session_usage
|
4227
4240
|
- profiled_container_usage
|
4228
4241
|
- profiled_fargate_usage
|
4229
4242
|
- profiled_host_usage
|
4243
|
+
- published_app
|
4230
4244
|
- rum_browser_mobile_sessions_usage
|
4245
|
+
- rum_ingested_usage
|
4246
|
+
- rum_investigate_usage
|
4231
4247
|
- rum_replay_sessions_usage
|
4248
|
+
- rum_session_replay_add_on_usage
|
4232
4249
|
- sca_fargate_usage
|
4233
4250
|
- sds_scanned_bytes_usage
|
4234
4251
|
- serverless_apps_usage
|
@@ -4281,6 +4298,7 @@ components:
|
|
4281
4298
|
- INGESTED_SPANS_BYTES_USAGE
|
4282
4299
|
- INVOCATIONS_USAGE
|
4283
4300
|
- LAMBDA_TRACED_INVOCATIONS_USAGE
|
4301
|
+
- LLM_OBSERVABILITY_USAGE
|
4284
4302
|
- LOGS_INDEXED_15DAY_USAGE
|
4285
4303
|
- LOGS_INDEXED_180DAY_USAGE
|
4286
4304
|
- LOGS_INDEXED_1DAY_USAGE
|
@@ -4294,15 +4312,21 @@ components:
|
|
4294
4312
|
- LOGS_INDEXED_CUSTOM_RETENTION_USAGE
|
4295
4313
|
- MOBILE_APP_TESTING_USAGE
|
4296
4314
|
- NDM_NETFLOW_USAGE
|
4315
|
+
- NETWORK_DEVICE_WIRELESS_USAGE
|
4297
4316
|
- NPM_HOST_USAGE
|
4298
4317
|
- OBS_PIPELINE_BYTES_USAGE
|
4299
4318
|
- OBS_PIPELINE_VCPU_USAGE
|
4300
4319
|
- ONLINE_ARCHIVE_USAGE
|
4320
|
+
- PRODUCT_ANALYTICS_SESSION_USAGE
|
4301
4321
|
- PROFILED_CONTAINER_USAGE
|
4302
4322
|
- PROFILED_FARGATE_USAGE
|
4303
4323
|
- PROFILED_HOST_USAGE
|
4324
|
+
- PUBLISHED_APP_USAGE
|
4304
4325
|
- RUM_BROWSER_MOBILE_SESSIONS_USAGE
|
4326
|
+
- RUM_INGESTED_USAGE
|
4327
|
+
- RUM_INVESTIGATE_USAGE
|
4305
4328
|
- RUM_REPLAY_SESSIONS_USAGE
|
4329
|
+
- RUM_SESSION_REPLAY_ADD_ON_USAGE
|
4306
4330
|
- SCA_FARGATE_USAGE
|
4307
4331
|
- SDS_SCANNED_BYTES_USAGE
|
4308
4332
|
- SERVERLESS_APPS_USAGE
|
@@ -5156,6 +5180,143 @@ components:
|
|
5156
5180
|
type: string
|
5157
5181
|
x-enum-varnames:
|
5158
5182
|
- ARITHMETIC_PROCESSOR
|
5183
|
+
LogsArrayProcessor:
|
5184
|
+
description: 'A processor for extracting, aggregating, or transforming values
|
5185
|
+
from JSON arrays within your logs.
|
5186
|
+
|
5187
|
+
Supported operations are:
|
5188
|
+
|
5189
|
+
- Select value from matching element
|
5190
|
+
|
5191
|
+
- Compute array length
|
5192
|
+
|
5193
|
+
- Append a value to an array'
|
5194
|
+
properties:
|
5195
|
+
is_enabled:
|
5196
|
+
default: false
|
5197
|
+
description: Whether or not the processor is enabled.
|
5198
|
+
type: boolean
|
5199
|
+
name:
|
5200
|
+
description: Name of the processor.
|
5201
|
+
type: string
|
5202
|
+
operation:
|
5203
|
+
$ref: '#/components/schemas/LogsArrayProcessorOperation'
|
5204
|
+
type:
|
5205
|
+
$ref: '#/components/schemas/LogsArrayProcessorType'
|
5206
|
+
required:
|
5207
|
+
- operation
|
5208
|
+
- type
|
5209
|
+
type: object
|
5210
|
+
LogsArrayProcessorOperation:
|
5211
|
+
description: Configuration of the array processor operation to perform.
|
5212
|
+
oneOf:
|
5213
|
+
- $ref: '#/components/schemas/LogsArrayProcessorOperationAppend'
|
5214
|
+
- $ref: '#/components/schemas/LogsArrayProcessorOperationLength'
|
5215
|
+
- $ref: '#/components/schemas/LogsArrayProcessorOperationSelect'
|
5216
|
+
LogsArrayProcessorOperationAppend:
|
5217
|
+
description: Operation that appends a value to a target array attribute.
|
5218
|
+
properties:
|
5219
|
+
preserve_source:
|
5220
|
+
default: true
|
5221
|
+
description: Remove or preserve the remapped source element.
|
5222
|
+
type: boolean
|
5223
|
+
source:
|
5224
|
+
description: Attribute path containing the value to append.
|
5225
|
+
example: network.client.ip
|
5226
|
+
type: string
|
5227
|
+
target:
|
5228
|
+
description: Attribute path of the array to append to.
|
5229
|
+
example: sourceIps
|
5230
|
+
type: string
|
5231
|
+
type:
|
5232
|
+
$ref: '#/components/schemas/LogsArrayProcessorOperationAppendType'
|
5233
|
+
required:
|
5234
|
+
- type
|
5235
|
+
- source
|
5236
|
+
- target
|
5237
|
+
type: object
|
5238
|
+
LogsArrayProcessorOperationAppendType:
|
5239
|
+
description: Operation type.
|
5240
|
+
enum:
|
5241
|
+
- append
|
5242
|
+
example: append
|
5243
|
+
type: string
|
5244
|
+
x-enum-varnames:
|
5245
|
+
- APPEND
|
5246
|
+
LogsArrayProcessorOperationLength:
|
5247
|
+
description: Operation that computes the length of a `source` array and stores
|
5248
|
+
the result in the `target` attribute.
|
5249
|
+
properties:
|
5250
|
+
source:
|
5251
|
+
description: Attribute path of the array to measure.
|
5252
|
+
example: tags
|
5253
|
+
type: string
|
5254
|
+
target:
|
5255
|
+
description: Attribute that receives the computed length.
|
5256
|
+
example: tagCount
|
5257
|
+
type: string
|
5258
|
+
type:
|
5259
|
+
$ref: '#/components/schemas/LogsArrayProcessorOperationLengthType'
|
5260
|
+
required:
|
5261
|
+
- type
|
5262
|
+
- source
|
5263
|
+
- target
|
5264
|
+
type: object
|
5265
|
+
LogsArrayProcessorOperationLengthType:
|
5266
|
+
description: Operation type.
|
5267
|
+
enum:
|
5268
|
+
- length
|
5269
|
+
example: length
|
5270
|
+
type: string
|
5271
|
+
x-enum-varnames:
|
5272
|
+
- LENGTH
|
5273
|
+
LogsArrayProcessorOperationSelect:
|
5274
|
+
description: Operation that finds an object in a `source` array using a `filter`,
|
5275
|
+
and then extracts a specific value into the `target` attribute.
|
5276
|
+
properties:
|
5277
|
+
filter:
|
5278
|
+
description: Filter condition expressed as `key:value` used to find the
|
5279
|
+
matching element.
|
5280
|
+
example: name:Referrer
|
5281
|
+
type: string
|
5282
|
+
source:
|
5283
|
+
description: Attribute path of the array to search into.
|
5284
|
+
example: httpRequest.headers
|
5285
|
+
type: string
|
5286
|
+
target:
|
5287
|
+
description: Attribute that receives the extracted value.
|
5288
|
+
example: referrer
|
5289
|
+
type: string
|
5290
|
+
type:
|
5291
|
+
$ref: '#/components/schemas/LogsArrayProcessorOperationSelectType'
|
5292
|
+
value_to_extract:
|
5293
|
+
description: Key of the value to extract from the matching element.
|
5294
|
+
example: value
|
5295
|
+
type: string
|
5296
|
+
required:
|
5297
|
+
- type
|
5298
|
+
- source
|
5299
|
+
- target
|
5300
|
+
- filter
|
5301
|
+
- value_to_extract
|
5302
|
+
type: object
|
5303
|
+
LogsArrayProcessorOperationSelectType:
|
5304
|
+
description: Operation type.
|
5305
|
+
enum:
|
5306
|
+
- select
|
5307
|
+
example: select
|
5308
|
+
type: string
|
5309
|
+
x-enum-varnames:
|
5310
|
+
- SELECT
|
5311
|
+
LogsArrayProcessorType:
|
5312
|
+
default: array-processor
|
5313
|
+
description: Type of logs array processor.
|
5314
|
+
enum:
|
5315
|
+
- array-processor
|
5316
|
+
example: array-processor
|
5317
|
+
type: string
|
5318
|
+
x-enum-varnames:
|
5319
|
+
- ARRAY_PROCESSOR
|
5159
5320
|
LogsAttributeRemapper:
|
5160
5321
|
description: 'The remapper processor remaps any source attribute(s) or tag to
|
5161
5322
|
another target attribute or tag.
|
@@ -6053,6 +6214,7 @@ components:
|
|
6053
6214
|
- $ref: '#/components/schemas/ReferenceTableLogsLookupProcessor'
|
6054
6215
|
- $ref: '#/components/schemas/LogsTraceRemapper'
|
6055
6216
|
- $ref: '#/components/schemas/LogsSpanRemapper'
|
6217
|
+
- $ref: '#/components/schemas/LogsArrayProcessor'
|
6056
6218
|
LogsQueryCompute:
|
6057
6219
|
description: Define computation for a log query.
|
6058
6220
|
properties:
|
@@ -8129,10 +8291,14 @@ components:
|
|
8129
8291
|
- invocations_percentage
|
8130
8292
|
- lambda_traced_invocations_usage
|
8131
8293
|
- lambda_traced_invocations_percentage
|
8294
|
+
- llm_observability_usage
|
8295
|
+
- llm_observability_percentage
|
8132
8296
|
- mobile_app_testing_percentage
|
8133
8297
|
- mobile_app_testing_usage
|
8134
8298
|
- ndm_netflow_usage
|
8135
8299
|
- ndm_netflow_percentage
|
8300
|
+
- network_device_wireless_usage
|
8301
|
+
- network_device_wireless_percentage
|
8136
8302
|
- npm_host_usage
|
8137
8303
|
- npm_host_percentage
|
8138
8304
|
- obs_pipeline_bytes_usage
|
@@ -8141,12 +8307,16 @@ components:
|
|
8141
8307
|
- obs_pipelines_vcpu_percentage
|
8142
8308
|
- online_archive_usage
|
8143
8309
|
- online_archive_percentage
|
8310
|
+
- product_analytics_session_usage
|
8311
|
+
- product_analytics_session_percentage
|
8144
8312
|
- profiled_container_usage
|
8145
8313
|
- profiled_container_percentage
|
8146
8314
|
- profiled_fargate_usage
|
8147
8315
|
- profiled_fargate_percentage
|
8148
8316
|
- profiled_host_usage
|
8149
8317
|
- profiled_host_percentage
|
8318
|
+
- published_app_usage
|
8319
|
+
- published_app_percentage
|
8150
8320
|
- serverless_apps_usage
|
8151
8321
|
- serverless_apps_percentage
|
8152
8322
|
- snmp_usage
|
@@ -8189,8 +8359,14 @@ components:
|
|
8189
8359
|
- logs_indexed_3day_percentage
|
8190
8360
|
- logs_indexed_1day_usage
|
8191
8361
|
- logs_indexed_1day_percentage
|
8362
|
+
- rum_ingested_usage
|
8363
|
+
- rum_ingested_percentage
|
8364
|
+
- rum_investigate_usage
|
8365
|
+
- rum_investigate_percentage
|
8192
8366
|
- rum_replay_sessions_usage
|
8193
8367
|
- rum_replay_sessions_percentage
|
8368
|
+
- rum_session_replay_add_on_usage
|
8369
|
+
- rum_session_replay_add_on_percentage
|
8194
8370
|
- rum_browser_mobile_sessions_usage
|
8195
8371
|
- rum_browser_mobile_sessions_percentage
|
8196
8372
|
- ingested_spans_bytes_usage
|
@@ -8272,10 +8448,14 @@ components:
|
|
8272
8448
|
- INVOCATIONS_PERCENTAGE
|
8273
8449
|
- LAMBDA_TRACED_INVOCATIONS_USAGE
|
8274
8450
|
- LAMBDA_TRACED_INVOCATIONS_PERCENTAGE
|
8451
|
+
- LLM_OBSERVABILITY_USAGE
|
8452
|
+
- LLM_OBSERVABILITY_PERCENTAGE
|
8275
8453
|
- MOBILE_APP_TESTING_USAGE
|
8276
8454
|
- MOBILE_APP_TESTING_PERCENTAGE
|
8277
8455
|
- NDM_NETFLOW_USAGE
|
8278
8456
|
- NDM_NETFLOW_PERCENTAGE
|
8457
|
+
- NETWORK_DEVICE_WIRELESS_USAGE
|
8458
|
+
- NETWORK_DEVICE_WIRELESS_PERCENTAGE
|
8279
8459
|
- NPM_HOST_USAGE
|
8280
8460
|
- NPM_HOST_PERCENTAGE
|
8281
8461
|
- OBS_PIPELINE_BYTES_USAGE
|
@@ -8284,12 +8464,16 @@ components:
|
|
8284
8464
|
- OBS_PIPELINES_VCPU_PERCENTAGE
|
8285
8465
|
- ONLINE_ARCHIVE_USAGE
|
8286
8466
|
- ONLINE_ARCHIVE_PERCENTAGE
|
8467
|
+
- PRODUCT_ANALYTICS_SESSION_USAGE
|
8468
|
+
- PRODUCT_ANALYTICS_SESSION_PERCENTAGE
|
8287
8469
|
- PROFILED_CONTAINER_USAGE
|
8288
8470
|
- PROFILED_CONTAINER_PERCENTAGE
|
8289
8471
|
- PROFILED_FARGATE_USAGE
|
8290
8472
|
- PROFILED_FARGATE_PERCENTAGE
|
8291
8473
|
- PROFILED_HOST_USAGE
|
8292
8474
|
- PROFILED_HOST_PERCENTAGE
|
8475
|
+
- PUBLISHED_APP_USAGE
|
8476
|
+
- PUBLISHED_APP_PERCENTAGE
|
8293
8477
|
- SERVERLESS_APPS_USAGE
|
8294
8478
|
- SERVERLESS_APPS_PERCENTAGE
|
8295
8479
|
- SNMP_USAGE
|
@@ -8332,8 +8516,14 @@ components:
|
|
8332
8516
|
- LOGS_INDEXED_3DAY_PERCENTAGE
|
8333
8517
|
- LOGS_INDEXED_1DAY_USAGE
|
8334
8518
|
- LOGS_INDEXED_1DAY_PERCENTAGE
|
8519
|
+
- RUM_INGESTED_USAGE
|
8520
|
+
- RUM_INGESTED_PERCENTAGE
|
8521
|
+
- RUM_INVESTIGATE_USAGE
|
8522
|
+
- RUM_INVESTIGATE_PERCENTAGE
|
8335
8523
|
- RUM_REPLAY_SESSIONS_USAGE
|
8336
8524
|
- RUM_REPLAY_SESSIONS_PERCENTAGE
|
8525
|
+
- RUM_SESSION_REPLAY_ADD_ON_USAGE
|
8526
|
+
- RUM_SESSION_REPLAY_ADD_ON_PERCENTAGE
|
8337
8527
|
- RUM_BROWSER_MOBILE_SESSIONS_USAGE
|
8338
8528
|
- RUM_BROWSER_MOBILE_SESSIONS_PERCENTAGE
|
8339
8529
|
- INGESTED_SPANS_BYTES_USAGE
|
@@ -8348,7 +8538,10 @@ components:
|
|
8348
8538
|
- SCA_FARGATE_PERCENTAGE
|
8349
8539
|
- ALL
|
8350
8540
|
MonthlyUsageAttributionValues:
|
8351
|
-
description: Fields in Usage Summary by tag(s).
|
8541
|
+
description: 'Fields in Usage Summary by tag(s).
|
8542
|
+
|
8543
|
+
The following values have been **deprecated**: `estimated_indexed_spans_usage`,
|
8544
|
+
`estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`.'
|
8352
8545
|
properties:
|
8353
8546
|
api_percentage:
|
8354
8547
|
description: The percentage of synthetic API test usage by tag(s).
|
@@ -8669,6 +8862,14 @@ components:
|
|
8669
8862
|
description: The Serverless APM usage by tag(s).
|
8670
8863
|
format: double
|
8671
8864
|
type: number
|
8865
|
+
llm_observability_percentage:
|
8866
|
+
description: The percentage of LLM Observability usage by tag(s).
|
8867
|
+
format: double
|
8868
|
+
type: number
|
8869
|
+
llm_observability_usage:
|
8870
|
+
description: The LLM Observability usage by tag(s).
|
8871
|
+
format: double
|
8872
|
+
type: number
|
8672
8873
|
logs_indexed_15day_percentage:
|
8673
8874
|
description: The percentage of Indexed Logs (15-day Retention) usage by
|
8674
8875
|
tag(s).
|
@@ -8783,6 +8984,14 @@ components:
|
|
8783
8984
|
description: The Network Device Monitoring NetFlow usage by tag(s).
|
8784
8985
|
format: double
|
8785
8986
|
type: number
|
8987
|
+
network_device_wireless_percentage:
|
8988
|
+
description: The percentage of network device wireless usage by tag(s).
|
8989
|
+
format: double
|
8990
|
+
type: number
|
8991
|
+
network_device_wireless_usage:
|
8992
|
+
description: The network device wireless usage by tag(s).
|
8993
|
+
format: double
|
8994
|
+
type: number
|
8786
8995
|
npm_host_percentage:
|
8787
8996
|
description: The percentage of network host usage by tag(s).
|
8788
8997
|
format: double
|
@@ -8816,6 +9025,14 @@ components:
|
|
8816
9025
|
description: The online archive usage by tag(s).
|
8817
9026
|
format: double
|
8818
9027
|
type: number
|
9028
|
+
product_analytics_session_percentage:
|
9029
|
+
description: The percentage of Product Analytics session usage by tag(s).
|
9030
|
+
format: double
|
9031
|
+
type: number
|
9032
|
+
product_analytics_session_usage:
|
9033
|
+
description: The Product Analytics session usage by tag(s).
|
9034
|
+
format: double
|
9035
|
+
type: number
|
8819
9036
|
profiled_container_percentage:
|
8820
9037
|
description: The percentage of profiled container usage by tag(s).
|
8821
9038
|
format: double
|
@@ -8840,6 +9057,14 @@ components:
|
|
8840
9057
|
description: The profiled hosts usage by tag(s).
|
8841
9058
|
format: double
|
8842
9059
|
type: number
|
9060
|
+
published_app_percentage:
|
9061
|
+
description: The percentage of published application usage by tag(s).
|
9062
|
+
format: double
|
9063
|
+
type: number
|
9064
|
+
published_app_usage:
|
9065
|
+
description: The published application usage by tag(s).
|
9066
|
+
format: double
|
9067
|
+
type: number
|
8843
9068
|
rum_browser_mobile_sessions_percentage:
|
8844
9069
|
description: The percentage of RUM Browser and Mobile usage by tag(s).
|
8845
9070
|
format: double
|
@@ -8848,6 +9073,22 @@ components:
|
|
8848
9073
|
description: The total RUM Browser and Mobile usage by tag(s).
|
8849
9074
|
format: double
|
8850
9075
|
type: number
|
9076
|
+
rum_ingested_percentage:
|
9077
|
+
description: The percentage of RUM Ingested usage by tag(s).
|
9078
|
+
format: double
|
9079
|
+
type: number
|
9080
|
+
rum_ingested_usage:
|
9081
|
+
description: The total RUM Ingested usage by tag(s).
|
9082
|
+
format: double
|
9083
|
+
type: number
|
9084
|
+
rum_investigate_percentage:
|
9085
|
+
description: The percentage of RUM Investigate usage by tag(s).
|
9086
|
+
format: double
|
9087
|
+
type: number
|
9088
|
+
rum_investigate_usage:
|
9089
|
+
description: The total RUM Investigate usage by tag(s).
|
9090
|
+
format: double
|
9091
|
+
type: number
|
8851
9092
|
rum_replay_sessions_percentage:
|
8852
9093
|
description: The percentage of RUM Session Replay usage by tag(s).
|
8853
9094
|
format: double
|
@@ -8856,6 +9097,14 @@ components:
|
|
8856
9097
|
description: The total RUM Session Replay usage by tag(s).
|
8857
9098
|
format: double
|
8858
9099
|
type: number
|
9100
|
+
rum_session_replay_add_on_percentage:
|
9101
|
+
description: The percentage of RUM Session Replay Add-On usage by tag(s).
|
9102
|
+
format: double
|
9103
|
+
type: number
|
9104
|
+
rum_session_replay_add_on_usage:
|
9105
|
+
description: The total RUM Session Replay Add-On usage by tag(s).
|
9106
|
+
format: double
|
9107
|
+
type: number
|
8859
9108
|
sca_fargate_percentage:
|
8860
9109
|
description: The percentage of Software Composition Analysis Fargate task
|
8861
9110
|
usage by tag(s).
|
@@ -10965,19 +11214,24 @@ components:
|
|
10965
11214
|
example: {}
|
10966
11215
|
properties:
|
10967
11216
|
aggr:
|
11217
|
+
deprecated: true
|
10968
11218
|
description: Query aggregator function.
|
10969
11219
|
type: string
|
10970
11220
|
expression:
|
11221
|
+
deprecated: true
|
10971
11222
|
description: Query expression.
|
10972
11223
|
type: string
|
10973
11224
|
metric:
|
11225
|
+
deprecated: true
|
10974
11226
|
description: Query metric used.
|
10975
11227
|
type: string
|
10976
11228
|
query_index:
|
11229
|
+
deprecated: true
|
10977
11230
|
description: Query index from original combined query.
|
10978
11231
|
format: int64
|
10979
11232
|
type: integer
|
10980
11233
|
scope:
|
11234
|
+
deprecated: true
|
10981
11235
|
description: Query scope.
|
10982
11236
|
type: string
|
10983
11237
|
unit:
|
@@ -12573,6 +12827,12 @@ components:
|
|
12573
12827
|
prefix:
|
12574
12828
|
description: The tag/attribute key associated with the template variable.
|
12575
12829
|
type: string
|
12830
|
+
type:
|
12831
|
+
description: The type of variable. This is to differentiate between filter
|
12832
|
+
variables (interpolated in query) and group by variables (interpolated
|
12833
|
+
into group by).
|
12834
|
+
nullable: true
|
12835
|
+
type: string
|
12576
12836
|
visible_tags:
|
12577
12837
|
description: List of visible tag values on the shared dashboard.
|
12578
12838
|
items:
|
@@ -16168,6 +16428,7 @@ components:
|
|
16168
16428
|
- name
|
16169
16429
|
- options
|
16170
16430
|
- type
|
16431
|
+
- message
|
16171
16432
|
type: object
|
16172
16433
|
SyntheticsMobileTestConfig:
|
16173
16434
|
description: Configuration object for a Synthetic mobile test.
|
@@ -16716,6 +16977,7 @@ components:
|
|
16716
16977
|
- assertRequests
|
16717
16978
|
- click
|
16718
16979
|
- extractFromJavascript
|
16980
|
+
- extractFromEmailBody
|
16719
16981
|
- extractVariable
|
16720
16982
|
- goToEmailLink
|
16721
16983
|
- goToUrl
|
@@ -16745,6 +17007,7 @@ components:
|
|
16745
17007
|
- ASSERT_REQUESTS
|
16746
17008
|
- CLICK
|
16747
17009
|
- EXTRACT_FROM_JAVASCRIPT
|
17010
|
+
- EXTRACT_FROM_EMAIL_BODY
|
16748
17011
|
- EXTRACT_VARIABLE
|
16749
17012
|
- GO_TO_EMAIL_LINK
|
16750
17013
|
- GO_TO_URL
|
@@ -17201,8 +17464,8 @@ components:
|
|
17201
17464
|
description: DNS server to use for DNS tests.
|
17202
17465
|
type: string
|
17203
17466
|
dnsServerPort:
|
17467
|
+
$ref: '#/components/schemas/SyntheticsTestRequestDNSServerPort'
|
17204
17468
|
description: DNS server port to use for DNS tests.
|
17205
|
-
type: string
|
17206
17469
|
files:
|
17207
17470
|
description: Files to be used as part of the request in the test. Only valid
|
17208
17471
|
if `bodyType` is `multipart/form-data`.
|
@@ -17356,6 +17619,15 @@ components:
|
|
17356
17619
|
description: Date of update of the certificate or key, ISO format.
|
17357
17620
|
type: string
|
17358
17621
|
type: object
|
17622
|
+
SyntheticsTestRequestDNSServerPort:
|
17623
|
+
description: DNS server port to use for DNS tests.
|
17624
|
+
oneOf:
|
17625
|
+
- $ref: '#/components/schemas/SyntheticsTestRequestNumericalDNSServerPort'
|
17626
|
+
- $ref: '#/components/schemas/SyntheticsTestRequestVariableDNSServerPort'
|
17627
|
+
SyntheticsTestRequestNumericalDNSServerPort:
|
17628
|
+
description: Integer DNS server port number to use when performing the test.
|
17629
|
+
format: int64
|
17630
|
+
type: integer
|
17359
17631
|
SyntheticsTestRequestNumericalPort:
|
17360
17632
|
description: Integer Port number to use when performing the test.
|
17361
17633
|
format: int64
|
@@ -17377,6 +17649,10 @@ components:
|
|
17377
17649
|
required:
|
17378
17650
|
- url
|
17379
17651
|
type: object
|
17652
|
+
SyntheticsTestRequestVariableDNSServerPort:
|
17653
|
+
description: String DNS server port number to use when performing the test.
|
17654
|
+
Supports templated variables.
|
17655
|
+
type: string
|
17380
17656
|
SyntheticsTestRequestVariablePort:
|
17381
17657
|
description: String Port number to use when performing the test. Supports templated
|
17382
17658
|
variables.
|
@@ -20515,6 +20791,16 @@ components:
|
|
20515
20791
|
in the current date all organizations.
|
20516
20792
|
format: int64
|
20517
20793
|
type: integer
|
20794
|
+
llm_observability_min_spend_sum:
|
20795
|
+
description: Sum of all LLM observability minimum spend over all hours in
|
20796
|
+
the current date for all organizations.
|
20797
|
+
format: int64
|
20798
|
+
type: integer
|
20799
|
+
llm_observability_sum:
|
20800
|
+
description: Sum of all LLM observability sessions over all hours in the
|
20801
|
+
current date for all organizations.
|
20802
|
+
format: int64
|
20803
|
+
type: integer
|
20518
20804
|
mobile_rum_lite_session_count_sum:
|
20519
20805
|
deprecated: true
|
20520
20806
|
description: Shows the sum of all mobile lite sessions over all hours in
|
@@ -20582,6 +20868,11 @@ components:
|
|
20582
20868
|
2024).
|
20583
20869
|
format: int64
|
20584
20870
|
type: integer
|
20871
|
+
network_device_wireless_top99p:
|
20872
|
+
description: Shows the 99th percentile of all Network Device Monitoring
|
20873
|
+
wireless devices over all hours in the current date for all organizations.
|
20874
|
+
format: int64
|
20875
|
+
type: integer
|
20585
20876
|
npm_host_top99p:
|
20586
20877
|
description: Shows the 99th percentile of all distinct Cloud Network Monitoring
|
20587
20878
|
hosts (formerly known as Network hosts) over all hours in the current
|
@@ -20625,6 +20916,11 @@ components:
|
|
20625
20916
|
items:
|
20626
20917
|
$ref: '#/components/schemas/UsageSummaryDateOrg'
|
20627
20918
|
type: array
|
20919
|
+
product_analytics_sum:
|
20920
|
+
description: Sum of all product analytics sessions over all hours in the
|
20921
|
+
current date for all organizations.
|
20922
|
+
format: int64
|
20923
|
+
type: integer
|
20628
20924
|
profiling_aas_count_top99p:
|
20629
20925
|
description: Shows the 99th percentile of all profiled Azure app services
|
20630
20926
|
over all hours in the current date for all organizations.
|
@@ -20635,6 +20931,11 @@ components:
|
|
20635
20931
|
within the current date for all organizations.
|
20636
20932
|
format: int64
|
20637
20933
|
type: integer
|
20934
|
+
published_app_hwm:
|
20935
|
+
description: Shows the high-water mark of all published applications over
|
20936
|
+
all hours in the current date for all organizations.
|
20937
|
+
format: int64
|
20938
|
+
type: integer
|
20638
20939
|
rum_browser_and_mobile_session_count:
|
20639
20940
|
description: Shows the sum of all mobile sessions and all browser lite and
|
20640
20941
|
legacy sessions over all hours in the current month for all organizations
|
@@ -20659,6 +20960,16 @@ components:
|
|
20659
20960
|
on October 1st, 2024).
|
20660
20961
|
format: int64
|
20661
20962
|
type: integer
|
20963
|
+
rum_indexed_sessions_sum:
|
20964
|
+
description: Sum of all RUM indexed sessions over all hours in the current
|
20965
|
+
date for all organizations.
|
20966
|
+
format: int64
|
20967
|
+
type: integer
|
20968
|
+
rum_ingested_sessions_sum:
|
20969
|
+
description: Sum of all RUM ingested sessions over all hours in the current
|
20970
|
+
date for all organizations.
|
20971
|
+
format: int64
|
20972
|
+
type: integer
|
20662
20973
|
rum_lite_session_count_sum:
|
20663
20974
|
description: Shows the sum of all RUM lite sessions (browser and mobile)
|
20664
20975
|
over all hours in the current date for all organizations (To be introduced
|
@@ -20768,6 +21079,11 @@ components:
|
|
20768
21079
|
1st, 2024).
|
20769
21080
|
format: int64
|
20770
21081
|
type: integer
|
21082
|
+
rum_session_replay_add_on_sum:
|
21083
|
+
description: Sum of all RUM session replay add-on sessions over all hours
|
21084
|
+
in the current date for all organizations.
|
21085
|
+
format: int64
|
21086
|
+
type: integer
|
20771
21087
|
rum_total_session_count_sum:
|
20772
21088
|
description: Shows the sum of RUM sessions (browser and mobile) over all
|
20773
21089
|
hours in the current date for all organizations.
|
@@ -21408,6 +21724,16 @@ components:
|
|
21408
21724
|
in the current date for the given org.
|
21409
21725
|
format: int64
|
21410
21726
|
type: integer
|
21727
|
+
llm_observability_min_spend_sum:
|
21728
|
+
description: Shows the sum of all LLM Observability minimum spend over all
|
21729
|
+
hours in the current date for the given org.
|
21730
|
+
format: int64
|
21731
|
+
type: integer
|
21732
|
+
llm_observability_sum:
|
21733
|
+
description: Shows the sum of all LLM observability sessions over all hours
|
21734
|
+
in the current date for the given org.
|
21735
|
+
format: int64
|
21736
|
+
type: integer
|
21411
21737
|
mobile_rum_lite_session_count_sum:
|
21412
21738
|
deprecated: true
|
21413
21739
|
description: Shows the sum of all mobile lite sessions over all hours in
|
@@ -21475,6 +21801,11 @@ components:
|
|
21475
21801
|
the current date for the given org (To be deprecated on October 1st, 2024).
|
21476
21802
|
format: int64
|
21477
21803
|
type: integer
|
21804
|
+
network_device_wireless_top99p:
|
21805
|
+
description: Shows the 99th percentile of all Network Device Monitoring
|
21806
|
+
wireless devices over all hours in the current date for the given org.
|
21807
|
+
format: int64
|
21808
|
+
type: integer
|
21478
21809
|
npm_host_top99p:
|
21479
21810
|
description: Shows the 99th percentile of all distinct Cloud Network Monitoring
|
21480
21811
|
hosts (formerly known as Network hosts) over all hours in the current
|
@@ -21513,6 +21844,11 @@ components:
|
|
21513
21844
|
date for the given org.
|
21514
21845
|
format: int64
|
21515
21846
|
type: integer
|
21847
|
+
product_analytics_sum:
|
21848
|
+
description: Shows the sum of all product analytics sessions over all hours
|
21849
|
+
in the current date for the given org.
|
21850
|
+
format: int64
|
21851
|
+
type: integer
|
21516
21852
|
profiling_aas_count_top99p:
|
21517
21853
|
description: Shows the 99th percentile of all profiled Azure app services
|
21518
21854
|
over all hours in the current date for all organizations.
|
@@ -21526,6 +21862,11 @@ components:
|
|
21526
21862
|
public_id:
|
21527
21863
|
description: The organization public id.
|
21528
21864
|
type: string
|
21865
|
+
published_app_hwm:
|
21866
|
+
description: Shows the high-water mark of all published applications over
|
21867
|
+
all hours in the current date for the given org.
|
21868
|
+
format: int64
|
21869
|
+
type: integer
|
21529
21870
|
region:
|
21530
21871
|
description: The region of the organization.
|
21531
21872
|
type: string
|
@@ -21553,6 +21894,16 @@ components:
|
|
21553
21894
|
1st, 2024).
|
21554
21895
|
format: int64
|
21555
21896
|
type: integer
|
21897
|
+
rum_indexed_sessions_sum:
|
21898
|
+
description: Shows the sum of all RUM indexed sessions over all hours in
|
21899
|
+
the current date for the given org.
|
21900
|
+
format: int64
|
21901
|
+
type: integer
|
21902
|
+
rum_ingested_sessions_sum:
|
21903
|
+
description: Shows the sum of all RUM ingested sessions over all hours in
|
21904
|
+
the current date for the given org.
|
21905
|
+
format: int64
|
21906
|
+
type: integer
|
21556
21907
|
rum_lite_session_count_sum:
|
21557
21908
|
description: Shows the sum of all RUM lite sessions (browser and mobile)
|
21558
21909
|
over all hours in the current date for the given org (To be introduced
|
@@ -21662,6 +22013,11 @@ components:
|
|
21662
22013
|
2024).
|
21663
22014
|
format: int64
|
21664
22015
|
type: integer
|
22016
|
+
rum_session_replay_add_on_sum:
|
22017
|
+
description: Shows the sum of all RUM session replay add-on sessions over
|
22018
|
+
all hours in the current date for the given org.
|
22019
|
+
format: int64
|
22020
|
+
type: integer
|
21665
22021
|
rum_total_session_count_sum:
|
21666
22022
|
description: Shows the sum of RUM sessions (browser and mobile) over all
|
21667
22023
|
hours in the current date for the given org.
|
@@ -22319,6 +22675,16 @@ components:
|
|
22319
22675
|
1, 2020).
|
22320
22676
|
format: int64
|
22321
22677
|
type: integer
|
22678
|
+
llm_observability_agg_sum:
|
22679
|
+
description: Sum of all LLM observability sessions for all hours in the
|
22680
|
+
current month for all organizations.
|
22681
|
+
format: int64
|
22682
|
+
type: integer
|
22683
|
+
llm_observability_min_spend_agg_sum:
|
22684
|
+
description: Minimum spend for LLM observability sessions for all hours
|
22685
|
+
in the current month for all organizations.
|
22686
|
+
format: int64
|
22687
|
+
type: integer
|
22322
22688
|
logs_by_retention:
|
22323
22689
|
$ref: '#/components/schemas/LogsByRetention'
|
22324
22690
|
mobile_rum_lite_session_count_agg_sum:
|
@@ -22389,6 +22755,11 @@ components:
|
|
22389
22755
|
2024).
|
22390
22756
|
format: int64
|
22391
22757
|
type: integer
|
22758
|
+
network_device_wireless_top99p_sum:
|
22759
|
+
description: Shows the 99th percentile of all Network Device Monitoring
|
22760
|
+
wireless devices over all hours in the current month for all organizations.
|
22761
|
+
format: int64
|
22762
|
+
type: integer
|
22392
22763
|
npm_host_top99p_sum:
|
22393
22764
|
description: Shows the 99th percentile of all distinct Cloud Network Monitoring
|
22394
22765
|
hosts (formerly known as Network hosts) over all hours in the current
|
@@ -22427,6 +22798,11 @@ components:
|
|
22427
22798
|
month for all organizations.
|
22428
22799
|
format: int64
|
22429
22800
|
type: integer
|
22801
|
+
product_analytics_agg_sum:
|
22802
|
+
description: Sum of all product analytics sessions for all hours in the
|
22803
|
+
current month for all organizations.
|
22804
|
+
format: int64
|
22805
|
+
type: integer
|
22430
22806
|
profiling_aas_count_top99p_sum:
|
22431
22807
|
description: Shows the 99th percentile of all profiled Azure app services
|
22432
22808
|
over all hours in the current month for all organizations.
|
@@ -22442,6 +22818,11 @@ components:
|
|
22442
22818
|
in the current month for all organizations.
|
22443
22819
|
format: int64
|
22444
22820
|
type: integer
|
22821
|
+
published_app_hwm_sum:
|
22822
|
+
description: Shows the high-water mark of all published applications over
|
22823
|
+
all hours in the current month for all organizations.
|
22824
|
+
format: int64
|
22825
|
+
type: integer
|
22445
22826
|
rehydrated_indexed_events_agg_sum:
|
22446
22827
|
deprecated: true
|
22447
22828
|
description: Shows the sum of all rehydrated logs indexed over all hours
|
@@ -22479,6 +22860,16 @@ components:
|
|
22479
22860
|
on October 1st, 2024).
|
22480
22861
|
format: int64
|
22481
22862
|
type: integer
|
22863
|
+
rum_indexed_sessions_agg_sum:
|
22864
|
+
description: Sum of all RUM indexed sessions for all hours in the current
|
22865
|
+
month for all organizations.
|
22866
|
+
format: int64
|
22867
|
+
type: integer
|
22868
|
+
rum_ingested_sessions_agg_sum:
|
22869
|
+
description: Sum of all RUM ingested sessions for all hours in the current
|
22870
|
+
month for all organizations.
|
22871
|
+
format: int64
|
22872
|
+
type: integer
|
22482
22873
|
rum_lite_session_count_agg_sum:
|
22483
22874
|
description: Shows the sum of all RUM lite sessions (browser and mobile)
|
22484
22875
|
over all hours in the current month for all organizations (To be introduced
|
@@ -22588,6 +22979,11 @@ components:
|
|
22588
22979
|
1st, 2024).
|
22589
22980
|
format: int64
|
22590
22981
|
type: integer
|
22982
|
+
rum_session_replay_add_on_agg_sum:
|
22983
|
+
description: Sum of all RUM session replay add-on sessions for all hours
|
22984
|
+
in the current month for all organizations.
|
22985
|
+
format: int64
|
22986
|
+
type: integer
|
22591
22987
|
rum_total_session_count_agg_sum:
|
22592
22988
|
description: Shows the sum of RUM sessions (browser and mobile) over all
|
22593
22989
|
hours in the current month for all organizations.
|
@@ -26617,7 +27013,10 @@ paths:
|
|
26617
27013
|
|
26618
27014
|
Retention is 7 days.
|
26619
27015
|
|
26620
|
-
Results are paginated with a max of 1000 results at a time.
|
27016
|
+
Results are paginated with a max of 1000 results at a time.
|
27017
|
+
|
27018
|
+
**Note:** If the host is an Amazon EC2 instance, `id` is replaced with `aws_id`
|
27019
|
+
in the response.'
|
26621
27020
|
operationId: ListHosts
|
26622
27021
|
parameters:
|
26623
27022
|
- description: String to filter search results.
|
@@ -33390,6 +33789,86 @@ paths:
|
|
33390
33789
|
operator: OR
|
33391
33790
|
permissions:
|
33392
33791
|
- synthetics_write
|
33792
|
+
/api/v1/synthetics/tests/search:
|
33793
|
+
get:
|
33794
|
+
description: Search for Synthetic tests and Test Suites.
|
33795
|
+
operationId: SearchTests
|
33796
|
+
parameters:
|
33797
|
+
- description: If true, include the full configuration for each test in the
|
33798
|
+
response.
|
33799
|
+
in: query
|
33800
|
+
name: include_full_config
|
33801
|
+
required: false
|
33802
|
+
schema:
|
33803
|
+
type: boolean
|
33804
|
+
- description: If true, returns suites instead of tests.
|
33805
|
+
in: query
|
33806
|
+
name: search_suites
|
33807
|
+
required: false
|
33808
|
+
schema:
|
33809
|
+
type: boolean
|
33810
|
+
- description: If true, return only facets instead of full test details.
|
33811
|
+
in: query
|
33812
|
+
name: facets_only
|
33813
|
+
required: false
|
33814
|
+
schema:
|
33815
|
+
type: boolean
|
33816
|
+
- description: The offset from which to start returning results.
|
33817
|
+
in: query
|
33818
|
+
name: start
|
33819
|
+
required: false
|
33820
|
+
schema:
|
33821
|
+
default: 0
|
33822
|
+
format: int64
|
33823
|
+
type: integer
|
33824
|
+
- description: The maximum number of results to return.
|
33825
|
+
in: query
|
33826
|
+
name: count
|
33827
|
+
required: false
|
33828
|
+
schema:
|
33829
|
+
default: 50
|
33830
|
+
format: int64
|
33831
|
+
type: integer
|
33832
|
+
- description: The sort order for the results (e.g., 'name,asc' or 'name,desc').
|
33833
|
+
in: query
|
33834
|
+
name: sort
|
33835
|
+
required: false
|
33836
|
+
schema:
|
33837
|
+
default: name,asc
|
33838
|
+
type: string
|
33839
|
+
responses:
|
33840
|
+
'200':
|
33841
|
+
content:
|
33842
|
+
application/json:
|
33843
|
+
schema:
|
33844
|
+
$ref: '#/components/schemas/SyntheticsListTestsResponse'
|
33845
|
+
description: OK - Returns the list of Synthetic tests matching the search.
|
33846
|
+
'403':
|
33847
|
+
content:
|
33848
|
+
application/json:
|
33849
|
+
schema:
|
33850
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
33851
|
+
description: Forbidden
|
33852
|
+
'404':
|
33853
|
+
content:
|
33854
|
+
application/json:
|
33855
|
+
schema:
|
33856
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
33857
|
+
description: Not found
|
33858
|
+
'429':
|
33859
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
33860
|
+
security:
|
33861
|
+
- apiKeyAuth: []
|
33862
|
+
appKeyAuth: []
|
33863
|
+
- AuthZ:
|
33864
|
+
- synthetics_read
|
33865
|
+
summary: Search Synthetic tests
|
33866
|
+
tags:
|
33867
|
+
- Synthetics
|
33868
|
+
x-permission:
|
33869
|
+
operator: OR
|
33870
|
+
permissions:
|
33871
|
+
- synthetics_read
|
33393
33872
|
/api/v1/synthetics/tests/trigger:
|
33394
33873
|
post:
|
33395
33874
|
description: Trigger a set of Synthetic tests.
|
@@ -34933,7 +35412,9 @@ paths:
|
|
34933
35412
|
schema:
|
34934
35413
|
format: date-time
|
34935
35414
|
type: string
|
34936
|
-
- description: Usage type to retrieve.
|
35415
|
+
- description: 'Usage type to retrieve. The following values have been **deprecated**:
|
35416
|
+
|
35417
|
+
`estimated_indexed_spans_usage`, `estimated_ingested_spans_usage`.'
|
34937
35418
|
in: query
|
34938
35419
|
name: usage_type
|
34939
35420
|
required: true
|
@@ -35483,8 +35964,13 @@ paths:
|
|
35483
35964
|
schema:
|
35484
35965
|
format: date-time
|
35485
35966
|
type: string
|
35486
|
-
- description: Comma-separated list of usage types to return, or `*` for all
|
35967
|
+
- description: 'Comma-separated list of usage types to return, or `*` for all
|
35487
35968
|
usage types.
|
35969
|
+
|
35970
|
+
The following values have been **deprecated**:
|
35971
|
+
|
35972
|
+
`estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`,
|
35973
|
+
`estimated_ingested_spans_percentage`.'
|
35488
35974
|
in: query
|
35489
35975
|
name: fields
|
35490
35976
|
required: true
|
@@ -35496,7 +35982,12 @@ paths:
|
|
35496
35982
|
required: false
|
35497
35983
|
schema:
|
35498
35984
|
$ref: '#/components/schemas/UsageSortDirection'
|
35499
|
-
- description: The field to sort by.
|
35985
|
+
- description: 'The field to sort by.
|
35986
|
+
|
35987
|
+
The following values have been **deprecated**:
|
35988
|
+
|
35989
|
+
`estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`,
|
35990
|
+
`estimated_ingested_spans_percentage`.'
|
35500
35991
|
in: query
|
35501
35992
|
name: sort_name
|
35502
35993
|
required: false
|
@@ -37185,13 +37676,21 @@ tags:
|
|
37185
37676
|
name: Slack Integration
|
37186
37677
|
- description: Take graph snapshots using the API.
|
37187
37678
|
name: Snapshots
|
37188
|
-
- description:
|
37189
|
-
rendering to help you ensure uptime
|
37190
|
-
|
37191
|
-
|
37192
|
-
|
37193
|
-
|
37194
|
-
|
37679
|
+
- description: 'Datadog Synthetic Monitoring uses simulated user requests and browser
|
37680
|
+
rendering to help you ensure uptime,
|
37681
|
+
|
37682
|
+
identify regional issues, and track your application performance. Synthetic tests
|
37683
|
+
come in
|
37684
|
+
|
37685
|
+
two different flavors, [API tests](https://docs.datadoghq.com/synthetics/api_tests/?tab=httptest)
|
37686
|
+
|
37687
|
+
and [browser tests](https://docs.datadoghq.com/synthetics/browser_tests). You
|
37688
|
+
can use Datadog''s API to
|
37689
|
+
|
37690
|
+
manage both test types programmatically.
|
37691
|
+
|
37692
|
+
|
37693
|
+
For more information, see the [Synthetic Monitoring documentation](https://docs.datadoghq.com/synthetics/).'
|
37195
37694
|
name: Synthetics
|
37196
37695
|
- description: 'The tag endpoint allows you to assign tags to hosts,
|
37197
37696
|
|