You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've attempted to integrated 411 with ES6.3, but am when I try to test a sample alert, i get no results, and see my Elasticsearch Container return this:
I replaced include with includes where it appeared in phplib/Filter/Regex.php and phplib/Filter/Expression.php, which seems to let ES accept the request, but it still returns no results.
Incidentally, in Kibana I saw that 411 had created an index called 411_alerts_1, so 411 is communicating with ES somewhat.
Also, when looking at config.php, I couldn't figure out why each ES index has a host key and and index_hosts key, so I deleted the later, which caused 411 to not recognize that ES was running; that could be a different issue though.
I made the most minor of changes to your Dockerfile, you can see my setup here:
I actually have 411 speaking to Elasticsearch 6.3.2 now; I don't think I needed to make any real changes to the config files, I just had a typo in my index;
The search feature works (can query both of the ES indexes I have), it creates its own alerts index, and records alerts in that new index;
I couldn't get your Dockerfile to work, so I made a new setup with a separate container running cron.php and worker.php every 60 seconds; it uses 600MB extra disk space that way, but is working reliably.
And I switched the DB over to MySQL.
My remaining issues are in the Health dashboard, it always says that ping is failing, and that graphite is failing (not using Graphite); I'm haven't even looked into those two yet, but everything went so easily I haven't even looked in the DB yet (which is where I'm assuming at least some data pertaining to those two sources can be found).
I'm not sure if you'll want my new Dockerfiles, since I have three containers now, and dumped SQLite, but I'd be happy to get everything in sync on here if you do.
I've attempted to integrated 411 with ES6.3, but am when I try to test a sample alert, i get no results, and see my Elasticsearch Container return this:
elasticsearch | [2018-08-05T22:44:24,606][WARN ][o.e.d.c.ParseField ] Deprecated field [include] used, expected [includes] instead
I replaced
include
withincludes
where it appeared inphplib/Filter/Regex.php
andphplib/Filter/Expression.php
, which seems to let ES accept the request, but it still returns no results.Incidentally, in Kibana I saw that 411 had created an index called
411_alerts_1
, so 411 is communicating with ES somewhat.Also, when looking at
config.php
, I couldn't figure out why each ES index has ahost
key and andindex_hosts
key, so I deleted the later, which caused 411 to not recognize that ES was running; that could be a different issue though.I made the most minor of changes to your Dockerfile, you can see my setup here:
https://github.com/lucasjkr/docker-elk/tree/master/fouroneone
The text was updated successfully, but these errors were encountered: