Sha256: f15b235bc9fd3069be91d1cf5c1eb5960a6b089b9abd2d2a4094d644f22c3cf0

Contents?: true

Size: 1.04 KB

Versions: 14

Compression:

Stored size: 1.04 KB

Contents

# Aggregate compute events with group by returns "OK" response

require "datadog_api_client"
api_instance = DatadogAPIClient::V2::LogsAPI.new

body = DatadogAPIClient::V2::LogsAggregateRequest.new({
  compute: [
    DatadogAPIClient::V2::LogsCompute.new({
      aggregation: DatadogAPIClient::V2::LogsAggregationFunction::COUNT,
      interval: "5m",
      type: DatadogAPIClient::V2::LogsComputeType::TIMESERIES,
    }),
  ],
  filter: DatadogAPIClient::V2::LogsQueryFilter.new({
    from: "now-15m",
    indexes: [
      "main",
    ],
    query: "*",
    to: "now",
  }),
  group_by: [
    DatadogAPIClient::V2::LogsGroupBy.new({
      facet: "host",
      missing: "miss",
      sort: DatadogAPIClient::V2::LogsAggregateSort.new({
        type: DatadogAPIClient::V2::LogsAggregateSortType::MEASURE,
        order: DatadogAPIClient::V2::LogsSortOrder::ASCENDING,
        aggregation: DatadogAPIClient::V2::LogsAggregationFunction::PERCENTILE_90,
        metric: "@duration",
      }),
      total: "recall",
    }),
  ],
})
p api_instance.aggregate_logs(body)

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
datadog_api_client-2.26.1 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.26.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.25.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.24.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.22.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.21.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.20.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.19.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.18.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.17.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.16.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.15.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-2.14.0 examples/v2/logs/AggregateLogs_2955613758.rb
datadog_api_client-1.8.0 examples/v2/logs/AggregateLogs_2955613758.rb