diff --git a/internal/pkg/statprocessors/utils.go b/internal/pkg/statprocessors/utils.go index 22c4eb2..114aced 100644 --- a/internal/pkg/statprocessors/utils.go +++ b/internal/pkg/statprocessors/utils.go @@ -143,12 +143,6 @@ func isGauge(pContextType commons.ContextType, pStat string) bool { return config.GaugeStatHandler.XdrStats[pStat] } - // any sysinfo_ check if it exists in gauge_stats_list.toml - if strings.Contains(strings.ToLower(string(pContextType)), "sysinfo_") { - fmt.Println("\t checking if pStat is SysInfo ", pStat, " isGauge: ", config.GaugeStatHandler.SysInfoStats[pStat]) - return config.GaugeStatHandler.SysInfoStats[pStat] - } - return false }