mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
prometheus-nginx-exporter: fix bool to string coercion
This commit is contained in:
parent
ae7c71e267
commit
27eb2859f2
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ in
|
||||||
--nginx.scrape_uri '${cfg.scrapeUri}' \
|
--nginx.scrape_uri '${cfg.scrapeUri}' \
|
||||||
--telemetry.address ${cfg.listenAddress}:${toString cfg.port} \
|
--telemetry.address ${cfg.listenAddress}:${toString cfg.port} \
|
||||||
--telemetry.endpoint ${cfg.telemetryEndpoint} \
|
--telemetry.endpoint ${cfg.telemetryEndpoint} \
|
||||||
--insecure ${cfg.insecure} \
|
--insecure ${toString cfg.insecure} \
|
||||||
${concatStringsSep " \\\n " cfg.extraFlags}
|
${concatStringsSep " \\\n " cfg.extraFlags}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue