Skip to content

Commit

Permalink
Sending data via HTTP instead of gRPC (#3)
Browse files Browse the repository at this point in the history
We are moving to a single HTTP collector.
  • Loading branch information
clintonb authored Oct 16, 2024
1 parent 8e5a78a commit 694a522
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ processors:
exporters:
debug:
verbosity: detailed
otlp:
endpoint: "${env:OTLP_HOSTNAME}:${env:OTLP_PORT}"
otlphttp:
endpoint: "https://otel-http.vori.com"
auth:
authenticator: oauth2client

Expand All @@ -89,12 +89,12 @@ service:
traces:
receivers: [otlp]
processors: [memory_limiter,attributes,batch]
exporters: [debug, otlp]
exporters: [debug, otlphttp]
metrics:
receivers: [otlp,prometheus]
processors: [memory_limiter,attributes,batch]
exporters: [debug, otlp]
exporters: [debug, otlphttp]
logs:
receivers: [otlp,filelog]
processors: [memory_limiter,attributes,batch]
exporters: [debug, otlp]
exporters: [debug, otlphttp]
2 changes: 1 addition & 1 deletion voripos-otel-collector.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This is needed to locate the otelcol-contrib executable
export PATH="/opt/homebrew/bin:$PATH"

export VORIPOS_OTEL_COLLECTOR_VERSION=0.4.2
export VORIPOS_OTEL_COLLECTOR_VERSION=0.5.0
DEVICE_SERIAL_NUMBER=$(ioreg -c IOPlatformExpertDevice -d 2 | awk -F\" '/IOPlatformSerialNumber/{print $(NF-1)}')

OIDC_CLIENT_ID=
Expand Down

0 comments on commit 694a522

Please sign in to comment.