Search in sources :

Example 1 with StandardExports

use of io.prometheus.client.hotspot.StandardExports in project bookkeeper by apache.

the class PrometheusMetricsProvider method start.

@Override
public void start(Configuration conf) {
    int httpPort = conf.getInt(PROMETHEUS_STATS_HTTP_PORT, DEFAULT_PROMETHEUS_STATS_HTTP_PORT);
    InetSocketAddress httpEndpoint = InetSocketAddress.createUnresolved("0.0.0.0", httpPort);
    this.server = new Server(httpEndpoint);
    ServletContextHandler context = new ServletContextHandler();
    context.setContextPath("/");
    server.setHandler(context);
    context.addServlet(new ServletHolder(new PrometheusServlet(this)), "/metrics");
    try {
        server.start();
    } catch (Exception e) {
        throw new RuntimeException(e);
    }
    // Include standard JVM stats
    new StandardExports().register(registry);
    new MemoryPoolsExports().register(registry);
    new GarbageCollectorExports().register(registry);
    new ThreadExports().register(registry);
    // Add direct memory allocated through unsafe
    Gauge.build("jvm_memory_direct_bytes_used", "-").create().setChild(new Child() {

        @Override
        public double get() {
            return directMemoryUsage != null ? directMemoryUsage.longValue() : Double.NaN;
        }
    }).register(registry);
    Gauge.build("jvm_memory_direct_bytes_max", "-").create().setChild(new Child() {

        @Override
        public double get() {
            return PlatformDependent.maxDirectMemory();
        }
    }).register(registry);
    executor = Executors.newSingleThreadScheduledExecutor(new DefaultThreadFactory("metrics"));
    int latencyRolloverSeconds = conf.getInt(PROMETHEUS_STATS_LATENCY_ROLLOVER_SECONDS, DEFAULT_PROMETHEUS_STATS_LATENCY_ROLLOVER_SECONDS);
    executor.scheduleAtFixedRate(() -> {
        rotateLatencyCollection();
    }, 1, latencyRolloverSeconds, TimeUnit.SECONDS);
    log.info("Started Prometheus stats endpoint at {}", httpEndpoint);
}
Also used : Server(org.eclipse.jetty.server.Server) StandardExports(io.prometheus.client.hotspot.StandardExports) ThreadExports(io.prometheus.client.hotspot.ThreadExports) InetSocketAddress(java.net.InetSocketAddress) ServletHolder(org.eclipse.jetty.servlet.ServletHolder) IOException(java.io.IOException) DefaultThreadFactory(io.netty.util.concurrent.DefaultThreadFactory) GarbageCollectorExports(io.prometheus.client.hotspot.GarbageCollectorExports) MemoryPoolsExports(io.prometheus.client.hotspot.MemoryPoolsExports) ServletContextHandler(org.eclipse.jetty.servlet.ServletContextHandler) Child(io.prometheus.client.Gauge.Child)

Example 2 with StandardExports

use of io.prometheus.client.hotspot.StandardExports in project MantaroBot by Mantaro.

the class Prometheus method enable.

public static void enable() throws IOException {
    if (STATE.compareAndSet(State.DISABLED, State.ENABLING)) {
        // replaced by jfr? needs testing, if yes then remove
        // used for cpu usage
        new StandardExports().register();
        // replaced by jfr? needs testing, if yes then remove
        // used for memory usage
        new MemoryPoolsExports().register();
        // ig we can keep this one for now
        new BufferPoolsExports().register();
        JFRExports.register();
        var config = MantaroData.config().get();
        server = new HTTPServer(config.prometheusHost, config.prometheusPort);
        STATE.set(State.ENABLED);
    }
}
Also used : HTTPServer(io.prometheus.client.exporter.HTTPServer) StandardExports(io.prometheus.client.hotspot.StandardExports) BufferPoolsExports(io.prometheus.client.hotspot.BufferPoolsExports) MemoryPoolsExports(io.prometheus.client.hotspot.MemoryPoolsExports)

Aggregations

MemoryPoolsExports (io.prometheus.client.hotspot.MemoryPoolsExports)2 StandardExports (io.prometheus.client.hotspot.StandardExports)2 DefaultThreadFactory (io.netty.util.concurrent.DefaultThreadFactory)1 Child (io.prometheus.client.Gauge.Child)1 HTTPServer (io.prometheus.client.exporter.HTTPServer)1 BufferPoolsExports (io.prometheus.client.hotspot.BufferPoolsExports)1 GarbageCollectorExports (io.prometheus.client.hotspot.GarbageCollectorExports)1 ThreadExports (io.prometheus.client.hotspot.ThreadExports)1 IOException (java.io.IOException)1 InetSocketAddress (java.net.InetSocketAddress)1 Server (org.eclipse.jetty.server.Server)1 ServletContextHandler (org.eclipse.jetty.servlet.ServletContextHandler)1 ServletHolder (org.eclipse.jetty.servlet.ServletHolder)1