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

New component: sumologicprocessor #23949

Merged
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
736a555
feat: copying code from v0.80.0-sumo-0
Jul 4, 2023
76c2a1e
chore: rename sumologicschemaprocessor to sumologicprocessor
Jul 4, 2023
bd89ad8
chore: add metadaa.yaml and add component to the builder
Jul 4, 2023
cad2258
chore: add codeowners
Jul 4, 2023
3dc1953
refactor: refactor due to lint check
Jul 4, 2023
e74ab2a
Update processor/sumologicprocessor/metadata.yaml
sumo-drosiek Jul 6, 2023
de6ef63
chore: add @astencel-sumo as codeowner
Aug 4, 2023
948601a
chore: remove contrib from supported distributions
Aug 4, 2023
65a6ca4
chore: re-word some messages due to review
Aug 4, 2023
09c25f9
Update processor/sumologicprocessor/README.md
sumo-drosiek Sep 5, 2023
9d4bf9b
Update processor/sumologicprocessor/README.md
sumo-drosiek Sep 5, 2023
53fad59
Update .chloggen/drosiek-sumologic-schema-processor.yaml
sumo-drosiek Sep 5, 2023
da57af8
feat(sumologicprocessor): check for conflicts in prefix names
Sep 29, 2023
f565edd
chore(sumologicprocessor): fix go.mod
Sep 29, 2023
0b0f5d8
chore(sumologicprocessor): fix according to apicheck
Sep 29, 2023
500ab1e
chore: go mod tidy
Sep 29, 2023
5cf503b
feat(sumologicprocessor): check for duplication of attribute names
Oct 2, 2023
25324f0
chore(sumologicprocessor): restore original code for attributes aggre…
Oct 2, 2023
81a0bee
chore: fix versions in go.mod
Oct 6, 2023
aeaade5
chore: update accoreding to review
Oct 10, 2023
ec4ef40
chore: refactor due to review
Oct 10, 2023
6e169ef
chore: refactor due to review
Oct 11, 2023
e819f3b
chore: change semcov path
Oct 30, 2023
5435670
chore: fix checks
Oct 30, 2023
909973a
chore: gendependabot
Oct 30, 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
chore: re-word some messages due to review
Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>
  • Loading branch information
Dominik Rosiek committed Oct 30, 2023
commit 65a6ca4deb3c6f8fe2b27475d1d4f2defb37686c
4 changes: 2 additions & 2 deletions processor/sumologicprocessor/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func newsumologicProcessor(set processor.CreateSettings, config *Config) *sumolo
func (processor *sumologicProcessor) start(_ context.Context, _ component.Host) error {
procs := processor.subprocessors
processor.logger.Info(
"Processor sumologic has started.",
"Sumo Logic Processor has started.",
zap.Bool(procs[0].ConfigPropertyName(), procs[0].isEnabled()),
zap.Bool(procs[1].ConfigPropertyName(), procs[1].isEnabled()),
zap.Bool(procs[2].ConfigPropertyName(), procs[2].isEnabled()),
Expand All @@ -76,7 +76,7 @@ func (processor *sumologicProcessor) start(_ context.Context, _ component.Host)
}

func (processor *sumologicProcessor) shutdown(_ context.Context) error {
processor.logger.Info("Processor sumologic has shut down.")
processor.logger.Info("Sumo Logic Processor has shut down.")
return nil
}

Expand Down