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

StatsD client for Dart

example/main.dart

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();
}
0
likes
30
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