Skip to content

Commit

Permalink
Add service graph connector to the build. (open-telemetry#20452)
Browse files Browse the repository at this point in the history
  • Loading branch information
kovrus committed Mar 29, 2023
1 parent e6e329d commit 80aea5f
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .chloggen/servicegraph-connector.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: servicegraphconnector

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

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

# (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:
2 changes: 2 additions & 0 deletions cmd/otelcontribcol/builder-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ receivers:
connectors:
- gomod: go.opentelemetry.io/collector/connector/forwardconnector v0.74.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector v0.74.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/servicegraphconnector v0.74.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector v0.74.0

replaces:
Expand Down Expand Up @@ -373,6 +374,7 @@ replaces:
- github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest => ../../pkg/pdatatest
- github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil => ../../pkg/pdatautil
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector => ../../connector/countconnector
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/servicegraphconnector => ../../connector/servicegraphconnector
- github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector => ../../connector/spanmetricsconnector
- github.com/openshift/api v3.9.0+incompatible => github.com/openshift/api v0.0.0-20180801171038-322a19404e37
- github.com/outcaste-io/ristretto v0.2.0 => github.com/outcaste-io/ristretto v0.2.1
Expand Down
2 changes: 2 additions & 0 deletions cmd/otelcontribcol/components.go

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

3 changes: 3 additions & 0 deletions cmd/otelcontribcol/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ go 1.19

require (
github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector v0.74.0
github.com/open-telemetry/opentelemetry-collector-contrib/connector/servicegraphconnector v0.74.0
github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector v0.74.0
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alibabacloudlogserviceexporter v0.74.0
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awscloudwatchlogsexporter v0.74.0
Expand Down Expand Up @@ -1027,6 +1028,8 @@ replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil

replace github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector => ../../connector/countconnector

replace github.com/open-telemetry/opentelemetry-collector-contrib/connector/servicegraphconnector => ../../connector/servicegraphconnector

replace github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector => ../../connector/spanmetricsconnector

replace github.com/openshift/api v3.9.0+incompatible => github.com/openshift/api v0.0.0-20180801171038-322a19404e37
Expand Down
8 changes: 4 additions & 4 deletions connector/servicegraphconnector/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Service Graph Connector

| Status | |
|------------------------- |---------------------------------------------------------- |
| Stability | [in development] |
|------------------------- |-----------------------------------------------------------|
| Stability | [alpha] |
| Supported pipeline types | See [Supported Pipeline Types](#supported-pipeline-types) |
| Distributions | [] |
| Distributions | [contrib] |

## Supported Pipeline Types

Expand Down Expand Up @@ -138,4 +138,4 @@ service:
exporters: [prometheus/servicegraph]
```

[in development]: https://github.com/open-telemetry/opentelemetry-collector#development
[alpha]: https://github.com/open-telemetry/opentelemetry-collector#alpha

0 comments on commit 80aea5f

Please sign in to comment.