nixpkgs/nixos/tests/logstash.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

# This test runs logstash and checks if messages flows and
# elasticsearch is started.
2013-11-01 13:09:17 +00:00
import ./make-test.nix ({ pkgs, ...} : {
2014-06-28 14:04:49 +00:00
name = "logstash";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ eelco chaoflow offline ];
};
2013-11-01 13:09:17 +00:00
nodes = {
one =
{ config, pkgs, ... }:
{
services = {
logstash = {
enable = true;
inputConfig = ''
exec { command => "echo flowers" interval => 1 type => "test" }
exec { command => "echo dragons" interval => 1 type => "test" }
'';
filterConfig = ''
2015-09-06 13:19:52 +00:00
if [message] =~ /dragons/ {
drop {}
2013-11-01 13:09:17 +00:00
}
'';
outputConfig = ''
stdout { codec => rubydebug }
elasticsearch { embedded => true }
'';
};
};
};
};
2013-11-01 13:09:17 +00:00
testScript = ''
startAll;
2013-11-01 13:09:17 +00:00
$one->waitForUnit("logstash.service");
$one->waitUntilSucceeds("journalctl -n 20 _SYSTEMD_UNIT=logstash.service | grep flowers");
$one->fail("journalctl -n 20 _SYSTEMD_UNIT=logstash.service | grep dragons");
$one->waitUntilSucceeds("curl -s http://127.0.0.1:9200/_status?pretty=true | grep logstash");
'';
})