diff options
author | makefu <github@syntax-fehler.de> | 2017-05-25 23:19:36 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-05-25 23:19:36 +0200 |
commit | 0c92dd719a46139523f6e353c354871bd78024a4 (patch) | |
tree | b57b178de784847d9e0748a748412178762d621b /makefu/2configs/logging/central-logging-client.nix | |
parent | 243d33abe350a1a7b41a7f2c6106fd5b92bde4c8 (diff) |
m 2: rename stats and share
Diffstat (limited to 'makefu/2configs/logging/central-logging-client.nix')
-rw-r--r-- | makefu/2configs/logging/central-logging-client.nix | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/makefu/2configs/logging/central-logging-client.nix b/makefu/2configs/logging/central-logging-client.nix deleted file mode 100644 index 04d2de0d0..000000000 --- a/makefu/2configs/logging/central-logging-client.nix +++ /dev/null @@ -1,32 +0,0 @@ -{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: ["*"] - - ''; - }; -} |