Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

as a gitlab admin, how can I list all recent activity

Tags:

gitlab

Generally, activity reports are limited to those projects or groups we are a member of; however, as the admin for a gitlab site, sometimes, when doing upgrades for example, it would be convenient to see if and where any recent activity was. I saw nothing in either the gui or the gitlab-shell or rake commands to do this.

like image 563
mike.schmidt Avatar asked Nov 01 '22 12:11

mike.schmidt


1 Answers

After checking the logs, here is the lowdown:

The application log only contains information for git activities: push and pull operations, commits, etc.

The only information available about issues and other parts of the system are in the nginx (or apache) access logs, by checking the POST operations.

like image 137
mike.schmidt Avatar answered Nov 11 '22 15:11

mike.schmidt