X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0d63ac0c2486a43198eb1015ba8d1028239139ee..86ddb15b162a0c29b6caa4370e5cedf27bbdd69a:/services/datamanager/loggerutil/loggerutil.go diff --git a/services/datamanager/loggerutil/loggerutil.go b/services/datamanager/loggerutil/loggerutil.go index 58abb119ac..8c655cd5ff 100644 --- a/services/datamanager/loggerutil/loggerutil.go +++ b/services/datamanager/loggerutil/loggerutil.go @@ -16,7 +16,7 @@ func LogRunInfo(arvLogger *logger.Logger) { if arvLogger != nil { now := time.Now() arvLogger.Update(func(p map[string]interface{}, e map[string]interface{}) { - runInfo := make(map[string]interface{}) + runInfo := logger.GetOrCreateMap(p, "run_info") runInfo["started_at"] = now runInfo["args"] = os.Args hostname, err := os.Hostname() @@ -26,26 +26,25 @@ func LogRunInfo(arvLogger *logger.Logger) { runInfo["hostname"] = hostname } runInfo["pid"] = os.Getpid() - p["run_info"] = runInfo }) } } // A LogMutator that records the current memory usage. This is most useful as a logger write hook. -// -// Assumes we already have a map named "run_info" in properties. LogRunInfo() can create such a map for you if you call it. func LogMemoryAlloc(p map[string]interface{}, e map[string]interface{}) { - runInfo := p["run_info"].(map[string]interface{}) + runInfo := logger.GetOrCreateMap(p, "run_info") var memStats runtime.MemStats runtime.ReadMemStats(&memStats) - runInfo["alloc_bytes_in_use"] = memStats.Alloc + runInfo["memory_bytes_in_use"] = memStats.Alloc + runInfo["memory_bytes_reserved"] = memStats.Sys } func FatalWithMessage(arvLogger *logger.Logger, message string) { if arvLogger != nil { arvLogger.FinalUpdate(func(p map[string]interface{}, e map[string]interface{}) { p["FATAL"] = message - p["run_info"].(map[string]interface{})["finished_at"] = time.Now() + runInfo := logger.GetOrCreateMap(p, "run_info") + runInfo["finished_at"] = time.Now() }) }