com.metamx.emitter.service.ServiceEmitter Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2012 Metamarkets Group Inc.
*
* Licensed 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.metamx.emitter.service;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableMap;
import com.metamx.common.lifecycle.LifecycleStart;
import com.metamx.common.lifecycle.LifecycleStop;
import com.metamx.emitter.core.Emitter;
import com.metamx.emitter.core.Event;
import java.io.IOException;
public class ServiceEmitter implements Emitter
{
private final ImmutableMap serviceDimensions;
private final Emitter emitter;
public ServiceEmitter(String service, String host, Emitter emitter)
{
this(service, host, emitter, ImmutableMap.of());
}
public ServiceEmitter(
String service,
String host,
Emitter emitter,
ImmutableMap otherServiceDimensions
)
{
this.serviceDimensions = ImmutableMap
.builder()
.put("service", Preconditions.checkNotNull(service))
.put("host", Preconditions.checkNotNull(host))
.putAll(otherServiceDimensions)
.build();
this.emitter = emitter;
}
public String getService()
{
return serviceDimensions.get("service");
}
public String getHost()
{
return serviceDimensions.get("host");
}
@LifecycleStart
public void start()
{
emitter.start();
}
public void emit(Event event)
{
emitter.emit(event);
}
public void emit(ServiceEventBuilder builder)
{
emit(builder.build(serviceDimensions));
}
public void flush() throws IOException
{
emitter.flush();
}
@LifecycleStop
public void close() throws IOException
{
emitter.close();
}
@Override
public String toString()
{
return "ServiceEmitter{" +
"serviceDimensions=" + serviceDimensions +
", emitter=" + emitter +
'}';
}
}