mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-22 09:56:57 +00:00
14 lines
162 B
Go
14 lines
162 B
Go
package alertmanagerbatcher
|
|
|
|
type Config struct {
|
|
Capacity int
|
|
Size int
|
|
}
|
|
|
|
func NewConfig() Config {
|
|
return Config{
|
|
Capacity: 1000,
|
|
Size: 64,
|
|
}
|
|
}
|