Skip to content

Commit

Permalink
Make OTLP receiver enabed by default
Browse files Browse the repository at this point in the history
Signed-off-by: Yuri Shkuro <github@ysh.us>
  • Loading branch information
yurishkuro committed May 31, 2023
1 parent 756bc4e commit 9301cb3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@ next release
### UI Changes


1.46.0
-------------------
### Backend Changes

#### ⛔ Breaking Changes


#### New Features

#### Bug fixes, Minor Improvements

### UI Changes


1.45.0 (2023-05-03)
-------------------
### Backend Changes
Expand Down
2 changes: 1 addition & 1 deletion cmd/collector/app/flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func AddFlags(flags *flag.FlagSet) {
addHTTPFlags(flags, httpServerFlagsCfg, ports.PortToHostPort(ports.CollectorHTTP))
addGRPCFlags(flags, grpcServerFlagsCfg, ports.PortToHostPort(ports.CollectorGRPC))

flags.Bool(flagCollectorOTLPEnabled, false, "Enables OpenTelemetry OTLP receiver on dedicated HTTP and gRPC ports")
flags.Bool(flagCollectorOTLPEnabled, true, "Enables OpenTelemetry OTLP receiver on dedicated HTTP and gRPC ports")
addHTTPFlags(flags, otlpServerFlagsCfg.HTTP, "")
addGRPCFlags(flags, otlpServerFlagsCfg.GRPC, "")

Expand Down

0 comments on commit 9301cb3

Please sign in to comment.