Syslog Configuration

Configuration to ingest syslog

This section describes configuration parameters to control syslog ingestion

JSON File Configuration

Location on manager node: ~/opt/augtera/etc/telemetry.json

UI Configuration

Configuration under Settings->Config: config->telemetry

Configuration Properties

The following table explains the attributes of Syslog and provides a description of each one of them.

Following is a sample JSON configuration snippet to ingest syslog over UDP port 514. Data above the warning level will appear in the UI. Any messages below info will be dropped. Any message below level warning and info will only be ingested if there is a matching classifier.

    "syslog": {
      "proto": "udp",
      "port": 514,
      "disable": false,
      "options": {
        "severity-cutoff": "warning",
        "severity-cutoff-low-pri": "info"
        "timezone": "America/Los_Angeles"
      },
    },

Last updated