Package org.apache.sirona.store.status

Examples of org.apache.sirona.store.status.NodeStatusDataStore.statuses()


            }
            doPost(events2);
        }

        final NodeStatusDataStore store = IoCs.getInstance(CollectorNodeStatusDataStore.class);
        final Map<String,NodeStatus> statuses = store.statuses();
        assertEquals(2, statuses.size());
        assertEquals(Status.OK, statuses.get("node1").getStatus());
        assertEquals(1, statuses.get("node1").getResults().length);
        assertEquals(Status.KO, statuses.get("node2").getStatus());
        assertEquals(1, statuses.get("node2").getResults().length);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.