SetLogLevel
Trigger this action to specify the minimum level of events that are captured in the system log.
Use the HTTP POST method with the resource
/mgmt/actionqueue/default
, specifying
a request payload with the following
format:{
"SetLogLevel": {
"LogLevel": "level",
}
}
- LogLevel
- String
Example
To set the log level so that events of error and above are written to the log, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:
{
"SetLogLevel": {
"LogLevel": "3",
}
}