--- title: "New Relic" date: 2018-05-09T09:01:14-07:00 draft: false weight: 160 --- newrelic screenshot Connects to the New Relic API and displays the last n deploys of the monitored application: deploy ID, deploy time, and who deployed it. ## Source Code ```bash wtf/newrelic/ ``` ## Configuration ```yaml newrelic: apiKey: "3276d7155dd9ee27b8b14f8743a408a9" applicationId: 10549735 deployCount: 6 enabled: true position: top: 4 left: 3 height: 1 width: 2 refreshInterval: 900 ``` ### Attributes `apiKey`
Value: Your New Relic API token. `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`.