OpenTelemetry Bot d680729c09 [chore] Prepare release 0.90.0 (#29543) | 1 an în urmă | |
---|---|---|
.. | ||
internal | 1 an în urmă | |
testdata | 2 ani în urmă | |
Makefile | 2 ani în urmă | |
README.md | 1 an în urmă | |
blobclient.go | 1 an în urmă | |
blobclient_test.go | 1 an în urmă | |
blobeventhandler.go | 1 an în urmă | |
blobeventhandler_test.go | 1 an în urmă | |
config.go | 1 an în urmă | |
config_test.go | 1 an în urmă | |
doc.go | 1 an în urmă | |
factory.go | 1 an în urmă | |
factory_test.go | 1 an în urmă | |
go.mod | 1 an în urmă | |
go.sum | 1 an în urmă | |
metadata.yaml | 1 an în urmă | |
mock_blobclient.go | 1 an în urmă | |
mock_logsdataconsumer.go | 1 an în urmă | |
mock_tracesddataconsumer.go | 1 an în urmă | |
receiver.go | 1 an în urmă | |
receiver_test.go | 1 an în urmă |
Status | |
---|---|
Stability | development: logs, traces |
Distributions | contrib |
Issues | |
Code Owners | @eedorenko, @mx-psi |
This receiver reads logs and trace data from Azure Blob Storage.
The following settings are required:
connection_string:
(no default): Azure Blob Storage connection key, which can be found in the Azure Blob Storage resource on the Azure Portal.event_hub:
endpoint:
(no default): Azure Event Hub endpoint triggering on the Blob Create
eventThe following settings can be optionally configured:
logs:
container_name:
(default = "logs"): Name of the blob container with the logstraces:
container_name:
(default = "traces"): Name of the blob container with the tracesExample:
receivers:
azureblob:
connection_string: DefaultEndpointsProtocol=https;AccountName=accountName;AccountKey=+idLkHYcL0MUWIKYHm2j4Q==;EndpointSuffix=core.windows.net
event_hub:
endpoint: Endpoint=sb://oteldata.servicebus.windows.net/;SharedAccessKeyName=otelhubbpollicy;SharedAccessKey=mPJVubIK5dJ6mLfZo1ucsdkLysLSQ6N7kddvsIcmoEs=;EntityPath=otellhub
The receiver subscribes on the events published by Azure Blob Storage and handled by Azure Event Hub. When it receives Blob Create
event, it reads the logs or traces from a corresponding blob and deletes it after processing.