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