View spark2pd.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function transform(PD) { | |
var webhook = PD.inputRequest.body | |
var message = webhook.text || "Error: Not a Spark chat message"; | |
var room_link = ciscospark2web(b64decode(webhook.roomId)); // clean up the link | |
var normalized_event = { | |
incident_key: room_link, //So that all messages from a room de_dupee into the same incident | |
event_type: PD.Trigger, | |
description: message, | |
details: { |
View manual_pd.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This is the button I'm using to trigger the incident: | |
<input type="button" onclick="PDTrigger(prompt('Incident Description'))" value="Trigger Incident"> | |
*/ | |
// Set up the library | |
PDJS = new PDJSobj() | |
function PDTrigger(description) { | |
// Trigger via the rest API | |
PDJS.trigger({ |
View all_users_by_ep.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// As always configure PDJS with your subdomain and api-key | |
PDJS = new PDJSobj({ | |
subdomain: "webdemo", | |
token: "CkNpsqH9i6yTGus8VDzA", | |
}) | |
// Here's the minimum possible UI: | |
printf = function (str) { | |
console.log(str) | |
$("#output").append(str) |
View accounting.nightly.example.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
me="$0" | |
#This function will alert PagerDuty that our script failed | |
alertonfail() { | |
if [ "$1" -ne "0" ]; then | |
echo "Error $1 on $me" | |
curl -H "Content-type: application/json" -X POST \ | |
-d '{ |
View dashboard.pseudocode.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Initiate PDJS: | |
PDJS = new PDJSobj({ | |
subdomain: config["subdomain"], | |
token: config["token"], | |
}) | |
loadIncidents = function () { | |
//Hit the incidents API: | |
PDJS.api({ | |
res: "incidents", |
View survey.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta name="viewport" | |
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | |
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script> | |
<script> | |
// Step 1. Put the URL from <form action="URL"> here: | |
var form_url = "https://docs.google.com/a/euri.ca/forms/d/1V6pF3NGpEev0Pl8p22V2fmfHtx-09UtF0bnyAuFoN5E/formResponse" |
View Send-PagerDutyEvent.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param ( | |
[String]$servicekey, | |
[String]$EventType, | |
[String]$AlertID, | |
[String]$AlertDesc = "No Description provided", | |
[String]$WebLink = "http://www.pagerduty.com/", | |
[String]$AlertName = "No Name provided", | |
[String]$AlertSourceName = "No Source provided" | |
) |
View PDupdate.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PDupdate = function(e) { | |
ajax( | |
{ | |
url: 'http://'+subdomain+'.pagerduty.com/api/v1/incidents/count?'+ | |
'status=triggered,acknowledged&assigned_to_user='+user_id, | |
type: 'json', | |
headers: { | |
Authorization: 'Token token='+token, | |
contentType: 'application/json; charset=utf-8' | |
} |
View pagerduty_ruby_httparty.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'pp' | |
require 'httparty' | |
class PagerDuty | |
include HTTParty | |
format :json | |
def initialize(subdomain, api_token) | |
@options = { | |
:headers => { | |
"Authorization" => "Token token=#{api_token}", |
View twilio-numbers.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'csv' | |
#Parse the CSV that Twilio provides https://www.twilio.com/resources/rates/international-rates.csv | |
numbers = [] | |
CSV.foreach('international-rates.csv', :headers => true) do |row| | |
starts = row[2].split(",") | |
starts.each do |p| | |
numbers.push([p.strip, p.strip.length, row[1], row[0]]) | |
end | |
end |
NewerOlder