Skip to content

Update JS Endpoint + use go1.17 in go.mod for collector #260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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