OpenTelemetry Bot d680729c09 [chore] Prepare release 0.90.0 (#29543) | 1 vuosi sitten | |
---|---|---|
.. | ||
internal | 1 vuosi sitten | |
testdata | 1 vuosi sitten | |
Makefile | 2 vuotta sitten | |
README.md | 1 vuosi sitten | |
config.go | 1 vuosi sitten | |
config_test.go | 1 vuosi sitten | |
factory.go | 1 vuosi sitten | |
factory_test.go | 1 vuosi sitten | |
go.mod | 1 vuosi sitten | |
go.sum | 1 vuosi sitten | |
logs_exporter.go | 1 vuosi sitten | |
logs_exporter_test.go | 1 vuosi sitten | |
metadata.yaml | 1 vuosi sitten | |
traces_exporter.go | 1 vuosi sitten | |
traces_exporter_test.go | 1 vuosi sitten |
Status | |
---|---|
Stability | alpha: traces, logs |
Distributions | contrib |
Issues | |
Code Owners | @bogdandrutu, @khyatigandhi6, @avadhut123pisal |
This exporter supports sending traces & logs to Logicmonitor.
The following configuration options are supported:
endpoint (required)
: The target base URL to send data to (e.g.: https://.logicmonitor.com/rest). For logs, "/log/ingest" path will be appended by default.\
api_token
: API Token of Logicmonitor
Below environment variable must be provided
Key | Value |
---|---|
LOGICMONITOR_ACCOUNT | Company name |
NOTE: For ingesting data into the Logicmonitor, either its API Token or Bearer Token is required.
Pass access_id
and access_key
through config.yaml as shown in example OR
Set the environment variables LOGICMONITOR_ACCESS_ID
and LOGICMONITOR_ACCESS_KEY
exporters:
logicmonitor:
endpoint: "https://<company_name>.logicmonitor.com/rest"
api_token:
access_id: "<access_id of logicmonitor>"
access_key: "<access_key of logicmonitor>"
Pass bearer token as Authorization headers through config.yaml as shown in example OR
Set the environment variable LOGICMONITOR_BEARER_TOKEN
exporters:
logicmonitor:
endpoint: "https://<company_name>.logicmonitor.com/rest"
headers:
Authorization: Bearer <bearer token of logicmonitor>