Skip to content

Commit

Permalink
Export to HTTP receiver at port 55681 not default (open-telemetry#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanielRN authored and garrettwegan committed Jul 19, 2021
1 parent 494d298 commit ce6f1cf
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions nodejs/sample-apps/aws-sdk/deploy/main.tf
Expand Up @@ -17,10 +17,11 @@ module "hello-lambda-function" {
])

environment_variables = {
AWS_LAMBDA_EXEC_WRAPPER = "/opt/otel-handler"
OTEL_TRACES_EXPORTER = "logging"
OTEL_METRICS_EXPORTER = "logging"
OTEL_LOG_LEVEL = "DEBUG"
AWS_LAMBDA_EXEC_WRAPPER = "/opt/otel-handler"
OTEL_TRACES_EXPORTER = "logging"
OTEL_METRICS_EXPORTER = "logging"
OTEL_LOG_LEVEL = "DEBUG"
OTEL_EXPORTER_OTEL_ENDPOINT = "http://localhost:55681/v1/traces"
}

tracing_mode = var.tracing_mode
Expand Down

0 comments on commit ce6f1cf

Please sign in to comment.