-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Samiur Arif
committed
Sep 25, 2024
1 parent
7b45fdf
commit dd4b8ca
Showing
90 changed files
with
7,414 additions
and
1,686 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
type: '*awss3exporter.Config' | ||
doc: | | ||
Config contains the main configuration options for the s3 exporter | ||
fields: | ||
- name: s3uploader | ||
type: awss3exporter.S3UploaderConfig | ||
kind: struct | ||
doc: | | ||
S3UploaderConfig contains aws s3 uploader related config to controls things | ||
like bucket, prefix, batching, connections, retries, etc. | ||
fields: | ||
- name: region | ||
kind: string | ||
default: us-east-1 | ||
- name: s3_bucket | ||
kind: string | ||
default: "" | ||
- name: s3_prefix | ||
kind: string | ||
default: "" | ||
- name: s3_partition | ||
kind: string | ||
default: minute | ||
- name: file_prefix | ||
kind: string | ||
default: "" | ||
- name: endpoint | ||
kind: string | ||
default: "" | ||
- name: role_arn | ||
kind: string | ||
default: "" | ||
- name: s3_force_path_style | ||
kind: bool | ||
default: false | ||
- name: disable_ssl | ||
kind: bool | ||
default: false | ||
- name: compression | ||
type: configcompression.Type | ||
kind: string | ||
default: "" | ||
- name: marshaler | ||
type: awss3exporter.MarshalerType | ||
kind: string | ||
default: otlp_json | ||
- name: encoding | ||
type: '*component.ID' | ||
kind: ptr | ||
doc: | | ||
Encoding to apply. If present, overrides the marshaler configuration option. | ||
- name: encoding_file_extension | ||
kind: string | ||
default: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
type: '*debugexporter.Config' | ||
fields: | ||
- name: verbosity | ||
type: configtelemetry.Level | ||
kind: int32 | ||
- name: sampling_initial | ||
kind: int | ||
default: 2 | ||
- name: sampling_thereafter | ||
kind: int | ||
default: 1 | ||
- name: use_internal_logger | ||
kind: bool | ||
default: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.