Skip to content

Commit

Permalink
config-generator: Fix typo.
Browse files Browse the repository at this point in the history
Don't generate list of list
  • Loading branch information
hjpotter92 committed Jan 9, 2025
1 parent 50832e2 commit 19ca642
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-generator/src/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ function prometheusConfig(params) {
scrape_timeout: "1m",
honor_timestamps: true,
static_configs: [
{ targets: [params.prometheusPipelinesDomain.split(",")] },
{ targets: params.prometheusPipelinesDomain.split(",") },
],
scheme: "https",
metrics_path: "/api/metrics",
Expand Down

0 comments on commit 19ca642

Please sign in to comment.