Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sv translation
languagede

Hintergrund

CompressedUA entält Statistiken bezüglich:

  • Anrufe an Benutzer in Bezug auf bestimmte ACD-Gruppen und Hotlines
  • Weiterleitung von Anrufen durch Benutzer
  • Weitergeleitete Anrufe empfangen von Benutzern
  • Anrufer getätigt von Benutzern für Dialer Kampagnen
  • Anrufe getätigt von Benutzern durch Click to Dial

Informationen wie z.b.:

  • Die Service Nummer
  • Due ACD Gruppe
  • Die Dialer Kampagne
  • Die Anzahl an Anrufen
    • Direkt 
    • Durch eine Weiterleitung
    • Weitergeleitet durch Agent
  • Informationen zu Resultaten
    • Beantwortet
    • Besetzt
    • Auflegen durch Anrufer
    • Abgelehnt
  • Zeiten
    • Ring time
    • Redezeit

sind zur Verfügung gestellt.

Beachten Sie: Da diese Statistiken aggregiert sind, sind weniger Informationen verfügbar als in den Einzelverbindungsnachweisen. Jedoch können diese aggregierten Daten sehr viel länger aufbewahrt werden.

Parameter

Die Daten werden entsprechend den Einstellungen der Parameter aggregiert:

Parameter

Default Value

Purpose

Portal.ACD.Statistics.JTELStats2.Compress.CompressedUA.SecondsToWait

7200

Die Mindestzeit nach dem Ende eines Zeitintervalls, bevor die Statistiken aggregiert werden.

Portal.ACD.Statistics.JTELStats2.Compress.CompressedUA.NextTimeSlice

-

Datum und Uhrzeit des nächsten zu berechnenden Zeitintervalls. Dieser Parameter kann auf ein früheres Datum / eine frühere Uhrzeit zurückgesetzt werden. In diesem Fall berechnet das System alle Intervalle ab dem angegebenen Datum und der angegebenen Uhrzeit neu.

Portal.ACD.Statistics.JTELStats2.Compress.CompressedUA.CustomCompress
Der Name einer gespeicherten Prozedur in JTELStats2, die aufgerufen wird, nachdem die unten beschriebenen Systemstatistiken aggregiert wurden. Dies kann verwendet werden, um zusätzliche Werte in zusätzlichen Tabellen bereitzustellen, wie es für eine benutzerdefinierte Installation festgelegt wurde. HINWEIS: Die Änderung der CompressedUA-Tabellen selbst wird NICHT unterstützt.
Portal.ACD.Statistics.JTELStats2.Compress.CompressedUA.CustomCompress.SuppressErrors0Auf 1 gesetzt, um Fehler in der CustomCompress-Routine zu unterdrücken. Wenn dieses Flag gesetzt ist, fährt das System mit den Berechnungen für die Daten fort, auch wenn die benutzerdefinierte Routine Fehler auslöst.
Portal.ACD.Statistics.JTELStats2.Compress.CompressedUA.EndTime02:50Die EndTime, nach der der Prozess nicht mehr weiterläuft und wartet, bis die StartTime verstrichen ist, bevor er fortgesetzt wird. Wenn leer, läuft der Prozess die ganze Ze
Portal.ACD.Statistics.JTELStats2.Compress.CompressedUA.StartTime22:00Die Startzeit, nach der der Prozess beginnt, bis zur angegebenen Endzeit zu laufen. Wenn leer, läuft der Prozess die ganze Zeit.

Abfrage

Es werden zwei Tabellen bereitgestellt, CompressedA15 (15-Minuten-Zeitabschnitte) und CompressedADay (Tageskomprimierung), die gemäß der folgenden Abfrage aggregiert werden:

Die erste Abfrage aggregiert Anrufe, die AN den Agenten oder DURCH den Agenten getätigt werden (direkte Anrufe von der ACD und an den Agenten weitergeleitete Anrufe, Click-to-Dial-Anrufe und Dialer-Anrufe):

Translations Ignore


Code Block
titleCompressedUA Query 1
SELECT      UsersID,
			(Various Aggregations)
FROM		JTELStats.StatisticsPartB b
LEFT JOIN	JTELStats.StatisticsPartA a
	ON		b.StatisticsPartAID = a.ID
WHERE		( b.ClientsID = _ClientsID )
			AND
			( b.dtCallStart BETWEEN _Timeslice_Begin AND Timeslice_End_ );



Die zweite Abfrage aggregiert die vom Agenten getätigten Anrufe (vom Agenten weitergeleitete Anrufe):

Translations Ignore


Code Block
titleCompressedUA Query 2
SELECT      OriginUsersID,
			(Various Aggregations)
FROM		JTELStats.StatisticsPartB b
JOIN		JTELStats.StatisticsPartA a
	ON		b.StatisticsPartAID = a.ID
WHERE		( b.ClientsID = _ClientsID )
			AND
			( b.dtCallStart BETWEEN _Timeslice_Begin AND Timeslice_End_ )
			AND
			( b.OriginUsersID IS NOT NULL );



Partitionierung und Aggregationen 

Wenn die Daten aggregiert werden, werden sie in mehrere konsistente Partitionen unterteilt, die folgender Logik folgen. Die daraus resultierenden Aggregationen zählen dann entweder einen Anruf, wenn eine Bedingung erfüllt ist, oder ermitteln die Zeit zwischen zwei Zeitstempeln.

Partitionierung Eingehend und Ausgehend

bOutbound

Partitionierung

0

Eingehend

1

Ausgehend


Partitionierung auf CONNRES

Alle Ergebnisse werden partitioniert nach CONNRES.

CONNRES

Feld

1

OK

2

Keine Antwort

3

Besetzt 

Auflegen durch Anrufer

6Abgelehnt
0, 5, 6Fehlgeschlagen

Eingehend: Partitionierung von Anrufen an UsersID

StatisticsPartBOrigin

Feld

Bedeutung

NULL

Direct_*

Direkter Anruf an Agent

NOT NULL

FromTransfer_*

Anruf weitergeleitet an Agent

Eingehend: Partitionierung von Anrufen getätigt von OriginUsersID

bTransferExternalNumber

bTransferAgentFeld

Bedeutung

1


TransferOut_Number_*

Anruf weitergeleitet durch Agent zu externer Nummer


1TransferOut_Agent_*

Anruf weitergeleitet durch Agent zu weiterem Agent

00TransferOut_Group_*Anruf weitergeleitet druch Agent zu Gruppe

Outbound: Partitioning on DiallerCampaignsID

DiallerCampaignsID

Feld

Bedeutung

NULL

ClickToDial_*

Agent hat Click-To-Dial durchgeführt

NOT NULL

Dialler_*

Agent arbeitet in Dialer-Kampagne und Dialer führte Outdial durch

Tabellen

CompressedUA15

Diese Tabelle enthält komprimierte Statistiken für 15-Minuten-Intervalle.

CompressedUADay

Diese Tabelle enthält komprimierte Statistiken für Tagesintervalle.

Felder

Die Felddefinitionen sind in beiden Tabellen im Wesentlichen identisch, nur die Aggregationsintervalle sind unterschiedlich.

FeldTypInhalte
IDINTA unique ID assigned to each record. Note, that IDs are not re-used, since if an interval is recalculated, the record is added with REPLACE, i.e. the existing record will be delteted and a new record with a new ID will be created in its place.
ClientsIDINTID of client from Clients table.
UsersIDINTThe ID of the user from the Users table.
UsersProfilesIDINTThe ID of the user profile from UserProfiles in which the agent was logged in, or 0 if no profile information is available.
ServiceNumbersIDINTID of service number from ServiceNumbers table.
DynamicPriorityGroupsIDINTID of dynamic priority group from DynamicPriorityGroups table, or 0 if no dynamic priority group was assigned.
RoutingApplicationsIDINTID of the routing application from the RoutingApplications Table, or 0 if the application is not available.
AcdGroupsIDINTID of the ACD group, from the AcdGroups table, or 0 if no ACD group is available.
DiallerCampaignsIDINTID of the dialler campaign, from the DiallerCampaigns table, or 0 if no dialler campaign is available.
dtIntervalStartDATETIMEDate and Time of the start of the interval.
UsersUIDVARCHAR(64)The UsersUID field.
UsersNameVARCHAR(64)The Users Name.
UsersFirstNameVARCHAR(64)The Users FirstName.
UsersProfilesNameVARCHAR(64)The UsersProfiles Name.
ServiceNumbersRootNumberVARCHAR(32)The RootNumber field of the service number, as configured when the compressed statistics were created.
ServiceNumbersNameVARCHAR(64)The Name field of the service number, as configured when the compressed statistics were created.
ServiceNumbersName2VARCHAR(64)The Name2 field of the service number, as configured when the compressed statistics were created.
DynamicPriorityGroupsNameVARCHAR(64)The Name field from the DynamicPriorityGroups table, as configured when the compressed statistics were created.
AcdGroupsNameVARCHAR(64)The Name field from the AcdGroups table, as configured when the compressed statistics were created.
Direct_CountINTInbound calls directly to agent, total offered.
Direct_OK_CountINTInbound calls directly to agent, answered.
Direct_OK_Time_CallStart_CallConnect_TotalBIGINTInbound calls directly to agent, answered, total seconds from dtCallStart to dtCallConnect.
Direct_OK_Time_CallStart_CallConnect_MaxINTInbound calls directly to agent, answered, max seconds from dtCallStart to dtCallConnect.
Direct_OK_Time_CallConnect_CallEnd_TotalBIGINTInbound calls directly to agent, answered, total seconds from dtCallConnect to dtCallEnd.
Direct_OK_Time_CallConnect_CallEnd_MaxINTInbound calls directly to agent, answered, max seconds from dtCallConnect to dtCallEnd.
Direct_OK_PostCall_CountINTInbound calls directly to agent, answered, number of calls with post call work.
Direct_OK_PostCall_Time_TotalBIGINTInbound calls directly to agent, answered, total time in post call work.
Direct_OK_PostCall_Time_MaxINTInbound calls directly to agent, answered, max time in post call work.
Direct_NoAnswer_CountINTInbound calls directly to agent, not answered.
Direct_NoAnswer_Time_CallStart_CallEnd_TotalBIGINTInbound calls directly to agent, not answered, total seconds from dtCallStart to dtCallEnd.
Direct_NoAnswer_Time_CallStart_CallEnd_MaxINTInbound calls directly to agent, not answered, max seconds from dtCallStart to dtCallEnd.
Direct_Busy_CountINTInbound calls directly to agent, busy.
Direct_CallerHangup_CountINTInbound calls directly to agent, caller hangup.
Direct_CallerHangup_Time_CallStart_CallEnd_TotalBIGINTInbound calls directly to agent, caller hangup, total seconds from dtCallStart to dtCallEnd.
Direct_CallerHangup_Time_CallStart_CallEnd_MaxINTInbound calls directly to agent, caller hangup, max seconds from dtCallStart to dtCallEnd.
Direct_Reject_CountINTInbound calls directly to agent, rejected.
Direct_Reject_Time_CallStart_CallEnd_TotalBIGINTInbound calls directly to agent, rejected, total seconds from dtCallStart to dtCallEnd.
Direct_Reject_Time_CallStart_CallEnd_MaxINTInbound calls directly to agent, rejected, max seconds from dtCallStart to dtCallEnd.
Direct_Failure_CountINTInbound calls directly to agent, failed.
FromTransfer_CountINTInbound calls transferred to agent, total offered.
FromTransfer_OK_CountINTInbound calls transferred to agent, answered.
FromTransfer_OK_Time_CallStart_CallConnect_TotalBIGINTInbound calls transferred to agent, answered, total seconds from dtCallStart to dtCallConnect.
FromTransfer_OK_Time_CallStart_CallConnect_MaxINTInbound calls transferred to agent, answered, max seconds from dtCallStart to dtCallConnect.
FromTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINTInbound calls transferred to agent, answered, total seconds from dtCallConnect to dtCallEnd.
FromTransfer_OK_Time_CallConnect_CallEnd_MaxINTInbound calls transferred to agent, answered, max seconds from dtCallConnect to dtCallEnd.
FromTransfer_OK_PostCall_CountINTInbound calls transferred to agent, answered, number of calls with post call work.
FromTransfer_OK_PostCall_Time_TotalBIGINTInbound calls transferred to agent, answered, total time in post call work.
FromTransfer_OK_PostCall_Time_MaxINTInbound calls transferred to agent, answered, max time in post call work.
FromTransfer_NoAnswer_CountINTInbound calls transferred to agent, not answered.
FromTransfer_NoAnswer_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred to agent, not answered, total seconds from dtCallStart to dtCallEnd.
FromTransfer_NoAnswer_Time_CallStart_CallEnd_MaxINTInbound calls transferred to agent, not answered, max seconds from dtCallStart to dtCallEnd.
FromTransfer_Busy_CountINTInbound calls transferred to agent, busy.
FromTransfer_CallerHangup_CountINTInbound calls transferred to agent, caller hangup.
FromTransfer_CallerHangup_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred to agent, caller hangup, total seconds from dtCallStart to dtCallEnd.
FromTransfer_CallerHangup_Time_CallStart_CallEnd_MaxINTInbound calls transferred to agent, caller hangup, max seconds from dtCallStart to dtCallEnd.
FromTransfer_Reject_CountINTInbound calls transferred to agent, rejected.
FromTransfer_Reject_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred to agent, rejected, total seconds from dtCallStart to dtCallEnd.
FromTransfer_Reject_Time_CallStart_CallEnd_MaxINTInbound calls transferred to agent, rejected, max seconds from dtCallStart to dtCallEnd.
FromTransfer_Failure_CountINTInbound calls transferred to agent, failed.
TransferOut_Number_CountINTInbound calls transferred out to number by agent, total attempts.
TransferOut_Number_OK_CountINTInbound calls transferred out to number by agent, answered.
TransferOut_Number_OK_Time_CallStart_CallConnect_TotalBIGINTInbound calls transferred out to number by agent, answered, total seconds from dtCallStart to dtCallConnect.
TransferOut_Number_OK_Time_CallStart_CallConnect_MaxINTInbound calls transferred out to number by agent, answered, max seconds from dtCallStart to dtCallConnect.
TransferOut_Number_OK_Time_CallConnect_CallEnd_TotalBIGINTInbound calls transferred out to number by agent, answered, total seconds from dtCallConnect to dtCallEnd.
TransferOut_Number_OK_Time_CallConnect_CallEnd_MaxINTInbound calls transferred out to number by agent, answered, max seconds from dtCallConnect to dtCallEnd.
TransferOut_Number_NoAnswer_CountINTInbound calls transferred out to number by agent, no answer.
TransferOut_Number_NoAnswer_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred out to number by agent, no answer, total seconds from dCallStart to dtCallEnd.
TransferOut_Number_NoAnswer_Time_CallStart_CallEnd_MaxINTInbound calls transferred out to number by agent, no answer, max seconds from dCallStart to dtCallEnd.
TransferOut_Number_Busy_CountINTInbound calls transferred out to number by agent, busy.
TransferOut_Number_CallerHangup_CountINTInbound calls transferred out to number by agent, caller hangup.
TransferOut_Number_CallerHangup_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred out to number by agent, caller hangup, total seconds from dCallStart to dtCallEnd.
TransferOut_Number_CallerHangup_Time_CallStart_CallEnd_MaxINTInbound calls transferred out to number by agent, caller hangup, max seconds from dCallStart to dtCallEnd.
TransferOut_Number_Reject_CountINTInbound calls transferred out to number by agent, rejected.
TransferOut_Number_Reject_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred out to number by agent, rejected, total seconds from dCallStart to dtCallEnd.
TransferOut_Number_Reject_Time_CallStart_CallEnd_MaxINTInbound calls transferred out to number by agent, rejected, max seconds from dCallStart to dtCallEnd.
TransferOut_Number_Failure_CountINTInbound calls transferred out to number by agent, failed.
TransferOut_Group_CountINTInbound calls transferred out to group by agent, total attempts.
TransferOut_Group_OK_CountINTInbound calls transferred out to group by agent, answered.
TransferOut_Group_OK_Time_CallStart_CallConnect_TotalBIGINTInbound calls transferred out to group by agent, answered, total seconds from dtCallStart to dtCallConnect.
TransferOut_Group_OK_Time_CallStart_CallConnect_MaxINTInbound calls transferred out to group by agent, answered, max seconds from dtCallStart to dtCallConnect.
TransferOut_Group_OK_Time_CallConnect_CallEnd_TotalBIGINTInbound calls transferred out to group by agent, answered, total seconds from dtCallConnect to dtCallEnd.
TransferOut_Group_OK_Time_CallConnect_CallEnd_MaxINTInbound calls transferred out to group by agent, answered, max seconds from dtCallConnect to dtCallEnd.
TransferOut_Group_NoAnswer_CountINTInbound calls transferred out to group by agent, no answer.
TransferOut_Group_NoAnswer_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred out to group by agent, no answer, total seconds from dCallStart to dtCallEnd.
TransferOut_Group_NoAnswer_Time_CallStart_CallEnd_MaxINTInbound calls transferred out to group by agent, no answer, max seconds from dCallStart to dtCallEnd.
TransferOut_Group_Busy_CountINTInbound calls transferred out to group by agent, busy.
TransferOut_Group_CallerHangup_CountINTInbound calls transferred out to group by agent, caller hangup.
TransferOut_Group_CallerHangup_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred out to group by agent, caller hangup, total seconds from dCallStart to dtCallEnd.
TransferOut_Group_CallerHangup_Time_CallStart_CallEnd_MaxINTInbound calls transferred out to group by agent, caller hangup, max seconds from dCallStart to dtCallEnd.
TransferOut_Group_Reject_CountINTInbound calls transferred out to group by agent, rejected.
TransferOut_Group_Reject_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred out to group by agent, rejected, total seconds from dCallStart to dtCallEnd.
TransferOut_Group_Reject_Time_CallStart_CallEnd_MaxINTInbound calls transferred out to group by agent, rejected, max seconds from dCallStart to dtCallEnd.
TransferOut_Group_Failure_CountINTInbound calls transferred out to group by agent, failed.
TransferOut_Agent_CountINTInbound calls transferred out to agent by agent, total attempts.
TransferOut_Agent_OK_CountINTInbound calls transferred out to agent by agent, answered.
TransferOut_Agent_OK_Time_CallStart_CallConnect_TotalBIGINTInbound calls transferred out to agent by agent, answered, total seconds from dtCallStart to dtCallConnect.
TransferOut_Agent_OK_Time_CallStart_CallConnect_MaxINTInbound calls transferred out to agent by agent, answered, max seconds from dtCallStart to dtCallConnect.
TransferOut_Agent_OK_Time_CallConnect_CallEnd_TotalBIGINTInbound calls transferred out to agent by agent, answered, total seconds from dtCallConnect to dtCallEnd.
TransferOut_Agent_OK_Time_CallConnect_CallEnd_MaxINTInbound calls transferred out to agent by agent, answered, max seconds from dtCallConnect to dtCallEnd.
TransferOut_Agent_NoAnswer_CountINTInbound calls transferred out to agent by agent, no answer.
TransferOut_Agent_NoAnswer_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred out to agent by agent, no answer, total seconds from dCallStart to dtCallEnd.
TransferOut_Agent_NoAnswer_Time_CallStart_CallEnd_MaxINTInbound calls transferred out to agent by agent, no answer, max seconds from dCallStart to dtCallEnd.
TransferOut_Agent_Busy_CountINTInbound calls transferred out to agent by agent, busy.
TransferOut_Agent_CallerHangup_CountINTInbound calls transferred out to agent by agent, caller hangup.
TransferOut_Agent_CallerHangup_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred out to agent by agent, caller hangup, total seconds from dCallStart to dtCallEnd.
TransferOut_Agent_CallerHangup_Time_CallStart_CallEnd_MaxINTInbound calls transferred out to agent by agent, caller hangup, max seconds from dCallStart to dtCallEnd.
TransferOut_Agent_Reject_CountINTInbound calls transferred out to agent by agent, rejected.
TransferOut_Agent_Reject_Time_CallStart_CallEnd_TotalBIGINTInbound calls transferred out to agent by agent, rejected, total seconds from dCallStart to dtCallEnd.
TransferOut_Agent_Reject_Time_CallStart_CallEnd_MaxINTInbound calls transferred out to agent by agent, rejected, max seconds from dCallStart to dtCallEnd.
TransferOut_Agent_Failure_CountINTInbound calls transferred out to agent by agent, failed.
ClickToDial_CountINTOutbound, click to dial, total.
ClickToDial_OK_CountINTOutbound, click to dial, OK.
ClickToDial_OK_Time_CallStart_CallConnect_TotalINTOutbound, click to dial, OK, total seconds from dtCallStart to dtCallConnect (to destination leg).
ClickToDial_OK_Time_CallStart_CallConnect_MaxINTOutbound, click to dial, OK, max seconds from dtCallStart to dtCallConnect (to destination leg).
ClickToDial_OK_Time_CallConnect_CallEnd_TotalINTOutbound, click to dial, OK, total seconds from dtCallConnect to dtCallEnd (to destination leg).
ClickToDial_OK_Time_CallConnect_CallEnd_MaxINTOutbound, click to dial, OK, max seconds from dtCallConnect to dtCallEnd (to destination leg).
ClickToDial_NoAnswer_CountINTOutbound, click to dial, no answer.
ClickToDial_NoAnswer_Time_CallStart_CallEnd_TotalINTOutbound, click to dial, OK, total seconds from dtCallStart to dtCallEnd (to destination leg).
ClickToDial_NoAnswer_Time_CallStart_CallEnd_MaxINTOutbound, click to dial, OK, max seconds from dtCallStart to dtCallEnd (to destination leg).
ClickToDial_Busy_CountINTOutbound, click to dial, busy.
ClickToDial_AgentHangup_CountINTOutbound, click to dial, agent hangup before call connected.
ClickToDial_Reject_CountINTOutbound, click to dial, rejected.
ClickToDial_Failure_CountINTOutbound, click to dial, failed.
Dialler_CountINTOutbound, from dialler campaign, total.
Dialler_OK_CountINTOutbound, from dialler campaign, OK.
Dialler_OK_Time_CallStart_CallConnect_TotalINTOutbound, from dialler campaign, OK, total seconds from dtCallStart to dtCallConnect (to destination leg).
Dialler_OK_Time_CallStart_CallConnect_MaxINTOutbound, from dialler campaign, OK, max seconds from dtCallStart to dtCallConnect (to destination leg).
Dialler_OK_Time_CallConnect_CallEnd_TotalINTOutbound, from dialler campaign, OK, total seconds from dtCallConnect to dtCallEnd (to destination leg).
Dialler_OK_Time_CallConnect_CallEnd_MaxINTOutbound, from dialler campaign, OK, max seconds from dtCallConnect to dtCallEnd (to destination leg).
Dialler_NoAnswer_CountINTOutbound, from dialler campaign, no answer.
Dialler_NoAnswer_Time_CallStart_CallEnd_TotalINTOutbound, from dialler campaign, OK, total seconds from dtCallStart to dtCallEnd (to destination leg).
Dialler_NoAnswer_Time_CallStart_CallEnd_MaxINTOutbound, from dialler campaign, OK, max seconds from dtCallStart to dtCallEnd (to destination leg).
Dialler_Busy_CountINTOutbound, from dialler campaign, busy.
Dialler_AgentHangup_CountINTOutbound, from dialler campaign, agent hangup before call connected.
Dialler_Reject_CountINTOutbound, from dialler campaign, rejected.
Dialler_Failure_CountINTOutbound, from dialler campaign, failed.


...