Files
zitadel/apps/api/internal/serviceping/config.go
2025-08-05 15:20:32 -07:00

19 lines
272 B
Go

package serviceping
type Config struct {
Enabled bool
Endpoint string
Interval string
MaxAttempts uint8
Telemetry TelemetryConfig
}
type TelemetryConfig struct {
ResourceCount ResourceCount
}
type ResourceCount struct {
Enabled bool
BulkSize int
}