IgnisLogReader.read_values¶
- IgnisLogReader.read_values(log_files=None, keys=None, from_datetime=None, from_datetime_format=None, to_datetime=None, to_datetime_format=None)[source]¶
Retrieve log lines using key and date/time filtering criteria
- Params:
log_files: List of log files to read from keys: Retrieve only key value pairs of corresponding to keys A row with no matching keys will not be retrieved. If not specified, all keys are retrieved (optional)
from_datetime(None): Retrieve only rows newer than the given date and time
from_datetime_format(None): datetime format string. If not specified will assume “%Y/%m/%d %H:%M:%S”
to_datetime(None): Retrieve only rows older than the given date and time
to_datetime_format(None): datetime format string. If not specified will assume “%Y/%m/%d %H:%M:%S”
- Returns
A list containing the retrieved rows of key pair values
- Return type
list