-
Notifications
You must be signed in to change notification settings - Fork 540
adding openobserve details for fluentbit output #1472
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
patrick-stephens
merged 20 commits into
fluent:master
from
openobserve:feature/openobserve
Oct 15, 2024
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
bd571bd
adding openobserve details for fluentbit output
e8ec3f5
Update pipeline/outputs/openobserve.md
chaitanya-sistla 380a4d9
Update pipeline/outputs/openobserve.md
chaitanya-sistla c363f33
Update pipeline/outputs/openobserve.md
chaitanya-sistla 1c8a5d2
Update pipeline/outputs/openobserve.md
chaitanya-sistla dc692c9
Update pipeline/outputs/openobserve.md
chaitanya-sistla 537c52d
Update pipeline/outputs/openobserve.md
chaitanya-sistla e0303e2
Update pipeline/outputs/openobserve.md
chaitanya-sistla ee7e066
Update pipeline/outputs/openobserve.md
chaitanya-sistla 087e778
Update pipeline/outputs/openobserve.md
chaitanya-sistla 53f50ce
Update pipeline/outputs/openobserve.md
chaitanya-sistla 92f6805
Update pipeline/outputs/openobserve.md
chaitanya-sistla 972eb49
Update pipeline/outputs/openobserve.md
chaitanya-sistla 336b0a2
Update pipeline/outputs/openobserve.md
chaitanya-sistla 854a7ae
Update pipeline/outputs/openobserve.md
chaitanya-sistla 9fce415
Update pipeline/outputs/openobserve.md
chaitanya-sistla 4d4ca4a
Update pipeline/outputs/openobserve.md
chaitanya-sistla 5366d42
Update pipeline/outputs/openobserve.md
chaitanya-sistla db52e53
Update pipeline/outputs/openobserve.md
chaitanya-sistla 16de651
adding openobserve in summary
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
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,49 @@ | ||
| --- | ||
| title: OpenObserve | ||
| description: Send logs to OpenObserve using Fluent Bit | ||
| --- | ||
|
|
||
| # OpenObserve | ||
|
|
||
| Use the OpenObserve output plugin to ingest logs into [OpenObserve](https://openobserve.ai/). | ||
|
|
||
| Before you begin, you need an [OpenObserve account](https://cloud.openobserve.ai/), an | ||
| `HTTP_User`, and an `HTTP_Passwd`. You can find these fields under **Ingestion** in | ||
| OpenObserve Cloud. Alternatively, you can achieve this with various installation | ||
| types as mentioned in the | ||
| [OpenObserve documentation](https://openobserve.ai/docs/quickstart/) | ||
|
|
||
| ## Configuration Parameters | ||
|
|
||
| | Key | Description | Default | | ||
| | --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------- | | ||
| | Host | Required. The OpenObserve server where you are sending logs. | `localhost` | | ||
| | TLS | Required: Enable end-to-end security using TLS. Set to `on` to enable TLS communication with OpenObserve. | `on` | | ||
| | compress | Recommended: Compresses the payload in GZIP format. OpenObserve supports and recommends setting this to `gzip` for optimized log ingestion. | _none_ | | ||
| | HTTP_User | Required: Username for HTTP authentication. | _none_ | | ||
| | HTTP_Passwd | Required: Password for HTTP authentication. | _none_ | | ||
| | URI | Required: The API path used to send logs. | `/api/default/default/_json` | | ||
| | Format | Required: The format of the log payload. OpenObserve expects JSON. | `json` | | ||
| | json_date_key | Optional: The JSON key used for timestamps in the logs. | `timestamp` | | ||
| | json_date_format | Optional: The format of the date in logs. OpenObserve supports ISO 8601. | `iso8601` | | ||
| | include_tag_key | If `true`, a tag is appended to the output. The key name is used in the `tag_key` property. | `false` | | ||
|
|
||
| ### Configuration File | ||
|
|
||
| Use this configuration file to get started: | ||
|
|
||
| ``` | ||
| [OUTPUT] | ||
| Name http | ||
| Match * | ||
| URI /api/default/default/_json | ||
| Host localhost | ||
| Port 5080 | ||
| tls on | ||
| Format json | ||
| Json_date_key timestamp | ||
| Json_date_format iso8601 | ||
| HTTP_User <YOUR_HTTP_USER> | ||
| HTTP_Passwd <YOUR_HTTP_PASSWORD> | ||
| compress gzip | ||
| ``` | ||
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.