-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into lovro/markdownlint
- Loading branch information
Showing
26 changed files
with
874 additions
and
1,925 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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,20 @@ | ||
# Health check | ||
|
||
Conduit’s health check can be used to determine if Conduit is running correctly. What it does is to check if Conduit | ||
can successfully connect to the database which it was configured with (which can be BadgerDB, PostgreSQL or the | ||
in-memory one). The health check is available at the `/healthz` path. Here’s an example: | ||
|
||
```bash | ||
$ curl "http://localhost:8080/healthz" | ||
{"status":"SERVING"} | ||
``` | ||
|
||
You can also check individual services within Conduit. The following example checks if the PipelineService is running: | ||
|
||
```bash | ||
$ curl "http://localhost:8080/healthz?service=PipelineService" | ||
{"status":"SERVING"} | ||
``` | ||
|
||
The services which can be checked for health are: `PipelineService`, `ConnectorService`, `ProcessorService`, and | ||
`PluginService`. |
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.