mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-16 11:28:36 +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
|
||
|
}
|