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

[exporter/datasetexporter]: Initial Commit #20733

Merged
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
015ca51
DataSetExporter: Initial Commit
martin-majlis-s1 Apr 6, 2023
0368966
Cleanup go.mod
martin-majlis-s1 Apr 6, 2023
35fa0a3
Reverse changes in elasticsearchexporter/config.go
martin-majlis-s1 Apr 10, 2023
7e59db9
Run mentioned commands
martin-majlis-s1 Apr 10, 2023
4d5ae44
Run make goporto
martin-majlis-s1 Apr 10, 2023
0d69b04
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 Apr 11, 2023
3d67349
Add replace line manually.
martin-majlis-s1 Apr 11, 2023
5b2277e
Add dummy comment to trigger EasyCLA check
martin-majlis-s1 Apr 11, 2023
565dd48
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 Apr 12, 2023
1f1cc43
I have executed - `make for-all CMD="make tidy"`
martin-majlis-s1 Apr 13, 2023
6a98d37
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 Apr 17, 2023
f921444
Incorporate changes from CR
martin-majlis-s1 Apr 17, 2023
beab130
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 Apr 17, 2023
29ef8c0
Add dataset exporter into tests for otelcontribcol
martin-majlis-s1 Apr 17, 2023
13de79f
Fix check - `make -j2 golint GROUP=other`
martin-majlis-s1 Apr 18, 2023
704ad5b
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 Apr 18, 2023
e89b708
Remove support for metrics and mention support for traces.
martin-majlis-s1 Apr 19, 2023
79758fa
Run make generate to update metadata table
martin-majlis-s1 Apr 19, 2023
bb772ac
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 Apr 21, 2023
bd4bd48
Remove unused function
martin-majlis-s1 Apr 21, 2023
7481264
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 Apr 25, 2023
550a25f
Update exporter/datasetexporter/factory_test.go
martin-majlis-s1 Apr 25, 2023
cd0cd8c
Update exporter/datasetexporter/config_test.go
martin-majlis-s1 Apr 25, 2023
214f405
Update exporter/datasetexporter/config_test.go
martin-majlis-s1 Apr 25, 2023
4ff64f7
Update exporter/datasetexporter/datasetexporter.go
martin-majlis-s1 Apr 25, 2023
5ac1476
Swap order of parameters in Equal function
martin-majlis-s1 Apr 25, 2023
1d9a927
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 Apr 26, 2023
38041df
Update dependencies
martin-majlis-s1 Apr 26, 2023
9564d18
Adjust code after running all those tools
martin-majlis-s1 Apr 26, 2023
9bcd3ad
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 Apr 27, 2023
81c55cc
Resolve the conflicts in versions
martin-majlis-s1 Apr 27, 2023
a2080bc
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 May 2, 2023
1026170
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 May 2, 2023
660c63a
Rerun command that has failed
martin-majlis-s1 May 2, 2023
0d9a1ea
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 May 3, 2023
2639b3a
Restore go.mod from main
martin-majlis-s1 May 3, 2023
098d558
Fix license check
martin-majlis-s1 May 3, 2023
ef97bae
Fix version check
martin-majlis-s1 May 3, 2023
81db459
Fix check-collector-module-versionr
martin-majlis-s1 May 3, 2023
ae758ff
Rerun all the remaining commands
martin-majlis-s1 May 3, 2023
892cdf2
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 May 4, 2023
c5bad0e
Merge branch 'main' into issue-20660-datasetexporter-initial-commit
martin-majlis-s1 May 5, 2023
f1268c2
Rename MaxDelayMs to maxDelayMs
martin-majlis-s1 May 5, 2023
24b9aa2
Modify metadata.yaml => `make generate` => adjust code
martin-majlis-s1 May 5, 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
16 changes: 16 additions & 0 deletions .chloggen/add-datasetexporter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: new_component

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: datasetexporter

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Add new DataSet exporter.

# One or more tracking issues related to the change
issues: [20660]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ exporter/carbonexporter/ @open-telemetry/collect
exporter/clickhouseexporter/ @open-telemetry/collector-contrib-approvers @hanjm @dmitryax @Frapschen
exporter/coralogixexporter/ @open-telemetry/collector-contrib-approvers @oded-dd @povilasv @matej-g
exporter/datadogexporter/ @open-telemetry/collector-contrib-approvers @mx-psi @gbbr @dineshg13 @liustanley @songy23
exporter/datasetexporter/ @open-telemetry/collector-contrib-approvers @atoulme @martin-majlis-s1
martin-majlis-s1 marked this conversation as resolved.
Show resolved Hide resolved
exporter/dynatraceexporter/ @open-telemetry/collector-contrib-approvers @dyladan @arminru @evan-bradley
exporter/elasticsearchexporter/ @open-telemetry/collector-contrib-approvers @JaredTan95
exporter/f5cloudexporter/ @open-telemetry/collector-contrib-approvers @gramidt
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ body:
- exporter/clickhouse
- exporter/coralogix
- exporter/datadog
- exporter/dataset
- exporter/dynatrace
- exporter/elasticsearch
- exporter/f5cloud
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ body:
- exporter/clickhouse
- exporter/coralogix
- exporter/datadog
- exporter/dataset
- exporter/dynatrace
- exporter/elasticsearch
- exporter/f5cloud
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/other.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ body:
- exporter/clickhouse
- exporter/coralogix
- exporter/datadog
- exporter/dataset
- exporter/dynatrace
- exporter/elasticsearch
- exporter/f5cloud
Expand Down
10 changes: 5 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ updates:
schedule:
interval: "weekly"
day: "wednesday"
- package-ecosystem: "gomod"
directory: "/exporter/datasetexporter"
schedule:
interval: "weekly"
day: "wednesday"
- package-ecosystem: "gomod"
directory: "/exporter/dynatraceexporter"
schedule:
Expand Down Expand Up @@ -1097,8 +1102,3 @@ updates:
schedule:
interval: "weekly"
day: "wednesday"
- package-ecosystem: "gomod"
directory: "/receiver/windowsperfcountersreceiver"
schedule:
interval: "weekly"
day: "wednesday"
1 change: 1 addition & 0 deletions cmd/otelcontribcol/builder-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ exporters:
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/clickhouseexporter v0.75.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/coralogixexporter v0.75.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/datadogexporter v0.75.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/datasetexporter v0.75.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/dynatraceexporter v0.75.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/elasticsearchexporter v0.75.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/f5cloudexporter v0.75.0
Expand Down
25 changes: 13 additions & 12 deletions cmd/otelcontribcol/components.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion cmd/otelcontribcol/components_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading