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.
In the future, we will use this blog to publish more articles and announcements
to help you get the most out of Prometheus.
<!-- more -->
## Using Prometheus
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
some practical examples. As an additional resource, see
[Prometheus's configuration documentation](/docs/operating/configuration).
<!-- more -->
## Prometheus and targets
......
......@@ -19,6 +19,8 @@ detect and handle with custom-built rules. The Prometheus [query
language](../../../../../docs/querying/basics/) gives you the tools to discover
these anomalies while avoiding false positives.
<!-- more -->
## Building a query
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
Prometheus during DreamHack Summer 2015 to try to kick our monitoring up another
notch.
<!-- more -->
## The equipment
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
......
......@@ -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
highly consistent distributed key-value store, to Prometheus.
<!-- more -->
## Targets in etcd and Prometheus
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
more mature and although it was already solving people's monitoring problems,
it was still unknown to the wider public.
<!-- more -->
## Going public
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
the alert grouping (alertname, datacenter, app) and further label values the
alerts have in common (critical).
<!-- more -->
## Customize
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
stack. We use Consul for service discovery, and of course our Prometheus setup
is integrated with it.
<!-- more -->
## What was your pre-Prometheus monitoring experience?
......
......@@ -368,7 +368,3 @@ aside {
article {
margin: 10px 0 60px 0;
}
.read-more > a {
color: #888;
}
......@@ -18,7 +18,7 @@ module BlogHelper
content = post.compiled_content
if content =~ /\s<!-- more -->\s/
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
return content
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