2
0

agent.go 286 B

123456789101112
  1. package types
  2. type DetectAgentResponse struct {
  3. Version string `json:"version"`
  4. LatestVersion string `json:"latest_version"`
  5. ShouldUpgrade bool `json:"should_upgrade"`
  6. Image string `json:"image"`
  7. }
  8. type GetAgentStatusResponse struct {
  9. Loki string `json:"loki"`
  10. }