(scope traceql.AttributeScope, attrNames bool, existsTagName func(key tagNameKey) bool, existsTagValue func(val traceql.Static) bool)
| 1157 | } |
| 1158 | |
| 1159 | func newDistinctAttrCollector(scope traceql.AttributeScope, attrNames bool, existsTagName func(key tagNameKey) bool, existsTagValue func(val traceql.Static) bool) *distinctAttrCollector { |
| 1160 | return &distinctAttrCollector{ |
| 1161 | scope: scope, |
| 1162 | attrNames: attrNames, |
| 1163 | existsTagName: existsTagName, |
| 1164 | existsTagValue: existsTagValue, |
| 1165 | } |
| 1166 | } |
| 1167 | |
| 1168 | func (d *distinctAttrCollector) String() string { |
| 1169 | return "distinctAttrCollector" |
no outgoing calls
no test coverage detected