Fabian Reinartz
52437c81da
Merge pull request #213 from stapelberg/patch-1
...
api: document goroutine safeness
2016-08-02 00:22:46 -07:00
Brian Brazil
b672480095
Merge pull request #215 from djui/patch-1
...
Fix typo in doc string
2016-08-01 22:18:14 +01:00
Uwe Dauernheim
c1e8a41238
Fix typo in doc string
2016-08-01 23:14:45 +02:00
Michael Stapelberg
7b5f88727a
api: document goroutine safeness
2016-08-01 00:11:57 +02:00
Björn Rabenstein
28be15864e
Merge pull request #211 from andrewstuart/variadic-register
...
Add *RegisterAll functions with variadic args
2016-07-12 00:22:38 +02:00
Andrew Stuart
e63e6e3db7
Extend MustRegister function to accept variadic args
2016-07-11 15:04:23 -07:00
Brian Brazil
9f1ed1ed4a
Merge pull request #209 from mattbostock/fix_doc_indentation
...
Fix GoDoc indentation
2016-06-27 15:36:20 +01:00
Matt Bostock
c7f1ecb643
Fix GoDoc indentation
...
The line after the first in each bullet point was appearing as
preformatted blocks when viewed as HTML in GoDoc.
2016-06-27 15:26:48 +01:00
Fabian Reinartz
928b9836d4
Merge pull request #208 from chrislonng/master
...
comment contains some misspell
2016-06-27 12:12:15 +02:00
Chris Lonng
7752efd9d6
comment contains some misspell
2016-06-27 17:49:34 +08:00
Björn Rabenstein
488edd04dc
Merge pull request #202 from mattyw/01-docs
...
prometheus/docs: Added a link to the metric types page
2016-05-31 11:15:28 +02:00
mattyw
3c063fb533
prometheus/docs: Added a link to the metric types page
2016-05-31 10:07:50 +01:00
beorn7
82a2759dc8
Update Go version .travis.yml
...
Currently, the travis build doesn't work because the dependencies
require Go1.5.
2016-05-27 15:26:51 +02:00
Björn Rabenstein
d38f1ef46f
Merge pull request #201 from prometheus/beorn7/doc
...
Document the issues of InstrumentHandler
2016-05-17 11:07:30 +02:00
beorn7
f6b16ed256
Document the issues of InstrumentHandler
...
Obvious next step: Fix those issues.
2016-05-15 17:59:51 +02:00
Brian Brazil
b90ee0840e
Merge pull request #199 from mattharden/patch-1
...
Fix max_fds process collector test
2016-05-13 05:20:11 +01:00
Matt Harden
e3340f3371
Fix max_fds process collector test
...
This test fails when max_fds is a large value; say 4.5e+06, for example. Change it to match virtual_memory_bytes, which also has to handle large values.
2016-05-12 16:55:21 -07:00
Björn Rabenstein
90c15b5efa
Merge pull request #195 from prometheus/badlabel
...
Remove anti-pattern of having target labels in instrumentation example.
2016-03-17 14:26:13 +01:00
Brian Brazil
09374d92aa
Remove anti-pattern of having target labels in instrumentation example.
2016-03-17 13:22:20 +00:00
Fabian Reinartz
18acf9993a
Merge pull request #192 from mtanda/external-url
...
Support external-url
2016-02-23 13:27:30 +01:00
Mitsuhiro Tanda
67ee8ba510
support external-url
2016-02-23 21:23:58 +09:00
Brian Brazil
15006a7ed8
Merge pull request #191 from alicebob/lastgc
...
fix go_memstats_last_gc_time_seconds division
2016-02-08 00:36:15 +00:00
Harmen
e48dd8ee97
fix go_memstats_last_gc_time_seconds division
2016-02-08 01:28:30 +01:00
Björn Rabenstein
67994f1771
Merge pull request #186 from stapelberg/slash
...
Strip trailing / from push URL.
2015-11-27 19:24:33 +01:00
Michael Stapelberg
c1370d07ca
Strip trailing / from push URL.
...
This circumvents the following problem:
• The prometheus client library appends “/metrics/…” to the pushURL.
• When pushURL ends in a trailing slash, the URL becomes e.g.
http://pushgateway.example.com:9091//metrics/ …
• The pushgateway will reply with an HTTP 307 status code
(temporary redirect).
• While Go’s net/http client follows redirects by default, it will only
follow HTTP 302 (Found) and HTTP 303 (See Other) redirects for PUT and
POST requests, which the prometheus client library uses.
Hence, when calling e.g.:
prometheus.Push("foo", "bar", "http://pushgateway.example.com:9091/ ")
…your metrics would not actually get pushed successfully, but rather
you’d see the error message:
2015/11/26 10:59:49 main.go:209: unexpected status code 307 while pushing to http://push ...
2015-11-26 19:16:53 +01:00
Fabian Reinartz
8ab2490e0f
Merge pull request #185 from stapelberg/patch-2
...
fix typo: s/addr/url/
2015-11-25 10:54:27 +01:00
Michael Stapelberg
1a09b46c2e
fix typo: s/addr/url/
2015-11-25 08:46:01 +01:00
Björn Rabenstein
275368fd9e
Merge pull request #184 from realzeitmedia/allfnv
...
use local fnv hash everywhere
2015-11-12 14:29:20 +01:00
Harmen
5d4fdca1a5
use local fnv hash everywhere
2015-11-12 14:07:23 +01:00
Björn Rabenstein
cfd904193d
Merge pull request #180 from dnesting/dnesting-sort-metrics
...
Make metric sort stable and sort by timestamp
2015-11-10 22:31:22 +01:00
David Nesting
b0bd184e74
Simplify metricSorter timestamp comparison and improve comment
2015-11-10 09:37:58 -05:00
Björn Rabenstein
cf3f724ef6
Merge pull request #181 from realzeitmedia/locking
...
Less locking for metric vectors.
2015-11-10 14:58:49 +01:00
David Nesting
544f65f7fc
metricSorter stops relying on time.Now and respects nil timestamps
2015-11-09 17:14:07 -05:00
David Nesting
5fb1b89678
Make metric sort stable and sort by timestamp
2015-11-09 16:55:26 -05:00
Robert Vollmert
8c96b12588
try getting metrics with a read lock, first
2015-11-09 15:16:26 +01:00
Robert Vollmert
5183814775
ok not has
2015-11-09 15:16:26 +01:00
Robert Vollmert
1312da4c0c
Inline hash/fnv.
2015-11-09 15:16:26 +01:00
Robert Vollmert
39a26f2e35
concurrency benchmark
2015-11-09 14:34:37 +01:00
Julius Volz
449ccefff1
Update Julius's email address in AUTHORS.md
2015-10-26 02:27:06 +01:00
Björn Rabenstein
e51041b3fa
Merge pull request #146 from KevinPike/memstats
...
memstats collection
2015-10-08 16:32:47 +02:00
Kevin Pike
db58b27d95
heap bytes released total
2015-10-07 11:21:49 -07:00
Kevin Pike
1eb8d032a8
use counter for heap released bytes
2015-10-06 08:18:17 -07:00
Kevin Pike
9a6b9d3ddf
fix descriptions
2015-10-05 09:27:28 -07:00
Kevin Pike
6c7a1db6bf
don't reuse memstats
2015-10-05 07:37:59 -07:00
Kevin Pike
8a031ee219
unembed memstats collector
2015-10-02 18:10:36 -07:00
Fabian Reinartz
b6cad5edaf
Merge pull request #178 from prometheus/ctx
...
Use ctxhttp package for cancelable requests
2015-10-02 13:48:55 +02:00
Fabian Reinartz
f664cd7ea5
Use ctxhttp package for cancelable requests
2015-10-02 12:04:48 +02:00
Björn Rabenstein
3b78d7a77f
Merge pull request #175 from prometheus/documentation
...
Update README.md
2015-09-18 15:37:02 +02:00
beorn7
75109d1c90
Update README.md
2015-09-18 14:41:53 +02:00
Björn Rabenstein
dcd7417a58
Merge pull request #174 from prometheus/move-to-common
...
Move to common
2015-09-17 14:40:12 +02:00