-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
[exporter/sematext] New component: Sematext Exporter #37161
base: main
Are you sure you want to change the base?
[exporter/sematext] New component: Sematext Exporter #37161
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great start! Perhaps we can simplify the first PR by removing the configuration?
exporter/sematextexporter/config.go
Outdated
usLogsEndpoint = "https://logsene-receiver.sematext.com" | ||
) | ||
|
||
type Config struct { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please review (if you haven't already) the docs for adding new components:
- https://github.com/open-telemetry/opentelemetry-collector/blob/main/CONTRIBUTING.md#when-adding-a-new-component
- https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/CONTRIBUTING.md#adding-new-components
I propose to split the code in the following way:
- First PR: empty Config struct
- Second PR: metrics config and functionality (initial minimum functionality if possible, to make reviewing easier)
- Third PR: logs config and functionality (initial minimum functionality if possible, to make reviewing easier)
I believe this will help greatly with the reviews.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this okay? @andrzej-stencel
Co-authored-by: Andrzej Stencel <[email protected]>
Co-authored-by: Andrzej Stencel <[email protected]>
Description
First PR of New component: Sematext Exporter.
Link to tracking issue
#36465