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

Codesmon/exporter/azuremonitor/persistent queue #26258

Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
71018ab
Added persistent_queue capability to Azure Monitor Exporter
codesmon Aug 17, 2023
f14681d
Added to config unit test to check for sending_queue
codesmon Aug 17, 2023
f8583fa
Merge remote-tracking branch 'upstream/main' into codesmon/exporter/a…
codesmon Aug 29, 2023
d9f6ed0
Added change log entry
codesmon Aug 29, 2023
7112003
Added persistent_queue capability to Azure Monitor Exporter
codesmon Aug 17, 2023
3dcfcb4
Added to config unit test to check for sending_queue
codesmon Aug 17, 2023
e003865
Added change log entry
codesmon Aug 29, 2023
2ac0875
Merge branch 'codesmon/exporter/azuremonitor/persistent_queue' of
codesmon Oct 31, 2023
f56a8ee
Merge branch 'main' into codesmon/exporter/azuremonitor/persistent_queue
codesmon Oct 31, 2023
78a9b8e
Merge branch 'main' into codesmon/exporter/azuremonitor/persistent_queue
codesmon Oct 31, 2023
a15b380
Merge branch 'main' into codesmon/exporter/azuremonitor/persistent_queue
codesmon Oct 31, 2023
8576048
Merge branch 'main' into codesmon/exporter/azuremonitor/persistent_queue
codesmon Oct 31, 2023
6a2612c
Merge branch 'main' into codesmon/exporter/azuremonitor/persistent_queue
codesmon Nov 1, 2023
3c93f11
Merge branch 'main' into codesmon/exporter/azuremonitor/persistent_queue
codesmon Nov 1, 2023
f137638
Merge branch 'main' into codesmon/exporter/azuremonitor/persistent_queue
codesmon Nov 2, 2023
cbc0d05
Merge conflict
codesmon Nov 6, 2023
a442294
Merge branch 'main' into codesmon/exporter/azuremonitor/persistent_queue
codesmon Nov 6, 2023
afb58cc
GCI'd the code.
codesmon Nov 6, 2023
1cf091d
Merge branch 'main' into codesmon/exporter/azuremonitor/persistent_queue
codesmon Nov 7, 2023
b7100f4
Merge branch 'main' into codesmon/exporter/azuremonitor/persistent_queue
codesmon Nov 7, 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
Merge conflict
  • Loading branch information
codesmon committed Nov 6, 2023
commit cbc0d054c0ed86da88168fd7151a7d6f8544fde4
11 changes: 6 additions & 5 deletions exporter/azuremonitorexporter/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ import (
// Config defines configuration for Azure Monitor
type Config struct {
exporterhelper.QueueSettings `mapstructure:"sending_queue"`
Endpoint string `mapstructure:"endpoint"`
InstrumentationKey configopaque.String `mapstructure:"instrumentation_key"`
MaxBatchSize int `mapstructure:"maxbatchsize"`
MaxBatchInterval time.Duration `mapstructure:"maxbatchinterval"`
SpanEventsEnabled bool `mapstructure:"spaneventsenabled"`
Endpoint string `mapstructure:"endpoint"`
ConnectionString configopaque.String `mapstructure:"connection_string"`
InstrumentationKey configopaque.String `mapstructure:"instrumentation_key"`
MaxBatchSize int `mapstructure:"maxbatchsize"`
MaxBatchInterval time.Duration `mapstructure:"maxbatchinterval"`
SpanEventsEnabled bool `mapstructure:"spaneventsenabled"`
}