OpenTelemetry Bot d680729c09 [chore] Prepare release 0.90.0 (#29543) 1 жил өмнө
..
internal 9a0f8f30ce [chore][receiver/azureblob] create metadata (#21843) 1 жил өмнө
testdata 26a6516bbf receiver/azureblobreceiver Second PR (#12418) 2 жил өмнө
Makefile e11aa639cd [receiver/azureblob] First PR (#11872) 2 жил өмнө
README.md 562dc48d10 Link component issue badges to the respective issue page (#24642) 1 жил өмнө
blobclient.go 5133f4ccd6 [chore] use license shortform (#22052) 1 жил өмнө
blobclient_test.go 5133f4ccd6 [chore] use license shortform (#22052) 1 жил өмнө
blobeventhandler.go f4c44858b5 [all][chore] Moved from interface{} to any for all go code (#29072) 1 жил өмнө
blobeventhandler_test.go 5133f4ccd6 [chore] use license shortform (#22052) 1 жил өмнө
config.go 5133f4ccd6 [chore] use license shortform (#22052) 1 жил өмнө
config_test.go 5133f4ccd6 [chore] use license shortform (#22052) 1 жил өмнө
doc.go 5133f4ccd6 [chore] use license shortform (#22052) 1 жил өмнө
factory.go 84e3963a50 [chore] addressing lint issues (#22862) 1 жил өмнө
factory_test.go 5133f4ccd6 [chore] use license shortform (#22052) 1 жил өмнө
go.mod d680729c09 [chore] Prepare release 0.90.0 (#29543) 1 жил өмнө
go.sum 40b485f08a Update core for v0.90.0 release (#29539) 1 жил өмнө
metadata.yaml 8a4348cb00 [chore] add codeowners to metadata (#24404) 1 жил өмнө
mock_blobclient.go c1fb7f1a6b [chore] [receiver/azureblob] Unexport mocks (#24849) 1 жил өмнө
mock_logsdataconsumer.go c1fb7f1a6b [chore] [receiver/azureblob] Unexport mocks (#24849) 1 жил өмнө
mock_tracesddataconsumer.go c1fb7f1a6b [chore] [receiver/azureblob] Unexport mocks (#24849) 1 жил өмнө
receiver.go 2d3ed4fb66 [chore] update core and calls to obsreport (#27042) 1 жил өмнө
receiver_test.go 5133f4ccd6 [chore] use license shortform (#22052) 1 жил өмнө

README.md

Azure Blob Receiver

Status
Stability development: logs, traces
Distributions contrib
Issues Open issues Closed issues
Code Owners @eedorenko, @mx-psi

This receiver reads logs and trace data from Azure Blob Storage.

Configuration

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 event

The following settings can be optionally configured:

  • logs: container_name: (default = "logs"): Name of the blob container with the logs
  • traces: container_name: (default = "traces"): Name of the blob container with the traces

Example:

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.