diff --git a/application/modules/opac/controllers/AuthController.php b/application/modules/opac/controllers/AuthController.php
index 01c12d498c97fe39cb1c192dd1bd0e10c1565298..c29873dbdbe96fde6e72ad0e417f9280c61e766a 100644
--- a/application/modules/opac/controllers/AuthController.php
+++ b/application/modules/opac/controllers/AuthController.php
@@ -55,7 +55,7 @@ class AuthController extends Zend_Controller_Action
 			return $this->view->_('Identifiant ou mot de passe incorrect.');
 				
 		$user = Class_Users::getIdentity();
-		$this->_helper->trackEvent('authentification', 'login', $user->getId());
+		$this->_helper->trackEvent('authentification', 'connexion', 'utilisateur', 'id: '.$user->getId());
 		$service_cas_server=$this->_request->getPost('service');
 		if (strlen($service_cas_server)>1) {
 			$ticket=md5(Zend_Session::getId());
diff --git a/library/ZendAfi/Controller/Action/Helper/TrackEvent.php b/library/ZendAfi/Controller/Action/Helper/TrackEvent.php
index ad6f8d67a402e81c8ebc995e3cfb57c9aa2c2b86..8ccc4067f8db1bf6840c4aa3c476e2ca68abde6b 100644
--- a/library/ZendAfi/Controller/Action/Helper/TrackEvent.php
+++ b/library/ZendAfi/Controller/Action/Helper/TrackEvent.php
@@ -23,17 +23,18 @@ class ZendAfi_Controller_Action_Helper_TrackEvent extends Zend_Controller_Action
 	/**
 	 * voir [[file:~/public_html/afi-opac3/library/Class/ScriptLoader.php::public%20function%20executeTrackEvents()%20{][Class_ScriptLoader::executeTrackEvents]]
 	 */
-	public function trackEvent($category, $action, $value) {
+	public function trackEvent($category, $action, $label, $value) {
 		$this->getActionController()
 				 ->getHelper('flashMessenger')
 				 ->addMessage([ZendAfi_Controller_Action_Helper_FlashMessenger::TRACK_EVENT => 
 												 ['category' => $category,
 													'action' => $action,
-													'value' => 2]]);
+													'label' => $label,
+													'value' => $value]]);
 	}
 
-	public function direct($category, $action, $value) {
-		return $this->trackEvent($category, $action, $value);
+	public function direct($category, $action, $label, $value) {
+		return $this->trackEvent($category, $action, $label, $value);
 	}
 }
 
diff --git a/tests/application/modules/opac/controllers/AuthControllerTest.php b/tests/application/modules/opac/controllers/AuthControllerTest.php
index c79fe9ee444e2d3f06eb2dbcc8215316701872fb..042b088535bcdf7761d2698d1d5b70214a5a1622 100644
--- a/tests/application/modules/opac/controllers/AuthControllerTest.php
+++ b/tests/application/modules/opac/controllers/AuthControllerTest.php
@@ -480,8 +480,9 @@ class AuthControllerPostSimpleSuccessfulTest extends AuthControllerPostSimpleTes
 	public function trackEventShouldBeGenerated() {
 		$this->assertFlashMessengerContains(['track_event' => 
 																			    ['category' => 'authentification',
-																					 'action' => 'login',
-																					 'value' => '2']]);
+																					 'action' => 'connexion',
+																					 'label' => 'utilisateur',
+																					 'value' => 'id: 2']]);
 	}
 }