Add support for check-id
This commit is contained in:
parent
2bc84fecc1
commit
24c3d5c5b2
3 changed files with 55 additions and 12 deletions
51
check.go
51
check.go
|
@ -1,6 +1,7 @@
|
||||||
package gohealthchecks
|
package gohealthchecks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"path"
|
"path"
|
||||||
|
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
|
@ -11,28 +12,50 @@ type Check interface {
|
||||||
params() map[string]string
|
params() map[string]string
|
||||||
}
|
}
|
||||||
|
|
||||||
type uuidCheck uuid.UUID
|
type uuidCheck struct {
|
||||||
|
checkID uuid.UUID
|
||||||
|
runID uuid.UUID
|
||||||
|
}
|
||||||
|
|
||||||
func (c uuidCheck) path() string {
|
func (c uuidCheck) path() string {
|
||||||
return uuid.UUID(c).String()
|
return c.checkID.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c uuidCheck) params() map[string]string {
|
func (c uuidCheck) params() map[string]string {
|
||||||
|
if c.runID == uuid.Nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewUUIDCheck(rawUUID string) (Check, error) {
|
return map[string]string{
|
||||||
val, err := uuid.Parse(rawUUID)
|
"rid": c.runID.String(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewUUIDCheck(checkRawID, runRawID string) (Check, error) {
|
||||||
|
checkID, err := uuid.Parse(checkRawID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return uuidCheck(val), nil
|
|
||||||
|
runID := uuid.Nil
|
||||||
|
if runRawID != "" {
|
||||||
|
runID, err = uuid.Parse(runRawID)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return uuidCheck{
|
||||||
|
checkID: checkID,
|
||||||
|
runID: runID,
|
||||||
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
type slugCheck struct {
|
type slugCheck struct {
|
||||||
pingKey string
|
pingKey string
|
||||||
slug string
|
slug string
|
||||||
autoCreate bool
|
autoCreate bool
|
||||||
|
runID uuid.UUID
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c slugCheck) path() string {
|
func (c slugCheck) path() string {
|
||||||
|
@ -47,13 +70,27 @@ func (c slugCheck) params() map[string]string {
|
||||||
}
|
}
|
||||||
res["create"] = createVal
|
res["create"] = createVal
|
||||||
|
|
||||||
|
if c.runID != uuid.Nil {
|
||||||
|
res["rid"] = c.runID.String()
|
||||||
|
}
|
||||||
|
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewSlugCheck(pingKey, slug string, autoCreate bool) Check {
|
func NewSlugCheck(pingKey, slug string, autoCreate bool, runRawID string) (Check, error) {
|
||||||
|
runID := uuid.Nil
|
||||||
|
if runRawID != "" {
|
||||||
|
var err error
|
||||||
|
runID, err = uuid.Parse(runRawID)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("invalid run ID: %w", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return slugCheck{
|
return slugCheck{
|
||||||
pingKey: pingKey,
|
pingKey: pingKey,
|
||||||
slug: slug,
|
slug: slug,
|
||||||
autoCreate: autoCreate,
|
autoCreate: autoCreate,
|
||||||
}
|
runID: runID,
|
||||||
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,6 +19,7 @@ var (
|
||||||
pingKey string
|
pingKey string
|
||||||
checkSlug string
|
checkSlug string
|
||||||
autoCreate bool
|
autoCreate bool
|
||||||
|
runID string
|
||||||
)
|
)
|
||||||
|
|
||||||
// Execute adds all child commands to the root command and sets flags appropriately.
|
// Execute adds all child commands to the root command and sets flags appropriately.
|
||||||
|
@ -33,6 +34,7 @@ func Execute() {
|
||||||
func init() {
|
func init() {
|
||||||
rootCmd.PersistentFlags().StringVar(&pingHost, "host", gohealthchecks.HealthchecksIOPingHost, "healthchecks host to use")
|
rootCmd.PersistentFlags().StringVar(&pingHost, "host", gohealthchecks.HealthchecksIOPingHost, "healthchecks host to use")
|
||||||
rootCmd.PersistentFlags().BoolVar(&autoCreate, "auto-create", false, "auto create check if it does not exist (slug only)")
|
rootCmd.PersistentFlags().BoolVar(&autoCreate, "auto-create", false, "auto create check if it does not exist (slug only)")
|
||||||
|
rootCmd.PersistentFlags().StringVar(&runID, "run-id", "", "Optional run-id to identify the job")
|
||||||
rootCmd.PersistentFlags().StringVar(&checkUUID, "uuid", "", "check UUID")
|
rootCmd.PersistentFlags().StringVar(&checkUUID, "uuid", "", "check UUID")
|
||||||
rootCmd.PersistentFlags().StringVar(&pingKey, "ping-key", "", "ping key")
|
rootCmd.PersistentFlags().StringVar(&pingKey, "ping-key", "", "ping key")
|
||||||
rootCmd.PersistentFlags().StringVar(&checkSlug, "slug", "", "check-slug")
|
rootCmd.PersistentFlags().StringVar(&checkSlug, "slug", "", "check-slug")
|
||||||
|
|
12
cmd/utils.go
12
cmd/utils.go
|
@ -7,8 +7,8 @@ import (
|
||||||
gohealthchecks "git.faercol.me/faercol/go-healthchecks"
|
gohealthchecks "git.faercol.me/faercol/go-healthchecks"
|
||||||
)
|
)
|
||||||
|
|
||||||
func mustParseUUIDCheck(rawVal string) gohealthchecks.Check {
|
func mustParseUUIDCheck(checkID, runID string) gohealthchecks.Check {
|
||||||
check, err := gohealthchecks.NewUUIDCheck(rawVal)
|
check, err := gohealthchecks.NewUUIDCheck(checkID, runID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
failf("Invalid UUID: %s\n", err)
|
failf("Invalid UUID: %s\n", err)
|
||||||
}
|
}
|
||||||
|
@ -17,10 +17,14 @@ func mustParseUUIDCheck(rawVal string) gohealthchecks.Check {
|
||||||
|
|
||||||
func parseCheckFlags() gohealthchecks.Check {
|
func parseCheckFlags() gohealthchecks.Check {
|
||||||
var check gohealthchecks.Check
|
var check gohealthchecks.Check
|
||||||
|
var err error
|
||||||
if checkUUID != "" {
|
if checkUUID != "" {
|
||||||
check = mustParseUUIDCheck(checkUUID)
|
check = mustParseUUIDCheck(checkUUID, runID)
|
||||||
} else {
|
} else {
|
||||||
check = gohealthchecks.NewSlugCheck(pingKey, checkSlug, autoCreate)
|
check, err = gohealthchecks.NewSlugCheck(pingKey, checkSlug, autoCreate, runID)
|
||||||
|
if err != nil {
|
||||||
|
failf("Invalid UUID: %s\n", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return check
|
return check
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue