summaryrefslogtreecommitdiff
path: root/_posts/2013-01-28-let-s-talk-about-graphite.md
diff options
context:
space:
mode:
Diffstat (limited to '_posts/2013-01-28-let-s-talk-about-graphite.md')
-rw-r--r--_posts/2013-01-28-let-s-talk-about-graphite.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/_posts/2013-01-28-let-s-talk-about-graphite.md b/_posts/2013-01-28-let-s-talk-about-graphite.md
index f15e65f..5df92d4 100644
--- a/_posts/2013-01-28-let-s-talk-about-graphite.md
+++ b/_posts/2013-01-28-let-s-talk-about-graphite.md
@@ -52,11 +52,11 @@ For some other services we might need something more specific. Let's take a loo
Then, it will send the following lines to `statsd` (with $base being the vhost in our case):
-* **$base.all.requests:1\|c** increases the total of HTTP requests we're receiving
-* **$base.all.bytes:$bytes\|ms** send the size, in bytes, of that request
-* **$base.all.time:$msec\|ms** the time spend to get the response
+* `$base.all.requests:1|c` increases the total of HTTP requests we're receiving
+* `$base.all.bytes:$bytes|ms` send the size, in bytes, of that request
+* `$base.all.time:$msec|ms` the time spend to get the response
-Now we will send the same line two more times, with a different prefix: **$base.method.$request_method** *and* **$base.status.$status**.
+Now we will send the same line two more times, with a different prefix: `$base.method.$request_method` *and* `$base.status.$status`.
### Applications