Add pipeline_status endpoint to log filter

This commit is contained in:
yangdx
2025-03-26 23:24:26 +08:00
parent 0a2c2cb98b
commit ebe7620b5f

View File

@@ -75,7 +75,7 @@ class LightragPathFilter(logging.Filter):
def __init__(self):
super().__init__()
# Define paths to be filtered
self.filtered_paths = ["/documents", "/health", "/webui/"]
self.filtered_paths = ["/documents", "/health", "/webui/", "/documents/pipeline_status"]
# self.filtered_paths = ["/health", "/webui/"]
def filter(self, record):