Skip to content
Snippets Groups Projects
Commit e026c03d authored by Matthew Jordan's avatar Matthew Jordan
Browse files

Add queue monitoring hints

This patch adds support for hints on a queue.  Hints can be added using
the nomenclature 'Queue:name', where name is the name of the queue being
monitored.

This nifty feature was done by Alec Davis.

Review: https://reviewboard.asterisk.org/r/1619

Reported by: Alec Davis
Tested by: alecdavis
patches:
  review1619.diff2 by alecdavis (license 585)




git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@373235 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 42ebea2f
No related branches found
No related tags found
No related merge requests found
......@@ -150,6 +150,7 @@ Queue
be logged in the agent field for ADDMEMBER and REMOVEMEMBER queue events if a
state_interface has been set.
* Add queue monitoring hints. exten => 8501,hint,Queue:markq.
SayUnixTime
------------------
......
......@@ -2811,6 +2811,10 @@ static int join_queue(char *queuename, struct queue_ent *qe, enum queue_result *
ast_copy_string(qe->announce, q->announce, sizeof(qe->announce));
ast_copy_string(qe->context, q->context, sizeof(qe->context));
q->count++;
if (q->count == 1) {
ast_devstate_changed(AST_DEVICE_RINGING, "Queue:%s", q->name);
}
res = 0;
/*** DOCUMENTATION
<managerEventInstance>
......@@ -3115,6 +3119,9 @@ static void leave_queue(struct queue_ent *qe)
if (current == qe) {
char posstr[20];
q->count--;
if (!q->count) {
ast_devstate_changed(AST_DEVICE_NOT_INUSE, "Queue:%s", q->name);
}
/* Take us out of the queue */
/*** DOCUMENTATION
......
......@@ -708,6 +708,11 @@ include => demo
;exten => 6600,hint,park:701@parkedcalls
;exten => 6600,1,noop
;
; You can also monitor the status of a queue by providing a hint for a
; particular queue name.
;exten => 8502,hint,Queue:markq
;exten => 8502,1,Queue(markq)
;
; Some other handy things are an extension for checking voicemail via
; voicemailmain
;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment