Home
last modified time | relevance | path

Searched refs:pagerduty (Results 1 – 25 of 210) sorted by relevance

123456789

/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/PagerDuty/go-pagerduty/go-pagerduty-cf1437c7c8d6/
H A DCHANGELOG.md3 ## [1.0.0](https://github.com/PagerDuty/go-pagerduty/tree/1.0.0) (2018-05-28)
7 - Problems running freshly built pd utility [\#39](https://github.com/PagerDuty/go-pagerduty/issues…
8 - Manage Incident gives error [\#32](https://github.com/PagerDuty/go-pagerduty/issues/32)
13 - Trouble creating an integration [\#102](https://github.com/PagerDuty/go-pagerduty/issues/102)
14 - Client does not trigger events [\#101](https://github.com/PagerDuty/go-pagerduty/issues/101)
15 - Paging help [\#94](https://github.com/PagerDuty/go-pagerduty/issues/94)
16 - Help with incident creation API [\#89](https://github.com/PagerDuty/go-pagerduty/issues/89)
21 - Documentation does not match code [\#16](https://github.com/PagerDuty/go-pagerduty/issues/16)
22 - Typo in repo description [\#15](https://github.com/PagerDuty/go-pagerduty/issues/15)
23 - Webhook decoder [\#14](https://github.com/PagerDuty/go-pagerduty/issues/14)
[all …]
H A DREADME.md1pagerduty?status.svg)](http://godoc.org/github.com/PagerDuty/go-pagerduty) [![Go Report Card](http…
2 # go-pagerduty
4 go-pagerduty is a CLI and [go](https://golang.org/) client library for the [PagerDuty v2 API](https…
9 go get github.com/PagerDuty/go-pagerduty
16 The CLI requires an [authentication token](https://v2.developer.pagerduty.com/docs/authentication),…
27 cd $GOPATH/github.com/PagerDuty/go-pagerduty
52 "github.com/PagerDuty/go-pagerduty"
58 var opts pagerduty.ListEscalationPoliciesOptions
59 client := pagerduty.NewClient(authtoken)
77 1. Fork it ( https://github.com/PagerDuty/go-pagerduty/fork )
H A DDockerfile2 ADD . /go/src/github.com/PagerDuty/go-pagerduty
3 WORKDIR /go/src/github.com/PagerDuty/go-pagerduty
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/PagerDuty/go-pagerduty/
H A DCHANGELOG.md3 ## [1.0.0](https://github.com/PagerDuty/go-pagerduty/tree/1.0.0) (2018-05-28)
7 - Problems running freshly built pd utility [\#39](https://github.com/PagerDuty/go-pagerduty/issues…
8 - Manage Incident gives error [\#32](https://github.com/PagerDuty/go-pagerduty/issues/32)
13 - Trouble creating an integration [\#102](https://github.com/PagerDuty/go-pagerduty/issues/102)
14 - Client does not trigger events [\#101](https://github.com/PagerDuty/go-pagerduty/issues/101)
15 - Paging help [\#94](https://github.com/PagerDuty/go-pagerduty/issues/94)
16 - Help with incident creation API [\#89](https://github.com/PagerDuty/go-pagerduty/issues/89)
21 - Documentation does not match code [\#16](https://github.com/PagerDuty/go-pagerduty/issues/16)
22 - Typo in repo description [\#15](https://github.com/PagerDuty/go-pagerduty/issues/15)
23 - Webhook decoder [\#14](https://github.com/PagerDuty/go-pagerduty/issues/14)
[all …]
H A DREADME.md1pagerduty?status.svg)](http://godoc.org/github.com/PagerDuty/go-pagerduty) [![Go Report Card](http…
2 # go-pagerduty
4 go-pagerduty is a CLI and [go](https://golang.org/) client library for the [PagerDuty v2 API](https…
9 go get github.com/PagerDuty/go-pagerduty
16 The CLI requires an [authentication token](https://v2.developer.pagerduty.com/docs/authentication),…
27 cd $GOPATH/github.com/PagerDuty/go-pagerduty
52 "github.com/PagerDuty/go-pagerduty"
58 var opts pagerduty.ListEscalationPoliciesOptions
59 client := pagerduty.NewClient(authtoken)
77 1. Fork it ( https://github.com/PagerDuty/go-pagerduty/fork )
H A DDockerfile2 ADD . /go/src/github.com/PagerDuty/go-pagerduty
3 WORKDIR /go/src/github.com/PagerDuty/go-pagerduty
/dports/sysutils/py-salt/salt-3004.1/tests/unit/modules/
H A Dtest_pagerduty.py6 import salt.modules.pagerduty as pagerduty
8 import salt.utils.pagerduty
28 with patch.object(salt.utils.pagerduty, "list_items", return_value="A"):
29 self.assertEqual(pagerduty.list_services(), "A")
35 with patch.object(salt.utils.pagerduty, "list_items", return_value="A"):
36 self.assertEqual(pagerduty.list_incidents(), "A")
43 self.assertEqual(pagerduty.list_users(), "A")
50 self.assertEqual(pagerduty.list_schedules(), "A")
57 self.assertEqual(pagerduty.list_windows(), "A")
64 self.assertEqual(pagerduty.list_policies(), "A")
[all …]
/dports/sysutils/py-salt/salt-3004.1/tests/pytests/unit/states/
H A Dtest_pagerduty.py6 import salt.states.pagerduty as pagerduty
12 return {pagerduty: {}}
26 with patch.dict(pagerduty.__opts__, {"test": True}):
29 assert pagerduty.create_event(name, details, service_key, profile) == ret
31 with patch.dict(pagerduty.__opts__, {"test": False}):
33 with patch.dict(pagerduty.__salt__, {"pagerduty.create_event": mock_t}):
36 assert pagerduty.create_event(name, details, service_key, profile) == ret
/dports/sysutils/go-wtf/wtf-0.21.0/modules/pagerduty/
H A Dclient.go1 package pagerduty
10 func GetOnCalls(apiKey string, scheduleIDs []string) ([]pagerduty.OnCall, error) {
11 client := pagerduty.NewClient(apiKey)
13 var results []pagerduty.OnCall
14 var queryOpts pagerduty.ListOnCallOptions
42 func GetIncidents(apiKey string) ([]pagerduty.Incident, error) {
43 client := pagerduty.NewClient(apiKey)
45 var results []pagerduty.Incident
47 var queryOpts pagerduty.ListIncidentsOptions
H A Dwidget.go1 package pagerduty
32 var onCalls []pagerduty.OnCall
33 var incidents []pagerduty.Incident
67 func (widget *Widget) contentFrom(onCalls []pagerduty.OnCall, incidents []pagerduty.Incident) strin…
80 tree := make(map[string][]pagerduty.OnCall)
/dports/sysutils/py-salt/salt-3004.1/salt/modules/
H A Dpagerduty.py21 import salt.utils.pagerduty
41 return salt.utils.pagerduty.list_items(
56 return salt.utils.pagerduty.list_items(
71 return salt.utils.pagerduty.list_items(
86 return salt.utils.pagerduty.list_items(
102 return salt.utils.pagerduty.list_items(
128 return salt.utils.pagerduty.list_items(
179 salt.utils.pagerduty.query(
/dports/sysutils/py-salt/salt-3004.1/salt/runners/
H A Dpagerduty.py20 import salt.utils.pagerduty
39 return salt.utils.pagerduty.list_items(
52 return salt.utils.pagerduty.list_items(
65 return salt.utils.pagerduty.list_items(
78 return salt.utils.pagerduty.list_items(
92 return salt.utils.pagerduty.list_items(
116 return salt.utils.pagerduty.list_items(
167 salt.utils.pagerduty.query(
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/grafana/tests/integration/targets/grafana_notification_channel/tasks/
H A Dpagerduty.yml2 - name: Create pagerduty notification channel
5 uid: pagerduty
6 name: pagerduty
7 type: pagerduty
21 - name: Delete pagerduty notification channel
24 uid: pagerduty
/dports/sysutils/aptly/aptly-1.4.0/system/t04_mirror/
H A DUpdateMirror21Test_gold1 Downloading http://packages.pagerduty.com/pdagent/deb/InRelease...
2 Downloading http://packages.pagerduty.com/pdagent/deb/Release...
3 Downloading http://packages.pagerduty.com/pdagent/deb/Release.gpg...
5 openpgp: Good signature from "Package Maintainer (PagerDuty, Inc.) <packages@pagerduty.com>"
7 Downloading http://packages.pagerduty.com/pdagent/deb/Packages.gz...
11 Mirror `pagerduty` has been successfully updated.
H A DUpdateMirror19Test_gold1 Downloading http://packages.pagerduty.com/pdagent/deb/InRelease...
2 Downloading http://packages.pagerduty.com/pdagent/deb/Release...
3 Downloading http://packages.pagerduty.com/pdagent/deb/Release.gpg...
5 gpgv: Good signature from "Package Maintainer (PagerDuty, Inc.) <packages@pagerduty.com>"
7 Downloading http://packages.pagerduty.com/pdagent/deb/Packages.gz...
11 Mirror `pagerduty` has been successfully updated.
/dports/net-mgmt/py-pdagent-integrations/pdagent-integrations-1.6.2/
H A Dpagerduty_nagios.cfg2 contact_name pagerduty
8 service_notification_commands notify-service-by-pagerduty
9 host_notification_commands notify-host-by-pagerduty
14 command_name notify-service-by-pagerduty
19 command_name notify-host-by-pagerduty
H A DMakefile8 ubuntu: target/deb target/tmp/GPG-KEY-pagerduty
11 centos: target/rpm target/tmp/GPG-KEY-RPM-pagerduty
45 target/tmp/GPG-KEY-pagerduty:
51 target/tmp/GPG-KEY-RPM-pagerduty:
/dports/net-mgmt/py-pdagent/pdagent-1.7.2/
H A DMakefile8 ubuntu: target/deb target/tmp/GPG-KEY-pagerduty
11 centos: target/rpm target/tmp/GPG-KEY-RPM-pagerduty
45 target/tmp/GPG-KEY-pagerduty:
51 target/tmp/GPG-KEY-RPM-pagerduty:
/dports/net-mgmt/py-pdagent-integrations/pdagent-integrations-1.6.2/scripts/
H A Dinstall.sh10 wget -O - http://packages.pagerduty.com/GPG-KEY-pagerduty | \
15 sudo apt-key add /vagrant/target/tmp/GPG-KEY-pagerduty
/dports/sysutils/py-salt/salt-3004.1/doc/ref/modules/all/
H A Dsalt.modules.pagerduty.rst1 salt.modules.pagerduty
4 .. automodule:: salt.modules.pagerduty
/dports/sysutils/py-salt/salt-3004.1/doc/ref/states/all/
H A Dsalt.states.pagerduty.rst1 salt.states.pagerduty
4 .. automodule:: salt.states.pagerduty
/dports/sysutils/py-salt/salt-3004.1/doc/ref/runners/all/
H A Dsalt.runners.pagerduty.rst1 salt.runners.pagerduty
4 .. automodule:: salt.runners.pagerduty
/dports/net-mgmt/py-pdagent-integrations/pdagent-integrations-1.6.2/build-linux/
H A Dhowto.md24 website (under http://www.pagerduty.com/docs/). Then install the development
27 sudo apt-key add /vagrant/target/tmp/GPG-KEY-pagerduty
54 website (under http://www.pagerduty.com/docs/). Then install the development
64 gpgkey=file:///vagrant/target/tmp/GPG-KEY-pagerduty
/dports/net-mgmt/py-pdagent/pdagent-1.7.2/scripts/
H A Dinstall_pub_ubuntu_pkg.sh1 wget -O - https://packages.pagerduty.com/GPG-KEY-pagerduty | sudo apt-key add -
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/PagerDuty/go-pagerduty/go-pagerduty-cf1437c7c8d6/examples/
H A Descalation_policies.go14 var opts pagerduty.ListEscalationPoliciesOptions
15 client := pagerduty.NewClient(authtoken)

123456789