-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from sensu/contact-routing
Add support for basic contact routing
- Loading branch information
Showing
8 changed files
with
444 additions
and
74 deletions.
There are no files selected for viewing
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 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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,53 @@ | ||
module github.com/sensu/sensu-pagerduty-handler | ||
|
||
go 1.14 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/PagerDuty/go-pagerduty v1.3.0 | ||
github.com/coreos/etcd v3.3.25+incompatible // indirect | ||
github.com/sensu-community/sensu-plugin-sdk v0.11.0 | ||
github.com/sensu/sensu-go/api/core/v2 v2.9.1-alpha | ||
github.com/stretchr/testify v1.6.0 | ||
golang.org/x/exp v0.0.0-20220428152302-39d4317da171 | ||
) | ||
|
||
require ( | ||
github.com/blang/semver/v4 v4.0.0 // indirect | ||
github.com/coreos/go-semver v0.3.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/echlebek/timeproxy v1.0.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.0.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/json-iterator/go v1.1.10 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/magiconair/properties v1.8.4 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/pelletier/go-toml v1.8.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/robertkrimen/otto v0.0.0-20200922221731-ef014fd054ac // indirect | ||
github.com/sensu-community/sensu-plugin-sdk v0.11.0 | ||
github.com/sensu/sensu-go/api/core/v2 v2.6.0 | ||
github.com/sensu/sensu-go/types v0.5.0 // indirect | ||
github.com/robfig/cron/v3 v3.0.1 // indirect | ||
github.com/sensu/sensu-go/types v0.9.1-alpha2 // indirect | ||
github.com/sensu/sensu-licensing v0.1.2 // indirect | ||
github.com/sirupsen/logrus v1.7.0 // indirect | ||
github.com/spf13/afero v1.5.1 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v1.1.3 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.7.1 // indirect | ||
github.com/stretchr/testify v1.6.0 | ||
golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect | ||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
go.etcd.io/etcd/api/v3 v3.5.0 // indirect | ||
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect | ||
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect | ||
golang.org/x/text v0.3.5 // indirect | ||
google.golang.org/genproto v0.0.0-20210207032614-bba0dbe2a9ea // indirect | ||
google.golang.org/grpc v1.35.0 // indirect | ||
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect | ||
google.golang.org/grpc v1.38.0 // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
gopkg.in/ini.v1 v1.62.0 // indirect | ||
gopkg.in/sourcemap.v1 v1.0.5 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |
Oops, something went wrong.