File size: 355 Bytes
d6f631f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | package streaming
import (
"time"
"github.com/openmeterio/openmeter/openmeter/meter"
)
const (
// MinimumWindowSizeDuration is the minimum window size the aggregation can represent.
MinimumWindowSizeDuration = time.Second
// MinimumWindowSize is the minimum window size the aggregation can represent.
MinimumWindowSize = meter.WindowSizeSecond
)
|