MCPcopy
hub / github.com/grafana/tempo / newPipeline

Function newPipeline

pkg/traceql/ast.go:174–178  ·  view source on GitHub ↗
(i ...PipelineElement)

Source from the content-addressed store, hash-verified

172func (Pipeline) __spansetExpression() {}
173
174func newPipeline(i ...PipelineElement) Pipeline {
175 return Pipeline{
176 Elements: i,
177 }
178}
179
180func (p Pipeline) addItem(i PipelineElement) Pipeline {
181 p.Elements = append(p.Elements, i)

Calls

no outgoing calls