SolarWinds · Schema

Event

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
id string Unique event identifier
received_at string When the event was received
generated_at string When the event was generated
display_received_at string Human-readable received timestamp
source_ip string Source IP address
source_name string Source system name
source_id integer Source system ID
hostname string Hostname
program string Program name
severity string Syslog severity
facility string Syslog facility
message string Log message content
View JSON Schema on GitHub

JSON Schema

solarwinds-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Event",
  "title": "Event",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique event identifier",
      "example": "abc123"
    },
    "received_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the event was received",
      "example": "2026-01-15T10:30:00Z"
    },
    "generated_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the event was generated",
      "example": "2026-01-15T10:30:00Z"
    },
    "display_received_at": {
      "type": "string",
      "description": "Human-readable received timestamp",
      "example": "2026-01-15T10:30:00Z"
    },
    "source_ip": {
      "type": "string",
      "description": "Source IP address",
      "example": "example_value"
    },
    "source_name": {
      "type": "string",
      "description": "Source system name",
      "example": "example_value"
    },
    "source_id": {
      "type": "integer",
      "description": "Source system ID",
      "example": "500123"
    },
    "hostname": {
      "type": "string",
      "description": "Hostname",
      "example": "example_value"
    },
    "program": {
      "type": "string",
      "description": "Program name",
      "example": "example_value"
    },
    "severity": {
      "type": "string",
      "description": "Syslog severity",
      "example": "example_value"
    },
    "facility": {
      "type": "string",
      "description": "Syslog facility",
      "example": "example_value"
    },
    "message": {
      "type": "string",
      "description": "Log message content",
      "example": "example_value"
    }
  }
}