summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/usage_data_counters
Commit message (Collapse)AuthorAgeFilesLines
* Count wiki page creationAlex Kalderimis2019-07-212-0/+89
| | | | | | | This adds a counter to count page creation, which is reflected in the usage-data we collect. The number created is stored in Redis, avoiding DB access.
* Avoid increasing redis counters when usage_ping is disabledFrancisco Javier López2019-07-191-0/+33
|
* Added Usage Data for some Web IDE actionsFrancisco Javier López2019-07-191-10/+25
| | | | | | | The actions tracked in the web IDE are: - creation of commits - creation of merge requests - projects loaded
* Refactor RedisCounter and WebIdeCommitsCounterFrancisco Javier López2019-07-172-54/+21
| | | | | This MR refactor RedisCounter and WebIdeCommitsCounter to be reused by other components.
* Refactored WebIdeCommitsCount classFrancisco Javier López2019-07-161-0/+54
We're adding more redis base counters to the web ide and other classes. We're refactoring this class in other to use the logic in other places.