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

Add PProf to admin pages and to gitea manager #22742

Closed
wants to merge 34 commits into from

Conversation

zeripath
Copy link
Contributor

@zeripath zeripath commented Feb 3, 2023

The PProf endpoint is too difficult for many users to use - this PR will attempt to create a nicer UI to help in the collection PProf data from Gitea. It also adds pprof endpoints to the gitea manager command.

Signed-off-by: Andrew Thornton art27@cantab.net

The PProf endpoint is too difficult for many users to use - this PR will attempt to create a
nicer UI to help in the collection PProf data from Gitea.

Signed-off-by: Andrew Thornton <art27@cantab.net>
@zeripath zeripath added type/enhancement An improvement of existing functionality pr/wip This PR is not ready for review labels Feb 3, 2023
@codecov-commenter
Copy link

codecov-commenter commented Feb 3, 2023

Codecov Report

❗ No coverage uploaded for pull request base (main@c07199f). Click here to learn what that means.
The diff coverage is 3.29%.

❗ Current head 1400ab2 differs from pull request most recent head edebd86. Consider uploading reports for the commit edebd86 to get more accurate results

📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more

@@           Coverage Diff           @@
##             main   #22742   +/-   ##
=======================================
  Coverage        ?   47.21%           
=======================================
  Files           ?     1113           
  Lines           ?   149657           
  Branches        ?        0           
=======================================
  Hits            ?    70658           
  Misses          ?    70617           
  Partials        ?     8382           
Impacted Files Coverage Δ
cmd/manager.go 0.00% <0.00%> (ø)
modules/private/manager.go 0.00% <0.00%> (ø)
modules/process/stacktraces_processlist.go 0.00% <0.00%> (ø)
routers/private/manager_process.go 0.00% <0.00%> (ø)
routers/web/admin/admin.go 0.00% <0.00%> (ø)
routers/web/admin/pprof.go 0.00% <0.00%> (ø)
modules/context/private.go 100.00% <100.00%> (ø)
routers/private/internal.go 84.21% <100.00%> (ø)
routers/web/web.go 84.90% <100.00%> (ø)

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

@GiteaBot GiteaBot added the lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. label Feb 3, 2023
{{.locale.Tr "admin.monitor.stacktrace.download_stacktrace"}}
</div>
{{template "base/delete_modal_actions" .}}
<div class="hide" id="stacktrace-to-download">
Copy link
Contributor

Choose a reason for hiding this comment

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

Why not just:

  1. User click the download button
  2. Download from a HTTP URL directly

?

Then no need that complex dialog nor the JS code

Copy link
Contributor Author

Choose a reason for hiding this comment

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

No. Then they get a different stacktrace.

Copy link
Contributor

Choose a reason for hiding this comment

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

I mean , could there be no stacktrace on the UI? Just some links to help to collect problems.

The complex UI doesn't help users. As an end user, they should just download and report the stacktrace file.

The end users could do nothing even if they see the stacktrace on the UI.....

Copy link
Contributor

@wxiaoguang wxiaoguang Feb 4, 2023

Choose a reason for hiding this comment

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

FYI, when I was using GitLab, they have an all-in-one tool. It collects everything into a file, and what I need to do is just using the tool and sending the generated file to them, then they can help to resolve problems.

Making the diagnosis system too complex doesn't benefit end users IMO.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I mean , could there be no stacktrace on the UI? Just some links to help to collect problems.

I'm going to add a direct download stacktrace profile below to get the stacktraces without seeing them.

The complex UI doesn't help users. As an end user, they should just download and report the stacktrace file.

The pretty stacktrace helps me and SEVERAL bugs have been solved using it. It has helped me a large number of times already.

The end users could do nothing even if they see the stacktrace on the UI.....

Not every user is incapable and whilst the purpose of this UI is to help us to help users we should enable users and developers to help themselves. A pretty UI can be helpful for us to solve issues in a way that the opaque stacktrace format is not.

Copy link
Contributor

@wxiaoguang wxiaoguang Feb 4, 2023

Choose a reason for hiding this comment

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

I mean , could there be no stacktrace on the UI? Just some links to help to collect problems.

I'm going to add a direct download stacktrace profile below to get the stacktraces without seeing them.

If it means more complex, then it's not necessary IMO. My initial idea is about keeping the system simple but complete and useful.

While I do not think keeping the downloaded stacktrace file exactly the same as the UI list is meaningful -- everytime you refresh the page, you get a different stacktrace ..... Even if they are different, they are all helpful for resolving problem equally, and maybe sometimes the UI shown list is not helpful but the downloaded is helpful in case the downloaded one catches the problem, everything is possible.

Copy link
Contributor Author

@zeripath zeripath Feb 4, 2023

Choose a reason for hiding this comment

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

Fundamentally it's really important to be able to download the stacktrace that you have seen. Given these are dynamic it's possible that you may actually only see the issue on the stacktrace that you have and if you try get another the issue will be gone.

We need the download.


FYI, when I was using GitLab, they have an all-in-one tool. It collects everything into a file, and what I need to do is just using the tool and sending the generated file to them, then they can help to resolve problems.

Making the diagnosis system too complex doesn't benefit end users IMO.

If I knew what we generally needed I would do that - but in general we don't need cpu-profiles etc.

We do need a way of reading the logs and I will get to that but ... let's get general routes in and then we can have pared back routes to get the common things. Right now we have no easy way of getting pprof profiles from users and that fundamentally limits our ability to use them for diagnostics. This PR makes that a hell of a lot easier.

@zeripath zeripath changed the title WIP: Add PProf to admin pages Add PProf to admin pages and to gitea manager Feb 4, 2023
@zeripath zeripath removed the pr/wip This PR is not ready for review label Feb 4, 2023
Signed-off-by: Andrew Thornton <art27@cantab.net>
Signed-off-by: Andrew Thornton <art27@cantab.net>
Signed-off-by: Andrew Thornton <art27@cantab.net>
Signed-off-by: Andrew Thornton <art27@cantab.net>
Copy link
Member

@delvh delvh left a comment

Choose a reason for hiding this comment

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

Hmm, I hope it is by design that the vast majority of generated reports is absolutely unreadable?
Perhaps we should add a "warning" at the top of the section stating something like Many of the generated files won't be understandable for you. Don't worry, the only thing that matters is that WE understand it. (Hopefully you find a better wording 😅)

Signed-off-by: Andrew Thornton <art27@cantab.net>
Signed-off-by: Andrew Thornton <art27@cantab.net>
Signed-off-by: Andrew Thornton <art27@cantab.net>
Signed-off-by: Andrew Thornton <art27@cantab.net>
Signed-off-by: Andrew Thornton <art27@cantab.net>
Signed-off-by: Andrew Thornton <art27@cantab.net>
Signed-off-by: Andrew Thornton <art27@cantab.net>
@GiteaBot GiteaBot added lgtm/need 1 This PR needs approval from one additional maintainer to be merged. and removed lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. labels Feb 19, 2023
@silverwind
Copy link
Member

Any UI screenshots?

@lunny
Copy link
Member

lunny commented May 16, 2023

I think this has been replaced by #24636 ?

@wxiaoguang
Copy link
Contributor

Yup, not needed any more. #24636 is much simpler and more friendly to users.

We can add more diagnosis report based on #24636 in the future if necessary

@lunny
Copy link
Member

lunny commented May 16, 2023

Maybe additional gitea manager could become another PR if it's still necessary and I will close this one.

@lunny lunny closed this May 16, 2023
@go-gitea go-gitea locked as resolved and limited conversation to collaborators Aug 14, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
lgtm/need 1 This PR needs approval from one additional maintainer to be merged. type/enhancement An improvement of existing functionality
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants