Julius Volz
eeb1da36ac
Fix InfluxDB write support to work with InfluxDB 0.9.x.
...
Because the InfluxDB client library currently pulls in multiple MBs of
unnecessary dependencies, I have modified and cut up the vendored
version to only pull in the few pieces that are actually needed.
On InfluxDB's side, this dependency issue is tracked in:
https://github.com/influxdb/influxdb/issues/3447
Hopefully, it will be resolved soon.
If a password is needed for InfluxDB, it may be supplied via the
INFLUXDB_PW environment variable.
9 years ago
Julius Volz
5f77fce578
Improve remote storage queue manager metrics.
9 years ago
Fabian Reinartz
eca41f5319
Run gofmt
9 years ago
Fabian Reinartz
9e5b317c0d
Move vendor file to new location
9 years ago
Fabian Reinartz
f35382ddfb
Merge pull request #1069 from prometheus/vendor
...
Vendoring with govendor
9 years ago
Fabian Reinartz
468d2eb60e
Vendoring via govendor
9 years ago
Fabian Reinartz
e88eb9f164
Remove Godeps
9 years ago
Björn Rabenstein
6561897853
Merge pull request #1084 from prometheus/beorn7/storage
...
Increase waiting time in TestEvictAndLoadChunkDescs
9 years ago
beorn7
22d3a4311a
Increase waiting time in TestEvictAndLoadChunkDescs
...
The test had become flaky with Go1.5.
Theory here is that with Go1.5.x, sleeping for 10ms might not be
enough to wake up another goroutine, possibly because it is used for
GC. 50ms should always be enough due to GC pause guarantees with the
new GC.
9 years ago
Brian Brazil
fa793d917e
Merge pull request #1080 from prometheus/query-timeout-test
...
promql: Bump sleep in query timeout test
9 years ago
Brian Brazil
ce7f31e03c
promql: Bump sleep in query timeout test
...
This test is flaky, I'm presuming the time.AfterFunc
call is being delayed so the evaluation isn't getting
cancelled.
9 years ago
Julius Volz
347630431c
Merge pull request #1077 from prometheus/cleanups
...
Fix some dead code, missing error checks, shadowings.
9 years ago
Julius Volz
af513468eb
Fix some dead code, missing error checks, shadowings.
...
I applied
https://medium.com/@jgautheron/quality-pipeline-for-go-projects-497e34d6567
and was greeted with a deluge of warnings, most of which were not
applicable or really fixable realistically. These are some of the first
ones I decided to fix.
9 years ago
Brian Brazil
29de4ee2b0
Merge pull request #1078 from prometheus/whats-our-vector-victor
...
Remove optional vector() 2nd argument
9 years ago
Brian Brazil
9b382647b5
Remove optional vector() 2nd argument
9 years ago
Fabian Reinartz
896928ad00
Fix redirect path
9 years ago
Fabian Reinartz
d7b21f2fdb
Merge pull request #1039 from prometheus/startpage
...
Change UI start page
9 years ago
Fabian Reinartz
87b1d47e2b
Change UI start page
9 years ago
Fabian Reinartz
a1617d90f4
Merge pull request #1073 from prometheus/whats-our-vector-victor
...
promql: Add vector function.
9 years ago
Fabian Reinartz
bae9816834
Merge branch 'master' of github.com:prometheus/prometheus
9 years ago
Fabian Reinartz
b2c6378aae
Fix go1.5 compile flag warnings
9 years ago
Julius Volz
af58d784fd
Merge pull request #1076 from prometheus/remove-config-change-notice
...
Remove notice about 0.14.x config file format change.
9 years ago
Julius Volz
d73c8a4f0b
Remove notice about 0.14.x config file format change.
9 years ago
Björn Rabenstein
2c3c1ba69f
Merge pull request #1075 from prometheus/beorn7/storage
...
Fix DropMetricsForFingerprints
9 years ago
beorn7
daeccdd0e9
Fix DropMetricsForFingerprints
...
It now deletes the series file also for archived series.
Also, fix a naming error in a doc comment.
9 years ago
Julius Volz
e7c1db42f3
Merge pull request #1072 from fabric8io/kubernetes-discovery
...
Clean up kubernetes http response bodies
9 years ago
Brian Brazil
69f5fa0c1e
promql: Add vector function.
...
Currently the only way to convert a scalar to a vector is to
use absent(), which isn't very clean. This adds a vector()
function that's the inverse of scalar() and lets your optionally
set labels.
Example usage would be
vector(time() % 86400) < 3600
to filter to only the first hour of the day.
9 years ago
Jimmi Dyson
7ef9399920
Clean up kubernetes http response bodies
9 years ago
Fabian Reinartz
d6ed1df4fb
Merge pull request #1070 from amorken/forgotten-close
...
Close HTTP connections on HTTP errors too.
9 years ago
Anders Daljord Morken
9fb65a91af
Close HTTP connections on HTTP errors too.
...
Move defer resp.Body.Close() up to make sure it's called even when the
HTTP request returns something other than 200 or Decoder construction
fails. This avoids leaking and eventually running out of file descriptors.
9 years ago
Fabian Reinartz
66f376f75a
Merge pull request #1068 from prometheus/go1.5.1
...
Use go1.5.1
9 years ago
Fabian Reinartz
8456b7e12f
Use go1.5.1
9 years ago
Julius Volz
6e393807c3
Merge pull request #1066 from prometheus/fix-bool
...
Fix bool modifier in recording rules and printing.
9 years ago
Julius Volz
6d3e054692
Fix bool modifier in recording rules and printing.
...
Fixes https://github.com/prometheus/prometheus/issues/1065
9 years ago
Julius Volz
9a70ee752e
Merge pull request #1063 from fabric8io/kubernetes-discovery
...
Kubernetes SD config check
9 years ago
Jimmi Dyson
ec04ba38a2
Kubernetes SD config check
9 years ago
Fabian Reinartz
58c32f84ce
Merge pull request #1055 from fabric8io/kubernetes-discovery
...
Move TLS options to scrape config
9 years ago
Jimmi Dyson
a1574aa2b3
Move TLS options to scrape config
...
Fixes #1013 , fixes #989
9 years ago
Julius Volz
ffc5142c54
Merge pull request #1058 from prometheus/check-errors
...
Fix error checking and logging around checkpointing.
9 years ago
Julius Volz
6774a73878
Fix error checking and logging around checkpointing.
9 years ago
Julius Volz
011faf9057
Fix typo in comment.
9 years ago
Fabian Reinartz
09c353c272
Change mail address
9 years ago
Fabian Reinartz
e298463fd6
Merge pull request #1053 from prometheus/diag
...
Update architecture diagram
9 years ago
Fabian Reinartz
1a3ee28cd2
Point README to new architecture diagram
9 years ago
Fabian Reinartz
e761f0d664
Update architecture diagram
9 years ago
Fabian Reinartz
1ef5ed0cf2
Merge pull request #1048 from xperimental/fix/marathon-config
...
Fix parsing Marathon SD config
9 years ago
Robert Jacob
eb7416e71f
Fix missing unmarshal for Marathon SD config.
9 years ago
Julius Volz
b7b7b2e883
Merge pull request #1050 from fabric8io/kubernetes-discovery
...
Kubernetes SD improvements
9 years ago
Jimmi Dyson
d7a7fd4589
Kubernetes SD improvements
...
* Support multiple masters with retries against each master as required.
* Scrape masters' metrics.
* Add role meta label for node/service/master to make it easier for relabeling.
9 years ago
Fabian Reinartz
d839980fcb
Merge pull request #1051 from prometheus/globallabels
...
Change global label handling
9 years ago