com.addthis.metrics3.reporter.config.ReporterConfig Maven / Gradle / Ivy
/*
* 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 com.addthis.metrics3.reporter.config;
import javax.validation.Valid;
import java.io.IOException;
import java.util.List;
import com.addthis.metrics.reporter.config.AbstractReporterConfig;
import com.codahale.metrics.MetricRegistry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
// ser/d class. May make a different abstract for commonalities
// Stupid bean for simplicity and snakeyaml, instead of @Immutable
// like any sane person would intend
public class ReporterConfig extends AbstractReporterConfig
{
private static final Logger log = LoggerFactory.getLogger(ReporterConfig.class);
@Valid
private List console;
@Valid
private List csv;
@Valid
private List ganglia;
@Valid
private List graphite;
@Valid
private List riemann;
@Valid
private List statsd;
public List getConsole()
{
return console;
}
public void setConsole(List console)
{
this.console = console;
}
public List getCsv()
{
return csv;
}
public void setCsv(List csv)
{
this.csv = csv;
}
public List getGanglia()
{
return ganglia;
}
public void setGanglia(List ganglia)
{
this.ganglia = ganglia;
}
public List getGraphite()
{
return graphite;
}
public void setGraphite(List graphite)
{
this.graphite = graphite;
}
public List getRiemann()
{
return riemann;
}
public void setRiemann(List riemann)
{
this.riemann = riemann;
}
public List getStatsd()
{
return statsd;
}
public void setStatsd(List statsd)
{
this.statsd = statsd;
}
public boolean enableConsole(MetricRegistry registry)
{
boolean failures = false;
if (console == null)
{
log.debug("Asked to enable console, but it was not configured");
return false;
}
for (ConsoleReporterConfig consoleConfig : console)
{
if (!consoleConfig.enable(registry))
{
failures = true;
}
}
return !failures;
}
public boolean enableCsv(MetricRegistry registry)
{
boolean failures = false;
if (csv == null)
{
log.debug("Asked to enable csv, but it was not configured");
return false;
}
for (CsvReporterConfig csvConfig : csv)
{
if (!csvConfig.enable(registry))
{
failures = true;
}
}
return !failures;
}
public boolean enableGanglia(MetricRegistry registry)
{
boolean failures = false;
if (ganglia == null)
{
log.debug("Asked to enable ganglia, but it was not configured");
return false;
}
for (GangliaReporterConfig gangliaConfig : ganglia)
{
if (!gangliaConfig.enable(registry))
{
failures = true;
}
}
return !failures;
}
public boolean enableGraphite(MetricRegistry registry)
{
boolean failures = false;
if (graphite == null)
{
log.debug("Asked to enable graphite, but it was not configured");
return false;
}
for (GraphiteReporterConfig graphiteConfig : graphite)
{
if (!graphiteConfig.enable(registry))
{
failures = true;
}
}
return !failures;
}
public boolean enableRiemann(MetricRegistry registry)
{
boolean failures = false;
if (riemann == null)
{
log.debug("Asked to enable riemann, but it was not configured");
return false;
}
for (RiemannReporterConfig riemannConfig : riemann)
{
if (!riemannConfig.enable(registry))
{
failures = true;
}
}
return !failures;
}
public boolean enableStatsd(MetricRegistry registry)
{
boolean failures = false;
if (statsd == null)
{
log.debug("Asked to enable statsd, but it was not configured");
return false;
}
for (StatsDReporterConfig statsdConfig : statsd)
{
if (!statsdConfig.enable(registry))
{
failures = true;
}
}
return !failures;
}
public boolean enableAll(MetricRegistry registry)
{
boolean enabled = false;
if (console != null && enableConsole(registry))
{
enabled = true;
}
if (csv != null && enableCsv(registry))
{
enabled = true;
}
if (ganglia != null && enableGanglia(registry))
{
enabled = true;
}
if (graphite != null && enableGraphite(registry))
{
enabled = true;
}
if (riemann != null && enableRiemann(registry))
{
enabled = true;
}
if (statsd != null && enableStatsd(registry))
{
enabled = true;
}
if (!enabled)
{
log.warn("No reporters were succesfully enabled");
}
return enabled;
}
private void report(List extends MetricsReporterConfigThree> reporters) {
if (reporters != null) {
for (MetricsReporterConfigThree reporter : reporters) {
reporter.report();
}
}
}
@SuppressWarnings("unused")
public void report() {
report(console);
report(csv);
report(ganglia);
report(graphite);
report(riemann);
}
public static ReporterConfig loadFromFileAndValidate(String fileName) throws IOException
{
ReporterConfig config = loadFromFile(fileName);
if (validate(config))
{
return config;
}
else
{
throw new ReporterConfigurationException("configuration failed validation");
}
}
public static ReporterConfig loadFromFile(String fileName) throws IOException
{
return AbstractReporterConfig.loadFromFile(fileName, ReporterConfig.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy