Dynatrace · JSON Structure

Log Monitoring Api V2 Log Export Result Structure

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

Type: object Properties: 2
AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

LogExportResult is a JSON Structure definition published by Dynatrace, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

nextSliceKey results

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dynatrace/refs/heads/main/json-structure/log-monitoring-api-v2-log-export-result-structure.json",
  "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": {}
        }
      ]
    }
  },
  "name": "LogExportResult"
}