You are currently viewing Zend Server 5.x documentation. Click here to view the latest Zend Server online documentation.
You are here: Web API Reference Guide > Available API Methods > Monitor Methods > The monitorGetIssuesDetails Method

The monitorGetIssuesDetails Method

Retrieve an issue's details according to the issueId passed as a parameter. Additional information about event groups is also displayed.

 

Required Permissions: Read-only

HTTP method: GET

Supported by Editions: Zend Server, Zend Server Cluster Manager

Request Parameters:  

Parameter

 Type

Required

Description

issueId

String

Yes

The predefined filter's id. Can be the filter's “name” or the actual identifier randomly created by the system. This parameter is case-sensitive

 

Expected Response Code: 200 OK. For more information see Response Format.

Response Format: Response successful message or error message

Possible Action Specific Error Codes:

HTTP Code

Error Code

Description

404

noSuchIssue

The requested issue does not exist

 

Usage Example

Example:

 

Request:

GET  /ZendServerManager/Api/monitorGetIssueDetails?issueId=1

Content-type: application/x-www-form-urlencoded

 

Response:

<?xml version="1.0" encoding="UTF-8"?>

<zendServerAPIResponse xmlns="http://www.zend.com/server/api/1.1">

<requestData>

<apiKeyName><![CDATA[Admin]]></apiKeyName>

<method>monitorGetIssueDetails</method>

</requestData>

<responseData>

<issueDetails>

<issue>

<id>11</id>

<rule>PHP Error</rule>

<count>1</count>

<lastOccurance>123412341234</lastOccurance>

<severity>Warning</severity>

<status>Open</status>

<generalDetails>

<url>http://localhost/test.php</url>

<sourceFile>/var/www/test.php</sourceFile>

<sourceLine>302</sourceLine>

<function>fopen</function>

<aggregationHint>123412341234</aggregationHint>

<errorString>Permission Denied</errorString>

<errorType>E_WARNING</errorType>

</generalDetails>

<routeDetails>

<routeDetail>

<key>controller</key>

<value>test</value>

<routeDetail>

</routeDetails>

</issue>

<eventsGroups>

<eventsGroup>

<eventsGroupId>134</eventsGroupId>

<eventsCount>1</eventsCount>

<startTime>20-Sep-2011 18:45</startTime>

<serverId>0</serverId>

<class></class>

<userData><![CDATA[]]></class>

<javaBacktrace><![CDATA[]]><javaBacktrace>

<execTime>0</execTime>

<avgExecTime>0</avgExecTime>

<memUsage>0</memUsage>

<avgMemUsage>0</avgMemUsage>

<avgOutputSize>0</avgOutputSize>

<load>0</load>

</eventsGroup>

</eventsGroups>

</issueDetails>

</responseData>

</zendServerAPIResponse>

 

 

 

Related Links

Related Links:

Available API Methods

 

 

 

© 1999-2013 Zend Technologies, Ltd. All rights reserved.