Socket
Socket
Sign inDemoInstall

dashboards-helpscout

Package Overview
Dependencies
16
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    dashboards-helpscout

Helpscout plugin for segmentio/dashboards


Version published
Weekly downloads
4
increased by300%
Maintainers
1
Install size
367 kB
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 31 Mar 2014

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc