Jimmi Dyson
042f18b07a
Kubernetes SD: Fix metrics path relabeling in example config
9 years ago
Fabian Reinartz
5f52ed3202
Merge pull request #1225 from fabric8io/kubernetes-discovery
...
KubernetesSD: Create targets for services as well as service endpoints
9 years ago
Jimmi Dyson
645feba8cf
KubernetesSD: Remove redundant defaults from example config
9 years ago
Jimmi Dyson
2cca07381b
KubernetesSD: Create targets for services as well as service endpoints
9 years ago
Fabian Reinartz
6c3a2eab7c
Merge pull request #1226 from prometheus/rlbldef
...
Add new defaults for relabel configurations
9 years ago
Fabian Reinartz
4d1c9296d5
Add new defaults for relabel configurations
9 years ago
Brian Brazil
489921fe3b
Merge pull request #1224 from prometheus/offset-print
...
Print offsets in promql.
9 years ago
Brian Brazil
a287264989
Print offsets in promql.
9 years ago
Tobias Schmidt
7a6a0630d1
Merge pull request #1213 from prometheus/fix-wrong-http-status-codes
...
Return HTTP server error codes for execution errors
9 years ago
Tobias Schmidt
6c49edfce2
Merge pull request #1211 from prometheus/default-time-parameter
...
Make time parameter optional in v1 query API
9 years ago
Julius Volz
bce5202354
Minor fixups to web/ui/README.md
9 years ago
Tobias Schmidt
bf84faa010
Return HTTP server error codes for execution errors
9 years ago
Fabian Reinartz
7cbd31f7b6
Merge pull request #1212 from prometheus/uidev
...
Document convenient development of UI files.
9 years ago
Tobias Schmidt
50079a85a1
Make time parameter optional in v1 query API
...
If no time paramter is provided, the current server timestamp is used.
9 years ago
Fabian Reinartz
69e6ac735e
Document convenient development of UI files.
9 years ago
Fabian Reinartz
a5461e1ad7
Merge pull request #1209 from samstarling/js-tidying
...
Tidy up .js files based on static analysis from jshint
9 years ago
Sam Starling
1901875595
Tidy up .js files based on static analysis from jshint
9 years ago
Fabian Reinartz
307d9fad46
Merge pull request #1208 from prometheus/assets
...
Simplify asset handling
9 years ago
Fabian Reinartz
a542cc8609
Remove -web.use-local-assets
9 years ago
Fabian Reinartz
57ca7108aa
Enable debug generation of go-bindata, rename blob/ to ui/
9 years ago
Julius Volz
75fdcf5698
Merge pull request #1197 from iksaif/master
...
Add support for remote storage on Graphite
9 years ago
Corentin Chary
a2e4439086
Add support for remote storage on Graphite
...
Allows to use graphite over tcp or udp. Metrics labels
and values are used to construct a valid Graphite path
in a way that will allow us to eventually read them back
and reconstruct the metrics.
For example, this metric:
model.Metric{
model.MetricNameLabel: "test:metric",
"testlabel": "test:value",
"testlabel2": "test:value",
)
Will become:
test:metric.testlabel=test:value.testlabel2=test:value
escape.go takes care of escaping values to match Graphite
character set, it basically uses percent-encoding as a fallback
wich will work pretty will in the graphite/grafana world.
The remote storage module also has an optional 'prefix' parameter
to prefix all metrics with a path (for example, 'prometheus.').
Graphite URLs are simply in the form tcp://host:port or
udp://host:port.
9 years ago
Fabian Reinartz
5b7411e80a
Merge pull request #1204 from prometheus/port-after-relabel
...
Add in default port after relabelling.
9 years ago
Julius Volz
5b5dc5672a
Merge pull request #1205 from prometheus/readme-fed
...
Fix outdated federation feature statement
9 years ago
Fabian Reinartz
0c7edc5a4e
Fix outdated federation feature statement
9 years ago
Brian Brazil
427bf29db1
Add in default port after relabelling.
...
For the SNMP and blackbox exporters where
the ports tends to not be 80/443 and indeed
there may not be a port this makes the relabelling
a bit simpler as you don't have to figure out this
logic exists and strip off the :80.
This is a breaking change for the example configs of
those exporters.
9 years ago
Brian Brazil
452220ec90
Merge pull request #1057 from prometheus/config-target
...
Allow all instance labels in target groups
9 years ago
Brian Brazil
fd2bd81cd8
Allow all instance labels in target groups
...
With the blackbox exporter, the instance label will commonly
be used for things other than hostnames so remove this restriction.
https://example.com or https://example.com/probe/me are some examples.
To prevent user error, check that urls aren't provided as targets
when there's no relabelling that could potentically fix them.
9 years ago
Fabian Reinartz
69dd9ecd23
Merge pull request #1201 from prometheus/re
...
Anchor regexes in vector matching
9 years ago
Fabian Reinartz
33aab4169c
Anchor regexes in vector matching
...
This commit makes the regex behavior of vector matching consistent with
configuration and label_replace() by anchoring it.
Fixes #1200
9 years ago
Fabian Reinartz
f34c0fc81e
Update version on master branch
9 years ago
Fabian Reinartz
9cad147265
Merge pull request #1172 from federicobaldo/ec2_sd_improvements
...
Minor improvements to ec2 service discovery
9 years ago
Federico Baldo
d14d2429ea
Minor improvements to ec2 sd:
...
1. static credentials replaced with defaults.DefaultChainCredentials.
This change ensures that credentials are sourced form all possible
providers available with the aws sdk, in the following order:
env variables, shared awsconfig file in user folder, ec2 instance role.
2. Added a few labels: AvailabilityZone, PublicDns, VpcId (if
available), SubnetId (if in Vpc)
9 years ago
Brian Brazil
a2072d617d
Merge pull request #1195 from lyda/blackbox-console-squashed
...
Add blackbox console.
9 years ago
Kevin Lyda
384bd15bfc
Add blackbox console.
9 years ago
Julius Volz
4b2bccece9
Merge pull request #1192 from prometheus/no-hack
...
Remove Hacktoberfest
9 years ago
Brian Brazil
9efacf081b
Remove Hacktoberfest
...
It's almost at an end, so we can remove this.
9 years ago
Brian Brazil
1b2c44b1c9
Merge pull request #1183 from prometheus/vendor
...
Update vendoring
9 years ago
Fabian Reinartz
9107f583aa
Update vendoring
9 years ago
Julius Volz
b3b1df92f3
Update Julius's email address in AUTHORS.md
9 years ago
Fabian Reinartz
cae354c6a7
Merge pull request #1181 from prometheus/fix-range-autocomplete
...
Don't autocomplete metrics in range specifications.
9 years ago
Julius Volz
a635f5451e
Don't autocomplete metrics in range specifications.
9 years ago
Fabian Reinartz
cf7fda4371
Merge pull request #1180 from prometheus/logup
...
Upgrade common/log vendoring
9 years ago
Fabian Reinartz
21a7b94d6c
Upgrade common/log vendoring
9 years ago
Fabian Reinartz
f2a8261cdb
Merge pull request #1177 from fabric8io/kubernetes-discovery
...
Kubernetes SD authentication options cleanup
9 years ago
Jimmi Dyson
104803e74e
Kubernetes SD: Cleanup example config label regexps
9 years ago
Fabian Reinartz
8d128685cf
Merge pull request #1179 from prometheus/tlsconf
...
Add overflow check in TLS config
9 years ago
Fabian Reinartz
180da1ba65
Add overflow check in TLS config
9 years ago
Jimmi Dyson
87940ec213
Kubernetes SD: Rename `masters` to `api_servers` in config
9 years ago
Jimmi Dyson
7ff5cc66ea
Kubernetes SD authentication options cleanup
9 years ago