func CheckResult() string {
	var result_hmap golhashmap.HashMap
	result_hmap = make(golhashmap.HashMap)

	all_checks := [...]golhashmap.HashMap{
		chaac_axe_checks.BasicCheck(),
		chaac_axe_checks.MemoryCheck(),
	}
	for _, check_n_result := range all_checks {
		for check, result := range check_n_result {
			result_hmap[check] = result
		}
	}

	result_hmap["parent_namespace"] = hostSignature
	return golhashmap.Hashmap_to_csv(result_hmap)
}
/* Get value for the asked time-frame key, aah same NS */
func GetValTSDS(key string) string {
	return golhashmap.Hashmap_to_csv(levigoTSDS.ReadTSDS(key, db))
}
/* Get value for all descendents of Namespace */
func GetValNS(key string) string {
	hashmap := levigoNS.ReadNSRecursive(key, db)
	return golhashmap.Hashmap_to_csv(hashmap)
}