Skip to content
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

[Feature][exporter/azuredataexplorerexporter] Exporter helper support #27272

Merged
merged 26 commits into from
Oct 12, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
79b9fc2
export helper configuration support added
asaharn Sep 29, 2023
f1f851f
Added changes for logs export helper
asaharn Sep 29, 2023
a3dae38
Updated readme file
asaharn Sep 29, 2023
300a85b
Merge branch 'main' into feature/ingestionretry
asaharn Sep 29, 2023
839c8b5
added change log file
asaharn Oct 2, 2023
2a3f134
Merge branch 'feature/ingestionretry' of https://github.com/asaharn/o…
asaharn Oct 2, 2023
4d172de
go get result
asaharn Oct 2, 2023
a86d337
Merge branch 'main' into feature/ingestionretry
asaharn Oct 2, 2023
fd40eb1
Test cases change
asaharn Oct 3, 2023
d959c19
Merge branch 'feature/ingestionretry' of https://github.com/asaharn/o…
asaharn Oct 3, 2023
c539886
Merge branch 'main' into feature/ingestionretry
asaharn Oct 3, 2023
785c27f
Merge branch 'main' into feature/ingestionretry
asaharn Oct 4, 2023
6bbcc85
gotidy change
asaharn Oct 4, 2023
6ca1914
* Fix lint error
ag-ramachandran Oct 4, 2023
6f1fdfc
Merge branch 'main' into feature/ingestionretry
asaharn Oct 4, 2023
e5230d1
readme change
asaharn Oct 4, 2023
b1e4eda
readme change
asaharn Oct 4, 2023
26de91e
Merge branch 'main' into feature/ingestionretry
asaharn Oct 4, 2023
16ff03a
Merge branch 'main' into feature/ingestionretry
fatsheep9146 Oct 5, 2023
64e5578
* Update timeout settings
ag-ramachandran Oct 5, 2023
717596e
Merge branch 'main' into feature/ingestionretry
ag-ramachandran Oct 5, 2023
ceb7421
reverted gomodtidy
asaharn Oct 6, 2023
9c16013
added empty line for keeping identical
asaharn Oct 6, 2023
0349563
Merge branch 'main' into feature/ingestionretry
asaharn Oct 6, 2023
ab46156
Merge branch 'main' into feature/ingestionretry
asaharn Oct 6, 2023
c41e5c9
Merge branch 'main' into feature/ingestionretry
ag-ramachandran Oct 12, 2023
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
Prev Previous commit
Next Next commit
readme change
  • Loading branch information
asaharn committed Oct 4, 2023
commit e5230d13b0b13c61f20f14e298e4a0703f10b6c6
21 changes: 21 additions & 0 deletions exporter/azuredataexplorerexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,3 +205,24 @@ with ( docstring = "Histo sum count processing function", folder = "UpdatePolicy
.alter table HistoData policy update
@'[{ "IsEnabled": true, "Source": "RawMetricsData","Query": "ExtractHistoCountColumns()", "IsTransactional": false, "PropagateIngestionProperties": false}]'
```

### Opentelemetry Exporter Helper Configurations

The ADX exporter now includes support for Opentelemetry exporter helper configurations. This feature allows you to leverage the exporter helper capabilities(retries, timeout etc.) provided natively by Otel.

Please note that this configuration is not enabled by default. To utilize the Opentelemetry exporter helper, you will need to add it manually to the configuration.

#### Example Configuration

```yaml
# Example Opentelemetry Exporter Configuration
timeout: 10s
sending_queue:
enabled: true
num_consumers: 2
queue_size: 10
retry_on_failure:
enabled: true
initial_interval: 10s
max_interval: 60s
max_elapsed_time: 10m