Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
docs
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
docs
Commits
5bf05a8f
Commit
5bf05a8f
authored
Oct 31, 2015
by
Brian Brazil
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #253 from karthequian/master
fixes a few simple spelling errors
parents
a75ca450
0091ac03
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
2015-04-24-prometheus-monitring-spreads-through-the-internet.md
...4-24-prometheus-monitring-spreads-through-the-internet.md
+1
-1
configuration.md
content/docs/operating/configuration.md
+1
-1
instrumentation.md
content/docs/practices/instrumentation.md
+2
-2
No files found.
content/blog/2015-04-24-prometheus-monitring-spreads-through-the-internet.md
View file @
5bf05a8f
...
@@ -5,7 +5,7 @@ kind: article
...
@@ -5,7 +5,7 @@ kind: article
author_name
:
Brian Brazil
author_name
:
Brian Brazil
---
---
It has been almost three months since we publicy announced Prometheus version
It has been almost three months since we public
l
y announced Prometheus version
0.
10.0, and we're now at version 0.13.1.
0.
10.0, and we're now at version 0.13.1.
[
SoundCloud's announcement blog post
](
https://developers.soundcloud.com/blog/prometheus-monitoring-at-soundcloud
)
[
SoundCloud's announcement blog post
](
https://developers.soundcloud.com/blog/prometheus-monitoring-at-soundcloud
)
...
...
content/docs/operating/configuration.md
View file @
5bf05a8f
...
@@ -211,7 +211,7 @@ A `tls_config` allows configuring TLS connections.
...
@@ -211,7 +211,7 @@ A `tls_config` allows configuring TLS connections.
### Target groups `<target_group>`
### Target groups `<target_group>`
A
`target_group`
allows specifying a list of targets and a common label set for them.
A
`target_group`
allows specifying a list of targets and a common label set for them.
They are the canon
ci
al way to specify static targets in a scrape configuration.
They are the canon
ic
al way to specify static targets in a scrape configuration.
```
```
# The targets specified by the target group.
# The targets specified by the target group.
...
...
content/docs/practices/instrumentation.md
View file @
5bf05a8f
...
@@ -35,7 +35,7 @@ and latency. The number of in-progress requests can also be useful.
...
@@ -35,7 +35,7 @@ and latency. The number of in-progress requests can also be useful.
Online-serving systems should be monitored on both the client and server side.
Online-serving systems should be monitored on both the client and server side.
If the two sides see different behaviors, that is very useful information for debugging.
If the two sides see different behaviors, that is very useful information for debugging.
If a service has many clients, it is also not practical for the service to track them
If a service has many clients, it is also not practical for the service to track them
individally, so they have to rely on their own stats.
individ
u
ally, so they have to rely on their own stats.
Be consistent in whether you count queries when they start or when they end.
Be consistent in whether you count queries when they start or when they end.
When they end is suggested, as it will line up with the error and latency stats,
When they end is suggested, as it will line up with the error and latency stats,
...
@@ -161,7 +161,7 @@ take advantage of them, so it takes a bit of getting used to.
...
@@ -161,7 +161,7 @@ take advantage of them, so it takes a bit of getting used to.
When you have multiple metrics that you want to add/average/sum, they should
When you have multiple metrics that you want to add/average/sum, they should
usually be one metric with labels rather than multiple metrics.
usually be one metric with labels rather than multiple metrics.
For example, rather than
`http_responses_500_total`
and
`http_resonses_403_total`
,
For example, rather than
`http_responses_500_total`
and
`http_res
p
onses_403_total`
,
create a single metric called
`http_responses_total`
with a
`code`
label
create a single metric called
`http_responses_total`
with a
`code`
label
for the HTTP response code. You can then process the entire metric as one in
for the HTTP response code. You can then process the entire metric as one in
rules and graphs.
rules and graphs.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment