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 - Compiling Asterisk 1.2 with TDM400 and H323 - Utenti/Lenz73 - Create an account - Compiling Asterisk 1.4 with TDM400 and H323 - UPDATING - Misc links - Utenti/timlitw - Utenti/walmass - Compressing recorded calls to MP3 - SandBox - Monitoring Zaptel Hardware - Add a recipe - Improving AstRecipes - Compiling Asterisk with OH323 - Configuring a queue - Licences - QueueMetrics logs - Utenti/peter-dean - Installing Queuemetrics on Debian - User stats - Generic QueueMetrics startup script - Connecting to FWD using IAX - Upgrading QueueMetrics licences - Peering two Asterisk servers using IAX - asterisk - Using a HT-488 with Asterisk - Installing QueueMetrics from scratch - Managing agents that dynamically log-on - Installing the Linksys PAP2-NA port adapter - Installing Queuemetrics on PBX-in-a-Flash - Manually updating QueueMetrics - Utenti/lostdave - Installing QueueMetrics on Fonality PBXtra - Simple queue and agent debug monitoring - Recording all outgoing traffic for some extensions - QueueMetrics - Installing XC-AST under Jetty - Utenti/bg - Optimizing QueueMetrics data access - Compiling Asterisk on EPIA with VIA C3 - Installing QueueMetrics using Yum - Connecting to Squillo using SIP - Installing XC-AST - AstRecipes markup - Installing QueueMetrics beta through RPM - Utenti/zebru - Installing Ubuntu over HTTP - Utenti/rugendo - Home Page
Installing QueueMetrics - Compiling Asterisk 1.2 with TDM400 and H323 - Utenti/Lenz73 - Create an account - Compiling Asterisk 1.4 with TDM400 and H323 - UPDATING - Misc links - Utenti/timlitw - Utenti/walmass - Compressing recorded calls to MP3 - SandBox - Monitoring Zaptel Hardware - Add a recipe - Improving AstRecipes - Compiling Asterisk with OH323 - Configuring a queue - Licences - QueueMetrics logs - Utenti/peter-dean - Installing Queuemetrics on Debian - User stats - Generic QueueMetrics startup script - Connecting to FWD using IAX - Upgrading QueueMetrics licences - Peering two Asterisk servers using IAX - asterisk - Using a HT-488 with Asterisk - Installing QueueMetrics from scratch - Managing agents that dynamically log-on - Installing the Linksys PAP2-NA port adapter - Installing Queuemetrics on PBX-in-a-Flash - Manually updating QueueMetrics - Utenti/lostdave - Installing QueueMetrics on Fonality PBXtra - Simple queue and agent debug monitoring - Recording all outgoing traffic for some extensions - QueueMetrics - Installing XC-AST under Jetty - Utenti/bg - Optimizing QueueMetrics data access - Compiling Asterisk on EPIA with VIA C3 - Installing QueueMetrics using Yum - Connecting to Squillo using SIP - Installing XC-AST - AstRecipes markup - Installing QueueMetrics beta through RPM - Utenti/zebru - Installing Ubuntu over HTTP - Utenti/rugendo - Home Page



