New Relic · Schema

CommonBlock

Shared attributes applied to all log records in this batch

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
timestamp integer Default Unix timestamp in milliseconds for all logs in the batch
attributes object Key-value attributes applied to all logs in this batch
View JSON Schema on GitHub

JSON Schema

new-relic-log-common-block-schema.json Raw ↑
{
  "type": "object",
  "description": "Shared attributes applied to all log records in this batch",
  "properties": {
    "timestamp": {
      "type": "integer",
      "description": "Default Unix timestamp in milliseconds for all logs in the batch",
      "example": 1718153645993
    },
    "attributes": {
      "type": "object",
      "description": "Key-value attributes applied to all logs in this batch",
      "example": {
        "customAttribute": "example_value"
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CommonBlock"
}