systemprompt_cli/commands/infrastructure/services/
status.rs1use crate::cli_settings::CliConfig;
7use crate::shared::CommandOutput;
8use anyhow::Result;
9use schemars::JsonSchema;
10use serde::{Deserialize, Serialize};
11use std::collections::HashMap;
12use std::hash::BuildHasher;
13use std::sync::Arc;
14use systemprompt_logging::CliService;
15use systemprompt_mcp::services::McpOrchestrator;
16use systemprompt_mcp::{HealthStatus, McpServiceStatus};
17use systemprompt_models::mcp::McpServerType;
18use systemprompt_runtime::{AppContext, StartupValidator, display_validation_report};
19use systemprompt_scheduler::{
20 RuntimeStatus, ServiceStateVerifier, ServiceType, VerifiedServiceState,
21};
22
23#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
24pub struct ServiceStatusOutput {
25 pub services: Vec<ServiceStatusRow>,
26 pub summary: StatusSummary,
27}
28
29#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
30pub struct ServiceStatusRow {
31 pub name: String,
32 pub service_type: String,
33 pub status: String,
34 pub pid: Option<u32>,
35 pub port: u16,
36 pub action: String,
37 #[serde(skip_serializing_if = "Option::is_none")]
38 pub error: Option<String>,
39 #[serde(skip_serializing_if = "Option::is_none")]
40 pub health: Option<String>,
41 #[serde(skip_serializing_if = "Option::is_none")]
42 pub endpoint: Option<String>,
43}
44
45#[derive(Debug, Clone, Copy, Serialize, Deserialize, JsonSchema)]
46pub struct StatusSummary {
47 pub total: usize,
48 pub running: usize,
49 pub stopped: usize,
50}
51
52impl From<&VerifiedServiceState> for ServiceStatusRow {
53 fn from(state: &VerifiedServiceState) -> Self {
54 Self {
55 name: state.name.clone(),
56 service_type: state.service_type.to_string(),
57 status: state.status_display().to_owned(),
58 pid: state.pid,
59 port: state.port,
60 action: state.action_display().to_owned(),
61 error: state.error.clone(),
62 health: None,
63 endpoint: None,
64 }
65 }
66}
67
68pub fn health_label(health: HealthStatus) -> String {
69 if matches!(health, HealthStatus::Healthy | HealthStatus::Degraded) {
70 "OK".to_owned()
71 } else {
72 "DEGRADED".to_owned()
73 }
74}
75
76pub fn external_row(status: &McpServiceStatus) -> ServiceStatusRow {
77 ServiceStatusRow {
78 name: status.name.clone(),
79 service_type: "mcp".to_owned(),
80 status: "remote".to_owned(),
81 pid: None,
82 port: 0,
83 action: "none".to_owned(),
84 error: None,
85 health: Some(health_label(status.health)),
86 endpoint: status.endpoint.clone(),
87 }
88}
89
90pub fn build_status_output<S: BuildHasher>(
91 states: &[VerifiedServiceState],
92 mcp_health: &HashMap<String, HealthStatus, S>,
93 external: &[ServiceStatusRow],
94 include_health: bool,
95) -> ServiceStatusOutput {
96 let mut services: Vec<ServiceStatusRow> = states
97 .iter()
98 .map(|state| {
99 let mut row = ServiceStatusRow::from(state);
100 if include_health {
101 row.health = Some(managed_health_label(state, mcp_health));
102 }
103 row
104 })
105 .collect();
106
107 services.extend(external.iter().cloned());
108
109 let managed_running = states
110 .iter()
111 .filter(|s| s.runtime_status == RuntimeStatus::Running)
112 .count();
113 let external_running = external
114 .iter()
115 .filter(|r| r.health.as_deref() == Some("OK"))
116 .count();
117 let running = managed_running + external_running;
118 let total = states.len() + external.len();
119
120 ServiceStatusOutput {
121 services,
122 summary: StatusSummary {
123 total,
124 running,
125 stopped: total - running,
126 },
127 }
128}
129
130pub fn managed_health_label<S: BuildHasher>(
131 state: &VerifiedServiceState,
132 mcp_health: &HashMap<String, HealthStatus, S>,
133) -> String {
134 if state.service_type == ServiceType::Mcp {
135 return mcp_health
136 .get(&state.name)
137 .map_or_else(|| "DEGRADED".to_owned(), |h| health_label(*h));
138 }
139 if state.is_healthy() {
140 "OK".to_owned()
141 } else {
142 "DEGRADED".to_owned()
143 }
144}
145
146pub(super) async fn execute(
147 detailed: bool,
148 json: bool,
149 health: bool,
150 config: &CliConfig,
151) -> Result<CommandOutput> {
152 let ctx = Arc::new(AppContext::new().await?);
153
154 let Ok(configs) = super::load_service_configs() else {
155 let mut validator = StartupValidator::new();
156 let report = validator.validate(ctx.config());
157 if report.has_errors() {
158 display_validation_report(&report);
159 return Err(anyhow::anyhow!("Startup validation failed"));
160 }
161 return Err(anyhow::anyhow!("Failed to load service configs"));
162 };
163
164 let state_manager = ServiceStateVerifier::new(Arc::clone(ctx.db_pool()));
165 let states = state_manager.get_verified_states(&configs).await?;
166
167 let mcp_statuses = mcp_service_statuses(&ctx).await?;
168 let mcp_health: HashMap<String, HealthStatus> = mcp_statuses
169 .iter()
170 .filter(|s| s.server_type == McpServerType::Internal)
171 .map(|s| (s.name.clone(), s.health))
172 .collect();
173 let external: Vec<ServiceStatusRow> = mcp_statuses
174 .iter()
175 .filter(|s| s.server_type == McpServerType::External)
176 .map(external_row)
177 .collect();
178
179 let output = build_status_output(&states, &mcp_health, &external, health);
180
181 let result = CommandOutput::table_of(
182 vec![
183 "name",
184 "service_type",
185 "status",
186 "pid",
187 "endpoint",
188 "action",
189 ],
190 &output.services,
191 )
192 .with_title("Service Status");
193
194 if json || config.is_json_output() {
195 return Ok(result);
196 }
197
198 if detailed {
199 output_detailed(&states, &mcp_health, &external, health);
200 } else {
201 render_table_output(&output);
202 }
203
204 Ok(result.with_skip_render())
205}
206
207async fn mcp_service_statuses(ctx: &Arc<AppContext>) -> Result<Vec<McpServiceStatus>> {
208 let manager = McpOrchestrator::new(
209 Arc::clone(ctx.db_pool()),
210 Arc::clone(ctx.app_paths_arc()),
211 ctx.mcp_registry().clone(),
212 )?;
213 Ok(manager.service_statuses().await?)
214}
215
216fn render_table_output(output: &ServiceStatusOutput) {
217 CliService::section("Service Status");
218
219 for service in &output.services {
220 let pid_str = service
221 .pid
222 .map_or_else(|| "-".to_owned(), |p| p.to_string());
223 let locator = service
224 .endpoint
225 .as_deref()
226 .map_or_else(|| format!("PID: {pid_str}"), |e| format!("endpoint: {e}"));
227 CliService::key_value(
228 &service.name,
229 &format!(
230 "{} | {} | {} | {}",
231 service.service_type, service.status, locator, service.action
232 ),
233 );
234 }
235
236 CliService::info(&format!(
237 "{}/{} services running",
238 output.summary.running, output.summary.total
239 ));
240}
241
242fn output_detailed(
243 states: &[VerifiedServiceState],
244 mcp_health: &HashMap<String, HealthStatus>,
245 external: &[ServiceStatusRow],
246 include_health: bool,
247) {
248 for state in states {
249 CliService::section(&state.name);
250 CliService::key_value("Type", &state.service_type.to_string());
251 CliService::key_value("Status", state.status_display());
252 CliService::key_value("Port", &state.port.to_string());
253
254 if let Some(pid) = state.pid {
255 CliService::key_value("PID", &pid.to_string());
256 }
257
258 CliService::key_value("Desired", &format!("{:?}", state.desired_status));
259 CliService::key_value("Action", state.action_display());
260
261 if let Some(error) = &state.error {
262 CliService::error(&format!("Error: {}", error));
263 }
264
265 if include_health {
266 CliService::key_value("Health", &managed_health_label(state, mcp_health));
267 }
268 }
269
270 for row in external {
271 CliService::section(&row.name);
272 CliService::key_value("Type", &row.service_type);
273 CliService::key_value("Status", &row.status);
274 if let Some(endpoint) = &row.endpoint {
275 CliService::key_value("Endpoint", endpoint);
276 }
277 if let Some(health) = &row.health {
278 CliService::key_value("Health", health);
279 }
280 }
281}