Skip to content
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

pageserver: expose prometheus metrics for startup time #4893

Merged
merged 14 commits into from
Aug 8, 2023
2 changes: 1 addition & 1 deletion pageserver/src/bin/pageserver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,6 @@ fn start_pageserver(

}

startup_checkpoint("complete", "Startup complete");
};

async move {
Expand Down Expand Up @@ -574,6 +573,7 @@ fn start_pageserver(
);
}

startup_checkpoint("complete", "Startup complete");
let mut shutdown_pageserver = Some(shutdown_pageserver.drop_guard());

// All started up! Now just sit and wait for shutdown signal.
Expand Down