Julius Volz
8c9e9632a8
Record scrape health timeseries per target.
12 years ago
juliusv
fdea26e359
Merge pull request #150 from prometheus/julius-mf
...
Run "make format".
12 years ago
Julius Volz
5f5ea03105
Run "make format".
12 years ago
juliusv
a13bc4494d
Merge pull request #149 from prometheus/fix/telemetry/queue-reporting
...
Fix append queue telemetry and parameterize sizes.
12 years ago
Matt T. Proud
d468271e2f
Fix append queue telemetry and parameterize sizes.
...
The original append queue telemetry never worked, because it was
updated only upon the exit of the select statement, which would
usually liberate the queues of contents. This has been fixed to
be reported arbitrarily.
The queue sizes are now parameterizable via flags.
12 years ago
juliusv
888b64c781
Merge pull request #145 from prometheus/julius-fix-per-second-rate
...
Fix rate() per-second adjustment.
12 years ago
Julius Volz
1cff4f3d91
Fix rate() per-second adjustment.
...
This got broken during the depointerization of the Vector type.
12 years ago
juliusv
62f33f1fc2
Merge pull request #138 from prometheus/julius-fix-aliasing
...
Correct delta()/rate() intervals and temporal aliasing.
12 years ago
Matt T. Proud
167504efd6
Merge pull request #142 from prometheus/julius-lowercase-by
...
Allow lower-case BY operator.
12 years ago
Matt T. Proud
7267b76d93
Merge pull request #143 from prometheus/julius-fix-drain
...
Stop serving tiered storage after draining it.
12 years ago
Julius Volz
95b081f9bc
Stop serving tiered storage after draining it.
12 years ago
Julius Volz
d53b8cf956
Correct delta()/rate() intervals and temporal aliasing.
12 years ago
Julius Volz
000f6a2e23
Allow lower-case BY operator.
12 years ago
Matt T. Proud
6b9de768ee
Merge pull request #141 from prometheus/julius-constantize-job-label
...
Constantize job name label.
12 years ago
Julius Volz
a0d311c9e6
Constantize job name label.
12 years ago
juliusv
f21b5ad12b
Merge pull request #133 from bernerdschaefer/graph-display-tweaks
...
Graph display tweaks
12 years ago
Bernerd Schaefer
72bd585485
Revert style change to legend items
12 years ago
Matt T. Proud
e6f67c3a3e
Merge pull request #139 from prometheus/julius-reduce-sample-jitter
...
Fix scrape timestamps to reduce sample time jitter.
12 years ago
Julius Volz
a1ba23038e
Fix scrape timestamps to reduce sample time jitter.
...
We're currently timestamping samples with the time at the end of a scrape
iteration. It makes more sense to use a timestamp from the beginning of the
scrape for two reasons:
a) this time is more relevant to the scraped values than the time at the
end of the HTTP-GET + JSON decoding work.
b) it reduces sample timestamp jitter if we measure at the beginning, and
not at the completion of a scrape.
12 years ago
juliusv
f817106d6a
Merge pull request #134 from prometheus/fix/set-job-label-from-targets-api
...
Set job label for targets registered through the API
12 years ago
juliusv
f89d4c2cac
Merge pull request #128 from prometheus/feature/convert-host-relative-links
...
Convert addresses pointing to localhost in status.
12 years ago
Johannes 'fish' Ziemke
14407a076a
Convert addresses pointing to localhost in status.
...
Until now, targets pointing to localhost in the status view are linked to localhost, so you can't follow those links by clicking on them.
This change converts the links to point to the hostname of the prometheus server.
Before:
<a href="http://localhost:9090/metrics.json ">http://localhost:9090/metrics.json </a>
After:
<a href="http://hostname-of-prometheus-server:9090/metrics.json ">http://localhost:9090/metrics.json </a>
12 years ago
Bernerd Schaefer
8af0bbb3a0
Set job label for targets registered through the API
...
This is set when jobs are statically registered (see
retrieval/targetmanager.go#L92), and should be set here, too.
12 years ago
Bernerd Schaefer
442a6d2b11
Use $ instead of jQuery
12 years ago
Bernerd Schaefer
953334a4f7
Reformat and add semicolons to graph.js
12 years ago
juliusv
63ac59d2d3
Merge pull request #131 from bernerdschaefer/cross-origin-metrics
...
Set CORS Headers on API requests
12 years ago
Bernerd Schaefer
43dc377bee
Flip x_label when it would render off-page
12 years ago
Bernerd Schaefer
461e02d2b8
Flip hover detail to prevent going off the screen
12 years ago
Bernerd Schaefer
8c9597cb39
Render legend in a similar style to labels
12 years ago
Bernerd Schaefer
a7ec43189a
Hovering over legend items highlights series in graph
12 years ago
Bernerd Schaefer
564633ecbc
Render graph labels vertically
...
This helps to make the timeseries with many labels fit on the screen.
12 years ago
juliusv
926d03d2bd
Merge pull request #124 from prometheus/julius-lowercase-ops
...
Also allow lower-cased aggregation ops.
12 years ago
Julius Volz
1bc83e1b65
Also allow lower-cased aggregation ops.
12 years ago
Matt T. Proud
2d70e75c52
Merge pull request #132 from prometheus/julius-leveldb-sorting
...
Make LevelDB sample keys fixed-length to ensure correct sort-order.
12 years ago
Julius Volz
fd554e8b89
Make LevelDB sample keys fixed-length to ensure correct sort-order.
12 years ago
juliusv
f9c291120f
Merge pull request #123 from prometheus/julius-propagate-rule-errors
...
Propagate more errors during rule evaluation.
12 years ago
Bernerd Schaefer
5e9447996b
Set CORS Headers on API requests
...
By setting Access-Control headers, the Prometheus metrics API can be
accessed by cross-origin javascript applications (e.g., an external
dashboard pulling Prometheus metrics).
12 years ago
juliusv
2310f549dd
Merge pull request #130 from prometheus/julius-threadsafe-parser
...
Make expression parser goroutine-safe.
12 years ago
Julius Volz
9a81b9838f
Make expression parser goroutine-safe.
...
See https://github.com/prometheus/prometheus/issues/127
12 years ago
juliusv
dd4f326680
Merge pull request #126 from prometheus/julius-sort-functions
...
Add sort() and sort_desc() expression language functions.
12 years ago
Julius Volz
6cb3c51d24
Add sort() and sort_desc() expression language functions.
12 years ago
Johannes 'fish' Ziemke
8fba639706
Fix path to expression browser js.
12 years ago
Johannes 'fish' Ziemke
adeabca230
Minor UI fixes.
...
- Fix path to spinner
- Fix color for unvisited links
- Include necessary jqueryui images
12 years ago
Johannes 'fish' Ziemke
08e37f48dd
Merge pull request #122 from prometheus/feature/make-self-contained
...
Feature/make self contained
12 years ago
Julius Volz
c4d0969c00
Propagate more errors during rule evaluation.
12 years ago
Johannes 'fish' Ziemke
8417d3e8d1
Add MANIFEST listing 3rd party libs and versions.
12 years ago
Johannes 'fish' Ziemke
e43d7d5771
Make Prometheus self-contained.
...
This includes all external resources instead of hotlinking them.
12 years ago
Johannes 'fish' Ziemke
17f622bd6e
Take Path fragment from URL instead of whole URL.
...
This also makes better error handling in case a asset couldn't be found in the files map.
12 years ago
Johannes 'fish' Ziemke
bf197baaf9
Depend on all static and template files.
12 years ago
Matt T. Proud
6146116e2f
Merge pull request #115 from prometheus/fix/storage/nil-behaviors
...
Validate diskFrontier domain for series candidate.
12 years ago