Added remaining HTTP health check fields to structs
This commit is contained in:
parent
84a07ea113
commit
7d82ece118
|
@ -483,6 +483,9 @@ type HealthCheck struct {
|
|||
ServiceTags []string // optional service tags
|
||||
|
||||
HTTP string `json:",omitempty"`
|
||||
TLSSkipVerify bool `json:",omitempty"`
|
||||
Header map[string][]string `json:",omitempty"`
|
||||
Method string `json:",omitempty"`
|
||||
TCP string `json:",omitempty"`
|
||||
Interval string `json:",omitempty"`
|
||||
Timeout string `json:",omitempty"`
|
||||
|
|
|
@ -16,6 +16,9 @@ type AgentCheck struct {
|
|||
ServiceID string
|
||||
ServiceName string
|
||||
HTTP string
|
||||
Header map[string][]string
|
||||
Method string
|
||||
TLSSkipVerify bool
|
||||
TCP string
|
||||
Interval string
|
||||
Timeout string
|
||||
|
|
|
@ -36,6 +36,9 @@ type HealthCheck struct {
|
|||
ServiceTags []string
|
||||
|
||||
HTTP string
|
||||
Header map[string][]string
|
||||
Method string
|
||||
TLSSkipVerify bool
|
||||
TCP string
|
||||
Interval string
|
||||
Timeout string
|
||||
|
|
Loading…
Reference in New Issue