mirror of
https://github.com/tstack/lnav
synced 2024-11-03 23:15:38 +00:00
6 lines
198 B
SQL
6 lines
198 B
SQL
|
|
CREATE VIEW web_status AS
|
|
SELECT group_concat(cs_uri_stem), sc_status FROM access_log group by sc_status;
|
|
|
|
INSERT into lnav_view_filters VALUES ("log", 5, 0, "in", "regex", "credential status");
|