Analogy-LogViewer / Analogy.LogViewer.Serilog

Serilog Parser for Analogy Log Viewer
MIT License
56 stars 16 forks source link

Sorting does not work on multipages #715

Open Falco20019 opened 4 months ago

Falco20019 commented 4 months ago

I have 380.000 messages. The LogViewer splits them onto 2 pages. When sorting by date, I would assume that they are FIRST sorted and THEN paginated. But page 1 even has data that is AFTER page 2's earliest dates. So it seems that the data is first split into pages and then sorted per page (which doesn't make sense).

LiorBanai commented 4 months ago

for now you can increase page size but this will impact performance. reorder pages on each sort may also impact performance... I'll check both options

Falco20019 commented 4 months ago

Yep, I disabled paging (highly decreasing usability) to circumvent the problem. When you know which files the logs you search are in, only loading those also helped.

LiorBanai commented 4 months ago

I'll check. Maybe resorting all pages won't be heavy task.