diff options
author | makefu <github@syntax-fehler.de> | 2017-02-05 22:34:16 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-02-05 22:34:16 +0100 |
commit | bd90a14732f418f5d77ad2e925fe728940268f3e (patch) | |
tree | d0fe85ec584dd9ee16d8894efadea9a3b375cb7b /makefu/2configs/logging/central-logging-client.nix | |
parent | d242cd51498258a66ff910d7c80b3a1fa722f554 (diff) |
m central-logging: init
Diffstat (limited to 'makefu/2configs/logging/central-logging-client.nix')
-rw-r--r-- | makefu/2configs/logging/central-logging-client.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/makefu/2configs/logging/central-logging-client.nix b/makefu/2configs/logging/central-logging-client.nix new file mode 100644 index 000000000..04d2de0d0 --- /dev/null +++ b/makefu/2configs/logging/central-logging-client.nix @@ -0,0 +1,32 @@ +{pkgs, buil, config, ...}: +let + log-server = config.makefu.log-server; + log-port = 9200; +in { + services.journalbeat = { + enable = true; + # TODO: filter for certain journal fields, not all + extraConfig = '' + journalbeat: + name: logs-${config.krebs.build.host.name} + seek_position: cursor + cursor_seek_fallback: tail + write_cursor_state: true + cursor_flush_period: 5s + clean_field_names: true + convert_to_numbers: false + move_metadata_to_field: journal + default_type: journal + output.elasticsearch: + enabled: true + hosts: ["${log-server}:${builtins.toString log-port}"] + template.enabled: false + #output.console: + # enabled: true + logging.level: info + logging.to_syslog: true + logging.selectors: ["*"] + + ''; + }; +} |