diff --git a/json-path/src/main/java/com/jayway/jsonpath/EvaluationCallback.java b/json-path/src/main/java/com/jayway/jsonpath/EvaluationCallback.java index 5b41947f..5e2db2e5 100644 --- a/json-path/src/main/java/com/jayway/jsonpath/EvaluationCallback.java +++ b/json-path/src/main/java/com/jayway/jsonpath/EvaluationCallback.java @@ -26,12 +26,12 @@ public interface EvaluationCallback { * Callback invoked when result is found * @param path -- the specific path that was triggered */ - void resultFound(Path path); + public void resultFound(Object source, Object obj, Path path) throws Exception; /** * Callback invoked when the parser leaves the region in which the match * was found * @param path -- the specific path that was untriggered */ - void resultFoundExit(Path path); + public void resultFoundExit(Object source, Object obj, Path path) throws Exception; } diff --git a/json-path/src/main/java/com/jayway/jsonpath/internal/token/ArrayToken.java b/json-path/src/main/java/com/jayway/jsonpath/internal/token/ArrayToken.java index 3981147a..fc1ec1a5 100644 --- a/json-path/src/main/java/com/jayway/jsonpath/internal/token/ArrayToken.java +++ b/json-path/src/main/java/com/jayway/jsonpath/internal/token/ArrayToken.java @@ -5,7 +5,7 @@ package com.jayway.jsonpath.internal.token; * * @author Hunter Payne **/ -public class ArrayToken implements TokenStackElement +public class ArrayToken extends TokenStackElement { int currentIndex; TokenStackElement value; // can be an object, array, or property diff --git a/json-path/src/main/java/com/jayway/jsonpath/internal/token/FloatToken.java b/json-path/src/main/java/com/jayway/jsonpath/internal/token/FloatToken.java index 561eb613..8015b8ad 100644 --- a/json-path/src/main/java/com/jayway/jsonpath/internal/token/FloatToken.java +++ b/json-path/src/main/java/com/jayway/jsonpath/internal/token/FloatToken.java @@ -5,7 +5,7 @@ package com.jayway.jsonpath.internal.token; * * @author Hunter Payne **/ -public class FloatToken implements TokenStackElement +public class FloatToken extends TokenStackElement { public float value; diff --git a/json-path/src/main/java/com/jayway/jsonpath/internal/token/IntToken.java b/json-path/src/main/java/com/jayway/jsonpath/internal/token/IntToken.java index df3dc314..e91b407f 100644 --- a/json-path/src/main/java/com/jayway/jsonpath/internal/token/IntToken.java +++ b/json-path/src/main/java/com/jayway/jsonpath/internal/token/IntToken.java @@ -5,7 +5,7 @@ package com.jayway.jsonpath.internal.token; * * @author Hunter Payne **/ -public class IntToken implements TokenStackElement +public class IntToken extends TokenStackElement { public int value; diff --git a/json-path/src/main/java/com/jayway/jsonpath/internal/token/ObjectToken.java b/json-path/src/main/java/com/jayway/jsonpath/internal/token/ObjectToken.java index 408580fd..aacceca4 100644 --- a/json-path/src/main/java/com/jayway/jsonpath/internal/token/ObjectToken.java +++ b/json-path/src/main/java/com/jayway/jsonpath/internal/token/ObjectToken.java @@ -5,7 +5,7 @@ package com.jayway.jsonpath.internal.token; * * @author Hunter Payne **/ -public class ObjectToken implements TokenStackElement +public class ObjectToken extends TokenStackElement { String key; TokenStackElement value; // can be an array, object, or property diff --git a/json-path/src/main/java/com/jayway/jsonpath/internal/token/StringToken.java b/json-path/src/main/java/com/jayway/jsonpath/internal/token/StringToken.java index 2e1ae138..421c7eeb 100644 --- a/json-path/src/main/java/com/jayway/jsonpath/internal/token/StringToken.java +++ b/json-path/src/main/java/com/jayway/jsonpath/internal/token/StringToken.java @@ -5,7 +5,7 @@ package com.jayway.jsonpath.internal.token; * * @author Hunter Payne **/ -public class StringToken implements TokenStackElement +public class StringToken extends TokenStackElement { public String value; diff --git a/json-path/src/main/java/com/jayway/jsonpath/internal/token/TokenStack.java b/json-path/src/main/java/com/jayway/jsonpath/internal/token/TokenStack.java index ab55f7d2..e753705f 100644 --- a/json-path/src/main/java/com/jayway/jsonpath/internal/token/TokenStack.java +++ b/json-path/src/main/java/com/jayway/jsonpath/internal/token/TokenStack.java @@ -2,14 +2,15 @@ package com.jayway.jsonpath.internal.token; import java.util.*; -import java.util.logging.Level; -import java.util.logging.Logger; +import net.minidev.json.JSONArray; +import net.minidev.json.JSONObject; import com.jayway.jsonpath.Configuration; import com.jayway.jsonpath.EvaluationCallback; import com.jayway.jsonpath.internal.Path; import com.fasterxml.jackson.core.JsonParser; -import com.fasterxml.jackson.core.JsonToken; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * @@ -17,10 +18,11 @@ import com.fasterxml.jackson.core.JsonToken; **/ public class TokenStack { - protected static Logger log = Logger.getLogger("com.jayway.jsonpath"); + private static final Logger log = LoggerFactory.getLogger(TokenStack.class); protected Configuration conf; protected Stack elements; + protected Stack objStack; protected List paths; protected Map matchedPaths; @@ -33,6 +35,7 @@ public class TokenStack paths = new ArrayList(); matchedPaths = new HashMap(); elements = new Stack(); + objStack = new Stack(); rootMatch = null; } @@ -49,14 +52,21 @@ public class TokenStack paths.add(path); } + public void read(JsonParser parser, EvaluationCallback callback) + throws Exception + { + read(parser,callback,true); + } + /** * reads from stream and notifies the callback of matched registered paths */ - public void read(JsonParser parser, EvaluationCallback callback) + public void read(JsonParser parser, EvaluationCallback callback, boolean getParents) throws Exception { assert(callback != null); + Object obj = null; boolean needsPathCheck = false; /* if (null == curr && elements.empty()) { @@ -71,6 +81,7 @@ public class TokenStack } */ while (parser.nextToken() != null) { + //log.debug("type/name/val: " + parser.getCurrentToken() + " " + parser.getCurrentName() + " " + parser.getText()); boolean saveMatch = false; switch (parser.getCurrentToken()) { case START_ARRAY: @@ -85,33 +96,42 @@ public class TokenStack saveMatch = true; needsPathCheck = true; elements.push(curr); + + obj = stackPush(parser.getCurrentName(),new JSONArray()); break; } case END_ARRAY: { Path match = matchedPaths.remove(curr); if (match != null) { - callback.resultFoundExit(match); + callback.resultFoundExit(parser.getCurrentToken(), obj, match); } elements.pop(); if (elements.empty()) curr = null; else curr = elements.peek(); + + obj = stackPop(callback, curr, JSONArray.class, match); break; } case VALUE_EMBEDDED_OBJECT: case START_OBJECT: { - if (curr != null && curr.getType() == TokenType.ARRAY_TOKEN) { + obj = stackPush(parser.getCurrentName(), new JSONObject()); + + if (isArray(curr)) { if (((ArrayToken)curr).getValue() != null && matchedPaths.containsKey(curr)) { Path match = matchedPaths.remove(curr); - callback.resultFoundExit(match); + if (getParents) { + callback.resultFoundExit(parser.getCurrentToken(), obj, match); + } if (match.checkForMatch(this)) { matchedPaths.put(curr, match); - callback.resultFound(match); + //callback.resultFound(match); + curr.setMatched(); } } } else if (null == curr && elements.empty()) { @@ -119,7 +139,7 @@ public class TokenStack for (Path path : paths) { if (path.checkForMatch(this)) { matchedPaths.put(curr, path); - callback.resultFound(path); + //callback.resultFound(path); rootMatch = path; } } @@ -139,20 +159,24 @@ public class TokenStack } case END_OBJECT: { + if (getParents) { if (!"$".equals(curr)) { Path match = matchedPaths.remove(curr); if (match != null) { - callback.resultFoundExit(match); + callback.resultFoundExit(parser.getCurrentToken(), obj, match); } } else { Path match = matchedPaths.get("$"); if (match != null) { - callback.resultFoundExit(match); + callback.resultFoundExit(parser.getCurrentToken(), obj, match); } } + } elements.pop(); if (elements.empty()) curr = null; else curr = elements.peek(); + + obj = stackPop(callback, curr, JSONObject.class, null); break; } case FIELD_NAME: @@ -166,6 +190,7 @@ public class TokenStack StringToken newToken = new StringToken("FALSE"); curr.setValue(newToken); needsPathCheck = true; + objPutVal(obj, curr, newToken.value); break; } case VALUE_TRUE: @@ -173,6 +198,7 @@ public class TokenStack StringToken newToken = new StringToken("TRUE"); curr.setValue(newToken); needsPathCheck = true; + objPutVal(obj, curr, newToken.value); break; } case VALUE_NUMBER_FLOAT: @@ -181,6 +207,7 @@ public class TokenStack new FloatToken((float)parser.getValueAsDouble()); curr.setValue(newToken); needsPathCheck = true; + objPutVal(obj, curr, newToken.value); break; } case VALUE_NUMBER_INT: @@ -188,6 +215,7 @@ public class TokenStack IntToken newToken = new IntToken(parser.getValueAsInt()); curr.setValue(newToken); needsPathCheck = true; + objPutVal(obj, curr, newToken.value); break; } case VALUE_STRING: @@ -195,12 +223,14 @@ public class TokenStack StringToken newToken = new StringToken(parser.getText()); curr.setValue(newToken); needsPathCheck = true; + objPutVal(obj, curr, parser.getText()); break; } case VALUE_NULL: { curr.setValue(null); needsPathCheck = true; + objPutVal(obj, curr, null); break; } default: @@ -211,18 +241,113 @@ public class TokenStack for (Path path : paths) { if (path.checkForMatch(this)) { if (saveMatch) matchedPaths.put(curr, path); - callback.resultFound(path); + curr.setMatched(); + if (getParents) { + callback.resultFound(parser.getCurrentToken(), obj, path); + } } } needsPathCheck = false; } - if (rootMatch != null && elements.empty()) { - callback.resultFoundExit(rootMatch); + if (rootMatch != null && elements.empty() && getParents) { + if (isArray(curr)) { + obj = new JSONArray(); + } + callback.resultFoundExit(parser.getCurrentToken(), obj, rootMatch); rootMatch = null; } } } + + private Object stackPush(String key, Object jsObj) throws Exception { + if (jsObj == null) { + return null; + } + + if (this.objStack.size() > 0) { + Object obj = this.objStack.peek(); + //log.trace("PP : Push[" + this.objStack.size() + "] " + jsObj.getClass().getSimpleName() + " -> " + obj.getClass()); + if (obj.getClass() == JSONArray.class) { + ((JSONArray)obj).add(jsObj); + } else if (obj.getClass() == JSONObject.class) { + ((JSONObject)obj).put(key, jsObj); + } else { + throw new Exception("Unhandled type: " + obj.getClass()); + } + + } else { + //log.trace("PP : Push " + jsObj.getClass().getSimpleName() + " -> ROOT"); + } + this.objStack.add(jsObj); + + return jsObj; + } + + private Object stackPop(EvaluationCallback callback, TokenStackElement tse, T jsObj, Path path) throws Exception { + if (jsObj == null) { + return null; + } + + Object obj = null; + Object popObj = null; + if (this.objStack.size() > 0) { + popObj = this.objStack.peek(); + + //log.trace("PP : Pop " +( popObj != null ? popObj.getClass() : " null")); + if (popObj.getClass() != jsObj) { + throw new Exception("Unexpected type : " + popObj.getClass()); + } else { + popObj = this.objStack.pop(); + if (this.objStack.size() > 0) { + obj = objStack.peek(); + } else { + //log.debug("PP : Now ROOT"); + obj = null; + } + } + } + + if (tse != null && tse.getMatched()) { + callback.resultFound("Stack", popObj, path); + } + + //log.info("PP : Parent now[" + this.objStack.size() + "]: " + objShow(obj)); + return obj; + } + + private boolean isArray(TokenStackElement current) { + return current != null && current.getType() == TokenType.ARRAY_TOKEN; + } + + public String objShow(Object obj) { + if (obj != null) { + Class cls = obj.getClass(); + if (cls == JSONObject.class) { + return "JSONObject: " + ((JSONObject)obj).toString(); + } else if (cls == JSONArray.class) { + return "JSONArray: " + Arrays.toString(((JSONArray)obj).toArray()); + } + } + return "NA"; + } + + private void objPutVal(Object objIn, TokenStackElement el, Object value) throws Exception { + if (objIn == null) { + return; + } + + Class objInCls = objIn.getClass(); + if (objInCls == JSONObject.class) { + JSONObject obj = (JSONObject)objIn; + obj.put(((ObjectToken)el).key, value); + } else if (objInCls == JSONArray.class) { + JSONArray obj = (JSONArray)objIn; + obj.add(value); + } else { + throw new Exception("Unhandled type: " + objInCls); + } + } public String toString() { diff --git a/json-path/src/main/java/com/jayway/jsonpath/internal/token/TokenStackElement.java b/json-path/src/main/java/com/jayway/jsonpath/internal/token/TokenStackElement.java index ea1027d1..6df5e9ec 100644 --- a/json-path/src/main/java/com/jayway/jsonpath/internal/token/TokenStackElement.java +++ b/json-path/src/main/java/com/jayway/jsonpath/internal/token/TokenStackElement.java @@ -1,17 +1,45 @@ package com.jayway.jsonpath.internal.token; +import java.util.logging.Logger; + /** * * @author Hunter Payne **/ -public interface TokenStackElement +public abstract class TokenStackElement { - public TokenType getType(); // otherwise its an object + private static Logger log = Logger.getLogger(TokenStackElement.class.getName()); + + private boolean matched = false; + + private TokenStackElement parent; + + public abstract TokenType getType(); // otherwise its an object + + public abstract TokenStackElement getValue(); + + public abstract void setValue(TokenStackElement elem); + + public TokenStackElement getParent() { + if (parent == null) { + return this; + } + //log.trace("parent: " + parent); + return parent; + } - public TokenStackElement getValue(); + public void setParent(TokenStackElement parent) { + this.parent = parent; + } - public void setValue(TokenStackElement elem); + public void setMatched() { + this.matched = true; + } + + public boolean getMatched() { + return matched; + } } // End TokenStackElement.java diff --git a/json-path/src/test/java/com/jayway/jsonpath/CallbackRecorder.java b/json-path/src/test/java/com/jayway/jsonpath/CallbackRecorder.java index 1c8d49fc..fc5d16b4 100644 --- a/json-path/src/test/java/com/jayway/jsonpath/CallbackRecorder.java +++ b/json-path/src/test/java/com/jayway/jsonpath/CallbackRecorder.java @@ -44,12 +44,12 @@ public class CallbackRecorder implements EvaluationCallback { results = new ArrayList(); } - public void resultFound(Path path) { + public void resultFound(Object src, Object val, Path path) { System.err.println("found result " + path); results.add(new CallbackEvent(path, false)); } - public void resultFoundExit(Path path) { + public void resultFoundExit(Object src, Object val, Path path) { System.err.println("exiting result " + path); results.add(new CallbackEvent(path, true)); } diff --git a/json-path/src/test/java/com/jayway/jsonpath/JacksonTest.java b/json-path/src/test/java/com/jayway/jsonpath/JacksonTest.java index 53188db5..19a0e204 100644 --- a/json-path/src/test/java/com/jayway/jsonpath/JacksonTest.java +++ b/json-path/src/test/java/com/jayway/jsonpath/JacksonTest.java @@ -9,12 +9,10 @@ import java.nio.charset.Charset; import com.fasterxml.jackson.core.JsonParser; import com.fasterxml.jackson.core.JsonFactory; - import com.jayway.jsonpath.EvaluationCallback; import com.jayway.jsonpath.internal.Path; import com.jayway.jsonpath.internal.PathCompiler; import com.jayway.jsonpath.internal.token.*; - import static java.util.Collections.singletonMap; import static org.assertj.core.api.Assertions.assertThat; @@ -607,7 +605,7 @@ public class JacksonTest extends BaseTest implements EvaluationCallback { equals(new CallbackRecorder.CallbackEvent(rootPath, true))); } - public void resultFound(Path path) { + public void resultFound(Object src, Object val, Path path) { if (path == idPath) { switch (match++) { case 0: @@ -1040,14 +1038,14 @@ public class JacksonTest extends BaseTest implements EvaluationCallback { break; } } - recorder.resultFound(path); + recorder.resultFound(src, val, path); } - public void resultFoundExit(Path path) { + public void resultFoundExit(Object src, Object val, Path path) { assert(path != idPath); assert(path != floatPath); assert(path != intPath); - recorder.resultFoundExit(path); + recorder.resultFoundExit(src, val, path); } protected void checkResult(TokenStack stack, Object expected) { diff --git a/json-path/src/test/java/com/jayway/jsonpath/JacksonTest_Split.java b/json-path/src/test/java/com/jayway/jsonpath/JacksonTest_Split.java new file mode 100644 index 00000000..092d8335 --- /dev/null +++ b/json-path/src/test/java/com/jayway/jsonpath/JacksonTest_Split.java @@ -0,0 +1,48 @@ +package com.jayway.jsonpath; + +import static org.junit.Assert.*; +import com.fasterxml.jackson.core.JsonFactory; +import com.jayway.jsonpath.internal.Path; +import com.jayway.jsonpath.internal.PathCompiler; +import com.jayway.jsonpath.internal.token.TokenStack; + +import java.io.InputStream; +import java.util.ArrayList; +import java.util.List; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.junit.Test; + +public class JacksonTest_Split extends BaseTest implements EvaluationCallback { + + private static final Logger log = LoggerFactory.getLogger(JacksonTest_Split.class); + private List results = new ArrayList(); + + @Test + public void jsonTest() throws Exception { + String res = "json_opsview1.json"; + try (InputStream stream = getClass().getClassLoader().getResourceAsStream(res)) { + Path path = PathCompiler.compile("$.list[*]"); + + TokenStack stack = new TokenStack(JACKSON_CONFIGURATION); + + JsonFactory factory = new JsonFactory(); + stack.registerPath(path); + stack.read(factory.createParser(stream), this, false); + } + log.debug("results: " + results.size()); + assertTrue(results.size() == 96); + } + + @Override + public void resultFound(Object source, Object obj, Path path) throws Exception { + //log.debug(source + ":" + String.valueOf(obj)); + results.add(obj); + } + + @Override + public void resultFoundExit(Object source, Object obj, Path path) throws Exception { + //log.debug(source + ":" + String.valueOf(obj)); + } +} diff --git a/json-path/src/test/resources/json_opsview1.json b/json-path/src/test/resources/json_opsview1.json new file mode 100644 index 00000000..17b03554 --- /dev/null +++ b/json-path/src/test/resources/json_opsview1.json @@ -0,0 +1,4572 @@ +{ + "summary":{ + "handled":"231", + "unhandled":"8", + "total":"239", + "service":{ + "critical":"3", + "ok":"135", + "handled":"135", + "unknown":"3", + "unhandled":"8", + "warning":"2", + "total":"143" + }, + "host":{ + "handled":"96", + "unhandled":"0", + "up":"96", + "total":"96" + } + }, + "list":[ + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.137: rta 0.226ms, lost 0%", + "state":"ok", + "service_object_id":"269", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415650", + "perfdata_available":"1" + } + ], + "name":"10.0.0.137", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.200: rta 0.256ms, lost 0%", + "state":"ok", + "service_object_id":"270", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415734", + "perfdata_available":"1" + } + ], + "name":"10.0.0.200", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.201: rta 0.203ms, lost 0%", + "state":"ok", + "service_object_id":"271", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415651", + "perfdata_available":"1" + } + ], + "name":"10.0.0.201", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.231: rta 0.504ms, lost 0%", + "state":"ok", + "service_object_id":"272", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415515", + "perfdata_available":"1" + } + ], + "name":"10.0.0.231", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.232: rta 0.418ms, lost 0%", + "state":"ok", + "service_object_id":"273", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415653", + "perfdata_available":"1" + } + ], + "name":"10.0.0.232", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"2", + "handled":"2", + "computed_state":"unknown", + "unknown":"3", + "unhandled":"3", + "total":"5" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.31: rta 0.879ms, lost 0%", + "state":"ok", + "service_object_id":"274", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415553", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128714", + "state_type":"hard", + "name":"Interface Status", + "current_check_attempt":"3", + "output":"Dependency failure: SNMP Agent is UNKNOWN", + "state":"unknown", + "service_object_id":"275", + "unhandled":"1", + "downtime":"0", + "last_check":"1442415533", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128654", + "state_type":"hard", + "name":"SNMP Agent", + "current_check_attempt":"3", + "output":"check_snmp_sysinfo UNKNOWN - SNMP parameter validation failed. Missing rocommunity!", + "state":"unknown", + "service_object_id":"276", + "unhandled":"1", + "downtime":"0", + "last_check":"1442415534", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128712", + "state_type":"hard", + "name":"Uptime", + "current_check_attempt":"3", + "output":"Dependency failure: SNMP Agent is UNKNOWN", + "state":"unknown", + "service_object_id":"277", + "unhandled":"1", + "downtime":"0", + "last_check":"1442415536", + "perfdata_available":"0" + }, + { + "max_check_attempts":"1", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Uptime Restart", + "current_check_attempt":"1", + "output":"Service assumed OK - no results received", + "state":"ok", + "service_object_id":"278", + "unhandled":"0", + "downtime":"0", + "last_check":"1441286896", + "perfdata_available":"0" + } + ], + "name":"10.0.0.31", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.31: rta 0.927ms, lost 0%", + "num_services":"5", + "downtime":"0", + "last_check":"1442415533", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.46: rta 0.491ms, lost 0%", + "state":"ok", + "service_object_id":"279", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415605", + "perfdata_available":"1" + } + ], + "name":"10.0.0.46", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"debian", + "state":"up", + "summary":{ + "critical":"1", + "handled":"0", + "computed_state":"critical", + "unhandled":"1", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"877719", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1050858", + "state_type":"hard", + "name":"SSH processes", + "current_check_attempt":"3", + "output":"Connection refused by host", + "state":"critical", + "service_object_id":"372", + "unhandled":"1", + "downtime":"0", + "last_check":"1442415632", + "perfdata_available":"0" + } + ], + "name":"10.0.0.67", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.67: rta 0.285ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442415632", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.70: rta 0.256ms, lost 0%", + "state":"ok", + "service_object_id":"280", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415667", + "perfdata_available":"1" + } + ], + "name":"10.0.0.70", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"447594", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"447594", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.86: rta 0.459ms, lost 0%", + "state":"ok", + "service_object_id":"281", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415475", + "perfdata_available":"1" + } + ], + "name":"10.0.0.86", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.86: rta 0.112ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1441968173", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.93: rta 0.421ms, lost 0%", + "state":"ok", + "service_object_id":"282", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415521", + "perfdata_available":"1" + } + ], + "name":"10.0.0.93", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.6.1: rta 1.994ms, lost 0%", + "state":"ok", + "service_object_id":"283", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415730", + "perfdata_available":"1" + } + ], + "name":"10.0.6.1", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.6.176: rta 0.503ms, lost 0%", + "state":"ok", + "service_object_id":"286", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415521", + "perfdata_available":"1" + } + ], + "name":"aixdev2.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.150: rta 0.404ms, lost 0%", + "state":"ok", + "service_object_id":"287", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415509", + "perfdata_available":"1" + } + ], + "name":"bestraining5.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"93338", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"93338", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.75: rta 0.385ms, lost 0%", + "state":"ok", + "service_object_id":"288", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415730", + "perfdata_available":"1" + } + ], + "name":"bigip1.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.75: rta 0.192ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442322429", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.77: rta 1.116ms, lost 0%", + "state":"ok", + "service_object_id":"289", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415560", + "perfdata_available":"1" + } + ], + "name":"build-linux64.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.76: rta 0.309ms, lost 0%", + "state":"ok", + "service_object_id":"290", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415670", + "perfdata_available":"1" + } + ], + "name":"buildserver01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.97: rta 0.193ms, lost 0%", + "state":"ok", + "service_object_id":"291", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415723", + "perfdata_available":"1" + } + ], + "name":"demoserver01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.25: rta 0.160ms, lost 0%", + "state":"ok", + "service_object_id":"292", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415674", + "perfdata_available":"1" + } + ], + "name":"demoserver02.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.51: rta 0.254ms, lost 0%", + "state":"ok", + "service_object_id":"293", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415736", + "perfdata_available":"1" + } + ], + "name":"devbes.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.89: rta 0.431ms, lost 0%", + "state":"ok", + "service_object_id":"294", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415674", + "perfdata_available":"1" + } + ], + "name":"devmodeller.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.6.162: rta 0.290ms, lost 0%", + "state":"ok", + "service_object_id":"295", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415501", + "perfdata_available":"1" + } + ], + "name":"devtest2.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"175471", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.3: rta 1.124ms, lost 0%", + "state":"ok", + "service_object_id":"296", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415496", + "perfdata_available":"1" + } + ], + "name":"dvr", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.3: rta 368.532ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442239997", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.6.185: rta 0.233ms, lost 0%", + "state":"ok", + "service_object_id":"297", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415539", + "perfdata_available":"1" + } + ], + "name":"england.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.194: rta 0.288ms, lost 0%", + "state":"ok", + "service_object_id":"298", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415681", + "perfdata_available":"1" + } + ], + "name":"esxi5v1.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"101692", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"101692", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.49: rta 0.411ms, lost 0%", + "state":"ok", + "service_object_id":"284", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415475", + "perfdata_available":"1" + } + ], + "name":"HPCOMPAQ-JM-VIS.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.49: rta 0.274ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442314075", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.68: rta 0.235ms, lost 0%", + "state":"ok", + "service_object_id":"299", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415472", + "perfdata_available":"1" + } + ], + "name":"interlinkdc01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.118: rta 0.312ms, lost 0%", + "state":"ok", + "service_object_id":"300", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415683", + "perfdata_available":"1" + } + ], + "name":"interlinkdc02.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.151: rta 0.350ms, lost 0%", + "state":"ok", + "service_object_id":"301", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415615", + "perfdata_available":"1" + } + ], + "name":"interlinkserv.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.6.188: rta 0.221ms, lost 0%", + "state":"ok", + "service_object_id":"302", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415682", + "perfdata_available":"1" + } + ], + "name":"ireland.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.63: rta 0.264ms, lost 0%", + "state":"ok", + "service_object_id":"285", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415470", + "perfdata_available":"1" + } + ], + "name":"ISS-HPOVOW.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.61: rta 0.453ms, lost 0%", + "state":"ok", + "service_object_id":"303", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415488", + "perfdata_available":"1" + } + ], + "name":"iss-hpovow2.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.24: rta 0.700ms, lost 0%", + "state":"ok", + "service_object_id":"304", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415685", + "perfdata_available":"1" + } + ], + "name":"moasi01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.126: rta 0.548ms, lost 0%", + "state":"ok", + "service_object_id":"305", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415545", + "perfdata_available":"1" + } + ], + "name":"mobes01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.114: rta 0.403ms, lost 0%", + "state":"ok", + "service_object_id":"306", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415688", + "perfdata_available":"1" + } + ], + "name":"mobes02.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.10: rta 0.189ms, lost 0%", + "state":"ok", + "service_object_id":"307", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415697", + "perfdata_available":"1" + } + ], + "name":"nasdev.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.7: rta 1.002ms, lost 0%", + "state":"ok", + "service_object_id":"308", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415693", + "perfdata_available":"1" + } + ], + "name":"netmonitor", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.40: rta 1.119ms, lost 0%", + "state":"ok", + "service_object_id":"309", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415613", + "perfdata_available":"1" + } + ], + "name":"nexus.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.208: rta 0.290ms, lost 0%", + "state":"ok", + "service_object_id":"310", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415692", + "perfdata_available":"1" + } + ], + "name":"nndev1.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.196: rta 0.250ms, lost 0%", + "state":"ok", + "service_object_id":"311", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415525", + "perfdata_available":"1" + } + ], + "name":"nndev2.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.52: rta 0.483ms, lost 0%", + "state":"ok", + "service_object_id":"312", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415695", + "perfdata_available":"1" + } + ], + "name":"nndev3.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.62: rta 0.284ms, lost 0%", + "state":"ok", + "service_object_id":"313", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415537", + "perfdata_available":"1" + } + ], + "name":"nndev4b.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.222: rta 0.414ms, lost 0%", + "state":"ok", + "service_object_id":"314", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415697", + "perfdata_available":"1" + } + ], + "name":"opbridgeasi01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.122: rta 0.457ms, lost 0%", + "state":"ok", + "service_object_id":"315", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415655", + "perfdata_available":"1" + } + ], + "name":"opbridgebes01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.132: rta 0.459ms, lost 0%", + "state":"ok", + "service_object_id":"316", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415703", + "perfdata_available":"1" + } + ], + "name":"opbridgebes02.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.127: rta 0.373ms, lost 0%", + "state":"ok", + "service_object_id":"317", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415552", + "perfdata_available":"1" + } + ], + "name":"opbridgedb01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.120: rta 0.573ms, lost 0%", + "state":"ok", + "service_object_id":"318", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415702", + "perfdata_available":"1" + } + ], + "name":"opbridgescm01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.153: rta 0.461ms, lost 0%", + "state":"ok", + "service_object_id":"319", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415692", + "perfdata_available":"1" + } + ], + "name":"openaudit.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"opsview", + "state":"up", + "summary":{ + "critical":"2", + "ok":"36", + "handled":"36", + "computed_state":"critical", + "unhandled":"4", + "warning":"2", + "total":"40" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1481991", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - localhost: rta 0.022ms, lost 0%", + "state":"ok", + "service_object_id":"135", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415506", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"CPU statistics", + "current_check_attempt":"1", + "output":"OK: utilization:1.4%,guest:0.0%,iowait:0.1%,irq:0.0%,nice:0.0%,softirq:0.0%,steal:0.0%,system:0.4%,user:0.9%", + "state":"ok", + "service_object_id":"134", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415488", + "perfdata_available":"1" + }, + { + "max_check_attempts":"2", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Defunct ndo2db Processes", + "current_check_attempt":"1", + "output":"PROCS OK: 0 processes with UID = 498 (nagios), STATE = Z, command name 'ndo2d'", + "state":"ok", + "service_object_id":"136", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415503", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Disk: /", + "current_check_attempt":"1", + "output":"DISK OK - free space: / 22697 MB (88% inode=95%):", + "state":"ok", + "service_object_id":"137", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415507", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Disk: /opt/opsview/work/", + "current_check_attempt":"1", + "output":"DISK OK - free space: / 22697 MB (88% inode=95%):", + "state":"ok", + "service_object_id":"138", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415516", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Disk: /tmp", + "current_check_attempt":"1", + "output":"DISK OK - free space: / 22697 MB (88% inode=95%):", + "state":"ok", + "service_object_id":"139", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415524", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Disk: /usr/local/nagios/var", + "current_check_attempt":"1", + "output":"DISK OK - free space: / 22697 MB (88% inode=95%):", + "state":"ok", + "service_object_id":"140", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415533", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Disk: /usr/local/nagios/var/backups", + "current_check_attempt":"1", + "output":"DISK OK - free space: / 22697 MB (88% inode=95%):", + "state":"ok", + "service_object_id":"141", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415542", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Disk: /var/log/opsview/", + "current_check_attempt":"1", + "output":"DISK OK - free space: / 22697 MB (88% inode=95%):", + "state":"ok", + "service_object_id":"142", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415567", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Disk: /var/opt/opsview", + "current_check_attempt":"1", + "output":"DISK OK - free space: / 22697 MB (88% inode=95%):", + "state":"ok", + "service_object_id":"143", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415575", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Nagios Core Processes", + "current_check_attempt":"1", + "output":"PROCS OK: 6 processes with command name 'nagios'", + "state":"ok", + "service_object_id":"144", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415562", + "perfdata_available":"1" + }, + { + "max_check_attempts":"1", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Nagios Core Startup", + "current_check_attempt":"1", + "output":"Nagios started up in 0 seconds", + "state":"ok", + "service_object_id":"145", + "unhandled":"0", + "downtime":"0", + "last_check":"1442413466", + "perfdata_available":"1" + }, + { + "max_check_attempts":"1", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Nagios Core Stats", + "current_check_attempt":"1", + "output":"NAGIOSTATS OK", + "state":"ok", + "service_object_id":"146", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415275", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Opsview Agent", + "current_check_attempt":"1", + "output":"NRPE v2.14 (OpsviewAgent 4.6.3.0: osname=Linux: osvers=2.6.32-573.3.1.el6.x86_64: desc=CentOS release 6.7 (Final))", + "state":"ok", + "service_object_id":"147", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415581", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Opsview Application Processes", + "current_check_attempt":"1", + "output":"PROCS OK: 1 process with args 'opsview_web_server'", + "state":"ok", + "service_object_id":"148", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415594", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Opsview Application Server", + "current_check_attempt":"1", + "output":"TCP OK - 0.001 second response time on localhost port 3000", + "state":"ok", + "service_object_id":"149", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415602", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"533862", + "state_type":"hard", + "name":"Opsview Application Status", + "current_check_attempt":"3", + "output":"opsview CRITICAL (critical=1)\nopsview (errors=1):\n CRITICAL opsview::Opsview Login", + "state":"critical", + "service_object_id":"150", + "unhandled":"1", + "downtime":"0", + "last_check":"1442415726", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Opsview Daemon", + "current_check_attempt":"1", + "output":"TCP OK - 0.001 second response time on socket /usr/local/nagios/var/rw/opsviewd.cmd", + "state":"ok", + "service_object_id":"154", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415643", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Opsview Data Warehouse Status", + "current_check_attempt":"1", + "output":"ODW_STATUS OK - Last updated: 2015-09-16T15:00:00", + "state":"ok", + "service_object_id":"155", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415342", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481796", + "state_type":"hard", + "name":"Opsview DB Connections", + "current_check_attempt":"1", + "output":"MYSQL_PERFORMANCE OK - All parameters OK", + "state":"ok", + "service_object_id":"151", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415673", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481789", + "state_type":"hard", + "name":"Opsview DB Performance", + "current_check_attempt":"1", + "output":"MYSQL_PERFORMANCE OK - All parameters OK", + "state":"ok", + "service_object_id":"152", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415683", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Opsview DB Status", + "current_check_attempt":"1", + "output":"Uptime: 1656668 Threads: 15 Questions: 6752975 Slow queries: 0 Opens: 29112 Flush tables: 1 Open tables: 64 Queries per second avg: 4.76", + "state":"ok", + "service_object_id":"153", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415631", + "perfdata_available":"1" + }, + { + "max_check_attempts":"2", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Opsview Graphing Import", + "current_check_attempt":"1", + "output":"LOGS OK - Oldest log file is 0 seconds old, 0 files backlogged", + "state":"ok", + "service_object_id":"156", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415350", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"358364", + "state_type":"hard", + "name":"Opsview Housekeeping Cronjob Monitor", + "current_check_attempt":"1", + "output":"CRONJOBS OK - Housekeeping cronjob last successfully ran 9 hours ago", + "state":"ok", + "service_object_id":"158", + "unhandled":"0", + "downtime":"0", + "last_check":"1442403003", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"358356", + "state_type":"hard", + "name":"Opsview Housekeeping Monitor", + "current_check_attempt":"1", + "output":"HOUSEKEEP OK - Housekeeping script last successfully ran 9 hours ago", + "state":"ok", + "service_object_id":"159", + "unhandled":"0", + "downtime":"0", + "last_check":"1442403011", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"534019", + "state_type":"hard", + "name":"Opsview HTTP", + "current_check_attempt":"3", + "output":"HTTP WARNING: HTTP/1.1 403 Forbidden - 5159 bytes in 0.002 second response time", + "state":"warning", + "service_object_id":"157", + "unhandled":"1", + "downtime":"0", + "last_check":"1442415568", + "perfdata_available":"1" + }, + { + "max_check_attempts":"2", + "markdown":"0", + "state_duration":"704189", + "state_type":"hard", + "name":"Opsview License Checks", + "current_check_attempt":"2", + "output":"LICENSE_EXPIRY WARNING - Opsview 30 Day Trial is valid until 2015-09-26 23:59:59", + "state":"warning", + "service_object_id":"160", + "unhandled":"1", + "downtime":"0", + "last_check":"1442402838", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"534078", + "state_type":"hard", + "name":"Opsview Login", + "current_check_attempt":"3", + "output":"HTTP CRITICAL: HTTP/1.1 404 Not Found - string 'login_username' not found on 'http://localhost:80/login' - 458 bytes in 0.008 second response time", + "state":"critical", + "service_object_id":"161", + "unhandled":"1", + "downtime":"0", + "last_check":"1442415509", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Opsview NDO", + "current_check_attempt":"1", + "output":"NDO OK - 0 ndo files backlogged", + "state":"ok", + "service_object_id":"162", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415693", + "perfdata_available":"1" + }, + { + "max_check_attempts":"2", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Opsview Updates", + "current_check_attempt":"1", + "output":"UPDATES OK - Survey information sent", + "state":"ok", + "service_object_id":"163", + "unhandled":"0", + "downtime":"0", + "last_check":"1442402801", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Read-only Partitions: /", + "current_check_attempt":"1", + "output":"RO_MOUNTS OK: No ro mounts found", + "state":"ok", + "service_object_id":"164", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415716", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Read-only Partitions: /opt/opsview/work/", + "current_check_attempt":"1", + "output":"RO_MOUNTS OK: No ro mounts found", + "state":"ok", + "service_object_id":"165", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415717", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Read-only Partitions: /tmp", + "current_check_attempt":"1", + "output":"RO_MOUNTS OK: No ro mounts found", + "state":"ok", + "service_object_id":"166", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415727", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Read-only Partitions: /usr/local/nagios/var", + "current_check_attempt":"1", + "output":"RO_MOUNTS OK: No ro mounts found", + "state":"ok", + "service_object_id":"167", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415735", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Read-only Partitions: /usr/local/nagios/var/backups", + "current_check_attempt":"1", + "output":"RO_MOUNTS OK: No ro mounts found", + "state":"ok", + "service_object_id":"168", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415743", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Read-only Partitions: /var/log/opsview/", + "current_check_attempt":"1", + "output":"RO_MOUNTS OK: No ro mounts found", + "state":"ok", + "service_object_id":"169", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415747", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Read-only Partitions: /var/opt/opsview", + "current_check_attempt":"1", + "output":"RO_MOUNTS OK: No ro mounts found", + "state":"ok", + "service_object_id":"170", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415757", + "perfdata_available":"0" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Unix Load Average", + "current_check_attempt":"1", + "output":"OK - load average: 0.00, 0.00, 0.00", + "state":"ok", + "service_object_id":"171", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415468", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Unix Memory", + "current_check_attempt":"1", + "output":"Usage: real 51% (962/1869 MB), buffer: 148 MB, cache: 540 MB, swap: 1% (32/3072 MB)", + "state":"ok", + "service_object_id":"172", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415471", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1481991", + "state_type":"hard", + "name":"Unix Swap", + "current_check_attempt":"1", + "output":"SWAP OK - 99% free (3040 MB out of 3071 MB)", + "state":"ok", + "service_object_id":"173", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415482", + "perfdata_available":"1" + } + ], + "name":"opsview", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - localhost: rta 0.026ms, lost 0%", + "num_services":"40", + "downtime":"0", + "last_check":"1442415726", + "alias":"Opsview Master Server" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.6.135: rta 0.246ms, lost 0%", + "state":"ok", + "service_object_id":"320", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415703", + "perfdata_available":"1" + } + ], + "name":"penne.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.165: rta 0.423ms, lost 0%", + "state":"ok", + "service_object_id":"321", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415584", + "perfdata_available":"1" + } + ], + "name":"publicrepo.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.143: rta 0.298ms, lost 0%", + "state":"ok", + "service_object_id":"322", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415704", + "perfdata_available":"1" + } + ], + "name":"reposerver01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.125: rta 0.416ms, lost 0%", + "state":"ok", + "service_object_id":"323", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415671", + "perfdata_available":"1" + } + ], + "name":"rhel6-rsbes1.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"589802", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"589802", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.254: rta 0.604ms, lost 0%", + "state":"ok", + "service_object_id":"324", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415465", + "perfdata_available":"1" + } + ], + "name":"router.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.254: rta 0.519ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1441825965", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.9: rta 0.316ms, lost 0%", + "state":"ok", + "service_object_id":"325", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415522", + "perfdata_available":"1" + } + ], + "name":"routerguest.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.141: rta 0.381ms, lost 0%", + "state":"ok", + "service_object_id":"326", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415707", + "perfdata_available":"1" + } + ], + "name":"scm-14-dev-lj.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.182: rta 0.237ms, lost 0%", + "state":"ok", + "service_object_id":"327", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415543", + "perfdata_available":"1" + } + ], + "name":"sfui.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.35: rta 0.224ms, lost 0%", + "state":"ok", + "service_object_id":"328", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415712", + "perfdata_available":"1" + } + ], + "name":"sharepoint01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.1: rta 1.940ms, lost 0%", + "state":"ok", + "service_object_id":"329", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415492", + "perfdata_available":"1" + } + ], + "name":"switch48gig.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"122095", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.170: rta 0.301ms, lost 0%", + "state":"ok", + "service_object_id":"330", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415472", + "perfdata_available":"1" + } + ], + "name":"testingserver02.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.170: rta 0.255ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442293618", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.149: rta 0.502ms, lost 0%", + "state":"ok", + "service_object_id":"331", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415533", + "perfdata_available":"1" + } + ], + "name":"testlink.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.57: rta 0.430ms, lost 0%", + "state":"ok", + "service_object_id":"332", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415714", + "perfdata_available":"1" + } + ], + "name":"ubu-nagios.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"607069", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"607069", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.19: rta 0.442ms, lost 0%", + "state":"ok", + "service_object_id":"333", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415599", + "perfdata_available":"1" + } + ], + "name":"ubustwdata.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.19: rta 0.304ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1441808698", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"424372", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"239811", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.190: rta 0.302ms, lost 0%", + "state":"ok", + "service_object_id":"334", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415656", + "perfdata_available":"1" + } + ], + "name":"vm-2k3-mq701.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.190: rta 0.236ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442175902", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"93274", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"93274", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.81: rta 0.461ms, lost 0%", + "state":"ok", + "service_object_id":"335", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415493", + "perfdata_available":"1" + } + ], + "name":"vm-2k8nnmi910.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.81: rta 0.220ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442322493", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.17: rta 0.459ms, lost 0%", + "state":"ok", + "service_object_id":"336", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415719", + "perfdata_available":"1" + } + ], + "name":"vm-backup.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"206462", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"132902", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.14: rta 0.369ms, lost 0%", + "state":"ok", + "service_object_id":"337", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415465", + "perfdata_available":"1" + } + ], + "name":"vm-dhhsbctest2.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.14: rta 0.320ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442282812", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.18: rta 0.131ms, lost 0%", + "state":"ok", + "service_object_id":"338", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415720", + "perfdata_available":"1" + } + ], + "name":"vm-intbes36.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.28: rta 0.159ms, lost 0%", + "state":"ok", + "service_object_id":"339", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415707", + "perfdata_available":"1" + } + ], + "name":"vm-intbes37.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"179923", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"179923", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.71: rta 0.186ms, lost 0%", + "state":"ok", + "service_object_id":"340", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415544", + "perfdata_available":"1" + } + ], + "name":"vm-linbppm96.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.71: rta 0.168ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442235844", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"833351", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"644591", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.27: rta 0.249ms, lost 0%", + "state":"ok", + "service_object_id":"341", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415576", + "perfdata_available":"1" + } + ], + "name":"vm-linfc3.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.27: rta 0.241ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1441771119", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.23: rta 0.396ms, lost 0%", + "state":"ok", + "service_object_id":"342", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415727", + "perfdata_available":"1" + } + ], + "name":"vm-linux-bes36.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.96: rta 0.122ms, lost 0%", + "state":"ok", + "service_object_id":"343", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415503", + "perfdata_available":"1" + } + ], + "name":"vm-mingw.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.54: rta 0.147ms, lost 0%", + "state":"ok", + "service_object_id":"344", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415727", + "perfdata_available":"1" + } + ], + "name":"vm-mvnint01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"5", + "handled":"5", + "computed_state":"ok", + "unhandled":"0", + "total":"5" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.100: rta 0.022ms, lost 0%", + "state":"ok", + "service_object_id":"346", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415731", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"CPU statistics", + "current_check_attempt":"1", + "output":"OK: utilization:1.2%,guest:0.0%,iowait:0.1%,irq:0.0%,nice:0.0%,softirq:0.0%,steal:0.0%,system:0.4%,user:0.7%", + "state":"ok", + "service_object_id":"345", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415637", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Unix Load Average", + "current_check_attempt":"1", + "output":"OK - load average: 0.00, 0.00, 0.00", + "state":"ok", + "service_object_id":"347", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415727", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Unix Memory", + "current_check_attempt":"1", + "output":"Usage: real 51% (962/1869 MB), buffer: 148 MB, cache: 540 MB, swap: 1% (32/3072 MB)", + "state":"ok", + "service_object_id":"348", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415732", + "perfdata_available":"1" + }, + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Unix Swap", + "current_check_attempt":"1", + "output":"SWAP OK - 99% free (3040 MB out of 3071 MB)", + "state":"ok", + "service_object_id":"349", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415515", + "perfdata_available":"1" + } + ], + "name":"vm-opsview4.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"5", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.228: rta 0.432ms, lost 0%", + "state":"ok", + "service_object_id":"350", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415737", + "perfdata_available":"1" + } + ], + "name":"vm-oracle-asi.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"424392", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"424392", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.37: rta 0.246ms, lost 0%", + "state":"ok", + "service_object_id":"351", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415576", + "perfdata_available":"1" + } + ], + "name":"vm-rhel54int.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.37: rta 0.160ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1441991375", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.69: rta 0.252ms, lost 0%", + "state":"ok", + "service_object_id":"352", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415736", + "perfdata_available":"1" + } + ], + "name":"vm-rhel6.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"576896", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.224: rta 0.306ms, lost 0%", + "state":"ok", + "service_object_id":"353", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415473", + "perfdata_available":"1" + } + ], + "name":"vm-xpprox86-scm32", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.224: rta 0.258ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1441838814", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"206249", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"206249", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.102: rta 0.470ms, lost 0%", + "state":"ok", + "service_object_id":"354", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415619", + "perfdata_available":"1" + } + ], + "name":"vmasitest02.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.102: rta 0.241ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442209518", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"206414", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"206414", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.88: rta 0.361ms, lost 0%", + "state":"ok", + "service_object_id":"355", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415753", + "perfdata_available":"1" + } + ], + "name":"vmscmtest01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"OK - 10.0.0.88: rta 0.213ms, lost 0%", + "num_services":"1", + "downtime":"0", + "last_check":"1442209353", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.103: rta 0.305ms, lost 0%", + "state":"ok", + "service_object_id":"356", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415742", + "perfdata_available":"1" + } + ], + "name":"vmwareserv01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.91: rta 0.307ms, lost 0%", + "state":"ok", + "service_object_id":"357", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415697", + "perfdata_available":"1" + } + ], + "name":"vostro400-vm.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.8: rta 0.367ms, lost 0%", + "state":"ok", + "service_object_id":"358", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415741", + "perfdata_available":"1" + } + ], + "name":"vpnserv.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.6.10: rta 0.214ms, lost 0%", + "state":"ok", + "service_object_id":"359", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415693", + "perfdata_available":"1" + } + ], + "name":"wales.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.229: rta 0.461ms, lost 0%", + "state":"ok", + "service_object_id":"360", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415743", + "perfdata_available":"1" + } + ], + "name":"win-4gf3ii79ngf.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.20: rta 0.374ms, lost 0%", + "state":"ok", + "service_object_id":"361", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415724", + "perfdata_available":"1" + } + ], + "name":"win-ibm-tep.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.6.167: rta 0.340ms, lost 0%", + "state":"ok", + "service_object_id":"362", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415747", + "perfdata_available":"1" + } + ], + "name":"wshpdev.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.16: rta 0.246ms, lost 0%", + "state":"ok", + "service_object_id":"363", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415513", + "perfdata_available":"1" + } + ], + "name":"xenbackup01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.83: rta 0.229ms, lost 0%", + "state":"ok", + "service_object_id":"364", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415752", + "perfdata_available":"1" + } + ], + "name":"xenbuild01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.107: rta 3.002ms, lost 0%", + "state":"ok", + "service_object_id":"365", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415681", + "perfdata_available":"1" + } + ], + "name":"xendev02.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.106: rta 0.221ms, lost 0%", + "state":"ok", + "service_object_id":"366", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415752", + "perfdata_available":"1" + } + ], + "name":"xendev03.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.15: rta 0.138ms, lost 0%", + "state":"ok", + "service_object_id":"367", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415471", + "perfdata_available":"1" + } + ], + "name":"xenint01", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.110: rta 0.274ms, lost 0%", + "state":"ok", + "service_object_id":"368", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415752", + "perfdata_available":"1" + } + ], + "name":"xenopdesk01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.113: rta 2.371ms, lost 0%", + "state":"ok", + "service_object_id":"369", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415711", + "perfdata_available":"1" + } + ], + "name":"xenserver00.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + }, + { + "icon":"server", + "state":"up", + "summary":{ + "ok":"1", + "handled":"1", + "computed_state":"ok", + "unhandled":"0", + "total":"1" + }, + "unhandled":"0", + "max_check_attempts":"2", + "num_interfaces":"0", + "state_duration":"1128871", + "services":[ + { + "max_check_attempts":"3", + "markdown":"0", + "state_duration":"1128871", + "state_type":"hard", + "name":"Connectivity - LAN", + "current_check_attempt":"1", + "output":"OK - 10.0.0.34: rta 1.142ms, lost 0%", + "state":"ok", + "service_object_id":"370", + "unhandled":"0", + "downtime":"0", + "last_check":"1442415755", + "perfdata_available":"1" + } + ], + "name":"xenserver01.int-link.com", + "state_type":"hard", + "current_check_attempt":"1", + "output":"Host assumed UP - no results received", + "num_services":"1", + "downtime":"0", + "last_check":"1441286896", + "alias":"" + } + ] +} \ No newline at end of file