mirror of
https://github.com/asticode/go-astiencoder.git
synced 2025-12-24 13:57:53 +08:00
22 lines
732 B
Go
22 lines
732 B
Go
package astilibav
|
|
|
|
// Event names
|
|
const (
|
|
EventNameLog = "astilibav.log"
|
|
// First frame of new node has been dispatched by the rate enforcer
|
|
EventNameRateEnforcerSwitchedOut = "astilibav.rate.enforcer.switched.out"
|
|
)
|
|
|
|
// Stat names
|
|
const (
|
|
StatNameAllocatedFrames = "astilibav.allocated.frames"
|
|
StatNameAllocatedPackets = "astilibav.allocated.packets"
|
|
StatNameAverageDelay = "astilibav.average.delay"
|
|
StatNameFilledRate = "astilibav.filled.rate"
|
|
StatNameIncomingRate = "astilibav.incoming.rate"
|
|
StatNameOutgoingRate = "astilibav.outgoing.rate"
|
|
StatNameProcessedRate = "astilibav.processed.rate"
|
|
StatNameReadRate = "astilibav.read.rate"
|
|
StatNameWrittenRate = "astilibav.written.rate"
|
|
)
|