Package com.streamreduce.core.model.messages.details.pingdom

Examples of com.streamreduce.core.model.messages.details.pingdom.PingdomEntryDetails


                Event event = eventService.createEvent(EventId.ACTIVITY,
                                                       inventoryItem,
                                                       eventContext);

                PingdomEntryDetails details = new PingdomEntryDetails.Builder()
                        .lastErrorTime(jsonInventory.containsKey("lasterrortime") ? jsonInventory.getInt("lasterrortime") : 0)
                        .lastResponseTime(jsonInventory.containsKey("lastresponsetime") ? jsonInventory.getInt("lastresponsetime") : 0)
                        .lastTestTime(jsonInventory.getInt("lasttesttime"))
                        .checkCreated(jsonInventory.getInt("created"))
                        .resolution(jsonInventory.getInt("resolution"))
View Full Code Here

TOP

Related Classes of com.streamreduce.core.model.messages.details.pingdom.PingdomEntryDetails

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.