module Fluent::ExceptionDetectorConfig
Configuration of the state machine that detects exceptions.
Constants
- ALL_RULES
- DEFAULT_FIELDS
- GO_RULES
- JAVA_RULES
- KAFKA_RULES
- PHP_RULES
- PYTHON_RULES
- RUBY_RULES
- RULES_BY_LANG
Public Class Methods
rule(from_state, pattern, to_state)
click to toggle source
# File lib/fluent/plugin/exception_detector.rb, line 44 def self.rule(from_state, pattern, to_state) Struct::Rule.new(from_state, pattern, to_state) end
supported()
click to toggle source
# File lib/fluent/plugin/exception_detector.rb, line 48 def self.supported RULES_BY_LANG.keys end