diff --git a/app/corpora/events.py b/app/corpora/events.py
index 212af2061b0d21da1c6205f4ab1fa0ea28612d57..8be48a4494b8d2242aea0a38e04dc89e20f3e83d 100644
--- a/app/corpora/events.py
+++ b/app/corpora/events.py
@@ -30,6 +30,7 @@ def observe_corpus_analysis_connection(app, corpus_id, session_id):
     corpus = Corpus.query.filter_by(id=corpus_id).first()
     with app.app_context():
         cqi_client = CQiClient(host=corpus.analysis_container_ip)
+        cqi_client.ctrl_connect('opaque', 'opaque')
         while session_id in connected_sessions:
             logger.warning(cqi_client.ctrl_ping())
             logger.warning('Run container, run!')
diff --git a/app/events.py b/app/events.py
index 14ae3965de9de2721666aa30a5d75acdb5338c02..fc6b777e29de85b6465e268a52e6b3778769cbc9 100644
--- a/app/events.py
+++ b/app/events.py
@@ -1,7 +1,7 @@
 from flask import current_app, request
 from flask_login import current_user, login_required
+from . import socketio
 from .decorators import admin_required
-from . import db, socketio
 from .models import User
 import json
 import jsonpatch
@@ -9,8 +9,9 @@ import logging
 
 
 '''
-' A list containing session ids of connected Socket.IO sessions. It is used to
-' determine runtimes of associated background tasks.
+' A list containing session ids of connected Socket.IO sessions, to keep track
+' of all connected sessions, which is used to determine the runtimes of
+' associated background tasks.
 '''
 connected_sessions = []
 
@@ -19,47 +20,41 @@ connected_sessions = []
 @login_required
 def connect():
     '''
-    ' The Socket.IO module creates a session id (sid) on each request. The
-    ' initiating client is automatically placed in a room with that sid, which
-    ' will be used for further information exchange generated by a background
-    ' task associated with the sid.
+    ' The Socket.IO module creates a session id (sid) for each request.
+    ' On connect the sid is saved in the connected sessions list.
     '''
     connected_sessions.append(request.sid)
-    socketio.start_background_task(background_task,
-                                   current_app._get_current_object(),
-                                   current_user.id,
-                                   request.sid)
 
 
 @socketio.on('disconnect')
 @login_required
 def disconnect():
     '''
-    ' On disconnect the session id (sid) of the connection gets removed from
-    ' connected sessions list (see above).
+    ' On disconnect the session id gets removed from the connected sessions
+    ' list.
     '''
     connected_sessions.remove(request.sid)
 
 
-@socketio.on('inspect_user')
+@socketio.on('subscribe_user_ressources')
+@login_required
+def subscribe_user_ressources():
+    socketio.start_background_task(user_ressource_subscription_handler,
+                                   current_app._get_current_object(),
+                                   current_user.id, request.sid)
+
+
+@socketio.on('subscribe_foreign_user_ressources')
 @login_required
 @admin_required
-def inspect_user(user_id):
-    '''
-    ' The Socket.IO module creates a session id (sid) on each request. The
-    ' initiating admin is automatically placed in a room with that sid, which
-    ' will be used for further information exchange generated by a background
-    ' task associated with the sid. Admin will be placed in that room on emiting
-    ' "conncect_admin".
-    '''
-    socketio.start_background_task(background_task,
+def subscribe_foreign_user_ressources(user_id):
+    socketio.start_background_task(user_ressource_subscription_handler,
                                    current_app._get_current_object(),
-                                   user_id,
-                                   request.sid,
-                                   True)
+                                   user_id, request.sid, True)
 
 
-def background_task(app, user_id, session_id, foreign=False):
+def user_ressource_subscription_handler(app, user_id, session_id,
+                                        foreign=False):
     '''
     ' Sends initial corpus and job lists to the client. Afterwards it checks
     ' every 3 seconds if changes to the initial values appeared. If changes are
@@ -67,39 +62,41 @@ def background_task(app, user_id, session_id, foreign=False):
     '
     ' NOTE: The initial values are send as a init-* events.
     '       The JSON patches are send as update-* events.
-    '
-    '       > where '*' is either 'corpora' or 'jobs'
+    '           > where '*' is either 'corpora' or 'jobs'
     '''
+    logger = logging.getLogger(__name__)
+    logger.warning('user_id: {}, foreign: {}'.format(user_id, foreign))
+    init_events = {'corpora': 'init-foreign-corpora' if foreign
+                   else 'init-corpora',
+                   'jobs': 'init-foreign-jobs' if foreign else 'init-jobs'}
+    update_events = {'corpora': 'update-foreign-corpora' if foreign
+                     else 'update-corpora',
+                     'jobs': 'update-foreign-jobs' if foreign
+                     else 'update-jobs'}
     with app.app_context():
-        user = db.session.query(User).get_or_404(user_id)
-        ''' Get current values from the database. '''
+        # Gather current values from database.
+        user = User.query.filter_by(id=user_id).first()
         corpora = user.corpora_as_dict()
         jobs = user.jobs_as_dict()
-        ''' Send initial values. '''
-        socketio.emit('init-foreign-corpora' if foreign else 'init-corpora',
-                      json.dumps(corpora),
+        # Send initial values to the user.
+        socketio.emit(init_events['corpora'], json.dumps(corpora),
                       room=session_id)
-        socketio.emit('init-foreign-jobs' if foreign else 'init-jobs',
-                      json.dumps(jobs),
-                      room=session_id)
-        ''' TODO: Implement maximum runtime for this loop. '''
+        socketio.emit(init_events['jobs'], json.dumps(jobs), room=session_id)
         while session_id in connected_sessions:
-            ''' Get current values from the database '''
+            # Get new values from the database
             new_corpora = user.corpora_as_dict()
             new_jobs = user.jobs_as_dict()
-            ''' Compute JSON patches. '''
-            corpus_patch = jsonpatch.JsonPatch.from_diff(corpora, new_corpora)
+            # Compute JSON patches.
+            corpora_patch = jsonpatch.JsonPatch.from_diff(corpora, new_corpora)
             jobs_patch = jsonpatch.JsonPatch.from_diff(jobs, new_jobs)
-            ''' In case there are patches, send them to the user. '''
-            if corpus_patch:
-                socketio.emit('update-foreign-corpora' if foreign else 'update-corpora',
-                              corpus_patch.to_string(),
-                              room=session_id)
+            # In case there are patches, send them to the user.
+            if corpora_patch:
+                socketio.emit(update_events['corpora'],
+                              corpora_patch.to_string(), room=session_id)
             if jobs_patch:
-                socketio.emit('update-foreign-jobs' if foreign else 'update-jobs',
-                              jobs_patch.to_string(),
+                socketio.emit(update_events['jobs'], jobs_patch.to_string(),
                               room=session_id)
-            ''' Set new values as references for the next iteration. '''
+            # Set new values as references for the next iteration.
             corpora = new_corpora
             jobs = new_jobs
             socketio.sleep(3)
diff --git a/app/templates/admin/admin_user_page.html.j2 b/app/templates/admin/admin_user_page.html.j2
index 56b9859911c28679a116e95a7f455c06d035d569..e1ad5fddfa864cf00bb42a526e281964323356ba 100644
--- a/app/templates/admin/admin_user_page.html.j2
+++ b/app/templates/admin/admin_user_page.html.j2
@@ -35,8 +35,7 @@
   </div>
 </div>
 <script>
-  var selected_user_id = {{selected_user.id|tojson|safe}}
-  socket.emit('inspect_user', selected_user_id);
+  socket.emit('subscribe_foreign_user_ressources', {{ selected_user.id }});
 </script>
 <div class="col s12 m6">
   <div id="job-foreign-list">
diff --git a/app/templates/base.html.j2 b/app/templates/base.html.j2
index a3206a90a6000e4058bf4cf47d91223ede4993ef..6e93183a8ef1388eb4a615f56ac85224bdbb9389 100644
--- a/app/templates/base.html.j2
+++ b/app/templates/base.html.j2
@@ -38,41 +38,29 @@
       var jobsSubscribers = [];
       var socket = io();
 
-
+      socket.emit('subscribe_user_ressources');
       socket.on('init-corpora', function(msg) {
-        var subscriber;
-
         corpora = JSON.parse(msg);
-        for (subscriber of corporaSubscribers) {subscriber._init(corpora);}
+        for (let subscriber of corporaSubscribers) {subscriber._init(corpora);}
       });
-
-
       socket.on('init-jobs', function(msg) {
-        var subscriber;
-
         jobs = JSON.parse(msg);
-        for (subscriber of jobsSubscribers) {subscriber._init(jobs);}
+        for (let subscriber of jobsSubscribers) {subscriber._init(jobs);}
       });
-
-
       socket.on('update-corpora', function(msg) {
-        var patch, patchedCorpora, subscriber;
+        var patch;
 
         patch = JSON.parse(msg);
         corpora = jsonpatch.apply_patch(corpora, patch);
-        for (subscriber of corporaSubscribers) {subscriber._update(patch);}
+        for (let subscriber of corporaSubscribers) {subscriber._update(patch);}
       });
-
-
       socket.on('update-jobs', function(msg) {
-        var patch, patchedJobs, subscriber;
+        var patch;
 
         patch = JSON.parse(msg);
         jobs = jsonpatch.apply_patch(jobs, patch);
-        for (subscriber of jobsSubscribers) {subscriber._update(patch);}
+        for (let subscriber of jobsSubscribers) {subscriber._update(patch);}
       });
-
-
       socket.on('message', function(msg) {
         console.log(msg);
       });
@@ -83,38 +71,27 @@
       var foreignJobs;
       var foreignJobsSubscribers = [];
 
-
       socket.on('init-foreign-corpora', function(msg) {
-        var subscriber;
-
         foreignCorpora = JSON.parse(msg);
-        for (subscriber of foreignCorporaSubscribers) {subscriber._init(foreignCorpora);}
+        for (let subscriber of foreignCorporaSubscribers) {subscriber._init(foreignCorpora);}
       });
-
-
       socket.on('init-foreign-jobs', function(msg) {
-        var subscriber;
-
         foreignJobs = JSON.parse(msg);
-        for (subscriber of foreignJobsSubscribers) {subscriber._init(foreignJobs);}
+        for (let subscriber of foreignJobsSubscribers) {subscriber._init(foreignJobs);}
       });
-
-
       socket.on('update-foreign-corpora', function(msg) {
-        var patch, patchedCorpora, subscriber;
+        var patch;
 
         patch = JSON.parse(msg);
         foreignCorpora = jsonpatch.apply_patch(foreignCorpora, patch);
-        for (subscriber of foreignCorporaSubscribers) {subscriber._update(patch);}
+        for (let subscriber of foreignCorporaSubscribers) {subscriber._update(patch);}
       });
-
-
       socket.on('update-foreign-jobs', function(msg) {
-        var patch, patchedJobs, subscriber;
+        var patch;
 
         patch = JSON.parse(msg);
         foreignJobs = jsonpatch.apply_patch(foreignJobs, patch);
-        for (subscriber of foreignJobsSubscribers) {subscriber._update(patch);}
+        for (let subscriber of foreignJobsSubscribers) {subscriber._update(patch);}
       });
     </script>
     <meta name="viewport" content="width=device-width, initial-scale=1.0"/>