(name, state string)
| 208 | }) |
| 209 | |
| 210 | func getApps(name, state string) []models.CloudFoundryApplication { |
| 211 | return []models.CloudFoundryApplication{ |
| 212 | { |
| 213 | Name: name, |
| 214 | Guid: "app-guid", |
| 215 | State: state, |
| 216 | }, |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | func getProcessStats(runningInstances, totalInstances int64, memory, diskQuota int64) []models.ApplicationProcessStatistics { |
| 221 | var processes []models.ApplicationProcessStatistics |