- URL:
- https://<root>/logs/countErrorReports
- Methods:
POST
- Required Capability:
- Access allowed with any authorized privilege
- Version Introduced:
- 10.1
Description
The count
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 |
---|---|
| The name of machine on which to count the reports. You can also use the value of Example
|
| The response format. The default value is Value: |
Example usage
The following is a sample POST request for the count
operation:
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=pjson
JSON Response syntax
{
"machineName": <machine name>,
"reportCount": <total errors>
}
JSON Response example
{
"machineName": "MACHINE.DOMAIN.COM",
"reportCount": 2
}