You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnav/src/formats/fsck_hfs_log.json

23 lines
695 B
JSON

{
"$schema": "https://lnav.org/schemas/format-v1.schema.json",
"fsck_hfs_log": {
"title": "Fsck_hfs Log",
"description": "Log for the fsck_hfs tool on Mac OS X.",
"regex": {
"std": {
"pattern": "^(?<device>[^:]+): fsck_hfs (?:run|started) at (?<timestamp>\\S{3,8} \\S{3,8}\\s+\\d{1,2} \\d{2}:\\d{2}:\\d{2} \\d{4})(?<body>.*)"
}
},
"value": {
"device": {
"kind": "string",
"identifier": true
}
},
"sample": [
{
"line": "/dev/rdisk0s2: fsck_hfs run at Wed Jul 25 23:01:18 2012"
}
]
}
}