Group streams by their `source` field (e.g. "file", "k8s", "otlp", "stdin").
| 10 | |
| 11 | /** Group streams by their `source` field (e.g. "file", "k8s", "otlp", "stdin"). */ |
| 12 | interface SourceGroup { |
| 13 | source: string |
| 14 | streams: StreamInfo[] |
| 15 | totalLogs: number |
| 16 | activeCount: number |
| 17 | } |
| 18 | |
| 19 | /** A dimension group like "Host", "Service", "Namespace", etc. */ |
| 20 | interface DimensionGroup { |
nothing calls this directly
no outgoing calls
no test coverage detected