Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20762,6 +20762,11 @@ components:
current date for all organizations.
format: int64
type: integer
bits_ai_investigations_sum:
description: Shows the sum of all Bits AI Investigations over all hours
in the current date for all organizations.
format: int64
type: integer
browser_rum_lite_session_count_sum:
deprecated: true
description: Shows the sum of all browser lite sessions over all hours in
Expand Down Expand Up @@ -21309,6 +21314,11 @@ components:
hosts over all hours in the current date for the given org.
format: int64
type: integer
on_call_seat_hwm:
description: Shows the high-water mark of On-Call seats over all hours in
the current date for all organizations.
format: int64
type: integer
online_archive_events_count_sum:
description: Sum of all online archived events over all hours in the current
date for all organizations.
Expand Down Expand Up @@ -21850,6 +21860,11 @@ components:
current date for the given org.
format: int64
type: integer
bits_ai_investigations_sum:
description: Shows the sum of all Bits AI Investigations over all hours
in the current date for the given org.
format: int64
type: integer
browser_rum_lite_session_count_sum:
deprecated: true
description: Shows the sum of all browser lite sessions over all hours in
Expand Down Expand Up @@ -22406,6 +22421,11 @@ components:
hosts over all hours in the current date for the given org.
format: int64
type: integer
on_call_seat_hwm:
description: Shows the high-water mark of On-Call seats over all hours in
the current date for the given org.
format: int64
type: integer
online_archive_events_count_sum:
description: Sum of all online archived events over all hours in the current
date for the given org.
Expand Down Expand Up @@ -22947,6 +22967,11 @@ components:
current month for all organizations.
format: int64
type: integer
bits_ai_investigations_agg_sum:
description: Shows the sum of all Bits AI Investigations over all hours
in the current month for all organizations.
format: int64
type: integer
browser_rum_lite_session_count_agg_sum:
deprecated: true
description: Shows the sum of all browser lite sessions over all hours in
Expand Down Expand Up @@ -23524,6 +23549,11 @@ components:
over all hours in the current months for all organizations
format: int64
type: integer
on_call_seat_hwm_sum:
description: Shows the sum of the high-water marks of On-Call seats over
all hours in the current month for all organizations.
format: int64
type: integer
online_archive_events_count_agg_sum:
description: Sum of all online archived events over all hours in the current
month for all organizations.
Expand Down Expand Up @@ -32533,7 +32563,11 @@ paths:
- timeseries_query
/api/v1/search:
get:
description: Search for metrics from the last 24 hours in Datadog.
deprecated: true
description: '**Note**: This endpoint is deprecated. Use `/api/v2/metrics` instead.


Search for metrics from the last 24 hours in Datadog.'
operationId: ListMetrics
parameters:
- description: Query string to search metrics upon. Can optionally be prefixed
Expand Down
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81263,8 +81263,8 @@ paths:
- description: 'Comma separated list of product families to retrieve. Available
families are `all`, `analyzed_logs`,

`application_security`, `audit_trail`, `serverless`, `ci_app`, `cloud_cost_management`,
`cloud_siem`,
`application_security`, `audit_trail`, `bits_ai`, `serverless`, `ci_app`,
`cloud_cost_management`, `cloud_siem`,

`csm_container_enterprise`, `csm_host_enterprise`, `cspm`, `custom_events`,
`cws`, `dbm`, `error_tracking`,
Expand Down
5 changes: 5 additions & 0 deletions lib/datadog_api_client/v1/api/metrics_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,17 @@ def list_metrics(q, opts = {})

# Search metrics.
#
# **Note**: This endpoint is deprecated. Use `/api/v2/metrics` instead.
#
# Search for metrics from the last 24 hours in Datadog.
#
# @deprecated This API is deprecated.
#
# @param q [String] Query string to search metrics upon. Can optionally be prefixed with `metrics:`.
# @param opts [Hash] the optional parameters
# @return [Array<(MetricSearchResponse, Integer, Hash)>] MetricSearchResponse data, response status code and response headers
def list_metrics_with_http_info(q, opts = {})
warn "[DEPRECATION] `ListMetrics` is deprecated."

if @api_client.config.debugging
@api_client.config.logger.debug 'Calling API: MetricsAPI.list_metrics ...'
Expand Down
22 changes: 21 additions & 1 deletion lib/datadog_api_client/v1/models/usage_summary_date.rb

Large diffs are not rendered by default.

22 changes: 21 additions & 1 deletion lib/datadog_api_client/v1/models/usage_summary_date_org.rb

Large diffs are not rendered by default.

22 changes: 21 additions & 1 deletion lib/datadog_api_client/v1/models/usage_summary_response.rb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/datadog_api_client/v2/api/usage_metering_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def get_hourly_usage(filter_timestamp_start, filter_product_families, opts = {})
# Get hourly usage by product family.
#
# @param filter_timestamp_start [Time] Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour.
# @param filter_product_families [String] Comma separated list of product families to retrieve. Available families are `all`, `analyzed_logs`, `application_security`, `audit_trail`, `serverless`, `ci_app`, `cloud_cost_management`, `cloud_siem`, `csm_container_enterprise`, `csm_host_enterprise`, `cspm`, `custom_events`, `cws`, `dbm`, `error_tracking`, `fargate`, `infra_hosts`, `incident_management`, `indexed_logs`, `indexed_spans`, `ingested_spans`, `iot`, `lambda_traced_invocations`, `llm_observability`, `logs`, `network_flows`, `network_hosts`, `network_monitoring`, `observability_pipelines`, `online_archive`, `profiling`, `product_analytics`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`, `sds`, `snmp`, `software_delivery`, `synthetics_api`, `synthetics_browser`, `synthetics_mobile`, `synthetics_parallel_testing`, `timeseries`, `vuln_management` and `workflow_executions`. The following product family has been **deprecated**: `audit_logs`.
# @param filter_product_families [String] Comma separated list of product families to retrieve. Available families are `all`, `analyzed_logs`, `application_security`, `audit_trail`, `bits_ai`, `serverless`, `ci_app`, `cloud_cost_management`, `cloud_siem`, `csm_container_enterprise`, `csm_host_enterprise`, `cspm`, `custom_events`, `cws`, `dbm`, `error_tracking`, `fargate`, `infra_hosts`, `incident_management`, `indexed_logs`, `indexed_spans`, `ingested_spans`, `iot`, `lambda_traced_invocations`, `llm_observability`, `logs`, `network_flows`, `network_hosts`, `network_monitoring`, `observability_pipelines`, `online_archive`, `profiling`, `product_analytics`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`, `sds`, `snmp`, `software_delivery`, `synthetics_api`, `synthetics_browser`, `synthetics_mobile`, `synthetics_parallel_testing`, `timeseries`, `vuln_management` and `workflow_executions`. The following product family has been **deprecated**: `audit_logs`.
# @param opts [Hash] the optional parameters
# @option opts [Time] :filter_timestamp_end Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending **before** this hour.
# @option opts [Boolean] :filter_include_descendants Include child org usage in the response. Defaults to false.
Expand Down
Loading