AstRecipes » Debugging Qloaderd installation
..to be completed.... Checking the database can be written to Checking if data is present in the database 1. connect to the QueueMetrics database using a MySQL shell or GUI
2. issue the following query:
select partition, queue, count(*) as n_records
from queue_log
group by partition, queue
order by partition, queue
+-----------+------------------+-----------+
| partition | queue | n_records |
+-----------+------------------+-----------+
| P003 | myqueue | 9 |
| P003 | NONE | 121 |
| P003 | queue-abc | 2096 |
| P003 | queue-test | 1341 |
| P003 | UNK | 17 |
| P01 | qq-group | 33000 |
| P01 | cust-rajax | 204 |
| P01 | NONE | 8139 |
| rt | NONE | 8064 |
| rt | q1 | 9216 |
| rt | q2 | 9216 |
+-----------+------------------+-----------+
11 rows in set (0.16 sec)
SELECT partition, FROM_UNIXTIME(time_id, '%Y%m%d' ) as date, count(*) as n_rows
FROM queue_log
GROUP BY partition, FROM_UNIXTIME( time_id, '%Y%m%d' )
ORDER BY partition, FROM_UNIXTIME( time_id, '%Y%m%d' );
+-----------+----------+--------+
| partition | date | n_rows |
+-----------+----------+--------+
| P01 | 20070329 | 4216 |
| P01 | 20070411 | 5 |
| P01 | 20070412 | 3 |
| rt | 20070508 | 9365 |
| rt | 20070509 | 13248 |
| rt | 20070510 | 3883 |
+-----------+----------+--------+
6 rows in set (0.45 sec)
Softlinks:
Installing QueueMetrics - Utenti/Lenz73 - Compiling Asterisk 1.2 with TDM400 and H323 - Create an account - Compressing recorded calls to MP3 - SandBox - Add a recipe - Misc links - Utenti/walmass - Managing agents that dynamically log-on - Improving AstRecipes - UPDATING - Compiling Asterisk with OH323 - Monitoring Zaptel Hardware - Licences - Using a HT-488 with Asterisk - Installing Queuemetrics on Debian - Utenti/timlitw - User stats - Configuring a queue - Compiling Asterisk 1.4 with TDM400 and H323 - asterisk - Installing QueueMetrics on Fonality PBXtra - Utenti/peter-dean - Connecting to FWD using IAX - Installing Queuemetrics on PBX-in-a-Flash - Manually updating QueueMetrics - Installing the Linksys PAP2-NA port adapter - Generic QueueMetrics startup script - Simple queue and agent debug monitoring - Installing QueueMetrics using Yum - Optimizing QueueMetrics data access - Installing XC-AST under Jetty - Installing XC-AST - Recording all outgoing traffic for some extensions - Compiling Asterisk on EPIA with VIA C3 - Connecting to Squillo using SIP - Utenti/lostdave - Utenti/bg - AstRecipes markup - Installing QueueMetrics beta through RPM - Utenti/zebru - Peering two Asterisk servers using IAX - Installing Ubuntu over HTTP - Utenti/rugendo - Installing QueueMetrics from scratch - QueueMetrics logs - Utenti/Installing QueueMetrics using Yum - Installing the Welltech LP302 telephone - Utenti/Simple queue and agent debug monitoring
Installing QueueMetrics - Utenti/Lenz73 - Compiling Asterisk 1.2 with TDM400 and H323 - Create an account - Compressing recorded calls to MP3 - SandBox - Add a recipe - Misc links - Utenti/walmass - Managing agents that dynamically log-on - Improving AstRecipes - UPDATING - Compiling Asterisk with OH323 - Monitoring Zaptel Hardware - Licences - Using a HT-488 with Asterisk - Installing Queuemetrics on Debian - Utenti/timlitw - User stats - Configuring a queue - Compiling Asterisk 1.4 with TDM400 and H323 - asterisk - Installing QueueMetrics on Fonality PBXtra - Utenti/peter-dean - Connecting to FWD using IAX - Installing Queuemetrics on PBX-in-a-Flash - Manually updating QueueMetrics - Installing the Linksys PAP2-NA port adapter - Generic QueueMetrics startup script - Simple queue and agent debug monitoring - Installing QueueMetrics using Yum - Optimizing QueueMetrics data access - Installing XC-AST under Jetty - Installing XC-AST - Recording all outgoing traffic for some extensions - Compiling Asterisk on EPIA with VIA C3 - Connecting to Squillo using SIP - Utenti/lostdave - Utenti/bg - AstRecipes markup - Installing QueueMetrics beta through RPM - Utenti/zebru - Peering two Asterisk servers using IAX - Installing Ubuntu over HTTP - Utenti/rugendo - Installing QueueMetrics from scratch - QueueMetrics logs - Utenti/Installing QueueMetrics using Yum - Installing the Welltech LP302 telephone - Utenti/Simple queue and agent debug monitoring



