Examples of EventReport


Examples of org.rhq.core.domain.event.transfer.EventReport

        return;
    }

    // this creates a new report with the same debug/test events but without the limi warn events
    private EventReport stripLimitWarningEvents(EventReport report) {
        EventReport newReport = new EventReport(report.getMaxEventsPerSource(), report.getMaxEventsPerReport());

        for (Map.Entry<EventSource, Set<Event>> entry : report.getEvents().entrySet()) {
            EventSource eventSource = entry.getKey();
            for (Event event : entry.getValue()) {
                if (event.getSeverity() == EventSeverity.DEBUG) {
                    newReport.addEvent(event, eventSource);
                }
            }
        }

        return newReport;
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.