remote upgrade metrics for #433

This commit is contained in:
Cody Lee
2022-12-21 20:14:22 -06:00
parent e4c296c63d
commit 0329066fe5
12 changed files with 26 additions and 0 deletions

View File

@@ -47,3 +47,10 @@ func cleanTags(tags map[string]string) map[string]string {
return tags
}
func boolToFloat64(v bool) float64 {
if v {
return 1.0
}
return 0.0
}