* HTTP Ingestion Service.
*/
public class HttpIngestionService implements IngestionService {
private HttpMetricsIngestionServer server;
public void startService(ScheduleContext context, IMetricsWriter writer) {
server = new HttpMetricsIngestionServer(context, writer);
}