Count Error Reports

URL:
https://<root>/logs/countErrorReports
Methods:
POST
Required Capability:
Access allowed with any authorized privilege
Version Introduced:
10.1

Description

The countErrorReports 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

ParameterDetails

machine

The name of machine on which to count the reports. You can also use the value of All.

Example

Use dark colors for code blocksCopy
1
machine=MACHINE.DOMAIN.COM

f

The response format. The default value is html.

Value: html | json | pjson

Example usage

The following is a sample POST request for the countErrorReports operation:

Use dark colors for code blocksCopy
1
2
3
4
5
6
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

Use dark colors for code blocksCopy
1
2
3
4
{
  "machineName": <machine name>,
  "reportCount": <total errors>
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
{
  "machineName": "MACHINE.DOMAIN.COM",
  "reportCount": 2
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.