···
{ config, lib, pkgs, ... }:
cfg = config.services.thanos;
nullOpt = type: description: mkOption {
type = types.nullOr type;
-
description = lib.mdDoc description;
optionToArgs = opt: v : optional (v != null) ''--${opt}="${toString v}"'';
···
-
description = lib.mdDoc description;
···
type = types.listOf types.str;
-
description = lib.mdDoc description;
···
type = types.attrsOf types.str;
-
description = lib.mdDoc description;
···
-
description = lib.mdDoc description;
···
defaultText = literalMD ''
calculated from `config.services.thanos.${cmd}`
-
description = lib.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 ''
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 ''
Path to YAML file that contains object store configuration.
See format details: <https://thanos.io/tip/thanos/storage.md/#configuring-access-to-object-storage>
···
default = "/var/lib/${config.services.prometheus.stateDir}/data";
defaultText = literalExpression ''"/var/lib/''${config.services.prometheus.stateDir}/data"'';
-
description = lib.mdDoc ''
···
options.services.thanos = {
-
package = lib.mkPackageOptionMD pkgs "thanos" {};
sidecar = paramsToOptions params.sidecar // {
-
(lib.mdDoc "the Thanos sidecar for Prometheus server");
arguments = mkArgumentsOption "sidecar";
store = paramsToOptions params.store // {
-
(lib.mdDoc "the Thanos store node giving access to blocks in a bucket provider.");
arguments = mkArgumentsOption "store";
query = paramsToOptions params.query // {
-
(lib.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 // {
-
(lib.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 // {
-
(lib.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 // {
-
(lib.mdDoc "the Thanos compactor which continuously compacts blocks in an object store bucket");
arguments = mkArgumentsOption "compact";
downsample = paramsToOptions params.downsample // {
-
(lib.mdDoc "the Thanos downsampler which continuously downsamples blocks in an object store bucket");
arguments = mkArgumentsOption "downsample";
receive = paramsToOptions params.receive // {
-
(lib.mdDoc ("the Thanos receiver which accept Prometheus remote write API requests and write to local tsdb"));
arguments = mkArgumentsOption "receive";