echothrust / echofish

Central syslog manager with whitelisting and ability to generate events from syslog entries

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Filtering Logs in the UI should be cumulative

ardichoke opened this issue · comments

When viewing the Logs or the Archive, you can click on a field to filter by the value of that field. However, if you want to filter further by another field, you cannot simply click on it, as it will replace the previous filter instead of adding to it. When doing this type of filtering, it makes more sense to have them be cumulative, with each click of a field adding a filter condition instead of replacing the current filter.

The idea for it was to be able to work in similar way as you describe.

However, we did gave it a go at the early stages of development, but soon the code became a bit too complicated with various silly checks and url generations for each "link". We felt that this was a feature better suited to be implemented through javascript. So we opted for the less complicated solution.

If you have an idea of how we can approach this i'd be more than happy to give it another go.

@ardichoke merge #61 by @proditis addresses cumulative filters when clicking field links. To add a filter without resetting (previously applied) filtering, a user can Shift+click on the links. Simply clicking on the links (without Shift pressed) will still reset any (previously applied) filtering, in favour of the new filter.

Shift+click at least in Chrome will open a link in a new window so I can't really say if it's working or not.

@Artanicus What is your browser environment/OS? Our shift+click tests on Chrome and Firefox, both on Linux and Windows, have worked as expected.

If it does not work for you, fire-up your browser's developer console (F12) and see if it reports some javascript error ('Console' tab).

Works fine for me as well... This may be a silly question, but have you pulled in the latest commits from the master branch @Artanicus? You're not on a tagged release?

Not sure what was wrong, updated to master again and now it's working fine. Seems to be working great even!