Łukasz Mierzwa
Łukasz Mierzwa
test/test.go ``` package test type Color struct { Red uint8 `json:"red"` Green uint8 `json:"green"` Blue uint8 `json:"blue"` Alpha uint8 `json:"alpha"` } type Colors struct { Font Color `json:"font"` Background Color...
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
When parsing YAML content I see that lines & columns are not always accurate. Demo here: https://play.golang.org/p/RIVqEbM61KU Example: ``` - key1: val1 key2: | val2 [...] ``` `val2` ends up...
Mmapping chunks is expensive and so we should avoid having this done on the hot path to avoid blocking scrapes and rule evaluations. This change allows tsdb to keep most...
Metrics from a test instance:  
I've noticed that there are no linter checks enabled for struct field checks in Prometheus repo, so I've run https://github.com/mdempsky/maligned on tsdb package and it reports all sort of struct...
First of all a big thanks! This is really a great project, a must have IMHO. Now with https://blog.greenkeeper.io/announcing-native-lockfile-support-85381a37a0d0 I don't need to use greenkeeper-lockfile package to update the lock...
`url` label contains the url of every request that was ever made against gin webserver. This can cause very high memory usage for prometheus server. What's worse this is out...
I've upgraded from Go 1.17.7 to 1.17.8 and I've noticed that exported metrics labels changed as a result. le label on some histogram uses now different values than it used...