org.cloudfoundry.doppler.DopplerClient Maven / Gradle / Ivy
/*
* Copyright 2013-2021 the original author or authors.
*
* 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 org.cloudfoundry.doppler;
import reactor.core.publisher.Flux;
/**
* Main entry point to the Doppler Client API
*/
public interface DopplerClient {
/**
* Makes the Container Metrics request
*
* @param request the Container Metrics request
* @return the container metrics
*/
Flux containerMetrics(ContainerMetricsRequest request);
/**
* Makes the Firehose request
*
* @param request the Firehose request
* @return the events from the firehose
*/
Flux firehose(FirehoseRequest request);
/**
* Makes the Recent Logs request
*
* @param request the Recent Logs request
* @return the events from the recent logs
*/
Flux recentLogs(RecentLogsRequest request);
/**
* Makes the Stream request
*
* @param request the Stream request
* @return the events from the stream
*/
Flux stream(StreamRequest request);
}