beorn7
56c9e024cb
Update goleveldb vendoring to pick up many bug fixes
...
Including data races and shutdown fixes.
Might be the reason for some reported problems.
8 years ago
beorn7
13c1086f18
Update vendoring of our own Prometheus packages.
...
This most notably updates to v0.8.0 of client_golang.
Also, it unifies the commit of different packages from the same repo.
8 years ago
beorn7
590446434f
Update github.com/miekg/dns to pull in bug fixes.
...
Most notable a race condition.
8 years ago
beorn7
98e6e4fbee
Update github.com/golang/protobuf/proto vendoring
...
This fixes a memory leak in Unmarshal code
8 years ago
beorn7
50fb82f987
vendor: Remove duplicate entries for "gopkg.in/yaml.v2" from vendor.json
8 years ago
beorn7
f0acde7721
Regenerate assets after cherry-pick
8 years ago
Frederic Branczyk
e6dc9b05d5
vendor: update govalidator package ( #2125 )
...
Fixes #2025
8 years ago
Brian Brazil
e1cfc994f7
Correctly handle on() in alerts. ( #2096 )
...
Fixes #2082
8 years ago
Stuart Olivera
223a22457f
ui: don’t consider aborted requests complete
...
If an existing request is aborted due to a new request, ignore the completion of the initial request.
Example:
1. Chrome dev tools: enable 5 second network latency
2. Execute query
3. A second later, execute the query again
4. Currently, the spinner will hide, and the stats will immediately display, as if the request had completed. Instead, the spinner and stats should wait until the 2nd execution finishes.
8 years ago
Björn Rabenstein
c1ae61a2cc
Merge pull request #2116 from prometheus/beorn7/fix
...
Add guard against non-monotonic samples in series
8 years ago
Brian Brazil
6bc29ba857
Fix regression from #1957 , specify non-zero default timeout. ( #2121 )
...
Fixes #2075
8 years ago
beorn7
876e5da4f8
Add guard against non-monotonic samples in series
...
This can only happen due to data corruption.
8 years ago
Björn Rabenstein
233a25a060
Merge pull request #2113 from tattsun/fix/ISSUE-2109-v1.2
...
ui: fix decode query params bug(ISSUE-2109)
8 years ago
tattsun
68e20bd9ac
ISSUE-2109 ui: fix decode query params bug
8 years ago
Björn Rabenstein
ec203a23e2
Merge pull request #2077 from prometheus/beorn7/build
...
promu: Use default Go version again
8 years ago
beorn7
f3837864f6
promu: Use default Go version again
...
The default is Go1.7.1 now.
8 years ago
beorn7
dd66f2e94b
Fix go version spec in .promu.yml
8 years ago
Björn Rabenstein
dc52a852dd
Merge pull request #2072 from prometheus/beorn7/release
...
Cut v1.2.1
8 years ago
beorn7
ddcd92b76c
Cut v1.2.1
8 years ago
beorn7
dc0ad8ee34
Use Go1.7.1 with Promu
8 years ago
beorn7
3f02e33e34
Re-add counting of evict chunk ops and decrementing NumMemChunks
...
Also, modify test to expose the regression.
8 years ago
Julius Volz
ab870ac653
Clean up some doc comments
8 years ago
Björn Rabenstein
5ec9869463
Merge pull request #2071 from prometheus/beorn7/storage
...
Re-add counting of evict chunk ops and decrementing NumMemChunks
8 years ago
beorn7
719508752b
Re-add counting of evict chunk ops and decrementing NumMemChunks
...
Also, modify test to expose the regression.
8 years ago
beorn7
522c933614
Merge branch 'master' into release-1.2
8 years ago
beorn7
d8cbac1225
Abbreviate CHANGELOG.md entry for 1.2.0
...
It now follows the policy of only documenting user-relevant changes.
8 years ago
Björn Rabenstein
05d3d6d9f7
Merge pull request #2060 from prometheus/cleanup-comments
...
Clean up some doc comments
8 years ago
Julius Volz
cb02f017ee
Clean up some doc comments
8 years ago
beorn7
836c61e1da
Cut v1.2.0
8 years ago
Julius Volz
2844a8c7b5
Merge pull request #2055 from prometheus/utilization
...
Add Chunk.Utilization() methods
8 years ago
Julius Volz
c212ef0326
Add Chunk.Utilization() methods
...
When using the chunking code in other projects (both Weave Prism and
ChronixDB ingester), you sometimes want to know how well you are
utilizing your chunks when closing/storing them.
8 years ago
Julius Volz
0dbcf55bd2
Merge pull request #2054 from prometheus/remove-grpc-leftovers
...
Remove gRPC leftovers in protobuf definitions
8 years ago
Julius Volz
ee8e8d1d31
Merge pull request #2053 from prometheus/fix-remote-write-example
...
Simplify and fix remote write example
8 years ago
Julius Volz
b5163351bf
Simplify and fix remote write example
...
After removing gRPC, this can be simplified again. Also, the
configuration for the remote storage moved from flags to the config
file.
8 years ago
Julius Volz
c7932aa009
Remove gRPC leftovers in protobuf definitions
8 years ago
Björn Rabenstein
1e2f03f668
Merge pull request #2005 from redbaron/microoptimise-matching
...
Microoptimise matching
8 years ago
Maxim Ivanov
e6db9f8159
New fpsForLabelMatchers and seriesForLabelMatchers methods
...
These more specific methods have replaced `metricForLabelMatchers`
in cases where its `map[fingerprint]metric` result type was
not necessary or was used as an intermediate step
Avoids duplicated calls to `seriesForRange` from
`QueryRange` and `QueryInstant` methods.
8 years ago
Brian Brazil
6e8f87a37f
Merge pull request #2047 from prometheus/write-relabel
...
Add support for remote write relabelling.
8 years ago
Brian Brazil
77605649a9
Add support for remote write relabelling.
...
Switch back to a single remote writer, as we were only ever meant to
have one and the relabel semantics are clearer that way.
8 years ago
Julius Volz
9172728125
Merge pull request #2050 from prometheus/unpublish-series-methods
...
Unpublish accidentally published series methods
8 years ago
Tobias Schmidt
f07e67650e
Merge pull request #2049 from prometheus/ctxfn-error
...
Update common/route vendoring for contextFn errors
8 years ago
Julius Volz
c9d4526428
Unpublish accidentally published series methods
...
There were some more accidentally published methods of the memorySeries
type which I didn't notice when reviewing https://github.com/prometheus/prometheus/pull/2011
8 years ago
Julius Volz
4f79072fd1
Update common/route vendoring for contextFn errors
8 years ago
Julius Volz
c0889fd92e
Merge pull request #2032 from prometheus/separate-chunk-package
...
storage: separate chunk package, publish more names
8 years ago
Maxim Ivanov
4978a65495
Extract initial FP candidate build logic into candidateFPsForLabelMatchers method
...
No functional changes otherwise
8 years ago
Maxim Ivanov
c048a0cde8
Add metrics to result after checking all matchers
...
Should be marginally faster and somewhat more GC friendly
8 years ago
Maxim Ivanov
bedc0eda1f
Added BenchmarkQueryRange
8 years ago
Fabian Reinartz
32d29f8dbc
Merge pull request #2044 from prometheus/changes-nan
...
promql: handle NaN in changes() correctly
8 years ago
Fabian Reinartz
ccbce0c51f
promql: handle NaN in changes() correctly
8 years ago
Julius Volz
c25f0de5ae
Remove local.ZeroSample{,Pair}, use model definitions
8 years ago