()
| 22 | type ProcessSummaries []ProcessSummary |
| 23 | |
| 24 | func (p ProcessSummary) TotalInstanceCount() int { |
| 25 | return len(p.InstanceDetails) |
| 26 | } |
| 27 | |
| 28 | func (p ProcessSummary) HealthyInstanceCount() int { |
| 29 | count := 0 |
no outgoing calls
no test coverage detected