Julius Volz
Julius Volz
Yeah, I tried changing https://github.com/prometheus/prometheus/blob/53ea6d63901b96a13bb79ff598c96af4a979adce/.promu.yml#L15 ...to: ```go flags: -mod=vendor -a -tags 'netgo release' ``` ...and it didn't set the `release` tag (I guess it also didn't set the `netgo` tag...
@simonpasquier Thanks! I didn't know that Go 1.13 supports comma-based separation now, that failed for me yesterday with an older Go version, but now it works :)
Aside: > it respects the repeat_interval @hatosbarbosa you mean the `group_interval`, not the `repeat_interval`, right?
This would be great to have in some form! Just keep in mind the security implications: allowing a user to post an arbitrary receiver configuration also would mean that they...
`amtool` sounds like a great place to start playing with this! It could read in the config file, some example input alerts, a grouping label set, and a receiver name...
@italux Hi, sorry for the radio silence! We usually just check whether added exporters follow best practices such as https://prometheus.io/docs/practices/naming/#metric-and-label-naming and a few more general best practices. Would it be...
@jesusvazquez one question: in https://github.com/prometheus/prometheus/blob/92d69803606620505ed8f0226abb640a121ec1cd/scrape/scrape.go#L1453-L1457 we rely on the TSDB rejecting out-of-order samples (to not mark series from targets as stale when the target disappears briefly and then reappears a...
> Feedback would be welcome, especially from old hands like @juliusv and @roidelapluie I agree that properly putting a feature flag around everything would probably be annoying to implement, especially...
Yeah, @Nexucis is the most knowledgeable when it comes to the grammar-related functionality, especially the completion and linting. But what just occurred to me: For autocompletion, we will not want...
@jan--f From what I understand, the original bug still exists, I just ended up working around it for my use case back then.