Brian Brazil
261aba68f1
Merge pull request #1564 from prometheus/better-tooltips
...
Improve before-relabeling label tooltips.
9 years ago
Julius Volz
c0b430b8e5
Improve before-relabeling label tooltips.
...
Yes, the label names and values really need double HTML escaping in
order to end up correctly in the tooltip after two levels of unescaping.
Fixes https://github.com/prometheus/prometheus/issues/1563
9 years ago
Fabian Reinartz
f12ebd6635
Update changelog for 0.18.0
9 years ago
Fabian Reinartz
b489427ea4
Bump version to 0.18.0
9 years ago
Fabian Reinartz
64ed5d0cc7
Merge pull request #1561 from prometheus/fabxc/alerterr
...
Add error message if old alert rule tokens are read
9 years ago
Fabian Reinartz
fceedfa807
Add error message if old alert rule tokens are read
9 years ago
Brian Brazil
78e43ff758
Merge pull request #1560 from prometheus/fix-keep-common-printing
...
Fix missing printed keep_common without grouping.
9 years ago
Julius Volz
6ac39700ea
Fix missing printed keep_common without grouping.
9 years ago
Björn Rabenstein
23d383a743
Merge pull request #1559 from prometheus/beorn7/storage
...
Never drop a still open head chunk.
9 years ago
beorn7
db16acd7fb
Never drop a still open head chunk.
9 years ago
Björn Rabenstein
096a2ef200
Merge pull request #1555 from prometheus/beorn7/cd
...
Checkpoint fingerprint mappings only upon shutdown
9 years ago
beorn7
a90d645378
Checkpoint fingerprint mappings only upon shutdown
...
Before, we checkpointed after every newly detected fingerprint
collision, which is not a problem as long as collisions are
rare. However, with a sufficient number of metrics or particular
nature of the data set, there might be a lot of collisions, all to be
detected upon the first set of scrapes, and then the checkpointing
after each detection will take a quite long time (it's O(n²),
essentially).
Since we are rebuilding the fingerprint mapping during crash recovery,
the previous, very conservative approach didn't even buy us
anything. We only ever read from the checkpoint file after a clean
shutdown, so the only time we need to write the checkpoint file is
during a clean shutdown.
9 years ago
Fabian Reinartz
f6c29843fb
Merge pull request #1552 from prometheus/link-to-documentation
...
Add link to prometheus.io in the README
9 years ago
Tobias Schmidt
92d5054c67
Add link to prometheus.io in the README
9 years ago
Julius Volz
4a372fdcfb
Merge pull request #1554 from jonboulle/master
...
Add missing Apache license headers + travis check
9 years ago
Jonathan Boulle
096219d535
Add check_style to travis configuration
9 years ago
Jonathan Boulle
38098f8c95
Add missing license headers
...
Prometheus is Apache 2 licensed, and most source files have the
appropriate copyright license header, but some were missing it without
apparent reason. Correct that by adding it.
9 years ago
Jonathan Boulle
1c8262be12
Add script to check for missing license headers
...
Also adds a `check_license` target to the Makefile to run the script
9 years ago
Fabian Reinartz
322ad49b01
Merge branch 'release-0.18'
9 years ago
Fabian Reinartz
b9853cacba
Add CHANGE on alerting rule syntax
9 years ago
Fabian Reinartz
a18639dc2d
Merge pull request #1454 from prometheus/beorn7/fix-test
...
Give TestEvictAndLoadChunkDescs more time to actually evict
9 years ago
Fabian Reinartz
0520414000
Merge pull request #1535 from prometheus/fabxc/0.18.0rc1_changelog
...
Add 0.18.0rc1 changelog
9 years ago
Fabian Reinartz
6d1a756613
Add 0.18.0rc1 changelog
9 years ago
Fabian Reinartz
8ce4cfe858
Bump version to 0.18.0rc1
9 years ago
Brian Brazil
3683eaf205
Merge pull request #1534 from prometheus/fabxc/gover
...
Include goversion in build_info metric
9 years ago
Fabian Reinartz
f3e55cba1d
Include goversion in build_info metric
9 years ago
Julius Volz
17079952c1
Merge pull request #1531 from prometheus/revert-1530-simplify-runtime-version
...
Revert "Simplify runtime version code more"
9 years ago
Fabian Reinartz
77f5b9d268
Revert "Simplify runtime version code more"
9 years ago
Julius Volz
cb690a2d23
Merge pull request #1530 from prometheus/simplify-runtime-version
...
Simplify runtime version code more
9 years ago
Julius Volz
17ece74511
Simplify runtime version code more
...
It's no longer a build-time injected variable (as the comment above its
block indicates), so move it to the map below.
9 years ago
Fabian Reinartz
2c19334715
Merge pull request #1529 from prometheus/fabxc/goversion
...
Use runtime.Version()
9 years ago
Fabian Reinartz
da701f9d13
Merge pull request #1527 from prometheus/fabxc/fixrace
...
Fix potential race in ctx intialization
9 years ago
Fabian Reinartz
9f5ae819e2
Use runtime.Version()
9 years ago
Fabian Reinartz
769389e559
Fix potential race in ctx intialization
9 years ago
Fabian Reinartz
9ee91062c4
Merge pull request #1522 from prometheus/unless-operator
...
Implement relative complement set operator "unless"
9 years ago
Tobias Schmidt
8cc86f25c0
Implement relative complement set operator "unless"
...
The `unless` set operator can be used to return all vector elements from
the LHS which do not match the elements on the RHS. A use case is to
return all metrics for nodes which do not have a specific role:
node_load1 unless on(instance) chef_role{role="app"}
9 years ago
Brian Brazil
6453f64000
Merge pull request #1523 from prometheus/cleanup
...
Remove unused code leftovers
9 years ago
Tobias Schmidt
e82ef154ee
Remove unused code leftovers
9 years ago
Tobias Schmidt
4c3dc25e35
Fix whitespace in promql test data
9 years ago
Brian Brazil
6aef22d68a
Merge pull request #1516 from prometheus/fabxc/rune
...
Use ContainsRune
9 years ago
Fabian Reinartz
235e6c554b
Use ContainsRune
9 years ago
Brian Brazil
eb183ce154
Merge pull request #1510 from prometheus/beorn7/fix
...
Work around compiler bug
9 years ago
beorn7
d09ca03e10
Work around compiler bug
...
Benchmarks don't show any significant changes.
9 years ago
Brian Brazil
24a3ad3d16
Merge pull request #1485 from eliothedeman/master
...
Adds holt-winters query function
9 years ago
eliothedeman
1543ef92b2
Adds holt-winters query function
9 years ago
Fabian Reinartz
15ffd6b282
Update Fabian's email address
9 years ago
Björn Rabenstein
d43f380cf2
Merge pull request #1502 from prometheus/beorn7/storage7
...
Beorn7/storage7
9 years ago
beorn7
507f550cd4
Merge branch 'master' into beorn7/storage7
9 years ago
Björn Rabenstein
2a62a7c702
Merge pull request #1491 from prometheus/beorn7/storage8
...
Gorilla-style chunks
9 years ago
Brian Brazil
070d663948
Merge pull request #1501 from prometheus/and-dummy
...
Pull in fix for and with empty labelsets
9 years ago