()
| 53 | } |
| 54 | |
| 55 | func newNode() *Node { |
| 56 | return &Node{ |
| 57 | keyToChildNode: make(map[string]*Node), |
| 58 | clusterIDs: make([]int, 0), |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | func (d *Drain) Clusters() []*LogCluster { |
| 63 | return slices.Collect(d.idToCluster.Values()) |
no outgoing calls
no test coverage detected