mirror of
https://github.com/napnap75/multiarch-docker-images.git
synced 2026-09-25 20:31:52 +02:00
- Introduced alerters package with base Alerter class and implementations for LogAlerter and GotifyAlerter. - Created fetchers package with abstract LogFetcher class and implementations for FileLogFetcher, LokiLogFetcher, and ParseableLogFetcher. - Added filters package with base Filter class and implementations for RegexpFilter and GeolocationFilter. - Implemented rules package with base AlertRule class and SimpleAlertRule for alerting logic. - Enhanced configuration handling with utilities for loading and validating JSON configuration. - Updated logging setup for better logging management. - Modified main application logic to utilize the new modular structure, improving maintainability and readability. - Updated config.json and config.schema.json to reflect changes in alerting and fetching configurations. - Added python-dateutil to requirements for date parsing functionality.
30 lines
893 B
Python
30 lines
893 B
Python
"""Regexp filter implementation."""
|
|
|
|
import logging
|
|
import re
|
|
from typing import Dict, Any, Optional
|
|
|
|
from .base import Filter
|
|
|
|
logger = logging.getLogger("log-alert")
|
|
|
|
|
|
class RegexpFilter(Filter):
|
|
"""Concrete implementation for Regexp filter."""
|
|
|
|
def __init__(self, config: Dict[str, Any]):
|
|
self.match = config["match"]
|
|
|
|
def filter(self, log: Dict[str, Any]) -> Optional[Dict[str, Any]]:
|
|
match = re.search(self.match, log["log"])
|
|
if match:
|
|
# Only call groupdict() when there is a match
|
|
groups = match.groupdict()
|
|
logger.debug(f"Regex match for '{self.match}' in log: {groups}")
|
|
if groups:
|
|
log.setdefault("labels", {}).update(groups)
|
|
return log
|
|
# no match
|
|
logger.debug(f"Regex did not match for pattern '{self.match}' in log: {log.get('log')}")
|
|
return None
|