statsd-errplane-backend

A StatsD backend for Errplane (https://errplane.com)

Usage no npm install needed!

<script type="module">
  import statsdErrplaneBackend from 'https://cdn.skypack.dev/statsd-errplane-backend';
</script>

README

StatsD backend for Errplane

To get it up and running do

npm install statsd-errplane-backend

Then add to the Statsd configuration array the backends key:

  backends: ['statsd-errplane-backend']

You'll need an errplane account. Add an errplane configuration block to your statsd config:

/*
  apiKey can be found at https://errplane.com/settings/organization
  applicationId can be found at https://errplane.com/settings/applications
  environment usually either production, staging, or development
  includeHostSuffix when set to true will add /<host> to the metric names. Do this if you're 
    running statsd on each host and want to see stats on a per host basis in addition to all together
*/
errplane: {
  apiKey: "...",
  applicationId: "...",
  environment: "production",
  includeHostSuffix: false
}