Skip to content

Commit

Permalink
docstring: UTC for health check results retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
mcorbin committed Jan 28, 2024
1 parent 008cd1c commit ec1c674
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ func listHealthckecksResultsCmd() *cobra.Command {
os.Exit(0)
},
}
listHealthchecksResults.PersistentFlags().StringVar(&startDate, "start-date", "", "Start date for results retrieval (Example: 2006-01-02T15:04:05). Default to 5 minutes ago")
listHealthchecksResults.PersistentFlags().StringVar(&startDate, "start-date", "", "Start date for results retrieval in UTC (Example: 2006-01-02T15:04:05). Default to 5 minutes ago")

listHealthchecksResults.PersistentFlags().StringVar(&endDate, "end-date", "", "End date for results retrieval (Example: 2006-01-02T15:04:05). Default to the current time")
listHealthchecksResults.PersistentFlags().StringVar(&endDate, "end-date", "", "End date for results retrieval in UTC (Example: 2006-01-02T15:04:05). Default to the current time")

listHealthchecksResults.PersistentFlags().StringVar(&healthcheckID, "healthcheck-id", "", "Get result for a specific healthcheck")
listHealthchecksResults.PersistentFlags().UintVar(&page, "page", 1, "Result page to retrieve")
Expand Down

0 comments on commit ec1c674

Please sign in to comment.