(apiClient client.APIClient, project string)
| 38 | } |
| 39 | |
| 40 | func newMonitor(apiClient client.APIClient, project string) *monitor { |
| 41 | return &monitor{ |
| 42 | apiClient: apiClient, |
| 43 | project: project, |
| 44 | services: map[string]bool{}, |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | func (c *monitor) withServices(services []string) { |
| 49 | for _, name := range services { |