Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
* whitespace silliness
Browse files Browse the repository at this point in the history
  • Loading branch information
Jos Boumans committed Aug 23, 2012
1 parent 6f5e815 commit 55a6787
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.rst
Expand Up @@ -14,19 +14,19 @@ Varnish Statsd Module
SYNOPSIS
========

import statsd;
import statsd;

sub vcl_init {
# Optional, defaults to localhost:8125
statsd.server( "statsd.example.com", "8125" );
}
sub vcl_init {
# Optional, defaults to localhost:8125
statsd.server( "statsd.example.com", "8125" );
}

sub vcl_deliver {
statsd.incr( "incr" );
statsd.gauge( "gauge", 42 );
statsd.timing( "timing", 42 );
statsd.counter( "counter", 42 );
}
sub vcl_deliver {
statsd.incr( "incr" );
statsd.gauge( "gauge", 42 );
statsd.timing( "timing", 42 );
statsd.counter( "counter", 42 );
}

DESCRIPTION
===========
Expand All @@ -49,7 +49,7 @@ Return value
NONE
Description
Set the address of your Statsd server.
Best used in vcl_init. Defaults to "localhost", "8125"
Best used in vcl_init. Defaults to "localhost", "8125"

Example::

Expand All @@ -66,7 +66,7 @@ Return value
NONE
Description
Set a string to prefix to all the stats you will be sending.
Best used in vcl_init. Defaults to an empty string.
Best used in vcl_init. Defaults to an empty string.

Example::

Expand Down

0 comments on commit 55a6787

Please sign in to comment.