(self, loki_url: str = "http://loki:3100")
| 11 | |
| 12 | class LokiService: |
| 13 | def __init__(self, loki_url: str = "http://loki:3100"): |
| 14 | self.loki_url = loki_url |
| 15 | self.client = httpx.AsyncClient() |
| 16 | |
| 17 | def _format_loki_log( |
| 18 | self, stream: dict, ts: str, line: str, **extra_labels |
nothing calls this directly
no outgoing calls
no test coverage detected