summaryrefslogtreecommitdiffstats
path: root/src/scripts/partition-by-boot.lnav
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/partition-by-boot.lnav')
-rw-r--r--src/scripts/partition-by-boot.lnav12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/scripts/partition-by-boot.lnav b/src/scripts/partition-by-boot.lnav
new file mode 100644
index 0000000..e052774
--- /dev/null
+++ b/src/scripts/partition-by-boot.lnav
@@ -0,0 +1,12 @@
+#
+# DO NOT EDIT THIS FILE, IT WILL BE OVERWRITTEN!
+#
+# @synopsis: partition-by-boot
+# @description: Partition the log view based on boot messages from the Linux kernel.
+#
+
+;UPDATE syslog_log
+ SET log_part = 'Boot: ' || log_time
+ WHERE log_text LIKE '%kernel:%Linux version%';
+
+;SELECT 'Created ' || changes() || ' partitions(s)';