
com.wavefront.agent.api.NoopEventAPI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy Show documentation
Show all versions of proxy Show documentation
Service for batching and relaying metric traffic to Wavefront
package com.wavefront.agent.api;
import com.wavefront.api.EventAPI;
import com.wavefront.dto.Event;
import java.util.List;
import java.util.UUID;
import javax.ws.rs.core.Response;
/**
* A no-op SourceTagAPI stub.
*
* @author [email protected]
*/
public class NoopEventAPI implements EventAPI {
@Override
public Response proxyEvents(UUID uuid, List list) {
return Response.ok().build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy