An unofficial New Relic client package.
Provides a set of commands for interacting with New Relic through the official GraphQL API.
This package is not yet published.
Please clone the repository, add it to your load path and require the package:
(add-to-list 'load-path' "~/emacs-newrelic")
(require 'newrelic)
- Generate your API key on this page
- Configure the package to use your API key with
(setq newrelic-api-key "<YOUR-API-KEY>")
This package exposes a set of useful commands for interacting with your New Relic account
newrelic-dashboards
gives a quick access to your dashboardsnewrelic-nrql-eval
opens a prompt allowing to write and execute NRQL queries, renders chart picturenewrelic-nrql-eval-line
executes NRQL from the current line in the buffer, renders chart picturenewrelic-nrql-eval-region
executes NRQL from the selected region, renders chart picture
Add the path of the cloned repository to the 'load-path
variable to make local requires work.
(add-to-list 'load-path' "~/emacs-newrelic")
Note: this can be done either in your configuration, or the repl ielm
M-x ielm, or by typing the following line after running M-x eval-expression.