Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcelog/astertrace
Capture everything happening in your asterisk server and log it to mysql. Calls, DTMF's, generic events, etc
https://github.com/marcelog/astertrace
Last synced: 2 months ago
JSON representation
Capture everything happening in your asterisk server and log it to mysql. Calls, DTMF's, generic events, etc
- Host: GitHub
- URL: https://github.com/marcelog/astertrace
- Owner: marcelog
- License: apache-2.0
- Created: 2011-07-23T20:19:25.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-08-16T13:00:33.000Z (over 12 years ago)
- Last Synced: 2024-10-12T04:32:42.024Z (3 months ago)
- Language: PHP
- Homepage: http://marcelog.github.com
- Size: 209 KB
- Stars: 43
- Watchers: 7
- Forks: 13
- Open Issues: 3
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
Introduction
------------
This was intended as an example of use mixing Ding and PAMI. However, it might be
useful as a tool to help you monitor/debug your asterisk installation, so I'm
making it freely available.See this article for more information: http://marcelog.github.com/articles/php_asterisk_listener_example_using_pami_and_ding.html
AsterTrace is extendable via "listeners". Currently these listeners exist:
* dial
* event
* dtmf
* varset
* newchannel
* newstate
* newextenSo currently, AsterTrace can monitor:
* All events (event-listener)
* Call activity (CDR like) (dial-listener)
* DTMF's pressed (dtmf-listener)
* VarSet's (varset-listener)
* Newchannel (newchannel-listener)
* Newstate (newstate-listener)
* Newexten (newexten-listener)Each listener is autosufficient, and get called by the container (Ding) whenever an
interesting event occurs. Ding will get called by the pami helper, whenever AMI reports
an event. This event will then get dispatched to the listeners by ding.TCP Server
----------
AsterTrace uses the Ding TCPServerHelper to start a tcp server. This server allows you
to connect and issue commands, also you can listen for events. The events and responses to
the actions sent are serialized with json :) You can try it via telnet.REST interface
--------------
Also, a rest interface is available, so you can make it publicly available through a webserver. This
rest interface will let you get events from ami in a json format. Ideal for COMET/Long polling.Requirements
------------
* PHP 5.3+
* Ding 0.98+ (http://marcelog.github.com/Ding)
* PAMI 1.27+ (http://marcelog.github.com/PAMI)
* mysql server
* log4php (optional)
* pdo-mysqlConfiguration
-------------
Assuming you are inside the root directory of the source (thus, having ./conf and ./src)1.- Copy/Rename the file: conf/log4php.properties.example to log4php.properties. Edit it.
2.- Copy/Rename the file: conf/log4php.properties.example to log4php-rest.properties. Edit it.
3.- Copy/Rename the file: conf/mysql.properties.example to mysql.properties. Edit it. The only
thing you need from mysql, is to have the database created (nothing else, no tables,
AsterTrace will create them on demand).
4.- Copy/Rename the file: conf/php.properties.example to php.properties. Edit it. You can have
your own php settings here.
5.- Copy/Rename the file: conf/astertrace.properties.example to astertrace.properties. Edit it.
6.- Copy/Rename the file: conf/server.properties.example to server.properties. Edit it.
7.- Run astertrace, like "php src/mg/AsterTrace/bin/astertrace.php ./conf"Thanks to
--------
* Joshua Elson for his help in trying and debugging in loaded asterisk servers.