Dynatrace · Schema

LogAggregateResult

The result of a log aggregation query.

AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

Properties

Name Type Description
results array The aggregated log data grouped by the specified dimensions.
View JSON Schema on GitHub

JSON Schema

log-monitoring-api-v2-log-aggregate-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dynatrace/refs/heads/main/json-schema/log-monitoring-api-v2-log-aggregate-result-schema.json",
  "title": "LogAggregateResult",
  "description": "The result of a log aggregation query.",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "description": "The aggregated log data grouped by the specified dimensions.",
      "items": {
        "$ref": "#/components/schemas/LogAggregateGroup"
      },
      "example": [
        {
          "groupByFields": {},
          "count": 500
        }
      ]
    }
  }
}