From 0a02a50ce6b82572ca206f1e49d2b12a56fe7468 Mon Sep 17 00:00:00 2001 From: Edoardo Tenani Date: Thu, 16 Jan 2025 18:13:14 +0100 Subject: [PATCH] enable self monitoring for EC deployment This allows to ingest logs in the same cluster we are using for testing and query and run assertion on them. --- functionaltests/TestUpgrade_8_15_4_to_8_16_0/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/functionaltests/TestUpgrade_8_15_4_to_8_16_0/main.tf b/functionaltests/TestUpgrade_8_15_4_to_8_16_0/main.tf index c83377e8ad5..c2b992ac9ac 100644 --- a/functionaltests/TestUpgrade_8_15_4_to_8_16_0/main.tf +++ b/functionaltests/TestUpgrade_8_15_4_to_8_16_0/main.tf @@ -5,6 +5,10 @@ module "ec_deployment" { deployment_template = "aws-storage-optimized" deployment_name_prefix = var.name + // self monitoring is enabled so we can inspect Elasticsearch + // logs from tests. + observability_deployment = "self" + apm_server_size = "1g" elasticsearch_size = "4g"