All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ning.metrics.eventtracker.CollectorController Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/*
 * Copyright 2010 Ning, Inc.
 *
 * Ning licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package com.ning.metrics.eventtracker;

import com.google.inject.Inject;
import com.ning.metrics.serialization.event.Event;
import com.ning.metrics.serialization.util.Managed;
import com.ning.metrics.serialization.writer.EventWriter;
import org.apache.log4j.Logger;

import java.io.IOException;
import java.util.concurrent.atomic.AtomicLong;

/**
 * Main entry point of the library. The CollectorController is responsible for forwarding events to the persister layer.
 * 

* The class needs to be public for JMX. */ public class CollectorController { private static final Logger log = Logger.getLogger(CollectorController.class); private final EventWriter eventWriter; private final AtomicLong eventsReceived = new AtomicLong(0); private final AtomicLong eventsLost = new AtomicLong(0); @Inject public CollectorController(EventWriter eventWriter) { this.eventWriter = eventWriter; log.debug(String.format("Initialized Collector Controller with file manager [%s]", eventWriter)); } /** * Offer an event to the queue. * * @param event an event to collect * @throws IOException if a serialization exception (to disk) occurs */ public void offerEvent(final Event event) throws IOException { eventsReceived.incrementAndGet(); try { log.debug(String.format("Writing event: %s", event)); eventWriter.write(event); } catch (IOException e) { log.error(String.format("Failed to write event: %s", event), e); eventsLost.incrementAndGet(); throw e; } } @Managed(description = "Number of events received") public AtomicLong getEventsReceived() { return eventsReceived; } @Managed(description = "Number of events lost (unable to serialize them to disk)") public AtomicLong getEventsLost() { return eventsLost; } @Managed(description = "Promote events to final spool area") public void commit() throws IOException { eventWriter.forceCommit(); } @Managed(description = "Flush events to remote agent") public void flush() throws IOException { eventWriter.flush(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy