client_java icon indicating copy to clipboard operation
client_java copied to clipboard

Prometheus instrumentation library for JVM applications

Results 173 client_java issues
Sort by recently updated
recently updated
newest added

Deprecated `HTTPServer` constructors. Refactored `TestHTTPServer` to use `HTTPServer.Builder` Signed-off-by: Doug Hoard

We use `Prometheus` to monitor `Alluxio` system metrics. When some metrics are empty for various reasons, the system no longer monitors the metrics. We can catch this exception, so as...

Finding deadlocked threads might be an expensive operation if there are a large number of threads in the jvm since it requires a safepoint.

seems that the management API has been around since at least JDK 6 (http://srcrr.com/java/oracle/openjdk/6/reference/sun/management/HotspotRuntimeMBean-source.html)

This proposes a [monitoring mixing](https://monitoring.mixins.dev/) based on the dashboard https://grafana.com/grafana/dashboards/3066 by @jotak. The datasource is templated in addition to the original dashboard. Outstanding: - [ ] Alerts - [ ]...

https://github.com/prometheus/client_java/blob/master/simpleclient_hotspot/src/main/java/io/prometheus/client/hotspot/DefaultExports.java#L36 here, I can registry jvm metrics to the defaultRegistry,but sometimes I want to custom some metrics that name are same as jvm metrics.So I will encounter the error like...

Modules `simpleclient.servlet` and `simpleclient.pushgateway` are exporting classes from the same package `io.prometheus.client.exporter` causing troubles when building Java modular applications due to a split package error: `java: the unnamed module reads...

### Disclaimer I might be missing something in the design of the class (I'm sorry if this is the case), and yet I think it's worth checking and possibly suggest...

Currently it's necessary to pass the `packages` attributes via `` in log4j configuration to discover the appender. That means relying on step 5 of https://logging.apache.org/log4j/2.x/manual/plugins.html for appender discovery (analyzing packages...

**Description** Deprecate public `HTTPServer` constructors and recommend using `HTTPServer.Builder` **Background** As part of recent work, an `HTTPServer.Builder` class was added to build `HTTPServer` instances. `HTTPServer` has multiple constructors which can...