Skip to content

Commit

Permalink
build(deps): add tcplog receiver
Browse files Browse the repository at this point in the history
  • Loading branch information
obs-gh-alexlew committed Aug 5, 2024
1 parent d613202 commit bfeffc3
Show file tree
Hide file tree
Showing 16 changed files with 793 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ make build-ocb

This command should add the new dependencies and code in the correct places. You can build the agent afterwards with `go build` to confirm.

Afterwards, you should add the new component to the `Components` section below.

## Running

To start the observe agent after building the binary run the following command.
Expand Down Expand Up @@ -60,6 +62,7 @@ This section lists the components that are included in the Observe Distribution
| [prometheus][prometheusreceiver] | | | | |
| [redis][redisreceiver] | | | | |
| [statsd][statsdreceiver] | | | | |
| [tcplog][tcplogreceiver] | | | | |
| [windowseventlog][windowseventlogreceiver] | | | | |

[awsecscontainermetricsreceiver]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.105.0/receiver/awsecscontainermetricsreceiver
Expand All @@ -79,6 +82,7 @@ This section lists the components that are included in the Observe Distribution
[prometheusreceiver]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.105.0/receiver/prometheusreceiver
[redisreceiver]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.102.0/receiver/redisreceiver
[statsdreceiver]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.105.0/receiver/statsdreceiver
[tcplogreceiver]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.105.0/receiver/tcplogreceiver
[windowseventlogreceiver]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.105.0/receiver/windowseventlogreceiver
[attributesprocessor]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.105.0/processor/attributesprocessor
[batchprocessor]: https://github.com/open-telemetry/opentelemetry-collector/tree/v0.105.0/processor/batchprocessor
Expand Down
1 change: 1 addition & 0 deletions builder-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ receivers:
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver v0.105.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/redisreceiver v0.105.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/statsdreceiver v0.105.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/tcplogreceiver v0.105.0
- gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/windowseventlogreceiver v0.105.0

extensions:
Expand Down
3 changes: 3 additions & 0 deletions cmd/collector/components.go

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

1 change: 1 addition & 0 deletions cmd/collector/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ require (
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver v0.105.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/redisreceiver v0.105.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/statsdreceiver v0.105.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/tcplogreceiver v0.105.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/windowseventlogreceiver v0.105.0
github.com/spf13/cobra v1.8.1
go.opentelemetry.io/collector/component v0.105.0
Expand Down
2 changes: 2 additions & 0 deletions cmd/collector/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,8 @@ github.com/open-telemetry/opentelemetry-collector-contrib/receiver/redisreceiver
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/redisreceiver v0.105.0/go.mod h1:fmDaERWZHzWKfGe4QVqJNMou6zjdmuu86oCUCikxZ44=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/statsdreceiver v0.105.0 h1:Lys0FAkWPs64Mt754aEynmlxy5RMOqdcyVEu96YPCFQ=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/statsdreceiver v0.105.0/go.mod h1:ci0in9sSH/2OOjW95Xq5f67j4bTYYWQ7RUuZPTfyh3o=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/tcplogreceiver v0.105.0 h1:cQeHLKssdlnTS8P69LhJcPQRRwXQnkfTJ8B6hlHq+1M=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/tcplogreceiver v0.105.0/go.mod h1:zvImfBdXzdRXcq+pnPEqQVvbgAw2UgSBKWy0ymz/Gk4=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/windowseventlogreceiver v0.105.0 h1:7TK97dlX5yKl/Hlj1KvfC3RQPtwc9uGBVGDTvsLIHQU=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/windowseventlogreceiver v0.105.0/go.mod h1:OV/epvVwWKgGny7ZRuL2q4Ge4RRx0hoWiIppHy8ndXc=
github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
Expand Down

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

Loading

0 comments on commit bfeffc3

Please sign in to comment.