MCPcopy Create free account
hub / github.com/eth-easl/dirigent / FunctionStatistics

Struct FunctionStatistics

internal/data_plane/function_metadata/statistics.go:32–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30)
31
32type FunctionStatistics struct {
33 SuccessfulInvocations int64 `json:"SuccessfulInvocations"`
34 Inflight int64 `json:"Inflight"`
35 QueueDepth int64 `json:"QueueDepth"`
36}
37
38func (fs *FunctionStatistics) GetSuccessfulInvocations() int64 {
39 return atomic.LoadInt64(&fs.SuccessfulInvocations)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected