zodiacfireworks / newrelic-playground

Playground to explore the New Relic GraphQL API with Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

New Relic

Binder

New Relic Playground

This repository contains a sample notebook and some required files to get you started with the New Relic GraphQL API.

Getting Started

  1. Clone this repository
git clone git@github.com:zodiacfireworks/newrelic-playground.git
  1. Install the dependencies
pyenv install $(cat .python-version)
poetry env use $(cat .python-version)
poetry install
  1. Create a .env file with your New Relic API key
cp .env.example .env
  1. Run the Jupiter lab server
poetry run jupyter lab --ContentsManager.allow_hidden=True
  1. Open the newrelic-playground.ipynb notebook

Resources

Notes

On MyBinder yo can't see the .env file, so you'll need to replace the NRAK-your-new-relic-user-key with your own API key using sed.

cp .env.template .env
sed -i 's/NRAK-your-new-relic-user-key/YOUR-REAL-NEWRELIC-USER-KEY/g' .env

License

This project is licensed under the terms of the MIT license.

About

Playground to explore the New Relic GraphQL API with Python

License:MIT License


Languages

Language:Jupyter Notebook 100.0%