浏览代码

update README

Nicolas FRADIN 12 年之前
父节点
当前提交
b932685a8c
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      README.md

+ 4 - 3
README.md

@@ -53,8 +53,9 @@ It save statsd received values to a MySQL database.
 
 
 ## Data Structure for statsd counters
 ## Data Structure for statsd counters
 By default, values are stored into a 'counters_statistics' table. This table has a very simple structure with 3 columns :
 By default, values are stored into a 'counters_statistics' table. This table has a very simple structure with 3 columns :
-* `timestamp`: The timestamp sent by statsd flush event
-* `name`: The counter name
-* `value`: The counter value
+* `timestamp`: The timestamp sent by statsd flush event.
+* `name`: The counter name.
+* `value`: The counter value.
+
 The primary key of this table is composed by fields: timestamp and name. It means when a new value arrives for a counter, this value is added to the previous one and stored in database. With this mechanism, we can keep a log of counters values.
 The primary key of this table is composed by fields: timestamp and name. It means when a new value arrives for a counter, this value is added to the previous one and stored in database. With this mechanism, we can keep a log of counters values.