SyslogConfiguration (type)

{
  "additionalProperties": false, 
  "description": "Syslog server configuration parameters", 
  "id": "SyslogConfiguration", 
  "module_id": "FabricNode", 
  "properties": {
    "log_level": {
      "default": "INFO", 
      "description": "Log level that needs to be redirected.", 
      "enum": [
        "EMERGENCY", 
        "ALERT", 
        "CRITICAL", 
        "ERROR", 
        "WARNING", 
        "NOTICE", 
        "INFO", 
        "DEBUG"
      ], 
      "required": false, 
      "title": "Log level to be redirected", 
      "type": "string"
    }, 
    "name": {
      "Description": "Display name given to the syslog server.\n", 
      "required": false, 
      "title": "Display name of the syslog server", 
      "type": "string"
    }, 
    "port": {
      "$ref": "PortElement, 
      "default": "514", 
      "description": "Syslog server listening port.", 
      "required": false, 
      "title": "Syslog server port"
    }, 
    "protocol": {
      "default": "UDP", 
      "description": "Supported Syslog protocol.", 
      "enum": [
        "TCP", 
        "UDP", 
        "TLS", 
        "LI", 
        "LI_TLS"
      ], 
      "required": false, 
      "title": "Syslog protocol", 
      "type": "string"
    }, 
    "server": {
      "description": "Syslog server Ip or fqdn.", 
      "required": true, 
      "title": "Server Ip or fqdn", 
      "type": "string"
    }
  }, 
  "title": "Syslog server configuration", 
  "type": "object"
}