Commit c9e87cb5 authored by Julius Volz's avatar Julius Volz

Abridge blog posts in index view.

parent 6a32f236
...@@ -16,6 +16,8 @@ catch up on anything you missed. ...@@ -16,6 +16,8 @@ catch up on anything you missed.
In the future, we will use this blog to publish more articles and announcements In the future, we will use this blog to publish more articles and announcements
to help you get the most out of Prometheus. to help you get the most out of Prometheus.
<!-- more -->
## Using Prometheus ## Using Prometheus
Posts on how to use Prometheus comprise the majority of online content. Here Posts on how to use Prometheus comprise the majority of online content. Here
......
...@@ -22,6 +22,7 @@ In this blog post, we will take a closer look at the built-in service discovery ...@@ -22,6 +22,7 @@ In this blog post, we will take a closer look at the built-in service discovery
some practical examples. As an additional resource, see some practical examples. As an additional resource, see
[Prometheus's configuration documentation](/docs/operating/configuration). [Prometheus's configuration documentation](/docs/operating/configuration).
<!-- more -->
## Prometheus and targets ## Prometheus and targets
......
...@@ -19,6 +19,8 @@ detect and handle with custom-built rules. The Prometheus [query ...@@ -19,6 +19,8 @@ detect and handle with custom-built rules. The Prometheus [query
language](../../../../../docs/querying/basics/) gives you the tools to discover language](../../../../../docs/querying/basics/) gives you the tools to discover
these anomalies while avoiding false positives. these anomalies while avoiding false positives.
<!-- more -->
## Building a query ## Building a query
A common problem within a service is when a small number of servers are not A common problem within a service is when a small number of servers are not
......
...@@ -30,6 +30,8 @@ or *dhtech*. This post is going to focus on the work of dhtech and how we used ...@@ -30,6 +30,8 @@ or *dhtech*. This post is going to focus on the work of dhtech and how we used
Prometheus during DreamHack Summer 2015 to try to kick our monitoring up another Prometheus during DreamHack Summer 2015 to try to kick our monitoring up another
notch. notch.
<!-- more -->
## The equipment ## The equipment
Turns out that to build a highly performant network for 10,000+ Turns out that to build a highly performant network for 10,000+
computers, you need at least the same number of network ports. In our case these computers, you need at least the same number of network ports. In our case these
......
...@@ -24,6 +24,8 @@ In this post we will implement a small utility program that connects a custom ...@@ -24,6 +24,8 @@ In this post we will implement a small utility program that connects a custom
service discovery approach based on [etcd](https://coreos.com/etcd/), the service discovery approach based on [etcd](https://coreos.com/etcd/), the
highly consistent distributed key-value store, to Prometheus. highly consistent distributed key-value store, to Prometheus.
<!-- more -->
## Targets in etcd and Prometheus ## Targets in etcd and Prometheus
Our fictional service discovery system stores services and their Our fictional service discovery system stores services and their
......
...@@ -22,6 +22,8 @@ Docker and Boexever in 2014. Over the years, Prometheus was growing more and ...@@ -22,6 +22,8 @@ Docker and Boexever in 2014. Over the years, Prometheus was growing more and
more mature and although it was already solving people's monitoring problems, more mature and although it was already solving people's monitoring problems,
it was still unknown to the wider public. it was still unknown to the wider public.
<!-- more -->
## Going public ## Going public
Everything changed for us a year ago, in January of 2015. After more than two Everything changed for us a year ago, in January of 2015. After more than two
......
...@@ -45,6 +45,8 @@ It shows us that there is one firing alert, followed by the label values of ...@@ -45,6 +45,8 @@ It shows us that there is one firing alert, followed by the label values of
the alert grouping (alertname, datacenter, app) and further label values the the alert grouping (alertname, datacenter, app) and further label values the
alerts have in common (critical). alerts have in common (critical).
<!-- more -->
## Customize ## Customize
If you have alerts, you should also have documentation on how to handle them – If you have alerts, you should also have documentation on how to handle them –
......
...@@ -33,6 +33,7 @@ services written in Go, Python, PHP, as well as plans to introduce Java to our ...@@ -33,6 +33,7 @@ services written in Go, Python, PHP, as well as plans to introduce Java to our
stack. We use Consul for service discovery, and of course our Prometheus setup stack. We use Consul for service discovery, and of course our Prometheus setup
is integrated with it. is integrated with it.
<!-- more -->
## What was your pre-Prometheus monitoring experience? ## What was your pre-Prometheus monitoring experience?
......
...@@ -368,7 +368,3 @@ aside { ...@@ -368,7 +368,3 @@ aside {
article { article {
margin: 10px 0 60px 0; margin: 10px 0 60px 0;
} }
.read-more > a {
color: #888;
}
...@@ -18,7 +18,7 @@ module BlogHelper ...@@ -18,7 +18,7 @@ module BlogHelper
content = post.compiled_content content = post.compiled_content
if content =~ /\s<!-- more -->\s/ if content =~ /\s<!-- more -->\s/
content = content.partition('<!-- more -->').first + content = content.partition('<!-- more -->').first +
"<div class='read-more'><a href='#{post.path}'>Continue reading &rsaquo;</a></div>" "<div class='read-more'><a class='btn btn-primary' href='#{post.path}'>Continue reading &raquo;</a></div>"
end end
return content return content
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment