Initial commit for ADCS collector

Signed-off-by: Austin D. Krauza <krauza.austin@gmail.com>
This commit is contained in:
Austin D. Krauza
2022-01-02 01:24:11 -05:00
parent f84f54afda
commit a89b53779d
5 changed files with 311 additions and 4 deletions

View File

@@ -148,3 +148,7 @@ func expandEnabledChildCollectors(enabled string) []string {
sort.Strings(result)
return result
}
func milliSecToSec(t float64) float64 {
return t / 1000
}