Skip to content

Commit b255dd2

Browse files
authored
Merge pull request #69 from Kaisiq/feature/sinks-add-openobserve
Sinks | Add OpenObserve sink
2 parents d81c89b + 112ee7b commit b255dd2

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,14 @@ One of these is required for New Relic logs. New Relic recommend the license key
152152
| `NEW_RELIC_REGION` | (optional) eu or us (default us) |
153153
| `NEW_RELIC_ACCOUNT_ID` | New Relic Account Id |
154154

155+
### OpenObserve
156+
157+
| Secret | Description |
158+
| ---------------------- | -------------------- |
159+
| `OPENOBSERVE_URI` | OpenObserve URI |
160+
| `OPENOBSERVE_USER` | OpenObserve user |
161+
| `OPENOBSERVE_PASSWORD` | OpenObserve password |
162+
155163
### OpsVerse
156164

157165
| Secret | Description |
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[sinks.openobserve]
2+
type = "http"
3+
inputs = [ "log_json" ]
4+
uri = "${OPENOBSERVE_URI}"
5+
method = "post"
6+
auth.strategy = "basic"
7+
auth.user = "${OPENOBSERVE_USER}"
8+
auth.password = "${OPENOBSERVE_PASSWORD}"
9+
compression = "gzip"
10+
encoding.codec = "json"
11+
encoding.timestamp_format = "rfc3339"
12+
healthcheck.enabled = false

0 commit comments

Comments
 (0)