Search in sources :

Example 11 with Slf4jReporter

use of com.codahale.metrics.Slf4jReporter in project Dempsy by Dempsy.

the class LogRegistrar method registerReporter.

@Override
public Reporter registerReporter(final MetricRegistry registry, final String metricPrefix) {
    final Builder builder = Slf4jReporter.forRegistry(registry).shutdownExecutorOnStop(true).convertRatesTo(TimeUnit.SECONDS).convertDurationsTo(TimeUnit.MILLISECONDS).withLoggingLevel(loggingLevel);
    if (prefix != null)
        builder.prefixedWith(prefix);
    final Slf4jReporter reporter = builder.build();
    reporter.start(period, unit);
    return reporter;
}
Also used : Builder(com.codahale.metrics.Slf4jReporter.Builder) Slf4jReporter(com.codahale.metrics.Slf4jReporter)

Example 12 with Slf4jReporter

use of com.codahale.metrics.Slf4jReporter in project camel by apache.

the class MetricsComponent method createMetricRegistry.

MetricRegistry createMetricRegistry() {
    MetricRegistry registry = new MetricRegistry();
    final Slf4jReporter reporter = Slf4jReporter.forRegistry(registry).outputTo(LOG).convertRatesTo(TimeUnit.SECONDS).convertDurationsTo(TimeUnit.MILLISECONDS).withLoggingLevel(Slf4jReporter.LoggingLevel.DEBUG).build();
    reporter.start(DEFAULT_REPORTING_INTERVAL_SECONDS, TimeUnit.SECONDS);
    return registry;
}
Also used : MetricRegistry(com.codahale.metrics.MetricRegistry) Slf4jReporter(com.codahale.metrics.Slf4jReporter)

Example 13 with Slf4jReporter

use of com.codahale.metrics.Slf4jReporter in project jhipster-sample-app-mongodb by jhipster.

the class MetricsConfiguration method init.

@PostConstruct
public void init() {
    log.debug("Registering JVM gauges");
    metricRegistry.register(PROP_METRIC_REG_JVM_MEMORY, new MemoryUsageGaugeSet());
    metricRegistry.register(PROP_METRIC_REG_JVM_GARBAGE, new GarbageCollectorMetricSet());
    metricRegistry.register(PROP_METRIC_REG_JVM_THREADS, new ThreadStatesGaugeSet());
    metricRegistry.register(PROP_METRIC_REG_JVM_FILES, new FileDescriptorRatioGauge());
    metricRegistry.register(PROP_METRIC_REG_JVM_BUFFERS, new BufferPoolMetricSet(ManagementFactory.getPlatformMBeanServer()));
    metricRegistry.register(PROP_METRIC_REG_JVM_ATTRIBUTE_SET, new JvmAttributeGaugeSet());
    if (jHipsterProperties.getMetrics().getJmx().isEnabled()) {
        log.debug("Initializing Metrics JMX reporting");
        JmxReporter jmxReporter = JmxReporter.forRegistry(metricRegistry).build();
        jmxReporter.start();
    }
    if (jHipsterProperties.getMetrics().getLogs().isEnabled()) {
        log.info("Initializing Metrics Log reporting");
        Marker metricsMarker = MarkerFactory.getMarker("metrics");
        final Slf4jReporter reporter = Slf4jReporter.forRegistry(metricRegistry).outputTo(LoggerFactory.getLogger("metrics")).markWith(metricsMarker).convertRatesTo(TimeUnit.SECONDS).convertDurationsTo(TimeUnit.MILLISECONDS).build();
        reporter.start(jHipsterProperties.getMetrics().getLogs().getReportFrequency(), TimeUnit.SECONDS);
    }
}
Also used : JvmAttributeGaugeSet(com.codahale.metrics.JvmAttributeGaugeSet) Slf4jReporter(com.codahale.metrics.Slf4jReporter) Marker(org.slf4j.Marker) JmxReporter(com.codahale.metrics.JmxReporter) PostConstruct(javax.annotation.PostConstruct)

Example 14 with Slf4jReporter

use of com.codahale.metrics.Slf4jReporter in project jhipster-sample-app-elasticsearch by jhipster.

the class MetricsConfiguration method init.

@PostConstruct
public void init() {
    log.debug("Registering JVM gauges");
    metricRegistry.register(PROP_METRIC_REG_JVM_MEMORY, new MemoryUsageGaugeSet());
    metricRegistry.register(PROP_METRIC_REG_JVM_GARBAGE, new GarbageCollectorMetricSet());
    metricRegistry.register(PROP_METRIC_REG_JVM_THREADS, new ThreadStatesGaugeSet());
    metricRegistry.register(PROP_METRIC_REG_JVM_FILES, new FileDescriptorRatioGauge());
    metricRegistry.register(PROP_METRIC_REG_JVM_BUFFERS, new BufferPoolMetricSet(ManagementFactory.getPlatformMBeanServer()));
    metricRegistry.register(PROP_METRIC_REG_JVM_ATTRIBUTE_SET, new JvmAttributeGaugeSet());
    metricRegistry.register(PROP_METRIC_REG_JCACHE_STATISTICS, new JCacheGaugeSet());
    if (hikariDataSource != null) {
        log.debug("Monitoring the datasource");
        hikariDataSource.setMetricRegistry(metricRegistry);
    }
    if (jHipsterProperties.getMetrics().getJmx().isEnabled()) {
        log.debug("Initializing Metrics JMX reporting");
        JmxReporter jmxReporter = JmxReporter.forRegistry(metricRegistry).build();
        jmxReporter.start();
    }
    if (jHipsterProperties.getMetrics().getLogs().isEnabled()) {
        log.info("Initializing Metrics Log reporting");
        Marker metricsMarker = MarkerFactory.getMarker("metrics");
        final Slf4jReporter reporter = Slf4jReporter.forRegistry(metricRegistry).outputTo(LoggerFactory.getLogger("metrics")).markWith(metricsMarker).convertRatesTo(TimeUnit.SECONDS).convertDurationsTo(TimeUnit.MILLISECONDS).build();
        reporter.start(jHipsterProperties.getMetrics().getLogs().getReportFrequency(), TimeUnit.SECONDS);
    }
}
Also used : JvmAttributeGaugeSet(com.codahale.metrics.JvmAttributeGaugeSet) Slf4jReporter(com.codahale.metrics.Slf4jReporter) Marker(org.slf4j.Marker) JmxReporter(com.codahale.metrics.JmxReporter) JCacheGaugeSet(com.codahale.metrics.jcache.JCacheGaugeSet) PostConstruct(javax.annotation.PostConstruct)

Example 15 with Slf4jReporter

use of com.codahale.metrics.Slf4jReporter in project jhipster-sample-app-hazelcast by jhipster.

the class MetricsConfiguration method init.

@PostConstruct
public void init() {
    log.debug("Registering JVM gauges");
    metricRegistry.register(PROP_METRIC_REG_JVM_MEMORY, new MemoryUsageGaugeSet());
    metricRegistry.register(PROP_METRIC_REG_JVM_GARBAGE, new GarbageCollectorMetricSet());
    metricRegistry.register(PROP_METRIC_REG_JVM_THREADS, new ThreadStatesGaugeSet());
    metricRegistry.register(PROP_METRIC_REG_JVM_FILES, new FileDescriptorRatioGauge());
    metricRegistry.register(PROP_METRIC_REG_JVM_BUFFERS, new BufferPoolMetricSet(ManagementFactory.getPlatformMBeanServer()));
    metricRegistry.register(PROP_METRIC_REG_JVM_ATTRIBUTE_SET, new JvmAttributeGaugeSet());
    if (hikariDataSource != null) {
        log.debug("Monitoring the datasource");
        hikariDataSource.setMetricRegistry(metricRegistry);
    }
    if (jHipsterProperties.getMetrics().getJmx().isEnabled()) {
        log.debug("Initializing Metrics JMX reporting");
        JmxReporter jmxReporter = JmxReporter.forRegistry(metricRegistry).build();
        jmxReporter.start();
    }
    if (jHipsterProperties.getMetrics().getLogs().isEnabled()) {
        log.info("Initializing Metrics Log reporting");
        Marker metricsMarker = MarkerFactory.getMarker("metrics");
        final Slf4jReporter reporter = Slf4jReporter.forRegistry(metricRegistry).outputTo(LoggerFactory.getLogger("metrics")).markWith(metricsMarker).convertRatesTo(TimeUnit.SECONDS).convertDurationsTo(TimeUnit.MILLISECONDS).build();
        reporter.start(jHipsterProperties.getMetrics().getLogs().getReportFrequency(), TimeUnit.SECONDS);
    }
}
Also used : JvmAttributeGaugeSet(com.codahale.metrics.JvmAttributeGaugeSet) Slf4jReporter(com.codahale.metrics.Slf4jReporter) Marker(org.slf4j.Marker) JmxReporter(com.codahale.metrics.JmxReporter) PostConstruct(javax.annotation.PostConstruct)

Aggregations

Slf4jReporter (com.codahale.metrics.Slf4jReporter)25 JmxReporter (com.codahale.metrics.JmxReporter)20 PostConstruct (javax.annotation.PostConstruct)19 JvmAttributeGaugeSet (com.codahale.metrics.JvmAttributeGaugeSet)13 Marker (org.slf4j.Marker)13 JCacheGaugeSet (com.codahale.metrics.jcache.JCacheGaugeSet)8 MetricRegistry (com.codahale.metrics.MetricRegistry)1 Builder (com.codahale.metrics.Slf4jReporter.Builder)1 JCacheGaugeSet (io.github.jhipster.config.jcache.JCacheGaugeSet)1 Log4jLoggerFactory (org.apache.logging.slf4j.Log4jLoggerFactory)1