MCPcopy Index your code
hub / github.com/netdata/netdata / parseProgressEvent

Function parseProgressEvent

src/go/plugin/framework/functions/parser.go:179–186  ·  view source on GitHub ↗
(line string)

Source from the content-addressed store, hash-verified

177}
178
179func parseProgressEvent(line string) inputEvent {
180 parts := strings.Fields(line)
181 event := inputEvent{kind: inputEventProgress}
182 if len(parts) >= 2 {
183 event.uid = parts[1]
184 }
185 return event
186}
187
188func (p *inputParser) parseFunction(line string) (*Function, error) {
189 r := csv.NewReader(strings.NewReader(line))

Callers 2

parseEventMethod · 0.85
handlePayloadLineMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…