Skip to content

Commit

Permalink
Allow https on metrics endpoints (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsierles authored Oct 21, 2024
1 parent 3ebb794 commit c51b4e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions machine_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -478,8 +478,9 @@ var MachinePresets map[string]*MachineGuest = map[string]*MachineGuest{
}

type MachineMetrics struct {
Port int `toml:"port" json:"port,omitempty"`
Path string `toml:"path" json:"path,omitempty"`
Port int `toml:"port" json:"port,omitempty"`
Path string `toml:"path" json:"path,omitempty"`
Https bool `toml:"https" json:"https,omitempty"`
}

type MachineCheckKind string
Expand Down

0 comments on commit c51b4e8

Please sign in to comment.