()
| 105 | } |
| 106 | |
| 107 | func newPrometheus() *e2e.HTTPService { |
| 108 | s := e2e.NewHTTPService( |
| 109 | "prometheus", |
| 110 | prometheusImage, |
| 111 | e2e.NewCommandWithoutEntrypoint("/bin/prometheus", "--config.file=/etc/prometheus/prometheus.yml", "--web.enable-remote-write-receiver"), |
| 112 | e2e.NewHTTPReadinessProbe(9090, "/-/ready", 200, 299), |
| 113 | 9090, |
| 114 | ) |
| 115 | |
| 116 | s.SetMetricsTimeout(MetricsTimeout) |
| 117 | s.SetBackoff(tempoBackoff()) |
| 118 | return s |
| 119 | } |
| 120 | |
| 121 | // newAzurite creates a new Azurite service for Azure blob storage emulation |
| 122 | func newAzurite(port int) *e2e.HTTPService { |
no test coverage detected