io.micrometer.core.instrument.binder.system.ProcessorMetrics Java Examples
The following examples show how to use
io.micrometer.core.instrument.binder.system.ProcessorMetrics.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CentralDogma.java From centraldogma with Apache License 2.0 | 7 votes |
private void configureMetrics(ServerBuilder sb, PrometheusMeterRegistry registry) { sb.meterRegistry(registry); sb.service(METRICS_PATH, new PrometheusExpositionService(registry.getPrometheusRegistry())); sb.decorator(MetricCollectingService.newDecorator(MeterIdPrefixFunction.ofDefault("api"))); // Bind system metrics. new FileDescriptorMetrics().bindTo(registry); new ProcessorMetrics().bindTo(registry); new ClassLoaderMetrics().bindTo(registry); new UptimeMetrics().bindTo(registry); new DiskSpaceMetrics(cfg.dataDir()).bindTo(registry); new JvmGcMetrics().bindTo(registry); new JvmMemoryMetrics().bindTo(registry); new JvmThreadMetrics().bindTo(registry); // Bind global thread pool metrics. ExecutorServiceMetrics.monitor(registry, ForkJoinPool.commonPool(), "commonPool"); }
Example #2
Source File: CoreModule.java From EDDI with Apache License 2.0 | 6 votes |
@Provides @Singleton public PrometheusMeterRegistry providePrometheusMeterRegistry(ExecutorService executorService, @Named("systemRuntime.projectName") String projectName) { PrometheusMeterRegistry registry = new PrometheusMeterRegistry(PrometheusConfig.DEFAULT); new LogbackMetrics().bindTo(registry); new ClassLoaderMetrics().bindTo(registry); new ExecutorServiceMetrics(executorService, projectName + "-ExecutorService", () -> Tags.of(projectName, "ExecutorService").iterator()).bindTo(registry); new JvmMemoryMetrics().bindTo(registry); new JvmGcMetrics().bindTo(registry); new JvmThreadMetrics().bindTo(registry); new ProcessorMetrics().bindTo(registry); new ProcessMemoryMetrics().bindTo(registry); new ProcessThreadMetrics().bindTo(registry); new FileDescriptorMetrics().bindTo(registry); new DiskSpaceMetrics(new File("/")).bindTo(registry); new UptimeMetrics().bindTo(registry); registry.config().commonTags("instance", projectName); registry.config().commonTags("application", projectName); registry.config().commonTags("service", projectName); return registry; }
Example #3
Source File: MicrometerMetricsExamples.java From vertx-micrometer-metrics with Apache License 2.0 | 5 votes |
public void instrumentJVM() { MeterRegistry registry = BackendRegistries.getDefaultNow(); new ClassLoaderMetrics().bindTo(registry); new JvmMemoryMetrics().bindTo(registry); new JvmGcMetrics().bindTo(registry); new ProcessorMetrics().bindTo(registry); new JvmThreadMetrics().bindTo(registry); }
Example #4
Source File: MetricsRegistry.java From mewbase with MIT License | 5 votes |
static void ensureRegistry() { if ( globalRegistry.getRegistries().isEmpty() ) addRegistry(new SimpleMeterRegistry()); new ClassLoaderMetrics().bindTo(globalRegistry); new JvmMemoryMetrics().bindTo(globalRegistry); new JvmGcMetrics().bindTo(globalRegistry); new ProcessorMetrics().bindTo(globalRegistry); new JvmThreadMetrics().bindTo(globalRegistry); }
Example #5
Source File: StatsProviderImpl.java From pravega with Apache License 2.0 | 5 votes |
@Synchronized private void init() { new JvmMemoryMetrics().bindTo(metrics); new JvmGcMetrics().bindTo(metrics); new ProcessorMetrics().bindTo(metrics); new JvmThreadMetrics().bindTo(metrics); }
Example #6
Source File: MetricsModule.java From che with Eclipse Public License 2.0 | 5 votes |
@Override protected void configure() { bind(MetricsServer.class).asEagerSingleton(); bind(MetricsBinder.class).asEagerSingleton(); bind(CollectorRegistry.class).toInstance(CollectorRegistry.defaultRegistry); bind(PrometheusMeterRegistry.class) .toProvider(PrometheusMeterRegistryProvider.class) .asEagerSingleton(); bind(MeterRegistry.class).to(PrometheusMeterRegistry.class); Multibinder<MeterBinder> meterMultibinder = Multibinder.newSetBinder(binder(), MeterBinder.class); meterMultibinder.addBinding().to(ClassLoaderMetrics.class); meterMultibinder.addBinding().to(JvmMemoryMetrics.class); meterMultibinder.addBinding().to(JvmGcMetrics.class); meterMultibinder.addBinding().to(JvmThreadMetrics.class); meterMultibinder.addBinding().to(LogbackMetrics.class); meterMultibinder.addBinding().to(FileDescriptorMetrics.class); meterMultibinder.addBinding().to(ProcessorMetrics.class); meterMultibinder.addBinding().to(UptimeMetrics.class); meterMultibinder.addBinding().to(FileStoresMeterBinder.class); meterMultibinder.addBinding().to(ApiResponseCounter.class); meterMultibinder.addBinding().to(ProcessMemoryMetrics.class); meterMultibinder.addBinding().to(ProcessThreadMetrics.class); bind(EventListener.class).toProvider(OkHttpMetricsEventListenerProvider.class); }
Example #7
Source File: MetricsModule.java From dolphin-platform with Apache License 2.0 | 5 votes |
@Override public void initialize(final ServerCoreComponents coreComponents) { final PlatformConfiguration configuration = coreComponents.getConfiguration(); final ServletContext servletContext = coreComponents.getInstance(ServletContext.class); if(!configuration.getBooleanProperty(METRICS_NOOP_PROPERTY, true)) { final PrometheusMeterRegistry prometheusRegistry = new PrometheusMeterRegistry(PrometheusConfig.DEFAULT); final List<Tag> tagList = TagUtil.convertTags(ContextManagerImpl.getInstance().getGlobalContexts()); new ClassLoaderMetrics(tagList).bindTo(prometheusRegistry); new JvmMemoryMetrics(tagList).bindTo(prometheusRegistry); new JvmGcMetrics(tagList).bindTo(prometheusRegistry); new ProcessorMetrics(tagList).bindTo(prometheusRegistry); new JvmThreadMetrics(tagList).bindTo(prometheusRegistry); servletContext.addFilter(METRICS_SERVLET_FILTER_NAME, new RequestMetricsFilter()) .addMappingForUrlPatterns(EnumSet.allOf(DispatcherType.class), true, ALL_URL_MAPPING); servletContext.addListener(new MetricsHttpSessionListener()); servletContext.addServlet(METRICS_SERVLET_NAME, new MetricsServlet(prometheusRegistry)) .addMapping(configuration.getProperty(METRICS_ENDPOINT_PROPERTY)); MetricsImpl.getInstance().init(prometheusRegistry); } }
Example #8
Source File: SystemMetricsAutoConfiguration.java From foremast with Apache License 2.0 | 4 votes |
@Bean @ConditionalOnProperty(value = "management.metrics.binders.processor.enabled", matchIfMissing = true) @ConditionalOnMissingBean(ProcessorMetrics.class) public ProcessorMetrics processorMetrics() { return new ProcessorMetrics(); }
Example #9
Source File: MetricsAutoConfiguration.java From foremast with Apache License 2.0 | 4 votes |
@Bean public ProcessorMetrics processorMetrics() { return new ProcessorMetrics(); }
Example #10
Source File: PrometheusSample.java From micrometer with Apache License 2.0 | 4 votes |
public static void main(String[] args) { PrometheusMeterRegistry meterRegistry = new PrometheusMeterRegistry(PrometheusConfig.DEFAULT); // add any tags here that will apply to all metrics streaming from this app // (e.g. EC2 region, stack, instance id, server group) meterRegistry.config().commonTags("app", "javalin-sample"); new JvmGcMetrics().bindTo(meterRegistry); new JvmHeapPressureMetrics().bindTo(meterRegistry); new JvmMemoryMetrics().bindTo(meterRegistry); new ProcessorMetrics().bindTo(meterRegistry); new FileDescriptorMetrics().bindTo(meterRegistry); Javalin app = Javalin.create(config -> config.registerPlugin(new MicrometerPlugin(meterRegistry))).start(8080); // must manually delegate to Micrometer exception handler for excepton tags to be correct app.exception(IllegalArgumentException.class, (e, ctx) -> { MicrometerPlugin.EXCEPTION_HANDLER.handle(e, ctx); e.printStackTrace(); }); app.get("/", ctx -> ctx.result("Hello World")); app.get("/hello/:name", ctx -> ctx.result("Hello: " + ctx.pathParam("name"))); app.get("/boom", ctx -> { throw new IllegalArgumentException("boom"); }); app.routes(() -> { path("hi", () -> { get(":name", ctx -> ctx.result("Hello: " + ctx.pathParam("name"))); }); }); app.after("/hello/*", ctx -> { System.out.println("hello"); }); app.get("/prometheus", ctx -> ctx .contentType(TextFormat.CONTENT_TYPE_004) .result(meterRegistry.scrape())); }
Example #11
Source File: ProcessorMetricsConfig.java From dhis2-core with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Bean public ProcessorMetrics processorMetrics() { return new ProcessorMetrics(); }
Example #12
Source File: ProcessorMetricsConfig.java From dhis2-core with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Autowired public void bindToRegistry( MeterRegistry registry, ProcessorMetrics processorMetrics ) { processorMetrics.bindTo( registry ); }
Example #13
Source File: MeterBindersConfiguration.java From molgenis with GNU Lesser General Public License v3.0 | 4 votes |
@Bean public ProcessorMetrics processorMetrics() { return new ProcessorMetrics(); }