Skip to content

Commit

Permalink
add prometheus enable config
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhwarrier committed Dec 17, 2023
1 parent d7fd20c commit fa9960f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions integration-tests/load/automationv2_1/automationv2_1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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,
}))
}

Expand Down

0 comments on commit fa9960f

Please sign in to comment.