1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/_site/content/posts/modules/newrelic.md
2018-05-14 21:04:37 -07:00

1.3 KiB

title, date, draft
title date draft
Newrelic 2018-05-09T09:01:14-07:00 false

Description

Connects to the New Relic API and displays the last n deploys of the monitored application: deploy ID, deploy time, and who deployed it.

newrelic screenshot

Source Code

wtf/newrelic/

Required ENV Variables

Key: WTF_NEW_RELIC_API_KEY
Value: Your New Relic API token.

Keyboard Commands

None.

Configuration

newrelic:
  applicationId: 10549735
  deployCount: 6
  enabled: true
  position:
    top: 4
    left: 3
    height: 1
    width: 2
  refreshInterval: 900

Attributes

applicationId
The integer ID of the New Relic application you wish to report on.
Values: A positive integer, 0..n.

deployCount
The number of past deploys to display on screen.
Values: A positive integer, 0..n.

enabled
Determines whether or not this module is executed and if its data displayed onscreen.
Values: true, false.

position
Defines where in the grid this module's widget will be displayed.

refreshInterval
How often, in seconds, this module will update its data.
Values: A positive integer, 0..n.