Genesys CTI User Forum
Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: alex.cantanhede@gmail.com on December 17, 2019, 11:20:53 AM
-
Hello,
I need some help.
It's possible to create a statistic in CCPulse that shows the number of released calls from an agent or a group of agents?
Thanks
-
You mean, calls that they ended? Or can be customer or agent?
If the agent/customer released: That info comes in the Extensions section, and InfoMart can get it for example, but not CCPulse as far as I know.
Another option could be CallReleased who is a retrospective stat for the OrigDN, which could be a VQ for example and then you report how many but...what is the point actually?
-
You can try to filter mentioned Extensions section for all EventReleased using filters section. This way you can show in CCPulse how many calls were released by agent and how many by the customers.
-
You sure? As per SS doc:
[quote]
In a filtered statistic, Stat Server only considers those actions that satisfy a filter condition on certain attributes of TEvents, such as DNIS, ANI, CustomerID (or TenantID), MediaType, ThisQueue, TreatmentType, UserData, Reasons, and ExtensionReasonCode. Stat Server also allows filtering by Interaction Server-driven events via the UserData and Reasons attributes [/quote]
[quote]
The filter expression is evaluated over the UserData structure belonging to the action or status.
[/quote]
Never saw a filter based on AttributeExtensions
[code]
AttributeExtensions [72] 00 03 00 00..
'OtherTrunkName' 'SBC'
'BusinessCall' 1
'ReleasingParty' '2 Remote'
[/code]
-
Pretty sure. https://docs.genesys.com/Documentation/RTME/latest/User/Filters#Call_Properties.
Row Extensions
[code]This property enables Stat Server to filter switch-specific and other features on any specified key-value pair recorded in the Attribute Extensions attribute of select TEvents. [/code]
I've used following stat:
[code][CallsCompleted]
Category=TotalNumber
MainMask=CallInboundCompleted,CallOutboundCompleted,CallInternalCompleted,CallUnknownCompleted
Objects=Agent, Place, GroupAgents, GroupPlaces
Subject=DNAction[/code]
and following filters:
[code][Filters]
ReleasedLocal=PairExists(Extensions,"ReleasingParty","1 Local")
ReleasedRemote=PairExists(Extensions,"ReleasingParty","2 Remote")
[/code]
to get following results:
Completed All [b]byAgent byCustomer[/b]
agent - Agent.T 3 [b]2 1[/b]
I'm not sure how to paste image from CCPulse.
Env: SIPS 8.1.103.54, SS 8.5.112.04, CCP 8.1.100.68
I believe this was possible since 8.0 release of StatServer
https://docs.genesys.com/extensions/Repository/cache/public/Reporting%20and%20Analytics/StatServer_RTME/8.0/statserver80rn.html#8.0.000.22
[quote]
For both call-related actions and actions associated with agent notifications (such as Ready/NotReady/ACW, Stat Server is now able to filter based on the
corresponding TEvent's Extensions attribute (AttributeExtensions) only by specifying Extensions as the first parameter of three in a key-value pair designation: For example:
PairExist( Extensions, <key>, <value> )[/quote]
-
:o Seems need to read updated documentation! Thanks!
-
Cool!