blob: 3e8b95ed310fa8ff41b228d8956315bf0e72d917 [file] [log] [blame]
/*
* Copyright 2018, OpenCensus 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 io.opencensus.exporter.stats.prometheus;
import com.google.auto.value.AutoValue;
import io.prometheus.client.CollectorRegistry;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
/**
* Configurations for {@link PrometheusStatsCollector}.
*
* @since 0.13
*/
@AutoValue
@Immutable
public abstract class PrometheusStatsConfiguration {
PrometheusStatsConfiguration() {}
/**
* Returns the Prometheus {@link CollectorRegistry}.
*
* @return the Prometheus {@code CollectorRegistry}.
* @since 0.13
*/
@Nullable
public abstract CollectorRegistry getRegistry();
/**
* Returns a new {@link Builder}.
*
* @return a {@code Builder}.
* @since 0.13
*/
public static Builder builder() {
return new AutoValue_PrometheusStatsConfiguration.Builder();
}
/**
* Builder for {@link PrometheusStatsConfiguration}.
*
* @since 0.13
*/
@AutoValue.Builder
public abstract static class Builder {
Builder() {}
/**
* Sets the given Prometheus {@link CollectorRegistry}.
*
* @param registry the Prometheus {@code CollectorRegistry}.
* @return this.
* @since 0.13
*/
public abstract Builder setRegistry(CollectorRegistry registry);
/**
* Builds a new {@link PrometheusStatsConfiguration} with current settings.
*
* @return a {@code PrometheusStatsConfiguration}.
* @since 0.13
*/
public abstract PrometheusStatsConfiguration build();
}
}