You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: "Spins up a local observability stack. Has two modes, standard (Loki, Prometheus, Grafana and OTEL) and full including also Tempo, Cadvisor and PostgreSQL metrics",
83
+
Action: func(c*cli.Context) error {
84
+
ifc.Bool("full") {
85
+
returnframework.ObservabilityUpFull()
86
+
}
87
+
returnframework.ObservabilityUp()
88
+
},
76
89
},
77
90
{
78
-
Name: "down",
79
-
Usage: "ctf obs down",
80
-
Aliases: []string{"d"},
91
+
Name: "down",
92
+
Usage: "ctf obs down",
93
+
Aliases: []string{"d"},
94
+
Flags: []cli.Flag{
95
+
&cli.BoolFlag{
96
+
Name: "full",
97
+
Aliases: []string{"f"},
98
+
Usage: "Removes all the observability services (this flag exists for compatibility, all the services are always removed with 'down')",
0 commit comments