You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[exporter/azureblob] support append blob for azure blob exporter (open-telemetry#39076)
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description
Support append blob for azure blob exporter.
<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixesopen-telemetry#39075
<!--Describe what testing was performed and which tests were added.-->
#### Testing
1. unit test
2. e2e test using real azure blob account
<!--Describe the documentation added.-->
#### Documentation
See README.md
<!--Please delete paragraphs that you did not use before submitting.-->
Copy file name to clipboardExpand all lines: exporter/azureblobexporter/README.md
+12-1
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,9 @@ The following settings can be optionally configured and have default values:
40
40
- logs (default `nil`): encoding component id.
41
41
- metrics (default `nil`): encoding component id.
42
42
- traces (default `nil`): encoding component id.
43
+
- append_blob: configures append blob behavior. When enabled, telemetry data is appended to a single blob instead of creating new blobs. This can be useful for aggregating data or reducing the number of blobs created.
44
+
- enabled (default `false`): determines whether to use append blob mode.
45
+
- separator (default `\n`): string to insert between appended data blocks.
43
46
-`retry_on_failure`
44
47
-`enabled` (default = true)
45
48
-`initial_interval` (default = 5s): Time to wait after the first failure before retrying; ignored if `enabled` is `false`
0 commit comments