From 930adcfed880df1bc84dc95d21db6ce71cf4a4fb Mon Sep 17 00:00:00 2001 From: Astro Date: Mon, 16 May 2022 02:10:41 +0200 Subject: [PATCH] grafana: fix LimitNOFILE --- hosts/containers/grafana/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/containers/grafana/default.nix b/hosts/containers/grafana/default.nix index 06aa57c9..4f822cc2 100644 --- a/hosts/containers/grafana/default.nix +++ b/hosts/containers/grafana/default.nix @@ -72,7 +72,7 @@ in { ) {} restartServices // { # work around our slow storage that can't keep up - influxdb.serviceConfig.LimitNOFILES = 102400; + influxdb.serviceConfig.LimitNOFILE = "1048576:1048576"; influxdb.serviceConfig.TimeoutStartSec = "infinity"; };