Busy/congested ... (1:1/0/0) What does the number mean?

Does anybody know what the number and their position mean, can it be other than 0 and 1?
I have been looking around on the web but no answer!

I have seen (1:1/0/0), (1:0/0/1), (1:0/1/0)

Total number of lines (& delimited), and the number of them that were busy, congested, and unavailable, respectively.

From app_dial.c

ast_verb(2, "Everyone is busy/congested at this time (%d:%d/%d/%d)\n", numlines, num.busy, num.congestion, num.nochan); if (num.busy) strcpy(pa->status, "BUSY"); else if (num.congestion) strcpy(pa->status, "CONGESTION"); else if (num.nochan) strcpy(pa->status, "CHANUNAVAIL");

Thanks for that answer david55!

It is easier to read a logfile when you know what it tells you! :smiley: