Skip to content

brianmjohnson/google-apps-pagerduty-script

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google Apps script to pull data from PagerDuty

Installation

  1. Create Google Sheet
  2. Name one tab "Data"
  3. Go to Tools > Script editor
  4. Pull code from repo
  5. Add file config.gs with the contents below:
  6. Go to Edit > Current project's triggers
  7. Add a trigger that runs main on Time-driven events with Day timer and select a time period to run
var Config = {
  pagerduty: {
    url: 'https://api.pagerduty.com',
    token: 'INSERT API TOKEN',
    paths: {
      incidents: '/incidents'
    }
  }
};

About

Google Apps script to pull data from PagerDuty

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%