Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add helper function to check whether -check flag used #181

Merged
merged 2 commits into from
Nov 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions health/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package health

import (
"context"
"flag"
"fmt"
"io"
"net/http"
Expand Down Expand Up @@ -66,3 +67,14 @@ func CheckStatus(servicePath string, timeout time.Duration) int {

return 0
}

// RunningHealthCheck returns whether the -check flag was used when starting the program.
// This flag indicates that the program is being used to run a health check on another program.
func RunningHealthCheck() bool {

var isHealthCheck bool
flag.BoolVar(&isHealthCheck, "check", false, "Whether the program is being used to run a health check")
flag.Parse()

return isHealthCheck
}
2 changes: 1 addition & 1 deletion slogger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ func (sl *SmartLogger) Log(message ...any) int {
if repeated && now.Sub(sl.lastLogTime) <= sl.window {
sl.repeatCount++
} else {
log.Println(msgString)
if sl.repeatedPrefix != "" && !repeated { //this is a random message
log.Println(msgString)
sl.lastMessage = "" // Reset lastMessage to avoid tracking it as a repeated message
sl.lastLogTime = time.Time{} // Reset the time
return 0
Expand Down
Loading