0.0.3 • Published 12 years ago

tdmetrics v0.0.3

Weekly downloads
6
License
-
Repository
github
Last release
12 years ago

#TDMetrics - NodeJS Wrapper

NodeJS module to send metrics to TotenDev's Metrics

Build Status

Requirements

Installation

Install with npm some dependencies

$ npm install

Configuration

All configuration need to be done in package.json file.

  • metrics.host - Metrics server host . REQUIRED IF ENABLED
  • metrics.port - Metrics server port . REQUIRED IF ENABLED
  • metrics.path - Metrics server path. (Use if you know what you doing) OPTIONAL
  • metrics.projectID - TDMetrics ProjectID parameter. REQUIRED IF ENABLED
  • metrics.auth - TDMetrics authentication. REQUIRED IF ENABLED

##Usage

var Metrics = require('./TDMetrics.js');
//metricString,statusCode,typeString,placeString,callback
Metrics("Status 202","202","Info","/index.html",function (resp,ok) { 
	if (ok) { console.log("Success"); }
	else { console.log("Error: " + resp); }
});

If you don't know what this parameters are please read How it works.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

##License

GPL v3

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago