Skip To Content
ArcGIS Developer
Dashboard

Count Error Reports

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

ParameterDetails
machine

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

Example

machine=MACHINE.DOMAIN.COM
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=json

JSON Response syntax


{
  "machineName": <machine name>,
  "reportCount": <total errors>
}

JSON Response example

	
{
  "machineName": "MACHINE.DOMAIN.COM",
  "reportCount": 2
}