mirror of
https://github.com/crazy-max/diun.git
synced 2025-05-13 19:11:41 +00:00
![]() Bumps [github.com/crazy-max/gohealthchecks](https://github.com/crazy-max/gohealthchecks) from 0.4.1 to 0.5.0. - [Release notes](https://github.com/crazy-max/gohealthchecks/releases) - [Commits](https://github.com/crazy-max/gohealthchecks/compare/v0.4.1...v0.5.0) --- updated-dependencies: - dependency-name: github.com/crazy-max/gohealthchecks dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.. | ||
.dockerignore | ||
.editorconfig | ||
.gitignore | ||
.golangci.yml | ||
codecov.yml | ||
doc.go | ||
docker-bake.hcl | ||
Dockerfile | ||
healthchecks.go | ||
LICENSE | ||
pinging.go | ||
README.md |
About
Go client library for accessing the Healthchecks API.
Installation
go get github.com/crazy-max/gohealthchecks
Usage
package main
import (
"context"
"log"
"net/url"
"github.com/crazy-max/gohealthchecks"
)
func main() {
var err error
// Default client uses https://hc-ping.com/
// client := gohealthchecks.NewClient(nil)
hcBaseURL, err := url.Parse("https://hc.foo.com")
if err != nil {
log.Fatal(err)
}
client := gohealthchecks.NewClient(&gohealthchecks.ClientOptions{
BaseURL: hcBaseURL,
})
err = client.Start(context.Background(), gohealthchecks.PingingOptions{
UUID: "5bf66975-d4c7-4bf5-bcc8-b8d8a82ea278",
Logs: "Job started!",
})
if err != nil {
log.Fatal(err)
}
err = client.Success(context.Background(), gohealthchecks.PingingOptions{
UUID: "5bf66975-d4c7-4bf5-bcc8-b8d8a82ea278",
Logs: "Job completed!",
})
if err != nil {
log.Fatal(err)
}
err = client.Fail(context.Background(), gohealthchecks.PingingOptions{
UUID: "5bf66975-d4c7-4bf5-bcc8-b8d8a82ea278",
Logs: "Job failed...",
})
if err != nil {
log.Fatal(err)
}
}
Contributing
Want to contribute? Awesome! The most basic way to show your support is to star the project, or to raise issues. You can also support this project by becoming a sponsor on GitHub or by making a Paypal donation to ensure this journey continues indefinitely!
Thanks again for your support, it is much appreciated! 🙏
License
MIT. See LICENSE
for more details.