# Log Reader Binding This binding reads and analyzes log files. Search patterns are fully configurable, therefore different kind of log files should be possible to monitor by this binding. When certain log events are recognized, openHAB rules can be used to send notification about the event e.g by email for further analysis. ## Supported Things This binding supports one ThingType: `reader`. A reader supports 3 separate channels - One for errors - one for warnings - one custom channel for other purposes. ## Thing Configuration The `reader` Thing has the following configuration parameters: | Parameter | Type | Required | Default if omitted | Description | | ------------------------------| ------- | -------- | -------------------------------- |-----------------------------------------------------------------------------------------| | `filePath` | String | yes | `${OPENHAB_LOGDIR}/openhab.log` | Path to log file. ${OPENHAB_LOGDIR} is automatically replaced by the correct directory. | | `refreshRate` | integer | no | `1000` | Time in milliseconds between individual log reads. | | `errorPatterns` | String | no | `ERROR+` | Search patterns separated by \| character for error events. | | `errorBlacklistingPatterns` | String | no | | Search patterns for blacklisting unwanted error events separated by \| character. | | `warningPatterns` | String | no | `WARN+` | Search patterns separated by \| character for warning events. | | `warningBlacklistingPatterns` | String | no | | Search patterns for blacklisting unwanted warning events separated by \| character. | | `customPatterns` | String | no | | Search patterns separated by \| character for custom events. | | `customBlacklistingPatterns` | String | no | | Search patterns for blacklisting unwanted custom events separated by \| character. | Search patterns follows [Java regular expression syntax](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/regex/Pattern.html). Be aware that search patterns are case sensitive. ## Channels List of channels | Channel Type ID | Item Type | Description | | ------------------ | ------------ | ----------------------------------------------------------- | | `lastErrorEvent` | `String` | Displays content of last [ERROR] event | | `lastWarningEvent` | `String` | Displays content of last [WARN] event | | `lastCustomEvent` | `String` | Displays content of last [CUSTOM] event | | `errorEvents` | `Number` | Displays number of [ERROR] lines matched to search pattern | | `warningEvents` | `Number` | Displays number of [WARN] lines matched to search pattern | | `customEvents` | `Number` | Displays number of [CUSTOM] lines matched to search pattern | | `logRotated` | `DateTime` | Last time when log rotated recognized | | `newErrorEvent` | - | Trigger channel for last [ERROR] line | | `newWarningEvent` | - | Trigger channel for last [WARN] line | | `newCustomEvent` | - | Trigger channel for last [CUSTOM] line | ## Examples ### example.things ```java logreader:reader:openhablog[ refreshRate=1000, errorPatterns="ERROR+", errorBlacklistingPatterns="annoying error which should be ignored|Another annoying error which should be ignored" ] ``` ### example.items ```java DateTime logreaderLogRotated "Last Log Rotation [%1$tY.%1$tm.%1$te %1$tR]"