Skip to content

Commit

Permalink
feat: add otel env vars (#8323)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexghr authored Sep 2, 2024
1 parent 74051cc commit 365c079
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions yarn-project/aztec/terraform/proof-verifier/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,14 @@ resource "aws_ecs_task_definition" "aztec-proof-verifier" {
{ name = "ETHEREUM_HOST", value = var.ETHEREUM_HOST },
{ name = "L1_CHAIN_ID", value = var.L1_CHAIN_ID },
{ name = "ROLLUP_CONTRACT_ADDRESS", value = var.ROLLUP_CONTRACT_ADDRESS },
{
name = "OTEL_EXPORTER_OTLP_METRICS_ENDPOINT"
value = "http://aztec-otel.local:4318/v1/metrics"
},
{
name = "OTEL_SERVICE_NAME"
value = "${var.DEPLOY_TAG}-aztec-proof-verifier"
},
{ name = "LOG_LEVEL", value = var.LOG_LEVEL },
{ name = "NETWORK", value = var.DEPLOY_TAG },
{ name = "LOG_JSON", value = "1" }
Expand Down

0 comments on commit 365c079

Please sign in to comment.