queri 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +18 -0
- data/lib/queri/stats/call_distribution_by_hour.rb +11 -0
- data/lib/queri/stats/call_distribution_by_hour/answered_call_distribution_per_hour.rb +28 -0
- data/lib/queri/stats/call_distribution_by_hour/answered_call_wait_time_per_hour.rb +28 -0
- data/lib/queri/stats/call_distribution_by_hour/inclusive_service_level_agreement_per_hour.rb +36 -0
- data/lib/queri/stats/call_distribution_by_hour/queue_length_per_hour.rb +29 -0
- data/lib/queri/stats/call_distribution_by_hour/sales_per_hour.rb +30 -0
- data/lib/queri/stats/call_distribution_by_hour/schedule_adherence_per_hour.rb +24 -0
- data/lib/queri/stats/call_distribution_by_hour/traffic_analysis_by_period_per_hour.rb +39 -0
- data/lib/queri/stats/call_distribution_by_hour/unanswered_call_wait_time_per_hour.rb +28 -0
- data/lib/queri/version.rb +1 -1
- data/spec/stats/call_distribution_by_hour/answered_call_distribution_per_hour_spec.rb +20 -0
- data/spec/stats/call_distribution_by_hour/answered_call_wait_time_per_hour_spec.rb +20 -0
- data/spec/stats/call_distribution_by_hour/call_distribution_by_hour_spec.rb +7 -0
- data/spec/stats/call_distribution_by_hour/inclusive_service_level_agreement_per_hour_spec.rb +20 -0
- data/spec/stats/call_distribution_by_hour/queue_length_per_hour_spec.rb +20 -0
- data/spec/stats/call_distribution_by_hour/sales_per_hour_spec.rb +20 -0
- data/spec/stats/call_distribution_by_hour/schedule_adherence_per_hour_spec.rb +20 -0
- data/spec/stats/call_distribution_by_hour/traffic_analysis_by_period_per_hour_spec.rb +20 -0
- data/spec/stats/call_distribution_by_hour/unanswered_call_wait_time_per_hour_spec.rb +20 -0
- metadata +28 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ca946daa493674adb31abe0ab81ad8f7d74aad8
|
4
|
+
data.tar.gz: e0edd54dc8da3c69e05d61bf95850d98399aca8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6905b3bf2a0044a1f9bcf098fc28407ff3c5dd605cd9323b56240e4a716222f42c3e3b212a4da080b85e439d081fd827e61ee0952b85e50fabecf363be5499a5
|
7
|
+
data.tar.gz: 7c1a38f2123bd4d9af037eb0d34baf65b2800659a58bcaf4580bbbb87ea58a0381f6c9134d73aaf1cf60e5d719e19cb70dd9461e86a19e2c28b652d89c0b73a5
|
data/README.md
CHANGED
@@ -72,6 +72,15 @@ Currently returns analyses from two methods: QM.stats and QM.realtime.
|
|
72
72
|
* ScheduleAdherencePerDay
|
73
73
|
* TrafficAnalysisByPeriodPerDay
|
74
74
|
* UnansweredCallWaitTimePerDay
|
75
|
+
* CallDistributionByHour
|
76
|
+
* AnsweredCallDistributionPerHour
|
77
|
+
* AnsweredCallWaitTimePerHour
|
78
|
+
* InclusiveServiceLevelAgreementPerHour
|
79
|
+
* QueueLengthPerHour
|
80
|
+
* SalesPerHour
|
81
|
+
* ScheduleAdherencePerHour
|
82
|
+
* TrafficAnalysisByPeriodPerHour
|
83
|
+
* UnansweredCallWaitTimePerHour
|
75
84
|
* DetailsOfAgentSessionsAndPauses
|
76
85
|
* DetailOfAgentSessions
|
77
86
|
* DetailOfAgentPauses
|
@@ -174,6 +183,15 @@ Composite aggregate reports return an Array of Hashes, each Hash corresponding t
|
|
174
183
|
* ScheduleAdherencePerDay
|
175
184
|
* TrafficAnalysisByPeriodPerDay
|
176
185
|
* UnansweredCallWaitTimePerDay
|
186
|
+
* CallDistributionByHour
|
187
|
+
* AnsweredCallDistributionPerHour
|
188
|
+
* AnsweredCallWaitTimePerHour
|
189
|
+
* InclusiveServiceLevelAgreementPerHour
|
190
|
+
* QueueLengthPerHour
|
191
|
+
* SalesPerHour
|
192
|
+
* ScheduleAdherencePerHour
|
193
|
+
* TrafficAnalysisByPeriodPerHour
|
194
|
+
* UnansweredCallWaitTimePerHour
|
177
195
|
* Distributions
|
178
196
|
* AcdAttemptsByQueue
|
179
197
|
* AcdAttemptsByTerminal
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module Queri
|
2
|
+
class Stats
|
3
|
+
class CallDistributionByHour
|
4
|
+
class AnsweredCallDistributionPerHour < Queri::Stats
|
5
|
+
include CompositeReportHelpers
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def xml_code
|
9
|
+
CallDistributionByHour.xml_code + ".AnsDistrPerHr"
|
10
|
+
end
|
11
|
+
|
12
|
+
def key_translations
|
13
|
+
ActiveSupport::OrderedHash[
|
14
|
+
:hour, "Hour",
|
15
|
+
:number_of_calls, "Num",
|
16
|
+
:percentage_of_answered_calls_within_period, " ",
|
17
|
+
:placeholder_for_num_calls_bar_graph, "Answered calls",
|
18
|
+
:average_call_duration, "Avg",
|
19
|
+
:minimum_call_duration, "Min",
|
20
|
+
:maximum_call_duration, "Max",
|
21
|
+
:placeholder_for_call_duration_bar_graph, "Avg duration"
|
22
|
+
]
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module Queri
|
2
|
+
class Stats
|
3
|
+
class CallDistributionByHour
|
4
|
+
class AnsweredCallWaitTimePerHour < Queri::Stats
|
5
|
+
include CompositeReportHelpers
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def xml_code
|
9
|
+
CallDistributionByHour.xml_code + ".AnsWaitPerHr"
|
10
|
+
end
|
11
|
+
|
12
|
+
def key_translations
|
13
|
+
ActiveSupport::OrderedHash[
|
14
|
+
:hour, "Hour",
|
15
|
+
:number_of_calls, "Num",
|
16
|
+
:percentage_of_answered_calls_within_period, " ",
|
17
|
+
:placeholder_for_num_calls_bar_graph, "Answered calls",
|
18
|
+
:average_call_wait_time, "Avg",
|
19
|
+
:minimum_call_wait_time, "Min",
|
20
|
+
:maximum_call_wait_time, "Max",
|
21
|
+
:placeholder_for_avg_wait_bar_graph, "Avg wait"
|
22
|
+
]
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
module Queri
|
2
|
+
class Stats
|
3
|
+
class CallDistributionByHour
|
4
|
+
class InclusiveServiceLevelAgreementPerHour < Queri::Stats
|
5
|
+
include CompositeReportHelpers
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def xml_code
|
9
|
+
CallDistributionByHour.xml_code + ".InclSlaPerHr"
|
10
|
+
end
|
11
|
+
|
12
|
+
def key_translations
|
13
|
+
ActiveSupport::OrderedHash[
|
14
|
+
:hour, "Hour",
|
15
|
+
:number_of_answered_calls, "Ans.",
|
16
|
+
:number_of_unanswered_calls, "Unans.",
|
17
|
+
:number_of_processed_calls, "Num",
|
18
|
+
:percentage_of_calls_answered_under_10_sec, "< 10",
|
19
|
+
:percentage_of_calls_answered_under_20_sec, "< 20",
|
20
|
+
:percentage_of_calls_answered_under_30_sec, "< 30",
|
21
|
+
:percentage_of_calls_answered_under_40_sec, "< 40",
|
22
|
+
:percentage_of_calls_answered_under_50_sec, "< 50",
|
23
|
+
:percentage_of_calls_answered_under_60_sec, "< 60",
|
24
|
+
:percentage_of_calls_answered_under_70_sec, "< 70",
|
25
|
+
:percentage_of_calls_answered_under_80_sec, "< 80",
|
26
|
+
:percentage_of_calls_answered_under_90_sec, "< 90",
|
27
|
+
:percentage_of_calls_answered_under_100_sec, "< 100",
|
28
|
+
:percentage_of_calls_answered_under_110_sec, "< 110",
|
29
|
+
:percentage_of_calls_answered_under_120_sec, "< 120"
|
30
|
+
]
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Queri
|
2
|
+
class Stats
|
3
|
+
class CallDistributionByHour
|
4
|
+
class QueueLengthPerHour < Queri::Stats
|
5
|
+
include CompositeReportHelpers
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def xml_code
|
9
|
+
CallDistributionByHour.xml_code + ".QPosPerHr"
|
10
|
+
end
|
11
|
+
|
12
|
+
def key_translations
|
13
|
+
ActiveSupport::OrderedHash[
|
14
|
+
:hour, "Hour",
|
15
|
+
:average_queue_length_during_period, "Avg",
|
16
|
+
:placeholder_for_length_avg_bar_graph, " ",
|
17
|
+
:minimum_queue_length, "Min",
|
18
|
+
:maximum_queue_length, "Max",
|
19
|
+
:another_bar_graph, " ",
|
20
|
+
:coverage_percentage, "Cover.",
|
21
|
+
:rate_of_throughput_per_hour, "Steps",
|
22
|
+
:empty, " "
|
23
|
+
]
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Queri
|
2
|
+
class Stats
|
3
|
+
class CallDistributionByHour
|
4
|
+
class SalesPerHour < Queri::Stats
|
5
|
+
include CompositeReportHelpers
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def xml_code
|
9
|
+
CallDistributionByHour.xml_code + ".SalesPerHr"
|
10
|
+
end
|
11
|
+
|
12
|
+
def key_translations
|
13
|
+
ActiveSupport::OrderedHash[
|
14
|
+
:hour, "Hour",
|
15
|
+
:conv, "Conv.",
|
16
|
+
:qconv, "QConv.",
|
17
|
+
:sales, "Sales",
|
18
|
+
:sales_percentage, " ",
|
19
|
+
:placeholder_for_sales_bar_graph, " ",
|
20
|
+
:qcont, "QCont.",
|
21
|
+
:contacts, "Contacts",
|
22
|
+
:contacts_percentage, " ",
|
23
|
+
:placeholder_for_contacts_bar_graph, " "
|
24
|
+
]
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Queri
|
2
|
+
class Stats
|
3
|
+
class CallDistributionByHour
|
4
|
+
class ScheduleAdherencePerHour < Queri::Stats
|
5
|
+
include CompositeReportHelpers
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def xml_code
|
9
|
+
CallDistributionByHour.xml_code + ".StaffPerHr"
|
10
|
+
end
|
11
|
+
|
12
|
+
def key_translations
|
13
|
+
ActiveSupport::OrderedHash[
|
14
|
+
:hour, "Hour",
|
15
|
+
:number_of_agents, "Agents",
|
16
|
+
:percentage_of_all_agents_detected_within_period, " ",
|
17
|
+
:placeholder_for_bar_graph, " "
|
18
|
+
]
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
module Queri
|
2
|
+
class Stats
|
3
|
+
class CallDistributionByHour
|
4
|
+
class TrafficAnalysisByPeriodPerHour < Queri::Stats
|
5
|
+
include CompositeReportHelpers
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def xml_code
|
9
|
+
CallDistributionByHour.xml_code + ".TrafficAnPerHr"
|
10
|
+
end
|
11
|
+
|
12
|
+
def key_translations
|
13
|
+
ActiveSupport::OrderedHash[
|
14
|
+
:hour, "Hour",
|
15
|
+
:average_agents_logged_in_per_period_vs_total_period, "Avg ag",
|
16
|
+
:number_of_incoming_calls_per_period_vs_available_agents, "Calls/Ag",
|
17
|
+
:incoming_calls_sla, "Svc Lvl",
|
18
|
+
:number_of_lost_calls, "Unans",
|
19
|
+
:percentage_of_lost_calls_below_x_seconds, "Unans short",
|
20
|
+
:number_of_outgoing_calls_per_period_vs_available_agents, "Avg out",
|
21
|
+
:outbound_to_inbound_ratio, "Out/in",
|
22
|
+
:average_incoming_call_wait_time, "Avg ans",
|
23
|
+
:average_incoming_call_talk_time, "Avg talk",
|
24
|
+
:maximum_answered_incoming_call_wait_time, "Max wait ans",
|
25
|
+
:maximum_lost_incoming_call_wait_time, "Max wait lost",
|
26
|
+
:maximum_incoming_call_talk_time, "Max dur",
|
27
|
+
:maximum_outgoing_call_talk_time, "Max dur out",
|
28
|
+
:number_of_incoming_calls, "Off.",
|
29
|
+
:number_of_answered_incoming_calls, "Ans.",
|
30
|
+
:number_of_answered_outgoing_calls, "Ans. out",
|
31
|
+
:minimum_logged_on_agents_for_period, "Min Ag.",
|
32
|
+
:maximum_logged_on_agents_for_period, "Max Ag."
|
33
|
+
]
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module Queri
|
2
|
+
class Stats
|
3
|
+
class CallDistributionByHour
|
4
|
+
class UnansweredCallWaitTimePerHour < Queri::Stats
|
5
|
+
include CompositeReportHelpers
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def xml_code
|
9
|
+
CallDistributionByHour.xml_code + ".UnansWaitPerHr"
|
10
|
+
end
|
11
|
+
|
12
|
+
def key_translations
|
13
|
+
ActiveSupport::OrderedHash[
|
14
|
+
:hour, "Hour",
|
15
|
+
:number_of_calls, "Num",
|
16
|
+
:percentage_of_unanswered_calls_within_period, " ",
|
17
|
+
:placeholder_for_num_calls_bar_graph, "Unanswered calls",
|
18
|
+
:average_call_wait_time, "Avg",
|
19
|
+
:minimum_call_wait_time, "Min",
|
20
|
+
:maximum_call_wait_time, "Max",
|
21
|
+
:placeholder_for_avg_wait_bar_graph, "Avg wait"
|
22
|
+
]
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
data/lib/queri/version.rb
CHANGED
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Queri::Stats::CallDistributionByHour::AnsweredCallDistributionPerHour do
|
4
|
+
let(:report_class) { Queri::Stats::CallDistributionByHour::AnsweredCallDistributionPerHour }
|
5
|
+
let(:xml_code) { report_class.xml_code }
|
6
|
+
|
7
|
+
before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
|
8
|
+
|
9
|
+
it_behaves_like "a report class"
|
10
|
+
|
11
|
+
it_behaves_like "a report method"
|
12
|
+
|
13
|
+
it_behaves_like "a queuemetrics report"
|
14
|
+
|
15
|
+
it_behaves_like "a stats report"
|
16
|
+
|
17
|
+
describe "An instance of", Queri::Stats::CallDistributionByHour::AnsweredCallDistributionPerHour do
|
18
|
+
it_behaves_like "a composite aggregate report instance"
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Queri::Stats::CallDistributionByHour::AnsweredCallWaitTimePerHour do
|
4
|
+
let(:report_class) { Queri::Stats::CallDistributionByHour::AnsweredCallWaitTimePerHour }
|
5
|
+
let(:xml_code) { report_class.xml_code }
|
6
|
+
|
7
|
+
before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
|
8
|
+
|
9
|
+
it_behaves_like "a report class"
|
10
|
+
|
11
|
+
it_behaves_like "a report method"
|
12
|
+
|
13
|
+
it_behaves_like "a queuemetrics report"
|
14
|
+
|
15
|
+
it_behaves_like "a stats report"
|
16
|
+
|
17
|
+
describe "An instance of", Queri::Stats::CallDistributionByHour::AnsweredCallWaitTimePerHour do
|
18
|
+
it_behaves_like "a composite aggregate report instance"
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Queri::Stats::CallDistributionByHour::InclusiveServiceLevelAgreementPerHour do
|
4
|
+
let(:report_class) { Queri::Stats::CallDistributionByHour::InclusiveServiceLevelAgreementPerHour }
|
5
|
+
let(:xml_code) { report_class.xml_code }
|
6
|
+
|
7
|
+
before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
|
8
|
+
|
9
|
+
it_behaves_like "a report class"
|
10
|
+
|
11
|
+
it_behaves_like "a report method"
|
12
|
+
|
13
|
+
it_behaves_like "a queuemetrics report"
|
14
|
+
|
15
|
+
it_behaves_like "a stats report"
|
16
|
+
|
17
|
+
describe "An instance of", Queri::Stats::CallDistributionByHour::InclusiveServiceLevelAgreementPerHour do
|
18
|
+
it_behaves_like "a composite aggregate report instance"
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Queri::Stats::CallDistributionByHour::QueueLengthPerHour do
|
4
|
+
let(:report_class) { Queri::Stats::CallDistributionByHour::QueueLengthPerHour }
|
5
|
+
let(:xml_code) { report_class.xml_code }
|
6
|
+
|
7
|
+
before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
|
8
|
+
|
9
|
+
it_behaves_like "a report class"
|
10
|
+
|
11
|
+
it_behaves_like "a report method"
|
12
|
+
|
13
|
+
it_behaves_like "a queuemetrics report"
|
14
|
+
|
15
|
+
it_behaves_like "a stats report"
|
16
|
+
|
17
|
+
describe "An instance of", Queri::Stats::CallDistributionByHour::QueueLengthPerHour do
|
18
|
+
it_behaves_like "a composite aggregate report instance"
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Queri::Stats::CallDistributionByHour::SalesPerHour do
|
4
|
+
let(:report_class) { Queri::Stats::CallDistributionByHour::SalesPerHour }
|
5
|
+
let(:xml_code) { report_class.xml_code }
|
6
|
+
|
7
|
+
before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
|
8
|
+
|
9
|
+
it_behaves_like "a report class"
|
10
|
+
|
11
|
+
it_behaves_like "a report method"
|
12
|
+
|
13
|
+
it_behaves_like "a queuemetrics report"
|
14
|
+
|
15
|
+
it_behaves_like "a stats report"
|
16
|
+
|
17
|
+
describe "An instance of", Queri::Stats::CallDistributionByHour::SalesPerHour do
|
18
|
+
it_behaves_like "a composite aggregate report instance"
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Queri::Stats::CallDistributionByHour::ScheduleAdherencePerHour do
|
4
|
+
let(:report_class) { Queri::Stats::CallDistributionByHour::ScheduleAdherencePerHour }
|
5
|
+
let(:xml_code) { report_class.xml_code }
|
6
|
+
|
7
|
+
before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
|
8
|
+
|
9
|
+
it_behaves_like "a report class"
|
10
|
+
|
11
|
+
it_behaves_like "a report method"
|
12
|
+
|
13
|
+
it_behaves_like "a queuemetrics report"
|
14
|
+
|
15
|
+
it_behaves_like "a stats report"
|
16
|
+
|
17
|
+
describe "An instance of", Queri::Stats::CallDistributionByHour::ScheduleAdherencePerHour do
|
18
|
+
it_behaves_like "a composite aggregate report instance"
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Queri::Stats::CallDistributionByHour::TrafficAnalysisByPeriodPerHour do
|
4
|
+
let(:report_class) { Queri::Stats::CallDistributionByHour::TrafficAnalysisByPeriodPerHour }
|
5
|
+
let(:xml_code) { report_class.xml_code }
|
6
|
+
|
7
|
+
before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
|
8
|
+
|
9
|
+
it_behaves_like "a report class"
|
10
|
+
|
11
|
+
it_behaves_like "a report method"
|
12
|
+
|
13
|
+
it_behaves_like "a queuemetrics report"
|
14
|
+
|
15
|
+
it_behaves_like "a stats report"
|
16
|
+
|
17
|
+
describe "An instance of", Queri::Stats::CallDistributionByHour::TrafficAnalysisByPeriodPerHour do
|
18
|
+
it_behaves_like "a composite aggregate report instance"
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Queri::Stats::CallDistributionByHour::UnansweredCallWaitTimePerHour do
|
4
|
+
let(:report_class) { Queri::Stats::CallDistributionByHour::UnansweredCallWaitTimePerHour }
|
5
|
+
let(:xml_code) { report_class.xml_code }
|
6
|
+
|
7
|
+
before { Queri.configure_with(File.join(File.dirname(__FILE__), '..', '..', 'config.yml')) }
|
8
|
+
|
9
|
+
it_behaves_like "a report class"
|
10
|
+
|
11
|
+
it_behaves_like "a report method"
|
12
|
+
|
13
|
+
it_behaves_like "a queuemetrics report"
|
14
|
+
|
15
|
+
it_behaves_like "a stats report"
|
16
|
+
|
17
|
+
describe "An instance of", Queri::Stats::CallDistributionByHour::UnansweredCallWaitTimePerHour do
|
18
|
+
it_behaves_like "a composite aggregate report instance"
|
19
|
+
end
|
20
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: queri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brad Rice
|
@@ -113,6 +113,15 @@ files:
|
|
113
113
|
- lib/queri/stats/call_distribution_by_day/schedule_adherence_per_day.rb
|
114
114
|
- lib/queri/stats/call_distribution_by_day/traffic_analysis_by_period_per_day.rb
|
115
115
|
- lib/queri/stats/call_distribution_by_day/unanswered_call_wait_time_per_day.rb
|
116
|
+
- lib/queri/stats/call_distribution_by_hour.rb
|
117
|
+
- lib/queri/stats/call_distribution_by_hour/answered_call_distribution_per_hour.rb
|
118
|
+
- lib/queri/stats/call_distribution_by_hour/answered_call_wait_time_per_hour.rb
|
119
|
+
- lib/queri/stats/call_distribution_by_hour/inclusive_service_level_agreement_per_hour.rb
|
120
|
+
- lib/queri/stats/call_distribution_by_hour/queue_length_per_hour.rb
|
121
|
+
- lib/queri/stats/call_distribution_by_hour/sales_per_hour.rb
|
122
|
+
- lib/queri/stats/call_distribution_by_hour/schedule_adherence_per_hour.rb
|
123
|
+
- lib/queri/stats/call_distribution_by_hour/traffic_analysis_by_period_per_hour.rb
|
124
|
+
- lib/queri/stats/call_distribution_by_hour/unanswered_call_wait_time_per_hour.rb
|
116
125
|
- lib/queri/stats/details_of_agent_sessions_and_pauses.rb
|
117
126
|
- lib/queri/stats/details_of_agent_sessions_and_pauses/detail_of_agent_pauses.rb
|
118
127
|
- lib/queri/stats/details_of_agent_sessions_and_pauses/detail_of_agent_sessions.rb
|
@@ -175,6 +184,15 @@ files:
|
|
175
184
|
- spec/stats/call_distribution_by_day/schedule_adherence_per_day_spec.rb
|
176
185
|
- spec/stats/call_distribution_by_day/traffic_analysis_by_period_per_day_spec.rb
|
177
186
|
- spec/stats/call_distribution_by_day/unanswered_call_wait_time_per_day_spec.rb
|
187
|
+
- spec/stats/call_distribution_by_hour/answered_call_distribution_per_hour_spec.rb
|
188
|
+
- spec/stats/call_distribution_by_hour/answered_call_wait_time_per_hour_spec.rb
|
189
|
+
- spec/stats/call_distribution_by_hour/call_distribution_by_hour_spec.rb
|
190
|
+
- spec/stats/call_distribution_by_hour/inclusive_service_level_agreement_per_hour_spec.rb
|
191
|
+
- spec/stats/call_distribution_by_hour/queue_length_per_hour_spec.rb
|
192
|
+
- spec/stats/call_distribution_by_hour/sales_per_hour_spec.rb
|
193
|
+
- spec/stats/call_distribution_by_hour/schedule_adherence_per_hour_spec.rb
|
194
|
+
- spec/stats/call_distribution_by_hour/traffic_analysis_by_period_per_hour_spec.rb
|
195
|
+
- spec/stats/call_distribution_by_hour/unanswered_call_wait_time_per_hour_spec.rb
|
178
196
|
- spec/stats/details_of_agent_sessions_and_pauses/detail_of_agent_pauses_spec.rb
|
179
197
|
- spec/stats/details_of_agent_sessions_and_pauses/detail_of_agent_sessions_spec.rb
|
180
198
|
- spec/stats/details_of_agent_sessions_and_pauses/details_of_agent_sessions_and_pauses_spec.rb
|
@@ -273,6 +291,15 @@ test_files:
|
|
273
291
|
- spec/stats/call_distribution_by_day/schedule_adherence_per_day_spec.rb
|
274
292
|
- spec/stats/call_distribution_by_day/traffic_analysis_by_period_per_day_spec.rb
|
275
293
|
- spec/stats/call_distribution_by_day/unanswered_call_wait_time_per_day_spec.rb
|
294
|
+
- spec/stats/call_distribution_by_hour/answered_call_distribution_per_hour_spec.rb
|
295
|
+
- spec/stats/call_distribution_by_hour/answered_call_wait_time_per_hour_spec.rb
|
296
|
+
- spec/stats/call_distribution_by_hour/call_distribution_by_hour_spec.rb
|
297
|
+
- spec/stats/call_distribution_by_hour/inclusive_service_level_agreement_per_hour_spec.rb
|
298
|
+
- spec/stats/call_distribution_by_hour/queue_length_per_hour_spec.rb
|
299
|
+
- spec/stats/call_distribution_by_hour/sales_per_hour_spec.rb
|
300
|
+
- spec/stats/call_distribution_by_hour/schedule_adherence_per_hour_spec.rb
|
301
|
+
- spec/stats/call_distribution_by_hour/traffic_analysis_by_period_per_hour_spec.rb
|
302
|
+
- spec/stats/call_distribution_by_hour/unanswered_call_wait_time_per_hour_spec.rb
|
276
303
|
- spec/stats/details_of_agent_sessions_and_pauses/detail_of_agent_pauses_spec.rb
|
277
304
|
- spec/stats/details_of_agent_sessions_and_pauses/detail_of_agent_sessions_spec.rb
|
278
305
|
- spec/stats/details_of_agent_sessions_and_pauses/details_of_agent_sessions_and_pauses_spec.rb
|