Skip to content

Capture SP task dumps in support bundles #8177

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
May 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dev-tools/omdb/src/bin/omdb/nexus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2347,6 +2347,7 @@ fn print_task_support_bundle_collector(details: &serde_json::Value) {
if let Some(SupportBundleCollectionReport {
bundle,
listed_in_service_sleds,
listed_sps,
activated_in_db_ok,
}) = collection_report
{
Expand All @@ -2355,6 +2356,9 @@ fn print_task_support_bundle_collector(details: &serde_json::Value) {
println!(
" Bundle was able to list in-service sleds: {listed_in_service_sleds}"
);
println!(
" Bundle was able to list service processors: {listed_sps}"
);
println!(
" Bundle was activated in the database: {activated_in_db_ok}"
);
Expand Down
1 change: 1 addition & 0 deletions nexus/src/app/background/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ impl BackgroundTasksInitializer {
task_impl: Box::new(
support_bundle_collector::SupportBundleCollector::new(
datastore.clone(),
resolver.clone(),
Copy link
Contributor Author

@wfchandler wfchandler May 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe this isn't the best approach, given the conversation in the control plane huddle today. On the other hand, we're very unlikely to be collecting bundles fast enough to have a real impact.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm fine to punt on this until we sort out the progenitor integration with qorb more holistically

config.support_bundle_collector.disable,
nexus_id,
),
Expand Down
Loading
Loading