Skip to content

Commit

Permalink
Merge branch 'evan/add-signoz'
Browse files Browse the repository at this point in the history
  • Loading branch information
Flaque committed Aug 30, 2024
2 parents 9c7a761 + b5e191d commit 43159af
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,14 @@ One of these is required for New Relic logs. New Relic recommend the license key
| `SEMATEXT_REGION` | Sematext region |
| `SEMATEXT_TOKEN` | Sematext token |


### Signoz

| Secret | Description |
| --------------------- | --------------------------------------------------------------- |
| `SIGNOZ_INGESTION_KEY`| Signoz Access Token |
| `SIGNOZ_URI` | Signoz URI (default is 'https://ingest.us.signoz.cloud/logs/vector') |

### Uptrace

| Secret | Description |
Expand Down
13 changes: 13 additions & 0 deletions vector-configs/sinks/signoz.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[sinks.signoz]
type = "http"
inputs = ["log_json"]
# Potential regions: "us", "eu", "in"
# See https://signoz.io/docs/logs-management/send-logs/vector-logs-to-signoz/
# for more details
uri = "${SIGNOZ_URI:-https://ingest.us.signoz.cloud/logs/vector}"

[sinks.signoz.encoding]
codec = "json"

[sinks.signoz.request.headers]
signoz-access-token = "${SIGNOZ_INGESTION_KEY}"

0 comments on commit 43159af

Please sign in to comment.