2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
95 lines
2.7 KiB
Nix
95 lines
2.7 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.elasticsearch-curator;
|
|
curatorConfig = pkgs.writeTextFile {
|
|
name = "config.yaml";
|
|
text = ''
|
|
---
|
|
# Remember, leave a key empty if there is no value. None will be a string,
|
|
# not a Python "NoneType"
|
|
client:
|
|
hosts: ${builtins.toJSON cfg.hosts}
|
|
port: ${toString cfg.port}
|
|
url_prefix:
|
|
use_ssl: False
|
|
certificate:
|
|
client_cert:
|
|
client_key:
|
|
ssl_no_validate: False
|
|
http_auth:
|
|
timeout: 30
|
|
master_only: False
|
|
logging:
|
|
loglevel: INFO
|
|
logfile:
|
|
logformat: default
|
|
blacklist: ['elasticsearch', 'urllib3']
|
|
'';
|
|
};
|
|
curatorAction = pkgs.writeTextFile {
|
|
name = "action.yaml";
|
|
text = cfg.actionYAML;
|
|
};
|
|
in {
|
|
|
|
options.services.elasticsearch-curator = {
|
|
|
|
enable = mkEnableOption "elasticsearch curator";
|
|
interval = mkOption {
|
|
description = lib.mdDoc "The frequency to run curator, a systemd.time such as 'hourly'";
|
|
default = "hourly";
|
|
type = types.str;
|
|
};
|
|
hosts = mkOption {
|
|
description = lib.mdDoc "a list of elasticsearch hosts to connect to";
|
|
type = types.listOf types.str;
|
|
default = ["localhost"];
|
|
};
|
|
port = mkOption {
|
|
description = lib.mdDoc "the port that elasticsearch is listening on";
|
|
type = types.int;
|
|
default = 9200;
|
|
};
|
|
actionYAML = mkOption {
|
|
description = lib.mdDoc "curator action.yaml file contents, alternatively use curator-cli which takes a simple action command";
|
|
type = types.lines;
|
|
example = ''
|
|
---
|
|
actions:
|
|
1:
|
|
action: delete_indices
|
|
description: >-
|
|
Delete indices older than 45 days (based on index name), for logstash-
|
|
prefixed indices. Ignore the error if the filter does not result in an
|
|
actionable list of indices (ignore_empty_list) and exit cleanly.
|
|
options:
|
|
ignore_empty_list: True
|
|
disable_action: False
|
|
filters:
|
|
- filtertype: pattern
|
|
kind: prefix
|
|
value: logstash-
|
|
- filtertype: age
|
|
source: name
|
|
direction: older
|
|
timestring: '%Y.%m.%d'
|
|
unit: days
|
|
unit_count: 45
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.elasticsearch-curator = {
|
|
startAt = cfg.interval;
|
|
serviceConfig = {
|
|
ExecStart =
|
|
"${pkgs.elasticsearch-curator}/bin/curator" +
|
|
" --config ${curatorConfig} ${curatorAction}";
|
|
};
|
|
};
|
|
};
|
|
}
|