Dynatrace · Schema

LogRecordSearchResult

The result of a log search query.

AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

Properties

Name Type Description
nextSliceKey string The cursor for the next page of results. Null if all results have been returned.
results array The list of log records matching the search query on this page.
View JSON Schema on GitHub

JSON Schema

dynatrace-log-monitoring-v2-log-record-search-result-schema.json Raw ↑
{
  "type": "object",
  "description": "The result of a log search query.",
  "properties": {
    "nextSliceKey": {
      "type": "string",
      "description": "The cursor for the next page of results. Null if all results have been returned.",
      "example": "example-value"
    },
    "results": {
      "type": "array",
      "description": "The list of log records matching the search query on this page.",
      "example": [
        {
          "timestamp": "example-value",
          "content": "example-value",
          "severity": "HIGH",
          "log.source": "example-value",
          "dt.entity.host": "example-value",
          "additionalFields": {}
        }
      ],
      "items": {
        "type": "object",
        "description": "A log record retrieved from the Dynatrace Grail data lakehouse. Contains the original log content plus enriched metadata added by Dynatrace during ingestion and processing.",
        "properties": {
          "timestamp": {
            "type": "string",
            "description": "The timestamp of the log record in ISO 8601 format.",
            "example": "example-value"
          },
          "content": {
            "type": "string",
            "description": "The log message content.",
            "example": "example-value"
          },
          "severity": {
            "type": "string",
            "description": "The severity level of the log record.",
            "example": "HIGH"
          },
          "log.source": {
            "type": "string",
            "description": "The source identifier of the log record.",
            "example": "example-value"
          },
          "dt.entity.host": {
            "type": "string",
            "description": "The associated host entity ID.",
            "example": "example-value"
          },
          "additionalFields": {
            "type": "object",
            "description": "Additional fields present in the log record beyond the standard set. Content varies based on what was ingested and how OpenPipeline processed the record.",
            "example": {}
          }
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LogRecordSearchResult"
}