2025-01-27 12:53:40 +03:00
|
|
|
package push_common
|
|
|
|
|
|
|
|
import "strconv"
|
|
|
|
|
|
|
|
func uint32ToString(n uint32) string {
|
|
|
|
return strconv.FormatUint(uint64(n), 10)
|
|
|
|
}
|
2025-01-27 13:41:08 +03:00
|
|
|
|
|
|
|
type UptraceInfo struct {
|
|
|
|
UptraceOn bool `json:"uptraceOn"`
|
|
|
|
UptraceDSN string `json:"uptraceDSN"`
|
|
|
|
ServiceName string `json:"serviceName"`
|
|
|
|
ServiceVersion string `json:"serviceVersion"`
|
|
|
|
DeploymentEnvironment string `json:"deploymentEnvironment"`
|
|
|
|
}
|