Author Topic: Access ACD Logs on Mitel 3300  (Read 1907 times)

Offline imanm93

  • Jr. Member
  • **
  • Posts: 76
  • Country: au
  • Karma: +0/-0
  • Keep it simple!
    • View Profile
    • Iman Mohammadi's Blog
Access ACD Logs on Mitel 3300
« on: July 25, 2019, 10:16:59 AM »
Hello everyone,
Is there anyway to capture ACD Data/Logs as what we do fr SMDR?
By using Logsys Read <FileName> into ... command? or even a scheduler backup?
Any application that can login to the MiVB server and collect logs on port number 15373 (ACD Port) also would be helpful.
Thank you all in advance


Offline acejavelin

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4064
  • Country: us
  • Karma: +129/-0
  • High-tech, heavy metal redneck!
    • View Profile
    • Like what I do and wanna help out? Send me a donation!
Re: Access ACD Logs on Mitel 3300
« Reply #1 on: July 25, 2019, 12:04:23 PM »
There are applications designed for this... at a price.

There should be no reason you can't just use putty to open a raw session and log to a file to get the raw data through, pretty straightforward.

Offline artieouellette

  • Contributer
  • *
  • Posts: 18
  • Karma: +0/-0
    • View Profile
Re: Access ACD Logs on Mitel 3300
« Reply #2 on: July 25, 2019, 05:27:36 PM »
Yes putty I believe it’s port 1752 off the top of my head.


Sent from my iPhone using Tapatalk

Offline imanm93

  • Jr. Member
  • **
  • Posts: 76
  • Country: au
  • Karma: +0/-0
  • Keep it simple!
    • View Profile
    • Iman Mohammadi's Blog
Re: Access ACD Logs on Mitel 3300
« Reply #3 on: July 27, 2019, 12:39:36 AM »
Yes putty I believe it’s port 1752 off the top of my head.


Sent from my iPhone using Tapatalk

Thanks for your reply.
I already knew about putty, but there is a problem. I need to store the logs on a daily basis and automatically. Does putty able to this? As far as I know putty can monitor logs real time.

Offline acejavelin

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4064
  • Country: us
  • Karma: +129/-0
  • High-tech, heavy metal redneck!
    • View Profile
    • Like what I do and wanna help out? Send me a donation!
Re: Access ACD Logs on Mitel 3300
« Reply #4 on: July 27, 2019, 10:58:46 AM »
Yes putty I believe it’s port 1752 off the top of my head.


Sent from my iPhone using Tapatalk

Thanks for your reply.
I already knew about putty, but there is a problem. I need to store the logs on a daily basis and automatically. Does putty able to this? As far as I know putty can monitor logs real time.
Yes... When you open putty go to the "Logging" option under Session and set the options there. You can even use variables for year, month date. Some trickery (that you would need to figure out yourself) could close the program automatically at midnight (or your end of day) and reopen it shortly afterwards with the proper command line to connect and start logging.

BTW, What you are asking for is literally the function of an ACD Call Reporting package software, Mitel has a couple options

Offline glennmartin9999

  • Contributer
  • *
  • Posts: 8
  • Country: gb
  • Karma: +0/-0
    • View Profile
Re: Access ACD Logs on Mitel 3300
« Reply #5 on: July 29, 2019, 03:48:51 AM »
try using verboseify tool works really well

Offline imanm93

  • Jr. Member
  • **
  • Posts: 76
  • Country: au
  • Karma: +0/-0
  • Keep it simple!
    • View Profile
    • Iman Mohammadi's Blog
Re: Access ACD Logs on Mitel 3300
« Reply #6 on: July 29, 2019, 04:15:32 AM »
Yes putty I believe it’s port 1752 off the top of my head.


Sent from my iPhone using Tapatalk

Thanks for your reply.
I already knew about putty, but there is a problem. I need to store the logs on a daily basis and automatically. Does putty able to this? As far as I know putty can monitor logs real time.
Yes... When you open putty go to the "Logging" option under Session and set the options there. You can even use variables for year, month date. Some trickery (that you would need to figure out yourself) could close the program automatically at midnight (or your end of day) and reopen it shortly afterwards with the proper command line to connect and start logging.

BTW, What you are asking for is literally the function of an ACD Call Reporting package software, Mitel has a couple options

GREAT! thanks mate  :)

Offline imanm93

  • Jr. Member
  • **
  • Posts: 76
  • Country: au
  • Karma: +0/-0
  • Keep it simple!
    • View Profile
    • Iman Mohammadi's Blog
Re: Access ACD Logs on Mitel 3300
« Reply #7 on: July 29, 2019, 04:16:17 AM »
try using verboseify tool works really well

I'll consider it as an option! thanks for the reply.

Offline Dogbreath

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 389
  • Country: gb
  • Karma: +18/-0
    • View Profile
Re: Access ACD Logs on Mitel 3300
« Reply #8 on: July 29, 2019, 04:46:27 AM »
try using verboseify tool works really well

Can you expand on this? I googled it and came up with nothing [not even a link to this thread].

Offline sarond

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 1381
  • Country: au
  • Karma: +71/-0
    • View Profile
Re: Access ACD Logs on Mitel 3300
« Reply #9 on: July 30, 2019, 04:54:40 AM »
try using verboseify tool works really well

Can you expand on this? I googled it and came up with nothing [not even a link to this thread].

I think this is something that is not available to the general public. It's like MiCC secret squirrel stuff.

It's part of the MiCC TechTools

Offline petr.necas

  • Sr. Member
  • ****
  • Posts: 393
  • Country: cz
  • Karma: +8/-0
    • View Profile
Re: Access ACD Logs on Mitel 3300
« Reply #10 on: August 22, 2019, 10:17:05 AM »
You can use this simple Python script to read ACD data and store it to a file (it also outputs the ACD data on the console):

Code: [Select]
import socket

host = "172.20.20.45"
port = 15373

with open("acd.bin", "wb") as f:

    print("Connecting to %s:%d..." % (host, port))
    s = socket.socket()
    s.connect((host,port))
    print("Connected")

    while True:
        log = s.recv(1024)
        f.write(log)
        print(log)

    s.close()

Example output:

Code: [Select]
Connecting to 172.20.20.45:15373...
Connected
b'\x0249R16150920190822\x03\r\n'
b'\x0250R16151120190822\x03\r\n'
b'\x0251R16151320190822\x03\r\n'
b'\x0252R16151520190822\x03\r\n'
b'\x0253R16151720190822\x03\r\n'
b'\x0254R16151920190822\x03\r\n'
b'\x0255R16152120190822\x03\r\n'
b'\x0256R16152320190822\x03\r\n'
b'\x0257R16152520190822\x03\r\n'
b'\x0258R16152720190822\x03\r\n'


 

Sitemap 1 2 3 4 5 6 7 8 9 10