This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

statsd-mysql-backend

0.1.1 • Public • Published

statsd-mysql-backend

MySQL backend for the [Etsy StatsD] 1

Save statsd counters to a mysql key/value table. Overwrite existing datasets with new counter values.

Vocabulary

ID means the namespace for a metric e.g. the id of a user Key means the name of the metric e.g. how many messages has a user sent yet

Required config values

  • mysql.host
  • mysql.user
  • mysql.password
  • mysql.database
  • mysql.table
  • mysql.pattern ** Regular expression to match the counters that should be stored to mysql
  • mysql.pos_key
    Match position for the key (usually 1 or 2)
  • mysql.pos_id
    Match position for the id (usually 1 or 2)

Example statsd config

{
port: 8125
, mgmt_port: 8126
, backends: ["backends/statsd-mysql-backend/lib/index.js"]
, mysql: {
 host: "mysqlhost"
 , user: "user"
 , password: "password"
 , database: "statsd"
 , table: "statistics"
 , pattern: /user\.([\w-]+)\.([\d]+)/
 , pos_key: 1
 , pos_id: 2
}
}

MySQL Table format

CREATE TABLE `statistic` (
  `id` int(10) unsigned NOT NULL,
  `type` varchar(100) NOT NULL,
  `last_change` int(10) unsigned NOT NULL,
  `value` int(10NOT NULL,
  PRIMARY KEY (`id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Readme

Keywords

none

Package Sidebar

Install

npm i statsd-mysql-backend

Weekly Downloads

1

Version

0.1.1

License

none

Last publish

Collaborators

  • lociii