Fabian Stäber

Results 20 issues of Fabian Stäber

Add annotations `@Timed` and `@Counted` for automatically instrumenting method invocations. The annotations are similar to the annotations offered by Micrometer, MicroProfile metrics, and Dropwizard metrics. The default attributes **class**, **method**,...

Frameworks like Spring Boot, MicroProfile, and Dropwizard offer annotations like `@Timed` or `@Counted` for creating metrics from method calls. The benefit is that developers can provide metrics for their business...

Feature Request

`jmx_exporter` can run in an agent mode (attaching directly to the JVM to be motitored) or in a standalone mode (connecting to a remote JVM to be monitored). If you...

I wrote a little Google script that creates a `cfp` calendar from your list. To try it, go to [drive.google.com](https://drive.google.com), click _New_ -> _Google Apps Script_, copy the code into...

Allow filtering metrics by suffix. For example, this can be used to filter out `_created` metrics. There are different ways to configure this, depending on how you expose metrics: ##...

I'm considering to start a release 1.0.0 branch. Rel. 1.0.0 would be an opportunity for breaking changes. I'm creating this ticket to collect some ideas. If you have anything that...

### What happened? Running `terraform refresh` failed on Linux, I go a lot of errors like this: ``` │ Error: Get "https://api.hetzner.cloud/v1/networks/130630": dial tcp: lookup api.hetzner.cloud on [::1]:53: read udp...

bug

I am debugging https://github.com/prometheus/jmx_exporter/issues/621, and I found I can reproduce the root cause of the error with the following test in `github.com/prometheus/common/expfmt`: ```go package expfmt import ( "bytes" "strings" "testing"...

Potential fix for #1145. Signed-off-by: Fabian Stäber

I found an inconsistent concurrency behavior in `client_java`, and I think that `client_golang` has the same issue. Here's the current implementation of the counter's `Write()` function: ```golang func (c *counter)...