getListRemote Operation

Using getListRemote operation you can retrieve the complete list of all alerts currently defined on a managed TIBCO LogLogic Appliance from a Management Station.

Request Parameter

authToken , applianceIP

Response

If resultCount is greater than 0 and statusCode is 2000 (successful), the response returns a list of all alerts (total number indicated by resultCount) currently configured in the remote TIBCO LogLogic Appliance.

If resultCount is 0 and statusCode is not 2000 (successful), an error is returned in statusMessage.

Example

SOAP request for getListRemote Operation. To retrieve a list of all alerts defined in remote Appliance 1. 2. 20.100:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:aler="AlertService">
   <soapenv:Header/>
   <soapenv:Body>
      <aler:getList>
         <aler:authToken>admin+1Y2O2W261O1C1J1X291M371F</aler:authToken>
         <aler:applianceIP>1.2.20.100</aler:applianceIP>
      </aler:getList>
   </soapenv:Body>
</soapenv:Envelope>
SOAP response for getListRemote Operation:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header/>
   <soapenv:Body>
      <ns:getListRemoteResponse xmlns:ns="AlertService">
         <ns:return xsi:type="ax27:AlertResponse" xmlns:ax27="http://alert.services.logapp.loglogic.com/xsd" xmlns:ax28="http://services.logapp.loglogic.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <ax28:authToken xsi:nil="true"/>
            <ax28:resultCount>1</ax28:resultCount>
            <ax28:statusCode>2000</ax28:statusCode>
            <ax28:statusMessage>Successful</ax28:statusMessage>
            <ax28:summaryOnly>true</ax28:summaryOnly>
            <ax27:resultSet xsi:type="ax27:AlertDetail">
               <ax27:alertRules>FewerThan/11//MoreThan/22</ax27:alertRules>
               <ax27:alertType>Adaptive Baseline Alert</ax27:alertType>
               <ax27:desc/>
               <ax27:devices>All LogLogic Appliance</ax27:devices>
               <ax27:devices>::1_General</ax27:devices>
               <ax27:devices>LocalHost</ax27:devices>
               <ax27:devices>All General Syslog</ax27:devices>
               <ax27:devices>::ffff:127.0.0.1_otherUnix</ax27:devices>
               <ax27:devices>::ffff:10.114.81.42_General</ax27:devices>
               <ax27:devices>All Other UNIX</ax27:devices>
               <ax27:devices>::ffff:10.114.81.42_logapp</ax27:devices>
               <ax27:devices>::1_logapp</ax27:devices>
               <ax27:devices>::ffff:127.0.0.1_logapp</ax27:devices>
               <ax27:devices>::ffff:10.114.81.42_otherUnix</ax27:devices>
               <ax27:enabled>yes</ax27:enabled>
               <ax27:name>TEST</ax27:name>
               <ax27:networkMonitorPolicyRules xsi:nil="true"/>
               <ax27:priority>High</ax27:priority>
               <ax27:resetTime>900</ax27:resetTime>
               <ax27:snmpOId/>
               <ax27:trackIndividualDevice>no</ax27:trackIndividualDevice>
               <ax27:users>RemoteUserTemplate</ax27:users>
               <ax27:users>admin</ax27:users>
            </ax27:resultSet>
         </ns:return>
      </ns:getListRemoteResponse>
   </soapenv:Body>
</soapenv:Envelope>