mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 23:07:32 +00:00
19 lines
272 B
Go
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
|
|
}
|