Export New Relic events into CSV file (or S3 bucket)
git clone https://github.com/dpacheconr/nr_events_exporter
cd nr_events_exporterpython3 -m venv venv
source venv/bin/activatepip install --upgrade pip
pip install -r requirements.txtcp .env-sample .envUpdate the .env file as required for your use case.
python3 exporter.pyAdd --debug to write logs to a timestamped file (log_YYYY-MM-DD_HH-MM-SS.txt):
python3 exporter.py --debugdeactivate