bi_list_log
Query Blue Iris system logs with filters for time, camera, level, or text to diagnose errors and track system events.
Instructions
Recent Blue Iris system log entries with optional filters.
Pick the right tool: for reconstructing 'what fired when' on a camera, start with bi_list_alerts — per-alert timestamps with no dedup. This log is best for system events (profile changes, disk ops, logins, errors) and aggregate activity counts.
Filters:
since — UTC epoch sec, ISO-8601, or '-15m'/'-2h'/'-1d' (server-side via aftertime)
camera — exact match on entry.obj (clone cameras log under their own short names)
obj — exact match on entry.obj (escape hatch: 'App', 'MQTT', 'DB', 'AI_Input', drive letters, usernames)
levels — list of accepted level ints; empirical: 0=info, 1=warn, 2=error, 3=trigger/alert aggregate (deduped — use bi_list_alerts for per-event), 4=status change, 10=user
match — case-insensitive substring on entry.msg
regex — Python regex on entry.msg (IGNORECASE); xor with match
limit — applied AFTER filtering (default 100)
Returns {entries, scanned, matched, warning?}. raw=true bypasses the envelope and shaper. Admin required.
BI aggregates repeated messages: count is cumulative since BI startup (or last log clear), and date is when BI last summed the entry, not necessarily the most recent occurrence. To tell whether a message is actively firing now, re-query with a tight since=-5m window.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| obj | No | Exact match on entry.obj. Use for non-camera subsystems: 'App', 'MQTT', 'DB', 'AI_Input', 'Alerts', 'Log', drive letters ('A:', 'D:'), or usernames. | |
| raw | No | If true, return the raw Blue Iris JSON instead of the shaped view. | |
| limit | No | Max entries (default 100). | |
| match | No | Case-insensitive substring match on entry.msg. | |
| regex | No | Python regex on entry.msg (IGNORECASE). XOR with match. | |
| since | No | Earliest entry to return. Int (UTC sec), ISO-8601, or relative shorthand like '-15m', '-2h', '-1d'. | |
| camera | No | Exact match on entry.obj. Clone cameras (e.g. SecCam_11AI) have their own short names and log separately. | |
| levels | No | Keep entries whose level is in this list. Empirical: 0=info, 1=warn, 2=error, 3=trigger/alert aggregate (deduped — use bi_list_alerts for per-event), 4=status, 10=user. |