diff --git a/modules/core/www/idp/logout-iframe-done.php b/modules/core/www/idp/logout-iframe-done.php index a9b8320f4239eb9055e0f9006549f1e5302561af..72a1e26f78085e5b6ba7574b92188c91e470c36a 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 5b3c3e1abeaf9b8a4696b3ee6c0dbca23246bc87..1b751e931b2ba112e6ae6dacad25c6297b5c3f5a 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');