-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
✨ feat: add liveness and readiness checks #2509
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
Merged
ReneWerner87
merged 22 commits into
gofiber:master
from
luk3skyw4lker:feat/add-probe-checkers
Jan 3, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
144c631
:sparkles: feat: add liveness and readiness checkers
luk3skyw4lker fed6c5e
:memo: docs: add docs for liveness and readiness
luk3skyw4lker 96d3944
:sparkles: feat: add options method for probe checkers
luk3skyw4lker ec98691
:white_check_mark: tests: add tests for liveness and readiness
luk3skyw4lker 7615bec
:recycle: refactor: change default endpoint values
luk3skyw4lker b00ee64
:recycle: refactor: change default value for liveness endpoint
luk3skyw4lker 87faa6a
:memo: docs: add return status for liveness and readiness probes
luk3skyw4lker 789b882
:recycle: refactor: change probechecker to middleware
luk3skyw4lker ef1e265
:twisted_rightwards_arrows: chore: update branch with master
luk3skyw4lker df23f68
:memo: docs: move docs to middleware session
luk3skyw4lker 4ad217e
:recycle: refactor: apply gofumpt formatting
luk3skyw4lker 2c41068
:recycle: refactor: remove unused parameter
luk3skyw4lker 7fdb8aa
split config and apply a review
efectn 931526a
apply reviews and add testcases
efectn 508bddb
add benchmark
efectn 2041679
cleanup
efectn e987a8e
rename middleware
efectn c33626b
fix linter
efectn 013e362
Update docs and config values
gaby 5c08790
Revert change to IsReady
gaby 92e1cac
Updates based on code review
gaby 87b1822
Update docs to match other middlewares
gaby File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| package probechecker | ||
|
|
||
| import "github.com/gofiber/fiber/v2" | ||
|
|
||
| // Config is the config struct for the probechecker middleware | ||
| type Config struct { | ||
| // Config for liveness probe of the container engine being used | ||
| // | ||
| // Optional. Default: func(c *Ctx) bool { return true } | ||
| IsLive ProbeChecker | ||
|
|
||
| // HTTP endpoint of the liveness probe | ||
| // | ||
| // Optional. Default: /livez | ||
| IsLiveEndpoint string | ||
|
|
||
| // Config for readiness probe of the container engine being used | ||
| // | ||
| // Optional. Default: nil | ||
| IsReady ProbeChecker | ||
|
|
||
| // HTTP endpoint of the readiness probe | ||
| // | ||
| // Optional. Default: /readyz | ||
| IsReadyEndpoint string | ||
| } | ||
|
|
||
| const ( | ||
| DefaultLivenessEndpoint = "/livez" | ||
| DefaultReadinessEndpoint = "/readyz" | ||
| ) | ||
|
|
||
| func defaultLiveFunc(*fiber.Ctx) bool { return true } | ||
|
|
||
| // ConfigDefault is the default config | ||
| var ConfigDefault = Config{ | ||
| IsLive: defaultLiveFunc, | ||
| IsLiveEndpoint: DefaultLivenessEndpoint, | ||
| IsReadyEndpoint: DefaultReadinessEndpoint, | ||
| } | ||
|
|
||
| // defaultConfig returns a default config for the probechecker middleware. | ||
| func defaultConfig(config ...Config) Config { | ||
| if len(config) < 1 { | ||
| return ConfigDefault | ||
| } | ||
|
|
||
| cfg := config[0] | ||
|
|
||
| if cfg.IsLive == nil { | ||
| cfg.IsLive = defaultLiveFunc | ||
| } | ||
|
|
||
| if cfg.IsLiveEndpoint == "" { | ||
| cfg.IsLiveEndpoint = DefaultLivenessEndpoint | ||
| } | ||
|
|
||
| if cfg.IsReadyEndpoint == "" { | ||
| cfg.IsReadyEndpoint = DefaultReadinessEndpoint | ||
| } | ||
|
|
||
| return cfg | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.