- URL:https://<logs-url>/countErrorReports
(POST only)
- Required Capability:Default administrator role | All authorized privileges
- Version Introduced:10.1
Description
This operation counts the number of error (crash) reports that have been generated on each machine. The server will store only the latest count of reports as defined in the log settings.
Request parameters
| Parameter | Details |
|---|---|
| machine | The name of machine on which to count the reports. You can also use the value of All. Example |
| f | The response format. The default value is html. Value: html | json| pjson |
Example usage
Below is a sample POST request for countErrorReports:
POST /webadaptor/admin/logs/countErrorReports HTTP/1.1
Host: machine.domain.com
Content-Type: application/x-www-form-urlencoded
Content-Length: []
machine=MACHINE.DOMAIN.COM&f=jsonJSON Response syntax
{
"machineName": <machine name>,
"reportCount": <total errors>
}JSON Response example
{
"machineName": "MACHINE.DOMAIN.COM",
"reportCount": 2
}