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

[es cit] Use storage factory instead of manual creation #5313

Merged
merged 28 commits into from
Apr 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5497453
Intialized ES factory
Wise-Wizard Mar 30, 2024
9f6fcf6
Merge branch 'main' into Test/ES_Factory
Wise-Wizard Mar 30, 2024
86cb9a6
Initialized with Viper
Wise-Wizard Mar 30, 2024
5b3d546
Debugging
Wise-Wizard Mar 30, 2024
56e025e
Debugging
Wise-Wizard Mar 30, 2024
ae967db
Debugging-3
Wise-Wizard Mar 30, 2024
0d44d41
Merge branch 'main' into Test/ES_Factory
Wise-Wizard Mar 31, 2024
1dc9cec
Initialized with ES Config
Wise-Wizard Apr 1, 2024
ceeafbc
Merge branch 'main' into Test/ES_Factory
Wise-Wizard Apr 1, 2024
21c464f
Initialized Configuration
Wise-Wizard Apr 1, 2024
c2aba8a
Merge branch 'main' into Test/ES_Factory
Wise-Wizard Apr 2, 2024
7e42382
Removed New Factory
Wise-Wizard Apr 2, 2024
71322ea
Fix Lint Errors
Wise-Wizard Apr 2, 2024
771cabe
Removed Unneccessary Initializations
Wise-Wizard Apr 2, 2024
ff5ce35
Merge branch 'main' into Test/ES_Factory
Wise-Wizard Apr 2, 2024
941647c
Merge branch 'main' into Test/ES_Factory
Wise-Wizard Apr 3, 2024
66e73de
Merge branch 'main' into Test/ES_Factory
Wise-Wizard Apr 4, 2024
823a144
Created a Dummy Fix to ES Factory
Wise-Wizard Apr 4, 2024
2c999fc
Fix Submodule
Wise-Wizard Apr 4, 2024
32262d4
Fix Lint
Wise-Wizard Apr 4, 2024
f691324
Fix failing CI
Wise-Wizard Apr 5, 2024
17f65c3
Merge branch 'main' into Test/ES_Factory
Wise-Wizard Apr 5, 2024
e906787
Added All Tags as Field Bool
Wise-Wizard Apr 5, 2024
a3f2e68
Added All Tags as Field Bool
Wise-Wizard Apr 5, 2024
45b1e59
Merge branch 'main' into Test/ES_Factory
Wise-Wizard Apr 5, 2024
9ff6012
Removed Comments
Wise-Wizard Apr 5, 2024
406985b
Merge branch 'Test/ES_Factory' of https://github.com/Wise-Wizard/jaeg…
Wise-Wizard Apr 5, 2024
2863e8d
simplify
yurishkuro Apr 6, 2024
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
Fix failing CI
Signed-off-by: Wise-Wizard <[email protected]>
  • Loading branch information
Wise-Wizard committed Apr 5, 2024
commit f691324c06ec9c3128103cfc345b597de8106a43
2 changes: 1 addition & 1 deletion plugin/storage/integration/elasticsearch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func (s *ESStorageIntegration) initSpanstore(t *testing.T, allTagsAsFields bool)

opts := es.NewOptions(primaryNamespace, archiveNamespace)
cfg := opts.Primary.Configuration

cfg.IndexPrefix = indexPrefix
f, err := es.NewFactoryWithConfigTest(cfg, metrics.NullFactory, s.logger, client)
if err != nil {
return err
Expand Down
Loading