Browse Source

update version in readme

Nicolas FRADIN 12 years ago
parent
commit
dd0a2c3883
1 changed files with 18 additions and 0 deletions
  1. 18 0
      README.md

+ 18 - 0
README.md

@@ -3,6 +3,8 @@ nodejs-statsd-mysql-backend
 
 
 MySQL backend for Statsd
 MySQL backend for Statsd
 
 
+Current version 0.1.0-alpha1
+
 ## Contributors
 ## Contributors
 This statsd backend is developped by Nicolas FRADIN and Damien PACAUD.
 This statsd backend is developped by Nicolas FRADIN and Damien PACAUD.
 
 
@@ -54,6 +56,7 @@ This is node.js backend for statsd. It is written in JavaScript, does not requir
 
 
 It save statsd received values to a MySQL database.
 It save statsd received values to a MySQL database.
 
 
+
 ## Data Structure for Counters
 ## Data Structure for Counters
 By default, counters values are stored into a 'counters_statistics' table. This table has a very simple structure with 3 columns :
 By default, counters 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.
 * `timestamp`: The timestamp sent by statsd flush event.
@@ -63,6 +66,21 @@ By default, counters values are stored into a 'counters_statistics' table. This
 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.
 
 
 
 
+## Data Structure for Gauges
+
+Not implemented yet.
+
+
+## Data Structure for Timers
+
+Not implemented yet.
+
+
+## Data Structure for Sets
+
+Not implemented yet.
+
+
 ## Customize MySQL Backend Database
 ## Customize MySQL Backend Database
 
 
 If you want to change where statsd datas are stored just follow the guide :)
 If you want to change where statsd datas are stored just follow the guide :)