diff --git a/clu.routing.yml b/clu.routing.yml
index 004d6d7..0031bae 100644
--- a/clu.routing.yml
+++ b/clu.routing.yml
@@ -6,3 +6,11 @@ clu.c_l_u_controller_index:
     _title: 'Currenlty loggedin users'
   requirements:
     _permission: 'access content'
+
+clu.c_l_u_controller_endsession:
+  path: '/admin/people/clu/{uid}'
+  defaults:
+    _controller: '\Drupal\clu\Controller\CLUController::endUserSession'
+    _title: 'Currenlty loggedin users - End user session'
+  requirements:
+    _permission: 'access content'
diff --git a/src/Controller/CLUController.php b/src/Controller/CLUController.php
index 9b2cd92..37dcae1 100644
--- a/src/Controller/CLUController.php
+++ b/src/Controller/CLUController.php
@@ -7,8 +7,11 @@
 
 namespace Drupal\clu\Controller;
 
+use Drupal\Component\Utility\UrlHelper;
 use Drupal\Core\Controller\ControllerBase;
+use Drupal\Core\Link;
 use Drupal\Core\Url;
+use Symfony\Component\HttpFoundation\RedirectResponse;
 
 /**
  * Class CLUController.
@@ -16,6 +19,7 @@ use Drupal\Core\Url;
  * @package Drupal\clu\Controller
  */
 class CLUController extends ControllerBase {
+
   /**
    * List users.
    *
@@ -23,10 +27,10 @@ class CLUController extends ControllerBase {
    *   Return Hello string.
    */
   public function users() {
-
+    $user = \Drupal::currentUser();
     $output['clu'] = array(
       '#type' => 'table',
-      '#header' => array(t('User Id'), t('User Name')),
+      '#header' => array(t('User Id'), t('User Name'), t('Action')),
       '#tableselect' => TRUE,
       '#tabledrag' => array(
         array(
@@ -54,9 +58,36 @@ class CLUController extends ControllerBase {
       $output['clu'][$id]['name'] = array(
         '#plain_text' => $entity['name'],
       );
+      if ($user->id() != $entity['uid']) {
+        $url = Url::fromUserInput('/admin/people/clu/' . $entity['uid']);
+        $output['clu'][$id]['action'] = array(
+          '#markup' =>  \Drupal::l(t('End Session'), $url)->getGeneratedLink(),
+        );
+
+      }
     }
 
     return $output;
   }
 
+  /**
+   * @param $uid
+   * @return mixed
+   */
+  public function endUserSession($uid) {
+    $user = user_load($uid);
+    if ($user) {
+      db_delete('sessions')
+        ->condition('uid', $uid)
+        ->execute();
+      drupal_set_message(t('@username ( @userid ) user session has been ended.',
+        array(
+          '@username' => $user->getAccountName(),
+          '@userid' => $user->id(),
+        )
+      ));
+    }
+    return new RedirectResponse('/admin/people/clu');
+  }
+
 }
