nixos/prometheus: fix indentation and unnecessary parenthesis

This commit is contained in:
Bas van Dijk 2019-04-08 19:14:42 +02:00
parent 394970047e
commit eed84d1f8d

View File

@ -58,8 +58,8 @@ let
"-alertmanager.notification-queue-capacity=${toString cfg.alertmanagerNotificationQueueCapacity}" "-alertmanager.notification-queue-capacity=${toString cfg.alertmanagerNotificationQueueCapacity}"
"-alertmanager.timeout=${toString cfg.alertmanagerTimeout}s" "-alertmanager.timeout=${toString cfg.alertmanagerTimeout}s"
] ++ ] ++
(optional (cfg.alertmanagerURL != []) "-alertmanager.url=${concatStringsSep "," cfg.alertmanagerURL}") ++ optional (cfg.alertmanagerURL != []) "-alertmanager.url=${concatStringsSep "," cfg.alertmanagerURL}" ++
(optional (cfg.webExternalUrl != null) "-web.external-url=${cfg.webExternalUrl}"); optional (cfg.webExternalUrl != null) "-web.external-url=${cfg.webExternalUrl}";
# This becomes the main config file for Prometheus 2 # This becomes the main config file for Prometheus 2
promConfig2 = { promConfig2 = {
@ -92,7 +92,7 @@ let
"--alertmanager.notification-queue-capacity=${toString cfg2.alertmanagerNotificationQueueCapacity}" "--alertmanager.notification-queue-capacity=${toString cfg2.alertmanagerNotificationQueueCapacity}"
"--alertmanager.timeout=${toString cfg2.alertmanagerTimeout}s" "--alertmanager.timeout=${toString cfg2.alertmanagerTimeout}s"
] ++ ] ++
(optional (cfg2.webExternalUrl != null) "--web.external-url=${cfg2.webExternalUrl}"); optional (cfg2.webExternalUrl != null) "--web.external-url=${cfg2.webExternalUrl}";
promTypes.globalConfig = types.submodule { promTypes.globalConfig = types.submodule {
options = { options = {