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
import SwiftUI | |
import Instabug | |
@main | |
struct Test_6App: App { | |
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate | |
var body: some Scene { | |
WindowGroup { | |
ContentView() | |
} |
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
#!/usr/bin/python | |
import requests | |
import sys | |
import json | |
from datetime import date | |
import pprint | |
#Your PagerDuty API key. A read-only key will work for this. | |
auth_token = 'API_KEY_HERE' |
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 | |
while true; do | |
dig foo.pagerduty.com mx >> ./test_mx.log | |
dig @8.8.8.8 foo.pagerduty.com mx >> ./test_mx.log | |
dig foo.pagerduty.com mx +trace >> ./test_mx.log | |
sleep 5 | |
done |
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
:loop | |
@echo off | |
date /t >> test_mx.log | |
time /t >> test_mx.log | |
nslookup -type=MX foo.pagerduty.com >> test_mx.log | |
time /t >> test_mx.log | |
nslookup -type=MX foo.pagerduty.com 8.8.8.8 >> test_mx.log | |
time /t >> test_mx.log | |
nslookup -type=MX -d2 foo.pagerduty.com >> test_mx.log | |
time /t >> test_mx.log |
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
#Export a list of all users to a CSV file. | |
#This script is not supported by PagerDuty. | |
#!/usr/bin/env python | |
import datetime | |
import requests | |
import sys | |
import csv |
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
$pd_headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" | |
$pd_headers.Add("Authorization", 'Token token=<rest_api_token>') | |
$pd_url = "https://<subdomain>.pagerduty.com/api/v1" | |
$requester_id = "<requester_id>" | |
$incident_id = "<incident_id>" | |
$duration = "900" //in seconds | |
$data = @{ | |
requester_id="$requester_id" |
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
#!/usr/bin/env python | |
import requests | |
import sys | |
import json | |
import csv | |
from datetime import date, timedelta | |
#This script will export all log entries associated with a PagerDuty user. All data is written to log_entries.csv. |
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
#! /usr/bin/perl | |
use LWP::UserAgent; | |
use JSON qw(decode_json); | |
use File::Basename; | |
### Configuration parameters ### | |
# Directory where is stored necessary files with match up ids between Pandora FMS and PagerDuty | |
# One hidden tiny file per alert will be created |
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
#!/usr/bin/env python | |
# | |
# Copyright (c) 2011-2012, PagerDuty, Inc. <info@pagerduty.com> | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# * Redistributions of source code must retain the above copyright | |
# notice, this list of conditions and the following disclaimer. | |
# * Redistributions in binary form must reproduce the above copyright |
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
// High priority incident escalated - use PagerDuty to find Assigned to | |
// To support auto-escalated incidents, needed to add Advanced Script Condition | |
// Evaluates Filter conditions and then advanced conditions (not either/or) | |
// 1. changes() is not respected on a record insert | |
// 2. evaluates filter conditions (on When to run pane) before script conditions | |
// 3. auto-escalated events trap on current.operation() == insert | |
// 4. also needed to change into an 'after' event | |
NewerOlder