You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

dashboards-helpscout

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dashboards-helpscout

Helpscout plugin for segmentio/dashboards

0.2.0
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

dashboards-helpscout

A Helpscout plugin for segmentio/dashboards.

Use this plugin to visualize your active ticket count, and who is behind on their tickets.

Installation

$ npm install dashboards-helpscout

Example

var Dashboards = require('dashboards');
var helpscout = require('dashboards-helpscout');

new Dashboards()
  .use(helpscout('apiKey', 'mailbox-id'));
  .run();

Metrics

The metrics exposed by this plugin are:

  • helpscout.total active tickets
  • helpscout.total tickets yesterday trailing average
  • helpscout.total tickets 0-1 weeks ago
  • helpscout.total tickets 1-2 weeks ago
  • helpscout.total active tickets by owner
  • helpscout.oldest ticket time
  • helpscout.oldest ticket owner
  • helpscout.oldest ticket shaming

Quickstart

Here's a full example of a Geckoboard dashboard showing support dashboards:

var Dashboards = require('dashboards');
var helpscout = require('dashboards-helpscout');
var pipe = require('parallel-ware-pipe');
var geckoboard = require('geckoboard')('api-key');

new Dashboards()
  .use(helpscout('apiKey', 'mailbox-id'))
  .use(pipe('helpscout.total tickets yesterday trailing average', geckoboard('widget-id').number))
  .use(pipe('helpscout.total active tickets', geckoboard('widget-id').number))
  .use(pipe('helpscout.total active tickets by owner', geckoboard('widget-id').pie))
  .use(pipe('helpscout.oldest ticket shaming', geckoboard('widget-id').text))
  .run();

License

MIT

Keywords

dashboards

FAQs

Package last updated on 31 Mar 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts