Skip to content

addSyslogExportRule

Add a new syslog export rule Supported in v5.1+ Adds a new rule specifying where to export the specified syslog information.

Arguments

Argument Type Description
input (required) AddSyslogExportRuleInput! Input for V1AddSyslogExportRule.

Returns

AddSyslogExportRuleReply!

Sample

mutation AddSyslogExportRule($input: AddSyslogExportRuleInput!) {
  addSyslogExportRule(input: $input)
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "addSyslogExportRule": {
      "output": {
        "id": "example-string"
      }
    }
  }
}