Skip to content

Commit

Permalink
Update JS Endpoint + use go1.17 in go.mod for collector (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
vasireddy99 authored Jul 14, 2022
1 parent 7208181 commit c44e382
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion collector/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/open-telemetry/opentelemetry-lambda/collector

go 1.18
go 1.17

replace github.com/open-telemetry/opentelemetry-lambda/collector/lambdacomponents => ./lambdacomponents

Expand Down
2 changes: 1 addition & 1 deletion collector/lambdacomponents/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/open-telemetry/opentelemetry-lambda/collector/lambdacomponents

go 1.18
go 1.17

require (
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusremotewriteexporter v0.54.0
Expand Down
2 changes: 1 addition & 1 deletion nodejs/packages/layer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"author": "OpenTelemetry Authors",
"license": "Apache-2.0",
"engines": {
"node": ">=14.0.0"
"node": ">=10.0.0"
},
"dependencies": {
"@opentelemetry/api": "^1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion nodejs/sample-apps/aws-sdk/deploy/wrapper/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module "hello-lambda-function" {
OTEL_TRACES_EXPORTER = "logging"
OTEL_METRICS_EXPORTER = "logging"
OTEL_LOG_LEVEL = "DEBUG"
OTEL_EXPORTER_OTLP_ENDPOINT = "http://localhost:4318/v1/traces"
OTEL_EXPORTER_OTLP_ENDPOINT = "http://localhost:4318/"
}

tracing_mode = var.tracing_mode
Expand Down

0 comments on commit c44e382

Please sign in to comment.