nixpkgs/nixos/modules/services/databases/opentsdb.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

96 lines
2.1 KiB
Nix
Raw Normal View History

2014-11-20 12:00:53 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.opentsdb;
configFile = pkgs.writeText "opentsdb.conf" cfg.config;
2014-11-20 12:23:37 +00:00
2014-11-20 12:00:53 +00:00
in {
###### interface
options = {
services.opentsdb = {
enable = mkEnableOption "OpenTSDB";
2014-11-20 12:00:53 +00:00
package = mkPackageOption pkgs "opentsdb" { };
2014-11-20 12:00:53 +00:00
user = mkOption {
type = types.str;
2014-11-20 12:00:53 +00:00
default = "opentsdb";
description = ''
2014-11-20 12:00:53 +00:00
User account under which OpenTSDB runs.
'';
};
group = mkOption {
type = types.str;
2014-11-20 12:00:53 +00:00
default = "opentsdb";
description = ''
2014-11-20 12:00:53 +00:00
Group account under which OpenTSDB runs.
'';
};
port = mkOption {
type = types.port;
2014-11-20 12:00:53 +00:00
default = 4242;
description = ''
2014-11-20 12:00:53 +00:00
Which port OpenTSDB listens on.
'';
};
config = mkOption {
type = types.lines;
default = ''
tsd.core.auto_create_metrics = true
tsd.http.request.enable_chunked = true
'';
description = ''
The contents of OpenTSDB's configuration file
'';
2014-11-20 12:00:53 +00:00
};
};
};
###### implementation
config = mkIf config.services.opentsdb.enable {
systemd.services.opentsdb = {
description = "OpenTSDB Server";
wantedBy = [ "multi-user.target" ];
requires = [ "hbase.service" ];
environment.JAVA_HOME = "${pkgs.jre}";
2014-11-20 12:23:37 +00:00
path = [ pkgs.gnuplot ];
2014-11-20 12:00:53 +00:00
preStart =
''
COMPRESSION=NONE HBASE_HOME=${config.services.hbase.package} ${cfg.package}/share/opentsdb/tools/create_table.sh
'';
2014-11-20 12:00:53 +00:00
serviceConfig = {
PermissionsStartOnly = true;
User = cfg.user;
Group = cfg.group;
2014-11-20 12:23:37 +00:00
ExecStart = "${cfg.package}/bin/tsdb tsd --staticroot=${cfg.package}/share/opentsdb/static --cachedir=/tmp/opentsdb --port=${toString cfg.port} --config=${configFile}";
2014-11-20 12:00:53 +00:00
};
};
users.users.opentsdb = {
2014-11-20 12:00:53 +00:00
description = "OpenTSDB Server user";
group = "opentsdb";
uid = config.ids.uids.opentsdb;
};
users.groups.opentsdb.gid = config.ids.gids.opentsdb;
2014-11-20 12:00:53 +00:00
};
}