mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
Merge pull request #242942 from raboof/prometheus-nextcloud-auth-token
prometheus-exporter-nextcloud: support for auth tokens
This commit is contained in:
commit
4dcaa04151
1 changed files with 15 additions and 4 deletions
|
@ -33,6 +33,15 @@ in
|
||||||
Make sure that this file is readable by the exporter user.
|
Make sure that this file is readable by the exporter user.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
tokenFile = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
example = "/path/to/token-file";
|
||||||
|
default = "";
|
||||||
|
description = lib.mdDoc ''
|
||||||
|
File containing the token for connecting to Nextcloud.
|
||||||
|
Make sure that this file is readable by the exporter user.
|
||||||
|
'';
|
||||||
|
};
|
||||||
timeout = mkOption {
|
timeout = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "5s";
|
default = "5s";
|
||||||
|
@ -47,12 +56,14 @@ in
|
||||||
ExecStart = ''
|
ExecStart = ''
|
||||||
${pkgs.prometheus-nextcloud-exporter}/bin/nextcloud-exporter \
|
${pkgs.prometheus-nextcloud-exporter}/bin/nextcloud-exporter \
|
||||||
--addr ${cfg.listenAddress}:${toString cfg.port} \
|
--addr ${cfg.listenAddress}:${toString cfg.port} \
|
||||||
--username ${cfg.username} \
|
|
||||||
--timeout ${cfg.timeout} \
|
--timeout ${cfg.timeout} \
|
||||||
--server ${cfg.url} \
|
--server ${cfg.url} \
|
||||||
--password ${escapeShellArg "@${cfg.passwordFile}"} \
|
${if cfg.tokenFile == "" then ''
|
||||||
${concatStringsSep " \\\n " cfg.extraFlags}
|
--username ${cfg.username} \
|
||||||
'';
|
--password ${escapeShellArg "@${cfg.passwordFile}"} \
|
||||||
|
'' else ''
|
||||||
|
--auth-token ${escapeShellArg "@${cfg.tokenFile}"} \
|
||||||
|
''} ${concatStringsSep " \\\n " cfg.extraFlags}'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue