Skip to content

A Dart library to upload metrics data to librato.com.

License

Notifications You must be signed in to change notification settings

jorgjanke/librato.dart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

librato

Build Status

A Dart library to upload metrics data to librato.com.

Usage

To use this library, instantiate an instance of the Librato class and call its postStats method to post a set of statistics.

You need to provide a Librato username and access token, either explicitly in the constructor, or implicitly via environment variables (LIBRATO_USER and LIBRATO_TOKEN).

Librato librato = new Librato.fromEnvVars();
List<LibratoStat> stats = [
  new LibratoStat('benchmarkTime', 130);
  new LibratoStat('compiledAppSize', 230000);
];
librato.postStats(stats);

Features and bugs

Please file feature requests and bugs at the issue tracker.

Notes

This is not an official Google project.

About

A Dart library to upload metrics data to librato.com.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%