(env e2e.Environment, name string, opts ...Option)
| 55 | const AccessPortName = "http" |
| 56 | |
| 57 | func NewPrometheus(env e2e.Environment, name string, opts ...Option) *e2emon.Prometheus { |
| 58 | o := options{} |
| 59 | for _, opt := range opts { |
| 60 | opt(&o) |
| 61 | } |
| 62 | |
| 63 | return e2emon.NewPrometheus(env, name, o.image, o.flagOverride) |
| 64 | } |
| 65 | |
| 66 | func NewParca(env e2e.Environment, name string, opts ...Option) *e2eprof.Parca { |
| 67 | o := options{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…