Skip to content

[enterprise-4.13] OBSDOCS-1097: Add more two callouts in the File Storage Extension section #79841

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ include::snippets/technology-preview.adoc[]
[id="filestorage-extension_{context}"]
== File Storage Extension

The File Storage Extension supports traces, metrics, and logs. This extension can persist the state to the local file system. This extension persists the sending queue for the OTLP exporters that are based on the HTTP and the gRPC protocols. This extension requires the read and write access to a directory. This extension can use a default directory, but the default directory must already exist.
The File Storage Extension supports traces, metrics, and logs. This extension can persist the state to the local file system. This extension persists the sending queue for the OpenTelemetry Protocol (OTLP) exporters that are based on the HTTP and the gRPC protocols. This extension requires the read and write access to a directory. This extension can use a default directory, but the default directory must already exist.

:FeatureName: The File Storage Extension
include::snippets/technology-preview.adoc[]
Expand All @@ -142,10 +142,10 @@ include::snippets/technology-preview.adoc[]
exporters:
otlp:
sending_queue:
storage: file_storage/all_settings
storage: file_storage/all_settings # <7>

service:
extensions: [file_storage/all_settings]
extensions: [file_storage/all_settings] # <8>
pipelines:
traces:
receivers: [otlp]
Expand All @@ -158,6 +158,8 @@ include::snippets/technology-preview.adoc[]
<4> Specifies the directory in which the compactor stores the telemetry data.
<5> Defines the maximum size of the compaction transaction. To ignore the transaction size, set to zero. If omitted, the default is `+65536+` bytes.
<6> When set, forces the database to perform an `fsync` call after each write operation. This helps to ensure database integrity if there is an interruption to the database process, but at the cost of performance.
<7> Buffers the OTLP Exporter data on the local file system.
<8> Starts the File Storage Extension by the Collector.

[id="oidcauth-extension_{context}"]
== OIDC Auth Extension
Expand Down