nixos/thanos: remove `with lib;` notation

https://nix.dev/guides/best-practices#with-scopes

Changed files
+43 -20
nixos
modules
services
monitoring
+43 -20
nixos/modules/services/monitoring/thanos.nix
···
{ config, lib, pkgs, ... }:
-
with lib;
+
let
+
inherit (lib)
+
collect
+
concatLists
+
concatStringsSep
+
flip
+
getAttrFromPath
+
hasPrefix
+
isList
+
length
+
literalExpression
+
literalMD
+
mapAttrsRecursiveCond
+
mapAttrsToList
+
mdDoc
+
mkEnableOption
+
mkIf
+
mkMerge
+
mkOption
+
mkPackageOptionMD
+
optional
+
optionalAttrs
+
optionalString
+
types
+
;
-
let
cfg = config.services.thanos;
nullOpt = type: description: mkOption {
type = types.nullOr type;
default = null;
-
description = lib.mdDoc description;
+
description = mdDoc description;
};
optionToArgs = opt: v : optional (v != null) ''--${opt}="${toString v}"'';
···
option = mkOption {
type = types.bool;
default = false;
-
description = lib.mdDoc description;
+
description = mdDoc description;
};
};
···
option = mkOption {
type = types.listOf types.str;
default = [];
-
description = lib.mdDoc description;
+
description = mdDoc description;
};
};
···
option = mkOption {
type = types.attrsOf types.str;
default = {};
-
description = lib.mdDoc description;
+
description = mdDoc description;
};
};
···
option = mkOption {
type = types.str;
inherit default;
-
description = lib.mdDoc description;
+
description = mdDoc description;
};
};
···
defaultText = literalMD ''
calculated from `config.services.thanos.${cmd}`
'';
-
description = lib.mdDoc ''
+
description = mdDoc ''
Arguments to the `thanos ${cmd}` command.
Defaults to a list of arguments formed by converting the structured
···
if config.services.thanos.<cmd>.tracing.config == null then null
else toString (toYAML "tracing.yaml" config.services.thanos.<cmd>.tracing.config);
'';
-
description = lib.mdDoc ''
+
description = mdDoc ''
Path to YAML file that contains tracing configuration.
See format details: <https://thanos.io/tip/thanos/tracing.md/#configuration>
···
if config.services.thanos.<cmd>.objstore.config == null then null
else toString (toYAML "objstore.yaml" config.services.thanos.<cmd>.objstore.config);
'';
-
description = lib.mdDoc ''
+
description = mdDoc ''
Path to YAML file that contains object store configuration.
See format details: <https://thanos.io/tip/thanos/storage.md/#configuring-access-to-object-storage>
···
type = types.str;
default = "/var/lib/${config.services.prometheus.stateDir}/data";
defaultText = literalExpression ''"/var/lib/''${config.services.prometheus.stateDir}/data"'';
-
description = lib.mdDoc ''
+
description = mdDoc ''
Data directory of TSDB.
'';
};
···
options.services.thanos = {
-
package = lib.mkPackageOptionMD pkgs "thanos" {};
+
package = mkPackageOptionMD pkgs "thanos" {};
sidecar = paramsToOptions params.sidecar // {
enable = mkEnableOption
-
(lib.mdDoc "the Thanos sidecar for Prometheus server");
+
(mdDoc "the Thanos sidecar for Prometheus server");
arguments = mkArgumentsOption "sidecar";
};
store = paramsToOptions params.store // {
enable = mkEnableOption
-
(lib.mdDoc "the Thanos store node giving access to blocks in a bucket provider.");
+
(mdDoc "the Thanos store node giving access to blocks in a bucket provider.");
arguments = mkArgumentsOption "store";
};
query = paramsToOptions params.query // {
enable = mkEnableOption
-
(lib.mdDoc ("the Thanos query node exposing PromQL enabled Query API " +
+
(mdDoc ("the Thanos query node exposing PromQL enabled Query API " +
"with data retrieved from multiple store nodes"));
arguments = mkArgumentsOption "query";
};
query-frontend = paramsToOptions params.query-frontend // {
enable = mkEnableOption
-
(lib.mdDoc ("the Thanos query frontend implements a service deployed in front of queriers to
+
(mdDoc ("the Thanos query frontend implements a service deployed in front of queriers to
improve query parallelization and caching."));
arguments = mkArgumentsOption "query-frontend";
};
rule = paramsToOptions params.rule // {
enable = mkEnableOption
-
(lib.mdDoc ("the Thanos ruler service which evaluates Prometheus rules against" +
+
(mdDoc ("the Thanos ruler service which evaluates Prometheus rules against" +
" given Query nodes, exposing Store API and storing old blocks in bucket"));
arguments = mkArgumentsOption "rule";
};
compact = paramsToOptions params.compact // {
enable = mkEnableOption
-
(lib.mdDoc "the Thanos compactor which continuously compacts blocks in an object store bucket");
+
(mdDoc "the Thanos compactor which continuously compacts blocks in an object store bucket");
arguments = mkArgumentsOption "compact";
};
downsample = paramsToOptions params.downsample // {
enable = mkEnableOption
-
(lib.mdDoc "the Thanos downsampler which continuously downsamples blocks in an object store bucket");
+
(mdDoc "the Thanos downsampler which continuously downsamples blocks in an object store bucket");
arguments = mkArgumentsOption "downsample";
};
receive = paramsToOptions params.receive // {
enable = mkEnableOption
-
(lib.mdDoc ("the Thanos receiver which accept Prometheus remote write API requests and write to local tsdb"));
+
(mdDoc ("the Thanos receiver which accept Prometheus remote write API requests and write to local tsdb"));
arguments = mkArgumentsOption "receive";
};
};