Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Network monitor query returns invalid JSON #55

Closed
mheitka opened this issue Jun 13, 2018 · 5 comments
Closed

Network monitor query returns invalid JSON #55

mheitka opened this issue Jun 13, 2018 · 5 comments

Comments

@mheitka
Copy link

mheitka commented Jun 13, 2018

Quering network monitors with mask results in

java.lang.RuntimeException: Expected 'complexType' as first property
	at com.softlayer.api.json.GsonJsonMarshallerFactory$EntityTypeAdapter.read(GsonJsonMarshallerFactory.java:186)
	at com.softlayer.api.json.GsonJsonMarshallerFactory$EntityTypeAdapter.read(GsonJsonMarshallerFactory.java:139)
	at com.google.gson.Gson.fromJson(Gson.java:805)
	at com.google.gson.Gson.fromJson(Gson.java:770)
	at com.softlayer.api.json.GsonJsonMarshallerFactory.fromJson(GsonJsonMarshallerFactory.java:83)
	at com.softlayer.api.RestApiClient$ServiceProxy.logAndHandleResponse(RestApiClient.java:291)
	at com.softlayer.api.RestApiClient$ServiceProxy.invokeService(RestApiClient.java:321)
	at com.softlayer.api.RestApiClient$ServiceProxy.invoke(RestApiClient.java:487)
	at com.sun.proxy.$Proxy5.getObject(Unknown Source)
	at com.daimler.retacc.cloud.SLApiMgr.changeNetworkMonitors(SLApiMgr.java:358)
	at com.daimler.retacc.cloud.SLApiMgrTest.testSimple(SLApiMgrTest.java:46)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
	at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
	at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31)
	at com.intellij.junit4.JUnit4TestRunnerUtil$IgnoreIgnoredTestJUnit4ClassRunner.runChild(JUnit4TestRunnerUtil.java:341)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49)
	at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
	at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
	at org.junit.runner.JUnitCore.run(JUnitCore.java:157)
	at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:78)
	at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:212)
	at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:68)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)

Sample code for this is

    ApiClient client = new RestApiClient(softlayerURL).withCredentials(username, password);
    Account.Service service = Account.service(client);

    service.withMask().virtualGuests().id();
    service.withMask().virtualGuests().hostname();
    service.withMask().virtualGuests().networkMonitors();
    service.withMask().virtualGuests().networkMonitors().id();
    service.withMask().virtualGuests().networkMonitors().ipAddress();
    service.withMask().virtualGuests().networkMonitors().queryType();
    service.withMask().virtualGuests().networkMonitors().responseAction();
    service.withMask().virtualGuests().networkMonitors().lastResult();
    service.withMask().virtualGuests().networkMonitors().status();
    service.withMask().virtualGuests().networkMonitors().waitCycles();

    Account account = service.getObject();
@acamacho82
Copy link
Contributor

Could you add this method withLoggingEnabled() when creating the client and post the logs?

ApiClient client = new RestApiClient(softlayerURL).withCredentials(username, password).withLoggingEnabled();

@acamacho82
Copy link
Contributor

It seems the issue is in the API itself and not in the java client, internal error is thrown when sending the same mask in REST

Account::getObject

https://api.softlayer.com/rest/v3/SoftLayer_Account/getObject?objectMask=mask[virtualGuests[hostname,id,networkMonitors[ipAddress,id,waitCycles,status,lastResult,responseAction,queryType]]]

Account::getVirtualGuests

https://api.softlayer.com/rest/v3/SoftLayer_Account/getVirtualGuests?objectMask=mask[hostname,id,networkMonitors[ipAddress,id,waitCycles,status,lastResult,responseAction,queryType]]

I removed "lastResult" from the mask and I was able to retrieve the networkMonitors, same behavior in java client.

@mheitka could you remove or comment lastResult and try again?

@mheitka
Copy link
Author

mheitka commented Jun 15, 2018

Here is the output with logging enabled:

Running GET on https://api.softlayer.com/rest/v3.1/SoftLayer_Account.json?objectMask=mask%5BvirtualGuests%5Bhostname%2Cid%2CnetworkMonitors%5BipAddress%2Cid%2CwaitCycles%2Cstatus%2ClastResult%2CresponseAction%2CqueryType%5D%5D%5D with no body
Got 200 on https://api.softlayer.com/rest/v3.1/SoftLayer_Account.json?objectMask=mask%5BvirtualGuests%5Bhostname%2Cid%2CnetworkMonitors%5BipAddress%2Cid%2CwaitCycles%2Cstatus%2ClastResult%2CresponseAction%2CqueryType%5D%5D%5D with body: {"error":"Internal Error","code":"SoftLayer_Exception_Public"}

java.lang.RuntimeException: Expected 'complexType' as first property
	at com.softlayer.api.json.GsonJsonMarshallerFactory$EntityTypeAdapter.read(GsonJsonMarshallerFactory.java:186)
	at com.softlayer.api.json.GsonJsonMarshallerFactory$EntityTypeAdapter.read(GsonJsonMarshallerFactory.java:139)
	at com.google.gson.Gson.fromJson(Gson.java:805)
	at com.google.gson.Gson.fromJson(Gson.java:770)
	at com.softlayer.api.json.GsonJsonMarshallerFactory.fromJson(GsonJsonMarshallerFactory.java:83)
	at com.softlayer.api.RestApiClient$ServiceProxy.logAndHandleResponse(RestApiClient.java:291)
	at com.softlayer.api.RestApiClient$ServiceProxy.invokeService(RestApiClient.java:321)
	at com.softlayer.api.RestApiClient$ServiceProxy.invoke(RestApiClient.java:487)
	at com.sun.proxy.$Proxy5.getObject(Unknown Source)
	at com.daimler.retacc.cloud.SLApiMgr.changeNetworkMonitors(SLApiMgr.java:358)

If I remove lastResult the query works and the output is

Running GET on https://api.softlayer.com/rest/v3.1/SoftLayer_Account.json?objectMask=mask%5BvirtualGuests%5Bid%2CnetworkMonitors%5BipAddress%2Cid%2CwaitCycles%2Cstatus%2CresponseAction%2CqueryType%5D%5D%5D with no body
Got 200 on https://api.softlayer.com/rest/v3.1/SoftLayer_Account.json?objectMask=mask%5BvirtualGuests%5Bid%2CnetworkMonitors%5BipAddress%2Cid%2CwaitCycles%2Cstatus%2CresponseAction%2CqueryType%5D%5D%5D with body: {"complexType":"SoftLayer_Account","accountManagedResourcesFlag":false,"accountStatusId":1001,"address1":"adressXXX","allowedPptpVpnQuantity":2,"brandId":15088,"city":"Stuttgart","claimedTaxExemptTxFlag":false,"companyName":"myCompany","country":"DE","createDate":"2017-02-15T13:49:04+01:00","email":"[email protected]","firstName":"myFirstName","id":1234835,"isReseller":0,"lastName":"myLastName","lateFeeProtectionFlag":null,"modifyDate":"2017-02-15T13:52:20+01:00","officePhone":"12345-123","postalCode":"12345","resellerLevel":0,"state":"OT","statusDate":null,"virtualGuests":[{"complexType":"SoftLayer_Virtual_Guest","id":12300661,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239279,"ipAddress":"10.XXX.170.8","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12359855,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1234205,"ipAddress":"10.XXX.170.65","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12315069,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239877,"ipAddress":"10.XXX.170.94","status":"ON","waitCycles":1,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387359,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236615,"ipAddress":"10.XXX.170.223","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12304799,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1238298,"ipAddress":"10.XXX.170.226","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12304831,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1238302,"ipAddress":"10.XXX.170.251","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12358807,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239678,"ipAddress":"10.XXX.170.48","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12328671,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236349,"ipAddress":"10.XXX.171.17","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12353097,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236350,"ipAddress":"10.XXX.171.127","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12353113,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236351,"ipAddress":"10.XXX.171.131","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12377863,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237292,"ipAddress":"10.XXX.171.53","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12399719,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236173,"ipAddress":"10.XXX.18.112","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12342261,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1234952,"ipAddress":"10.XXX.31.39","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12306581,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237717,"ipAddress":"10.XXX.171.165","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12383907,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233558,"ipAddress":"10.XXX.31.23","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12384375,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233008,"ipAddress":"10.XXX.31.26","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12384493,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233010,"ipAddress":"10.XXX.31.36","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12385133,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1234809,"ipAddress":"10.XXX.31.158","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12330747,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239911,"ipAddress":"10.XXX.31.41","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367881,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231317,"ipAddress":"10.XXX.31.44","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12309549,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237522,"ipAddress":"10.XXX.31.62","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12373841,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236896,"ipAddress":"10.XXX.31.71","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12374607,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231762,"ipAddress":"10.XXX.31.110","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12303913,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230099,"ipAddress":"10.XXX.31.70","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12368781,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1234654,"ipAddress":"10.XXX.31.16","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12368783,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1234652,"ipAddress":"10.XXX.31.90","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12379075,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239860,"ipAddress":"10.XXX.31.147","status":"ON","waitCycles":1,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12392239,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239989,"ipAddress":"10.XXX.18.98","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12333033,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239865,"ipAddress":"10.XXX.170.210","status":"ON","waitCycles":1,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12309633,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233621,"ipAddress":"10.XXX.18.15","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12380453,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233622,"ipAddress":"10.XXX.18.44","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12380567,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233623,"ipAddress":"10.XXX.18.180","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12380571,"networkMonitors":[]},{"complexType":"SoftLayer_Virtual_Guest","id":12380643,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233625,"ipAddress":"10.XXX.18.186","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12382109,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233626,"ipAddress":"10.XXX.18.17","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12382221,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233629,"ipAddress":"10.XXX.18.43","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12383205,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233631,"ipAddress":"10.XXX.18.140","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12383221,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233632,"ipAddress":"10.XXX.18.146","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12384749,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233633,"ipAddress":"10.XXX.18.101","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12384781,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233634,"ipAddress":"10.XXX.18.103","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12384843,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233635,"ipAddress":"10.XXX.18.16","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12384885,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233636,"ipAddress":"10.XXX.18.18","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12385009,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233638,"ipAddress":"10.XXX.18.41","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387011,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233640,"ipAddress":"10.XXX.18.83","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12390073,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233641,"ipAddress":"10.XXX.18.221","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361739,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233645,"ipAddress":"10.XXX.18.46","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12391011,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233653,"ipAddress":"10.XXX.18.48","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12344715,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233655,"ipAddress":"10.XXX.18.45","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12344713,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233657,"ipAddress":"10.XXX.18.47","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12330203,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231621,"ipAddress":"10.XXX.18.201","status":"ON","waitCycles":3,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address, will not fail on slow server response due to high latency or high server load","id":17,"monitorLevel":0,"name":"SLOW PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12362157,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1232628,"ipAddress":"10.XXX.18.144","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12383237,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231943,"ipAddress":"10.XXX.18.205","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12320637,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1238053,"ipAddress":"10.XXX.18.108","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12321159,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1238187,"ipAddress":"10.XXX.18.3","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12321175,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1238147,"ipAddress":"10.XXX.18.213","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12321173,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1238169,"ipAddress":"10.XXX.18.225","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12327815,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239337,"ipAddress":"10.XXX.18.109","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12329141,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239526,"ipAddress":"10.XXX.18.5","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12332857,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230216,"ipAddress":"10.XXX.18.224","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12332875,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230167,"ipAddress":"10.XXX.18.4","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12370277,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236375,"ipAddress":"10.XXX.18.143","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12370285,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236410,"ipAddress":"10.XXX.18.86","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12370297,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236389,"ipAddress":"10.XXX.18.87","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12370303,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236475,"ipAddress":"10.XXX.18.93","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12374625,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237126,"ipAddress":"10.XXX.18.104","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12374631,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237132,"ipAddress":"10.XXX.18.90","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386909,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239205,"ipAddress":"10.XXX.18.136","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386911,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239229,"ipAddress":"10.XXX.18.169","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386925,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239238,"ipAddress":"10.XXX.18.80","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386917,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239253,"ipAddress":"10.XXX.18.63","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386921,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239230,"ipAddress":"10.XXX.18.79","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386951,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239196,"ipAddress":"10.XXX.18.168","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386963,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239222,"ipAddress":"10.XXX.18.134","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386961,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239221,"ipAddress":"10.XXX.18.139","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386971,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239193,"ipAddress":"10.XXX.18.155","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386977,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239203,"ipAddress":"10.XXX.18.131","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387469,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239296,"ipAddress":"10.XXX.18.69","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387467,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239324,"ipAddress":"10.XXX.18.77","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387485,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239312,"ipAddress":"10.XXX.18.163","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387481,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239329,"ipAddress":"10.XXX.18.254","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387489,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239325,"ipAddress":"10.XXX.18.251","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387795,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239401,"ipAddress":"10.XXX.18.75","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387797,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239361,"ipAddress":"10.XXX.18.73","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387803,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239371,"ipAddress":"10.XXX.18.61","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387813,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239435,"ipAddress":"10.XXX.18.78","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387817,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239373,"ipAddress":"10.XXX.18.82","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387821,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239388,"ipAddress":"10.XXX.18.64","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387841,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239413,"ipAddress":"10.XXX.18.200","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387847,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239535,"ipAddress":"10.XXX.18.252","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12387855,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1239448,"ipAddress":"10.XXX.18.223","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12393049,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230298,"ipAddress":"10.XXX.18.138","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12393051,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230270,"ipAddress":"10.XXX.18.135","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12393069,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230283,"ipAddress":"10.XXX.18.92","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12393067,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230299,"ipAddress":"10.XXX.18.158","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12393073,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230262,"ipAddress":"10.XXX.18.148","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12393079,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230264,"ipAddress":"10.XXX.18.6","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12399451,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231272,"ipAddress":"10.XXX.18.66","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12399457,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231196,"ipAddress":"10.XXX.18.71","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12399485,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231243,"ipAddress":"10.XXX.18.72","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12399479,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231208,"ipAddress":"10.XXX.18.81","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12302457,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231707,"ipAddress":"10.XXX.18.162","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12302455,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231708,"ipAddress":"10.XXX.18.85","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12302889,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231809,"ipAddress":"10.XXX.18.100","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12302911,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231830,"ipAddress":"10.XXX.18.132","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12302913,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231806,"ipAddress":"10.XXX.18.207","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12302939,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231843,"ipAddress":"10.XXX.18.137","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12302945,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231860,"ipAddress":"10.XXX.18.142","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12302949,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231842,"ipAddress":"10.XXX.18.160","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12306999,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1232405,"ipAddress":"10.XXX.18.74","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12314059,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1232904,"ipAddress":"10.XXX.18.211","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12314631,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233002,"ipAddress":"10.XXX.18.219","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12315349,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233230,"ipAddress":"10.XXX.18.215","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12315351,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233113,"ipAddress":"10.XXX.18.243","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12315379,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233184,"ipAddress":"10.XXX.18.218","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12317719,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233627,"ipAddress":"10.XXX.18.244","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12317731,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233744,"ipAddress":"10.XXX.18.125","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12317745,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233543,"ipAddress":"10.XXX.18.120","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12318997,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233806,"ipAddress":"10.XXX.18.217","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12319443,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233885,"ipAddress":"10.XXX.18.156","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338215,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236473,"ipAddress":"10.XXX.18.76","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338237,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236512,"ipAddress":"10.XXX.18.214","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338241,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236565,"ipAddress":"10.XXX.18.210","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338247,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236471,"ipAddress":"10.XXX.18.226","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338259,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236566,"ipAddress":"10.XXX.18.227","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338255,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236536,"ipAddress":"10.XXX.18.212","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338269,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236490,"ipAddress":"10.XXX.18.220","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338805,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236597,"ipAddress":"10.XXX.18.106","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338807,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236579,"ipAddress":"10.XXX.18.102","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338811,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236599,"ipAddress":"10.XXX.18.91","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12338809,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236580,"ipAddress":"10.XXX.18.89","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12339339,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236628,"ipAddress":"10.XXX.18.8","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12343291,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237253,"ipAddress":"10.XXX.18.84","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12343327,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237315,"ipAddress":"10.XXX.18.70","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12343331,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237248,"ipAddress":"10.XXX.18.65","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12343345,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237313,"ipAddress":"10.XXX.18.206","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12343361,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237350,"ipAddress":"10.XXX.18.253","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12343363,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1237361,"ipAddress":"10.XXX.18.229","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361497,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230166,"ipAddress":"10.XXX.18.122","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361503,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230178,"ipAddress":"10.XXX.18.124","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361509,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230121,"ipAddress":"10.XXX.18.2","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361513,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230135,"ipAddress":"10.XXX.18.133","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361529,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230190,"ipAddress":"10.XXX.18.147","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361525,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230205,"ipAddress":"10.XXX.18.153","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361531,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230165,"ipAddress":"10.XXX.18.130","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361537,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230142,"ipAddress":"10.XXX.18.141","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361541,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230192,"ipAddress":"10.XXX.18.161","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361543,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230182,"ipAddress":"10.XXX.18.145","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12361549,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230118,"ipAddress":"10.XXX.18.149","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12369557,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231052,"ipAddress":"10.XXX.18.123","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12375281,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231863,"ipAddress":"10.XXX.18.240","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12375285,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231964,"ipAddress":"10.XXX.18.249","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12375321,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1231888,"ipAddress":"10.XXX.18.242","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12385985,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233535,"ipAddress":"10.XXX.18.127","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12385991,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233562,"ipAddress":"10.XXX.18.247","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386041,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233557,"ipAddress":"10.XXX.18.113","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386803,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233698,"ipAddress":"10.XXX.18.129","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386863,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233800,"ipAddress":"10.XXX.18.248","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12386871,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233801,"ipAddress":"10.XXX.18.126","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12306653,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236770,"ipAddress":"10.XXX.18.9","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12306667,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236744,"ipAddress":"10.XXX.18.107","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12331197,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230378,"ipAddress":"10.XXX.18.164","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12331207,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230361,"ipAddress":"10.XXX.18.167","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12331209,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1230396,"ipAddress":"10.XXX.18.166","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12354613,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233874,"ipAddress":"10.XXX.18.232","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12355169,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1233972,"ipAddress":"10.XXX.18.114","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363413,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235141,"ipAddress":"10.XXX.18.118","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363417,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235140,"ipAddress":"10.XXX.18.119","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363419,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235135,"ipAddress":"10.XXX.18.99","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363423,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235152,"ipAddress":"10.XXX.18.116","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363433,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235130,"ipAddress":"10.XXX.18.231","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363435,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235132,"ipAddress":"10.XXX.18.117","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363443,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235151,"ipAddress":"10.XXX.18.233","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363447,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235129,"ipAddress":"10.XXX.18.237","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363453,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235163,"ipAddress":"10.XXX.18.111","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363463,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235133,"ipAddress":"10.XXX.18.94","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363467,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235154,"ipAddress":"10.XXX.18.110","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12363945,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235228,"ipAddress":"10.XXX.18.97","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367779,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235624,"ipAddress":"10.XXX.18.238","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367781,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235606,"ipAddress":"10.XXX.18.96","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367831,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235610,"ipAddress":"10.XXX.18.208","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367815,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235642,"ipAddress":"10.XXX.18.230","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367825,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235637,"ipAddress":"10.XXX.18.239","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367833,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235612,"ipAddress":"10.XXX.18.95","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367837,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235604,"ipAddress":"10.XXX.18.235","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367835,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235605,"ipAddress":"10.XXX.18.236","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367877,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235653,"ipAddress":"10.XXX.18.241","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367883,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235670,"ipAddress":"10.XXX.18.250","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12367887,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235685,"ipAddress":"10.XXX.18.246","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12369231,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1235834,"ipAddress":"10.XXX.18.54","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12370991,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236059,"ipAddress":"10.XXX.18.173","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12371001,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236084,"ipAddress":"10.XXX.18.159","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12371013,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236094,"ipAddress":"10.XXX.18.52","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12371019,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236069,"ipAddress":"10.XXX.18.30","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12371035,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236110,"ipAddress":"10.XXX.18.59","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12371045,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236063,"ipAddress":"10.XXX.18.176","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12371055,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236079,"ipAddress":"10.XXX.18.178","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12371063,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236115,"ipAddress":"10.XXX.18.49","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12371071,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236108,"ipAddress":"10.XXX.18.179","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12372241,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236259,"ipAddress":"10.XXX.18.22","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]},{"complexType":"SoftLayer_Virtual_Guest","id":12372851,"networkMonitors":[{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Host","id":1236315,"ipAddress":"10.XXX.18.26","status":"ON","waitCycles":0,"queryType":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_Type","description":"Test ping to address","id":1,"monitorLevel":0,"name":"SERVICE PING"},"responseAction":{"complexType":"SoftLayer_Network_Monitor_Version1_Query_ResponseType","actionDescription":"Notify Users","id":2,"level":0}}]}]}

I agree that there must be some change in the API itself because the code worked a couple of months ago. But I cannot decide whether the answer is syntactically wrong or there is a problem when parsing the answer on the client side.

@acamacho82
Copy link
Contributor

This issue was reported to SoftLayer in order to be fixed. I don't have an ETA, the work around I found is retrieving a little set of data using the result-limits feature, in java client the limits can be set by using the method setResultLimit() but it doesn't work if withMask() is set, this is a known issue #52, so I recommend you to use setMask() instead.

The following sample uses limits and retrieves all guests from 8 to 8.

        ApiClient client = new RestApiClient().withCredentials(username, apiKey);

        Account.Service service = Account.service(client);

        service.setMask("mask[id,hostname,networkMonitors[id,ipAddress,queryType,responseAction,lastResult,status,waitCycles]]");

        // Retrieve and print guests using limits
        boolean haveItems = true;
        int offset = 0;
        int limit = 8;        
        while(haveItems){
            service.setResultLimit(new ResultLimit(offset, limit));
            List<Guest> guests = service.getVirtualGuests();

            // Print response in JSON format
            Gson gson = new GsonBuilder().setPrettyPrinting().create();
            System.out.println(gson.toJson(guests));
            
            // verify if there is more items to retrieve
            if(!guests.isEmpty()){
                offset += limit;
            } else {
                haveItems = false;
            }                         
        }

@camporter
Copy link
Member

I'm not seeing issues with this specific query now. Going ahead and closing the issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants