statsd 0.1.2 copy "statsd: ^0.1.2" to clipboard
statsd: ^0.1.2 copied to clipboard

outdatedDart 1 only

StatsD client for Dart

StatsD client for Dart #

Build Status Coverage Status Pub package License

A StatsD client library implemented in Dart.

Installation #

Use git dependency in your pubspec.yaml:

dependencies:
  statsd: "^0.1.1"

And then import it as usual:

import 'package:statsd/statsd.dart';

Usage #

Basic example:

import 'dart:io';
import 'dart:async';
import 'package:statsd/statsd.dart';

Future main() async {
  var connection = await StatsdConnection.connect(
    Uri.parse('udp://127.0.0.1:5678'));
  var client = new StatsdClient(connection, prefix: 'myapp');
  // Sending counters:
  await client.count('metric1'); // increment `myapp.metric1` by 1
  await client.count('metric1', -1); // decrement `myapp.metric1` by 1
  await client.count('metric1', 5, 0.1); // increment `myapp.metric1` by 5 with 0.1 sample rate

  // Sending timings:
  var stopwatch = new Stopwatch();
  stopwatch.start();
  // client will use value of stopwatch.elapsedMilliseconds
  await client.time('response-time', stopwatch);

  // Sending gauges:
  await client.gauge('metric2', 428); // sets gauge value to 428
  await client.gaugeDelta('metric2', 3); // increments value by 3
  await client.gaugeDelta('metric2', -10); // decrements value by 10

  // Sending sets:
  await client.set('uniques', 345);

  // Sending multiple metrics at once:
  var batch = client.batch();
  batch
    ..time('response-time', stopwatch)
    ..count('total-requests', 3)
    ..set('metric1', 56);
  await batch.send();

  // Make sure to close the connection when done:
  connection.close();
}

Current limitations:

  • Only UDP connections are supported at this moment.

License #

BSD-2

0
likes
15
pub points
0%
popularity

Publisher

unverified uploader

StatsD client for Dart

Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

Dependencies

logging

More

Packages that depend on statsd