(scope traceql.AttributeScope, attrNames bool, existsTagName func(key tagNameKey) bool, existsTagValue func(val traceql.Static) bool)
| 1112 | } |
| 1113 | |
| 1114 | func newDistinctAttrCollector(scope traceql.AttributeScope, attrNames bool, existsTagName func(key tagNameKey) bool, existsTagValue func(val traceql.Static) bool) *distinctAttrCollector { |
| 1115 | return &distinctAttrCollector{ |
| 1116 | scope: scope, |
| 1117 | attrNames: attrNames, |
| 1118 | existsTagName: existsTagName, |
| 1119 | existsTagValue: existsTagValue, |
| 1120 | } |
| 1121 | } |
| 1122 | |
| 1123 | func (d *distinctAttrCollector) String() string { |
| 1124 | return "distinctAttrCollector" |
no outgoing calls
no test coverage detected