
com.wavefront.agent.api.NoopLogAPI 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.LogAPI;
import com.wavefront.dto.Log;
import java.util.List;
import javax.ws.rs.core.Response;
/**
* A no-op LogAPI stub.
*
* @author [email protected]
*/
public class NoopLogAPI implements LogAPI {
@Override
public Response proxyLogs(String agentProxyId, List logs) {
return Response.ok().build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy