From fa9960fb6605587f6c02024a70bfaa203291ecc6 Mon Sep 17 00:00:00 2001 From: anirudhwarrier <12178754+anirudhwarrier@users.noreply.github.com> Date: Sun, 17 Dec 2023 13:23:01 +0400 Subject: [PATCH] add prometheus enable config --- .../load/automationv2_1/automationv2_1_test.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/integration-tests/load/automationv2_1/automationv2_1_test.go b/integration-tests/load/automationv2_1/automationv2_1_test.go index 727deb072af..97b74f71c88 100644 --- a/integration-tests/load/automationv2_1/automationv2_1_test.go +++ b/integration-tests/load/automationv2_1/automationv2_1_test.go @@ -128,6 +128,7 @@ var ( specType = getEnv("SPECTYPE", "minimum") // minimum, recommended, local specs for the test logLevel = getEnv("LOGLEVEL", "info") // log level for the chainlink nodes pyroscope, _ = strconv.ParseBool(getEnv("PYROSCOPE", "false")) // enable pyroscope for the chainlink nodes + prometheus, _ = strconv.ParseBool(getEnv("PROMETHEUS", "false")) // enable prometheus for the chainlink nodes ) func TestLogTrigger(t *testing.T) { @@ -266,9 +267,10 @@ func TestLogTrigger(t *testing.T) { } nodeTOML = networks.AddNetworksConfig(nodeTOML, testNetwork) testEnvironment.AddHelm(chainlink.New(i, map[string]any{ - "toml": nodeTOML, - "chainlink": nodeSpec, - "db": dbSpec, + "toml": nodeTOML, + "chainlink": nodeSpec, + "db": dbSpec, + "prometheus": prometheus, })) }