From 62609244dd1a10686c051f083145ec1ae633eccc Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Wed, 21 Mar 2012 12:29:15 +0000
Subject: [PATCH] core:idp:logout-iframe: Log new statistics.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3056 44740490-163a-0410-bde0-09ae8108e29a
---
 modules/core/www/idp/logout-iframe-done.php | 3 +++
 modules/core/www/idp/logout-iframe.php      | 1 +
 2 files changed, 4 insertions(+)

diff --git a/modules/core/www/idp/logout-iframe-done.php b/modules/core/www/idp/logout-iframe-done.php
index a9b8320f4..72a1e26f7 100644
--- a/modules/core/www/idp/logout-iframe-done.php
+++ b/modules/core/www/idp/logout-iframe-done.php
@@ -12,10 +12,12 @@ $associations = $idp->getAssociations();
 
 if (!isset($_REQUEST['cancel'])) {
 	SimpleSAML_Logger::stats('slo-iframe done');
+	SimpleSAML_Stats::log('core:idp:logout-iframe:page', array('type' => 'done'));
 	$SPs = $state['core:Logout-IFrame:Associations'];
 } else {
 	/* User skipped global logout. */
 	SimpleSAML_Logger::stats('slo-iframe skip');
+	SimpleSAML_Stats::log('core:idp:logout-iframe:page', array('type' => 'skip'));
 	$SPs = array(); /* No SPs should have been logged out. */
 	$state['core:Failed'] = TRUE; /* Mark as partial logout. */
 }
@@ -52,6 +54,7 @@ foreach ($SPs as $assocId => $sp) {
 			$spId = $assocId;
 		}
 		SimpleSAML_Logger::stats('slo-iframe-fail ' . $spId);
+		SimpleSAML_Stats::log('core:idp:logout-iframe:spfail', array('sp' => $spId));
 		$state['core:Failed'] = TRUE;
 	}
 
diff --git a/modules/core/www/idp/logout-iframe.php b/modules/core/www/idp/logout-iframe.php
index 5b3c3e1ab..1b751e931 100644
--- a/modules/core/www/idp/logout-iframe.php
+++ b/modules/core/www/idp/logout-iframe.php
@@ -16,6 +16,7 @@ if (isset($_REQUEST['type'])) {
 
 if ($type !== 'embed' && $type !== 'async') {
 	SimpleSAML_Logger::stats('slo-iframe ' . $type);
+	SimpleSAML_Stats::log('core:idp:logout-iframe:page', array('type' => $type));
 }
 
 $state = SimpleSAML_Auth_State::loadState($id, 'core:Logout-IFrame');
-- 
GitLab