Andrew Nelson
Andrew Nelson
It looks like the 5.3.1 tag has gone missing. Unsure why or how. However, if you look at the latest code in the master branch you will see that there...
I was having a similar issue and noticed that this build has been cleaned up Luckily, I found this reference explaining how to build locally https://github.com/jenkinsci/.github/blob/7baf6188c5dbe8f872bd7f4e13e1aaeee0b2e279/CONTRIBUTING.md#run-locally
@googlebot I signed it!
This seems quite useful and I don't think there is currently a way to override the skip level Is this something there'd be interest in bringing back? Or was it...
Hey Aldas - I'm running into #85 and was looking at how I might implement it in a PR, but I ran into this problem. There doesn't currently appear to...
It sounds like we are generally in agreement then. Here's an updated proposal that I think addresses both issues: ``` type PrometheusConfig struct { LabelDescriminators map[string]func(echo.Context)string Registerer prometheus.Registry } func...
I was just starting to notice this same thing as I was implementing the changes on my side :) I think that for backwards-compatability, `prometheus.NewPrometeus` will need to do the...
I've just posted a draft PR which handles everything except for the expansive `prometheus.Use` implementation. Let me know what you think
Maintaining backwards compatibility was a little bit awkward but definitely not impossible. I think the PR as written honors the current behavior while providing a straightforward path to extension. The...
Here's an example. I want to write a function that recursively visits each node in an ast Let's say I have this bit of code that I want to recurse...