class LogFilter
Allows to reduce logs from analyzing (skip them in incident notifications).
<init> |
Allows to reduce logs from analyzing (skip them in incident notifications). LogFilter() |
excludeFiles |
Rules that can be added to file (one each line with wildcards) during tailer runtime (without restarting). val excludeFiles: MutableList<File> |
excludeRules |
Rules defined at build configuration phase. val excludeRules: MutableList<Log.() -> Boolean> |
excludeFile |
fun excludeFile(file: File): Unit |
excludeRule |
fun excludeRule(predicate: Log.() -> Boolean): Unit |
excludeWildcard |
fun excludeWildcard(vararg matchers: String): Unitfun excludeWildcard(matchers: Iterable<String>): Unitfun excludeWildcard(matchers: Sequence<String>): Unitfun excludeWildcard(matcher: String): Unit |
isExcluded |
fun isExcluded(log: Log): Boolean |
FILE_COMMENT_PREFIX |
const val FILE_COMMENT_PREFIX: String |