rsyslog / loganalyzer

Adiscon LogAnalyzer, a web frontend to log data from the same folks the created rsyslog
Other
75 stars 39 forks source link

sort event #72

Open cez40 opened 3 years ago

cez40 commented 3 years ago

In classes/logstreamconfigdb.class.php and and other similar files the default sort is based on the event id

  Ligne 55 : public $SortColumn = SYSLOG_UID;       

Why sort by SYSLOG_UID ?

if an event is buffered and it arrives later, the event will not be displayed correctly.

sorting should be done according to the timestamp of the event (SYSLOG_DATE) !