Dynatrace · Schema

LogExportResult

The result of a log export operation, containing a page of records.

AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

Properties

Name Type Description
nextSliceKey string Cursor for the next page of export results.
results array The list of exported log records on this page.
View JSON Schema on GitHub

JSON Schema

log-monitoring-api-v2-log-export-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-export-result-schema.json",
  "title": "LogExportResult",
  "description": "The result of a log export operation, containing a page of records.",
  "type": "object",
  "properties": {
    "nextSliceKey": {
      "type": "string",
      "description": "Cursor for the next page of export results.",
      "nullable": true,
      "example": "example-value"
    },
    "results": {
      "type": "array",
      "description": "The list of exported log records on this page.",
      "items": {
        "$ref": "#/components/schemas/LogRecord"
      },
      "example": [
        {
          "timestamp": "example-value",
          "content": "example-value",
          "severity": "HIGH",
          "log.source": "example-value",
          "dt.entity.host": "example-value",
          "additionalFields": {}
        }
      ]
    }
  }
}