summaryrefslogtreecommitdiff
path: root/gitlab/__init__.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2016-08-11 19:31:39 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2016-08-11 19:31:39 +0200
commit23b2a3072238546da2a2f8e48ce09db85a59feef (patch)
tree09001237cbbf3504aef96e29b096e538f45e6408 /gitlab/__init__.py
parent131739f492946ba1cd58852be1caf000af451384 (diff)
downloadgitlab-23b2a3072238546da2a2f8e48ce09db85a59feef.tar.gz
Add sidekiq metrics support
Diffstat (limited to 'gitlab/__init__.py')
-rw-r--r--gitlab/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index d70cea0..c672c23 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -193,6 +193,7 @@ class Gitlab(object):
self.team_projects = TeamProjectManager(self)
self.teams = TeamManager(self)
self.todos = TodoManager(self)
+ self.sidekiq = SidekiqManager(self)
@staticmethod
def from_config(gitlab_id=None, config_files=None):