summary refs log tree commit diff
path: root/nixos/modules/services/databases
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2021-07-26 12:34:42 +0800
committerNick Cao <nickcao@nichi.co>2021-08-08 22:39:57 +0800
commit5c2478ba3cc2e66a2373c6ff9946346e2f746f8c (patch)
tree7ccd62f733a80b6e33d149a6594b943b9720b05c /nixos/modules/services/databases
parent48ad5bae56916e64c6b6284633cb77f2738a3f5c (diff)
downloadnixpkgs-5c2478ba3cc2e66a2373c6ff9946346e2f746f8c.tar
nixpkgs-5c2478ba3cc2e66a2373c6ff9946346e2f746f8c.tar.gz
nixpkgs-5c2478ba3cc2e66a2373c6ff9946346e2f746f8c.tar.bz2
nixpkgs-5c2478ba3cc2e66a2373c6ff9946346e2f746f8c.tar.lz
nixpkgs-5c2478ba3cc2e66a2373c6ff9946346e2f746f8c.tar.xz
nixpkgs-5c2478ba3cc2e66a2373c6ff9946346e2f746f8c.tar.zst
nixpkgs-5c2478ba3cc2e66a2373c6ff9946346e2f746f8c.zip
nixos/influxdb2: init
Diffstat (limited to 'nixos/modules/services/databases')
-rw-r--r--nixos/modules/services/databases/influxdb2.nix53
1 files changed, 53 insertions, 0 deletions
diff --git a/nixos/modules/services/databases/influxdb2.nix b/nixos/modules/services/databases/influxdb2.nix
new file mode 100644
index 00000000000..df7bac4261b
--- /dev/null
+++ b/nixos/modules/services/databases/influxdb2.nix
@@ -0,0 +1,53 @@
+{ config, lib, pkgs, ... }:
+with lib;
+let
+  format = pkgs.formats.json { };
+  cfg = config.services.influxdb2;
+  configFile = format.generate "config.json" cfg.settings;
+in
+{
+  options = {
+    services.influxdb2 = {
+      enable = mkEnableOption "the influxdb2 server";
+      package = mkOption {
+        default = pkgs.influxdb2;
+        defaultText = "pkgs.influxdb2";
+        description = "influxdb2 derivation to use.";
+        type = types.package;
+      };
+      settings = mkOption {
+        default = { };
+        description = "configuration options for influxdb2, see https://docs.influxdata.com/influxdb/v2.0/reference/config-options for details.";
+        type = format.type;
+      };
+    };
+  };
+
+  config = mkIf cfg.enable {
+    assertions = [{
+      assertion = !(builtins.hasAttr "bolt-path" cfg.settings) && !(builtins.hasAttr "engine-path" cfg.settings);
+      message = "services.influxdb2.config: bolt-path and engine-path should not be set as they are managed by systemd";
+    }];
+    systemd.services.influxdb2 = {
+      description = "InfluxDB is an open-source, distributed, time series database";
+      documentation = [ "https://docs.influxdata.com/influxdb/" ];
+      wantedBy = [ "multi-user.target" ];
+      after = [ "network.target" ];
+      environment = {
+        INFLUXD_CONFIG_PATH = "${configFile}";
+      };
+      serviceConfig = {
+        ExecStart = "${cfg.package}/bin/influxd --bolt-path \${STATE_DIRECTORY}/influxd.bolt --engine-path \${STATE_DIRECTORY}/engine";
+        StateDirectory = "influxdb2";
+        DynamicUser = true;
+        CapabilityBoundingSet = "";
+        SystemCallFilter = "@system-service";
+        LimitNOFILE = 65536;
+        KillMode = "control-group";
+        Restart = "on-failure";
+      };
+    };
+  };
+
+  meta.maintainers = with lib.maintainers; [ nickcao ];
+}