(appGuid string)
| 85 | } |
| 86 | |
| 87 | func (cd *CommonData) IsMonitoredAppGuid(appGuid string) bool { |
| 88 | // Check if we're only monitoring a subset of apps and if this app is one of them |
| 89 | if cd.monitoredAppGuids != nil { |
| 90 | if cd.monitoredAppGuids[appGuid] { |
| 91 | return true |
| 92 | } |
| 93 | return false |
| 94 | } |
| 95 | return true |
| 96 | } |
| 97 | |
| 98 | func (cd *CommonData) PostProcessData() map[string]*DisplayAppStats { |
| 99 |