Manager authentication log format examples
This log includes a record of all authentication requests. Every request is captured as a single JSON object. Each request is separated by a newline.
The file naming convention is manager_authentication.log.<date>, where <date> is a rotating time stamp that changes every 6 hours.
Example of a successful authentication
-
{
"timestamp":1566397755448,
"requestTime":"2019-08-21 14:29:15 GMT",
"username":"admin",
"userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:60.0) Gecko/20100101 Firefox/60.0",
"requestId":"XV1VO6wTCjcAAB1plaAAAADB"
,"requestUri":"/manager/login.adm",
"clientIp":"10.255.250.209",
"connectIp":"10.255.250.209",
"success":true,
"failureCode":null,
"failureReason":null
}
Example of a unsuccessful authentication
-
{
"timestamp":1566398638476,
"requestTime":"2019-08-21 14:43:58 GMT",
"username":"fred",
"userAgent":"curl/7.54.0",
"requestId":"XV1YrqwTCjcAAB1pl14AAABz",
"requestUri":"/manager/api/json/1.0/editAccount.adm",
"clientIp":"10.255.250.209",
"connectIp":"10.255.250.209",
"success":false,
"failureCode":2,
"failureReason":"invalid local account password"
}