Skip to content

Commit

Permalink
Add Multiple Data source types in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Miko committed Mar 7, 2016
1 parent 7567a15 commit 75ed71b
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ You can configure to monitor multiple redis instances by the same machine by rep
Redis_used_memory_peak "bytes"
Redis_master_repl_offset "gauge"
</Module>
<Module redis_info>
Host "127.0.0.1"
Port 9102
Expand Down Expand Up @@ -135,6 +135,23 @@ This will result in metric names like: ```collectd.redis_info.redis-prod.bytes.u

```Instance``` can be empty, in this case the name of the metric will not contain any reference to the host/port. If it is omitted, the host:port value is added to the metric name.

### Multiple Data source types
You can send multiple data source types from same key by specifying it in the Module:

```
...
<Module redis_info>
Host "localhost"
Port 6379
Redis_total_net_input_bytes "bytes"
Redis_total_net_output_bytes "bytes"
Redis_total_net_input_bytes "derive"
Redis_total_net_output_bytes "derive"
</Module>
...
```

Graph examples
--------------
These graphs were created using collectd's [rrdtool plugin](http://collectd.org/wiki/index.php/Plugin:RRDtool) and [drraw](http://web.taranis.org/drraw/).
Expand Down

0 comments on commit 75ed71b

Please sign in to comment.