Skip to content
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. Test Adapter tr-064-community v1.0.x

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.0k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.8k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.0k

Test Adapter tr-064-community v1.0.x

Test Adapter tr-064-community v1.0.x

Scheduled Pinned Locked Moved Tester
tr-064community
727 Posts 88 Posters 191.4k Views 65 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • apollon77A apollon77

    Also dann neue logs bitte und Fälle neu checken.

    conectasC Offline
    conectasC Offline
    conectas
    wrote on last edited by
    #479

    @apollon77 sagte in Test Adapter tr-064-community v1.0.x:

    Also dann neue logs bitte und Fälle neu checken.

    Ich würde bei Tests dieses Script mitlaufen lassen.. oder bringt das in deinen Logs dann zu viel durcheinander?

    // ------------------------------------------------
    let tr064 = "tr-064-community.0.callmonitor.";
    
    var callerNumber    // Anrufernummer
    var callerName      // Name des Anrufers
    var calleeNumber    // angerufene Nummer
    var calleeName      // angerufener Name
    var callAllDataJson = { "caller": "caller Nr", "callee": "callee Nr", "_type": "_type inbound", "callerName": "Caller Name", "calleeName": "Callee Name" };
    
    on({ id: "tr-064-community.0.callmonitor.toPauseState", change: "any" }, function (obj) {
        console.log('---> Ringing?: ');
    
        let sToPauseState = getState(tr064 + "toPauseState").val;
        if ("ring" == sToPauseState) {
    
            callerNumber = getState(tr064 + "inbound.caller").val;          // Anrufernummer
            callerName = getState(tr064 + "inbound.callerName").val;        // Name des Anrufers
    
            calleeNumber = getState(tr064 + "inbound.callee").val;          // angerufene Nummer
            calleeName = getState(tr064 + "inbound.calleeName").val;        // angerufener Name
    
            callAllDataJson = getState(tr064 + "inbound.json").val;          // json
    
            console.log('---> Ringing? - callerNumber: ' + callerNumber);
            console.log('---> Ringing? - callerName: ' + callerName);
            console.log('---> Ringing? - calleeNumber: ' + calleeNumber);
            console.log('---> Ringing? - calleeName: ' + calleeName);
            console.log('---> Ringing? - callAllDataJson: ' + String(callAllDataJson));
    
        } else if ("end" == sToPauseState) {
            setState(tr064 + "inbound.caller", '');
            setState(tr064 + "inbound.callerName", '');
            setState(tr064 + "inbound.callee", '');
            setState(tr064 + "inbound.calleeName", '');
            setState(tr064 + "inbound.json", '');
        }
    
    
    });
    
    1 Reply Last reply
    0
    • apollon77A Online
      apollon77A Online
      apollon77
      wrote on last edited by
      #480

      Oooook ... ich hab mal erste DInge verändert. Bitte nochmal neu versuchen vom GitHub, bitte checkt aber auch ob der ganze Rest (also auch IP.Devices und so) noch so tut wie es soll.

      Und bitte extra Skripte weglassen. Danke

      Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

      • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
      • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
      conectasC 1 Reply Last reply
      0
      • apollon77A apollon77

        Oooook ... ich hab mal erste DInge verändert. Bitte nochmal neu versuchen vom GitHub, bitte checkt aber auch ob der ganze Rest (also auch IP.Devices und so) noch so tut wie es soll.

        Und bitte extra Skripte weglassen. Danke

        conectasC Offline
        conectasC Offline
        conectas
        wrote on last edited by conectas
        #481

        Knallt...

        2019-12-12 21:24:14.636  - info: host.raspberrypi "system.adapter.tr-064-community.0" enabled
        2019-12-12 21:24:14.666  - info: host.raspberrypi instance system.adapter.tr-064-community.0 started with pid 18626
        2019-12-12 21:24:17.602  - debug: tr-064-community.0 (18626) Redis Objects: Use Redis connection: 127.0.0.1:9001
        2019-12-12 21:24:17.671  - debug: tr-064-community.0 (18626) Objects client ready ... initialize now
        2019-12-12 21:24:17.680  - debug: tr-064-community.0 (18626) Objects create PubSub Client
        2019-12-12 21:24:17.683  - debug: tr-064-community.0 (18626) Objects client initialize lua scripts
        2019-12-12 21:24:17.712  - debug: tr-064-community.0 (18626) objectDB connected
        2019-12-12 21:24:17.718  - debug: tr-064-community.0 (18626) Redis States: Use Redis connection: 127.0.0.1:9000
        2019-12-12 21:24:17.725  - debug: tr-064-community.0 (18626) Objects connected to redis: 127.0.0.1:9001
        2019-12-12 21:24:17.735  - debug: tr-064-community.0 (18626) States create PubSub Client
        2019-12-12 21:24:17.738  - debug: tr-064-community.0 (18626) statesDB connected
        2019-12-12 21:24:17.805  - debug: tr-064-community.0 (18626) States connected to redis: 127.0.0.1:9000
        2019-12-12 21:24:18.366  - info: tr-064-community.0 (18626) starting. Version 1.2.0 in /opt/iobroker/node_modules/iobroker.tr-064-community, node: v10.17.0
        2019-12-12 21:24:21.236  - error: tr-064-community.0 (18626) uncaught exception: st is not defined
        2019-12-12 21:24:21.241  - error: tr-064-community.0 (18626) ReferenceError: st is not defined
            at createObjects (/opt/iobroker/node_modules/iobroker.tr-064-community/main.js:102:59)
            at /opt/iobroker/node_modules/iobroker.tr-064-community/main.js:940:9
            at /opt/iobroker/node_modules/iobroker.tr-064-community/lib/soef.js:1610:28
            at /opt/iobroker/node_modules/tr-O64/lib/Service.js:267:17
            at Parser.<anonymous> (/opt/iobroker/node_modules/xml2js/lib/parser.js:306:18)
            at Parser.emit (events.js:198:13)
            at SAXParser.onclosetag (/opt/iobroker/node_modules/xml2js/lib/parser.js:264:26)
            at emit (/opt/iobroker/node_modules/sax/lib/sax.js:624:35)
            at emitNode (/opt/iobroker/node_modules/sax/lib/sax.js:629:5)
            at closeTag (/opt/iobroker/node_modules/sax/lib/sax.js:889:7)
        2019-12-12 21:24:21.300  - info: tr-064-community.0 (18626) terminating
        2019-12-12 21:24:21.303  - info: tr-064-community.0 (18626) Terminated (NO_ERROR): Without reason
        2019-12-12 21:24:21.861  - error: host.raspberrypi Caught by controller[0]: ReferenceError: st is not defined
        2019-12-12 21:24:21.864  - error: host.raspberrypi Caught by controller[0]:     at createObjects (/opt/iobroker/node_modules/iobroker.tr-064-community/main.js:102:59)
        2019-12-12 21:24:21.865  - error: host.raspberrypi Caught by controller[0]:     at /opt/iobroker/node_modules/iobroker.tr-064-community/main.js:940:9
        2019-12-12 21:24:21.866  - error: host.raspberrypi Caught by controller[0]:     at /opt/iobroker/node_modules/iobroker.tr-064-community/lib/soef.js:1610:28
        2019-12-12 21:24:21.866  - error: host.raspberrypi Caught by controller[0]:     at /opt/iobroker/node_modules/tr-O64/lib/Service.js:267:17
        2019-12-12 21:24:21.867  - error: host.raspberrypi Caught by controller[0]:     at Parser.<anonymous> (/opt/iobroker/node_modules/xml2js/lib/parser.js:306:18)
        2019-12-12 21:24:21.867  - error: host.raspberrypi Caught by controller[0]:     at Parser.emit (events.js:198:13)
        2019-12-12 21:24:21.868  - error: host.raspberrypi Caught by controller[0]:     at SAXParser.onclosetag (/opt/iobroker/node_modules/xml2js/lib/parser.js:264:26)
        2019-12-12 21:24:21.868  - error: host.raspberrypi Caught by controller[0]:     at emit (/opt/iobroker/node_modules/sax/lib/sax.js:624:35)
        2019-12-12 21:24:21.869  - error: host.raspberrypi Caught by controller[0]:     at emitNode (/opt/iobroker/node_modules/sax/lib/sax.js:629:5)
        2019-12-12 21:24:21.869  - error: host.raspberrypi Caught by controller[0]:     at closeTag (/opt/iobroker/node_modules/sax/lib/sax.js:889:7)
        2019-12-12 21:24:21.870  - info: host.raspberrypi instance system.adapter.tr-064-community.0 terminated with code 0 (NO_ERROR)
        2019-12-12 21:24:21.870  - info: host.raspberrypi Restart adapter system.adapter.tr-064-community.0 because enabled
        
        
        1 Reply Last reply
        0
        • apollon77A Online
          apollon77A Online
          apollon77
          wrote on last edited by
          #482

          gggrrrr ... fixed on GitHub. Sorry

          Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

          • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
          • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
          conectasC 1 Reply Last reply
          0
          • apollon77A apollon77

            gggrrrr ... fixed on GitHub. Sorry

            conectasC Offline
            conectasC Offline
            conectas
            wrote on last edited by
            #483

            @apollon77

            außer toPauseState werden im callmonitor nix angelegt.. 2x getestet

            apollon77A 1 Reply Last reply
            0
            • conectasC conectas

              @apollon77

              außer toPauseState werden im callmonitor nix angelegt.. 2x getestet

              apollon77A Online
              apollon77A Online
              apollon77
              wrote on last edited by
              #484

              @conectas Hast Du wieder ein Log?

              Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

              • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
              • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
              conectasC 1 Reply Last reply
              0
              • apollon77A apollon77

                @conectas Hast Du wieder ein Log?

                conectasC Offline
                conectasC Offline
                conectas
                wrote on last edited by
                #485

                @apollon77

                vom Start .. da steht dann man ganzes Telefonbuch drin 😉

                (habe auch Telefon .. falls de nicht tippen magst)

                apollon77A 1 Reply Last reply
                0
                • conectasC conectas

                  @apollon77

                  vom Start .. da steht dann man ganzes Telefonbuch drin 😉

                  (habe auch Telefon .. falls de nicht tippen magst)

                  apollon77A Online
                  apollon77A Online
                  apollon77
                  wrote on last edited by
                  #486

                  @conectas In dem Fall interessiert mich ja eher der "call" teil ... Ansonsten per email an iobroker@fischer-ka.de schicken

                  Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                  • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                  • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                  conectasC 1 Reply Last reply
                  0
                  • apollon77A apollon77

                    @conectas In dem Fall interessiert mich ja eher der "call" teil ... Ansonsten per email an iobroker@fischer-ka.de schicken

                    conectasC Offline
                    conectasC Offline
                    conectas
                    wrote on last edited by
                    #487

                    @apollon77

                    2019-12-12 21:46:45.420  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:45;CALL;1;4;254xy;628xy7;SIP3;\r\n"
                    2019-12-12 21:46:45.422  - debug: tr-064-community.0 (23433) callmonitor handle outbound message: {"caller":"254xy","callee":"628xy7","extension":"4"}
                    2019-12-12 21:46:45.428  - debug: tr-064-community.0 (23433) Search number 004930254xy in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                    2019-12-12 21:46:45.430  - debug: tr-064-community.0 (23433) Search number 004930628xy7 in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930628xy7","id":"634","phonebookId":"0"}
                    2019-12-12 21:46:45.431  - debug: tr-064-community.0 (23433) callMonitor.set: type=outbound caller=254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                    2019-12-12 21:46:45.790  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:45;RING;2;030254xy;628xy7;SIP1;\r\n"
                    2019-12-12 21:46:45.792  - debug: tr-064-community.0 (23433) callmonitor handle inbound message: {"caller":"030254xy","callee":"628xy7"}
                    2019-12-12 21:46:45.794  - debug: tr-064-community.0 (23433) Search number 004930254xy in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                    2019-12-12 21:46:45.796  - debug: tr-064-community.0 (23433) Search number 004930628xy7 in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930628xy7","id":"634","phonebookId":"0"}
                    2019-12-12 21:46:45.799  - debug: tr-064-community.0 (23433) callMonitor.set: type=inbound caller=030254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                    2019-12-12 21:46:47.697  - debug: tr-064-community.0 (23433) in updateAll
                    2019-12-12 21:46:47.699  - debug: tr-064-community.0 (23433) updateDevices
                    2019-12-12 21:46:47.701  - debug: tr-064-community.0 (23433) forEachConfiguredDevice
                    2019-12-12 21:46:47.779  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:47;CONNECT;2;11;030254xy;\r\n"
                    2019-12-12 21:46:47.781  - debug: tr-064-community.0 (23433) callmonitor handle connect message: {"caller":"030254xy","callee":"628xy7","_type":"inbound","callerName":"NNAme Stefan","calleeName":"NNAme Stefan","extension":"11"}
                    2019-12-12 21:46:47.790  - debug: tr-064-community.0 (23433) callMonitor.set: type=connect caller=030254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                    2019-12-12 21:46:47.906  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:47;CONNECT;1;4;628xy7;\r\n"
                    2019-12-12 21:46:47.907  - debug: tr-064-community.0 (23433) callmonitor handle connect message: {"caller":"254xy","callee":"628xy7","extension":"4","_type":"outbound","callerName":"NNAme Stefan","calleeName":"NNAme Stefan"}
                    2019-12-12 21:46:47.911  - debug: tr-064-community.0 (23433) callMonitor.set: type=connect caller=254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                    2019-12-12 21:46:50.443  - debug: tr-064-community.0 (23433) setting 0 enable=false
                    2019-12-12 21:46:50.444  - debug: tr-064-community.0 (23433) setting 1 enable=false
                    2019-12-12 21:46:50.444  - debug: tr-064-community.0 (23433) setting 2 enable=false
                    2019-12-12 21:46:50.445  - debug: tr-064-community.0 (23433) setting 3 enable=false
                    2019-12-12 21:46:50.445  - debug: tr-064-community.0 (23433) setting 4 enable=false
                    2019-12-12 21:46:50.446  - debug: tr-064-community.0 (23433) setting 5 enable=true
                    2019-12-12 21:46:50.446  - debug: tr-064-community.0 (23433) setting 6 enable=true
                    2019-12-12 21:46:50.446  - debug: tr-064-community.0 (23433) setting 7 enable=true
                    2019-12-12 21:46:50.447  - debug: tr-064-community.0 (23433) setting 8 enable=true
                    2019-12-12 21:46:50.448  - debug: tr-064-community.0 (23433) setting 9 enable=true
                    2019-12-12 21:46:52.331  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:52;DISCONNECT;1;5;\r\n"
                    2019-12-12 21:46:52.341  - debug: tr-064-community.0 (23433) callmonitor handle lastCall message: {"caller":"254xy","callee":"628xy7","extension":"4","_type":"connect","callerName":"NNAme Stefan","calleeName":"NNAme Stefan","type":"disconnect","duration":5}
                    2019-12-12 21:46:52.347  - debug: tr-064-community.0 (23433) callMonitor.set: type=lastCall caller=254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                    2019-12-12 21:46:52.374  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:52;DISCONNECT;2;5;\r\n"
                    2019-12-12 21:46:52.375  - debug: tr-064-community.0 (23433) callmonitor handle lastCall message: {"caller":"030254xy","callee":"628xy7","_type":"connect","callerName":"NNAme Stefan","calleeName":"NNAme Stefan","extension":"11","type":"disconnect","duration":5}
                    2019-12-12 21:46:52.380  - debug: tr-064-community.0 (23433) callMonitor.set: type=lastCall caller=030254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                    
                    
                    conectasC 1 Reply Last reply
                    0
                    • conectasC conectas

                      @apollon77

                      2019-12-12 21:46:45.420  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:45;CALL;1;4;254xy;628xy7;SIP3;\r\n"
                      2019-12-12 21:46:45.422  - debug: tr-064-community.0 (23433) callmonitor handle outbound message: {"caller":"254xy","callee":"628xy7","extension":"4"}
                      2019-12-12 21:46:45.428  - debug: tr-064-community.0 (23433) Search number 004930254xy in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                      2019-12-12 21:46:45.430  - debug: tr-064-community.0 (23433) Search number 004930628xy7 in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930628xy7","id":"634","phonebookId":"0"}
                      2019-12-12 21:46:45.431  - debug: tr-064-community.0 (23433) callMonitor.set: type=outbound caller=254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                      2019-12-12 21:46:45.790  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:45;RING;2;030254xy;628xy7;SIP1;\r\n"
                      2019-12-12 21:46:45.792  - debug: tr-064-community.0 (23433) callmonitor handle inbound message: {"caller":"030254xy","callee":"628xy7"}
                      2019-12-12 21:46:45.794  - debug: tr-064-community.0 (23433) Search number 004930254xy in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                      2019-12-12 21:46:45.796  - debug: tr-064-community.0 (23433) Search number 004930628xy7 in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930628xy7","id":"634","phonebookId":"0"}
                      2019-12-12 21:46:45.799  - debug: tr-064-community.0 (23433) callMonitor.set: type=inbound caller=030254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                      2019-12-12 21:46:47.697  - debug: tr-064-community.0 (23433) in updateAll
                      2019-12-12 21:46:47.699  - debug: tr-064-community.0 (23433) updateDevices
                      2019-12-12 21:46:47.701  - debug: tr-064-community.0 (23433) forEachConfiguredDevice
                      2019-12-12 21:46:47.779  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:47;CONNECT;2;11;030254xy;\r\n"
                      2019-12-12 21:46:47.781  - debug: tr-064-community.0 (23433) callmonitor handle connect message: {"caller":"030254xy","callee":"628xy7","_type":"inbound","callerName":"NNAme Stefan","calleeName":"NNAme Stefan","extension":"11"}
                      2019-12-12 21:46:47.790  - debug: tr-064-community.0 (23433) callMonitor.set: type=connect caller=030254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                      2019-12-12 21:46:47.906  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:47;CONNECT;1;4;628xy7;\r\n"
                      2019-12-12 21:46:47.907  - debug: tr-064-community.0 (23433) callmonitor handle connect message: {"caller":"254xy","callee":"628xy7","extension":"4","_type":"outbound","callerName":"NNAme Stefan","calleeName":"NNAme Stefan"}
                      2019-12-12 21:46:47.911  - debug: tr-064-community.0 (23433) callMonitor.set: type=connect caller=254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                      2019-12-12 21:46:50.443  - debug: tr-064-community.0 (23433) setting 0 enable=false
                      2019-12-12 21:46:50.444  - debug: tr-064-community.0 (23433) setting 1 enable=false
                      2019-12-12 21:46:50.444  - debug: tr-064-community.0 (23433) setting 2 enable=false
                      2019-12-12 21:46:50.445  - debug: tr-064-community.0 (23433) setting 3 enable=false
                      2019-12-12 21:46:50.445  - debug: tr-064-community.0 (23433) setting 4 enable=false
                      2019-12-12 21:46:50.446  - debug: tr-064-community.0 (23433) setting 5 enable=true
                      2019-12-12 21:46:50.446  - debug: tr-064-community.0 (23433) setting 6 enable=true
                      2019-12-12 21:46:50.446  - debug: tr-064-community.0 (23433) setting 7 enable=true
                      2019-12-12 21:46:50.447  - debug: tr-064-community.0 (23433) setting 8 enable=true
                      2019-12-12 21:46:50.448  - debug: tr-064-community.0 (23433) setting 9 enable=true
                      2019-12-12 21:46:52.331  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:52;DISCONNECT;1;5;\r\n"
                      2019-12-12 21:46:52.341  - debug: tr-064-community.0 (23433) callmonitor handle lastCall message: {"caller":"254xy","callee":"628xy7","extension":"4","_type":"connect","callerName":"NNAme Stefan","calleeName":"NNAme Stefan","type":"disconnect","duration":5}
                      2019-12-12 21:46:52.347  - debug: tr-064-community.0 (23433) callMonitor.set: type=lastCall caller=254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                      2019-12-12 21:46:52.374  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:46:52;DISCONNECT;2;5;\r\n"
                      2019-12-12 21:46:52.375  - debug: tr-064-community.0 (23433) callmonitor handle lastCall message: {"caller":"030254xy","callee":"628xy7","_type":"connect","callerName":"NNAme Stefan","calleeName":"NNAme Stefan","extension":"11","type":"disconnect","duration":5}
                      2019-12-12 21:46:52.380  - debug: tr-064-community.0 (23433) callMonitor.set: type=lastCall caller=030254xy callee=628xy7 callerName=NNAme Stefan calleeName=NNAme Stefan
                      
                      
                      conectasC Offline
                      conectasC Offline
                      conectas
                      wrote on last edited by
                      #488

                      @conectas

                      glaube das ist besser.. wegen den Namen? Ansonsten gleich

                      2019-12-12 21:49:26.143  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:49:26;CALL;1;4;254xy;628xy6;SIP3;\r\n"
                      2019-12-12 21:49:26.144  - debug: tr-064-community.0 (23433) callmonitor handle outbound message: {"caller":"254xy","callee":"628xy6","extension":"4"}
                      2019-12-12 21:49:26.145  - debug: tr-064-community.0 (23433) Search number 004930254xy in phonebook: {"name":"NName Stefan","normalizedName":"NNamestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                      2019-12-12 21:49:26.150  - debug: tr-064-community.0 (23433) Search number 004930628xy6 in phonebook: {"name":"NName Kerstin","normalizedName":"NNamekerstin","number":"004930628xy6","id":"631","phonebookId":"0"}
                      2019-12-12 21:49:26.151  - debug: tr-064-community.0 (23433) callMonitor.set: type=outbound caller=254xy callee=628xy6 callerName=NName Stefan calleeName=NName Kerstin
                      2019-12-12 21:49:26.526  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:49:26;RING;2;030254xy;628xy6;SIP0;\r\n"
                      2019-12-12 21:49:26.527  - debug: tr-064-community.0 (23433) callmonitor handle inbound message: {"caller":"030254xy","callee":"628xy6"}
                      2019-12-12 21:49:26.529  - debug: tr-064-community.0 (23433) Search number 004930254xy in phonebook: {"name":"NName Stefan","normalizedName":"NNamestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                      2019-12-12 21:49:26.531  - debug: tr-064-community.0 (23433) Search number 004930628xy6 in phonebook: {"name":"NName Kerstin","normalizedName":"NNamekerstin","number":"004930628xy6","id":"631","phonebookId":"0"}
                      2019-12-12 21:49:26.532  - debug: tr-064-community.0 (23433) callMonitor.set: type=inbound caller=030254xy callee=628xy6 callerName=NName Stefan calleeName=NName Kerstin
                      2019-12-12 21:49:30.495  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:49:30;CONNECT;2;11;030254xy;\r\n"
                      2019-12-12 21:49:30.497  - debug: tr-064-community.0 (23433) callmonitor handle connect message: {"caller":"030254xy","callee":"628xy6","_type":"inbound","callerName":"NName Stefan","calleeName":"NName Kerstin","extension":"11"}
                      2019-12-12 21:49:30.517  - debug: tr-064-community.0 (23433) callMonitor.set: type=connect caller=030254xy callee=628xy6 callerName=NName Stefan calleeName=NName Kerstin
                      2019-12-12 21:49:30.537  - debug: tr-064-community.0 (23433) in updateAll
                      2019-12-12 21:49:30.542  - debug: tr-064-community.0 (23433) updateDevices
                      2019-12-12 21:49:30.543  - debug: tr-064-community.0 (23433) forEachConfiguredDevice
                      2019-12-12 21:49:30.633  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:49:30;CONNECT;1;4;628xy6;\r\n"
                      2019-12-12 21:49:30.635  - debug: tr-064-community.0 (23433) callmonitor handle connect message: {"caller":"254xy","callee":"628xy6","extension":"4","_type":"outbound","callerName":"NName Stefan","calleeName":"NName Kerstin"}
                      2019-12-12 21:49:30.640  - debug: tr-064-community.0 (23433) callMonitor.set: type=connect caller=254xy callee=628xy6 callerName=NName Stefan calleeName=NName Kerstin
                      2019-12-12 21:49:33.283  - debug: tr-064-community.0 (23433) setting 0 enable=false
                      2019-12-12 21:49:33.284  - debug: tr-064-community.0 (23433) setting 1 enable=false
                      2019-12-12 21:49:33.285  - debug: tr-064-community.0 (23433) setting 2 enable=false
                      2019-12-12 21:49:33.290  - debug: tr-064-community.0 (23433) setting 3 enable=false
                      2019-12-12 21:49:33.291  - debug: tr-064-community.0 (23433) setting 4 enable=false
                      2019-12-12 21:49:33.291  - debug: tr-064-community.0 (23433) setting 5 enable=true
                      2019-12-12 21:49:33.292  - debug: tr-064-community.0 (23433) setting 6 enable=true
                      2019-12-12 21:49:33.293  - debug: tr-064-community.0 (23433) setting 7 enable=true
                      2019-12-12 21:49:33.293  - debug: tr-064-community.0 (23433) setting 8 enable=true
                      2019-12-12 21:49:33.294  - debug: tr-064-community.0 (23433) setting 9 enable=true
                      2019-12-12 21:49:33.520  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:49:33;DISCONNECT;1;3;\r\n"
                      2019-12-12 21:49:33.522  - debug: tr-064-community.0 (23433) callmonitor handle lastCall message: {"caller":"254xy","callee":"628xy6","extension":"4","_type":"connect","callerName":"NName Stefan","calleeName":"NName Kerstin","type":"disconnect","duration":3}
                      2019-12-12 21:49:33.528  - debug: tr-064-community.0 (23433) callMonitor.set: type=lastCall caller=254xy callee=628xy6 callerName=NName Stefan calleeName=NName Kerstin
                      2019-12-12 21:49:33.564  - debug: tr-064-community.0 (23433) callmonitor raw data: "12.12.19 21:49:33;DISCONNECT;2;4;\r\n"
                      2019-12-12 21:49:33.573  - debug: tr-064-community.0 (23433) callmonitor handle lastCall message: {"caller":"030254xy","callee":"628xy6","_type":"connect","callerName":"NName Stefan","calleeName":"NName Kerstin","extension":"11","type":"disconnect","duration":4}
                      2019-12-12 21:49:33.580  - debug: tr-064-community.0 (23433) callMonitor.set: type=lastCall caller=030254xy callee=628xy6 callerName=NName Stefan calleeName=NName Kerstin
                      2019-12-12 21:49:43.296  - debug: tr-064-community.0 (23433) in updateAll
                      2019-12-12 21:49:43.299  - debug: tr-064-community.0 (23433) updateDevices
                      2019-12-12 21:49:43.300  - debug: tr-064-community.0 (23433) forEachConfiguredDevice
                      2019-12-12 21:49:45.844  - debug: tr-064-community.0 (23433) setting 0 enable=false
                      2019-12-12 21:49:45.845  - debug: tr-064-community.0 (23433) setting 1 enable=false
                      2019-12-12 21:49:45.846  - debug: tr-064-community.0 (23433) setting 2 enable=false
                      2019-12-12 21:49:45.847  - debug: tr-064-community.0 (23433) setting 3 enable=false
                      2019-12-12 21:49:45.847  - debug: tr-064-community.0 (23433) setting 4 enable=false
                      2019-12-12 21:49:45.847  - debug: tr-064-community.0 (23433) setting 5 enable=true
                      2019-12-12 21:49:45.848  - debug: tr-064-community.0 (23433) setting 6 enable=true
                      2019-12-12 21:49:45.848  - debug: tr-064-community.0 (23433) setting 7 enable=true
                      2019-12-12 21:49:45.854  - debug: tr-064-community.0 (23433) setting 8 enable=true
                      2019-12-12 21:49:45.854  - debug: tr-064-community.0 (23433) setting 9 enable=true
                      
                      
                      1 Reply Last reply
                      0
                      • apollon77A Online
                        apollon77A Online
                        apollon77
                        wrote on last edited by
                        #489

                        Und dann nochmal bitte von GitHub. Logging nochmal erweitert und so

                        Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                        • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                        • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                        conectasC 1 Reply Last reply
                        0
                        • apollon77A apollon77

                          Und dann nochmal bitte von GitHub. Logging nochmal erweitert und so

                          conectasC Offline
                          conectasC Offline
                          conectas
                          wrote on last edited by
                          #490

                          @apollon77

                          Bitte am Ende des Tages bitte nicht vergessen eine func Version rein zu legen (habe gerade festgestellt das im iobroker backup .. nix von tr-064 drin ist)

                          1. Ich muss wahrscheinlich gleich Mittag essen... sonst wird die besagte Kerstin .. na ja 😉
                          
                          
                          
                          
                          
                          
                          2019-12-12 22:08:04.642  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:04;CALL;1;4;254xy;628xy6;SIP3;\r\n"
                          2019-12-12 22:08:04.643  - debug: tr-064-community.0 (31690) callmonitor handle outbound message: {"caller":"254xy","callee":"628xy6","extension":"4"}
                          2019-12-12 22:08:04.647  - debug: tr-064-community.0 (31690) Search number 004930254xy in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                          2019-12-12 22:08:04.652  - debug: tr-064-community.0 (31690) Search number 004930628xy6 in phonebook: {"name":"NNAme Kerstin","normalizedName":"NNAmekerstin","number":"004930628xy6","id":"631","phonebookId":"0"}
                          2019-12-12 22:08:04.656  - debug: tr-064-community.0 (31690) callMonitor.set: type=outbound caller=254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                          2019-12-12 22:08:04.686  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184884671,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184855434}
                          2019-12-12 22:08:04.693  - debug: tr-064-community.0 (31690) State-Change {"val":"254xy","ack":true,"ts":1576184884672,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914392}
                          2019-12-12 22:08:04.699  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184884676,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851355}
                          2019-12-12 22:08:04.704  - debug: tr-064-community.0 (31690) State-Change {"val":"4","ack":true,"ts":1576184884677,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914401}
                          2019-12-12 22:08:04.708  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:04","ack":true,"ts":1576184884678,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184884678}
                          2019-12-12 22:08:04.711  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184884680,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914403}
                          2019-12-12 22:08:04.717  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184884681,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851367}
                          2019-12-12 22:08:04.721  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"254xy\",\"callee\":\"628xy6\",\"extension\":\"4\",\"_type\":\"outbound\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\"}","ack":true,"ts":1576184884682,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851368}
                          2019-12-12 22:08:04.999  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:04;RING;2;030254xy;628xy6;SIP0;\r\n"
                          2019-12-12 22:08:05.000  - debug: tr-064-community.0 (31690) callmonitor handle inbound message: {"caller":"030254xy","callee":"628xy6"}
                          2019-12-12 22:08:05.003  - debug: tr-064-community.0 (31690) Search number 004930254xy in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                          2019-12-12 22:08:05.004  - debug: tr-064-community.0 (31690) Search number 004930628xy6 in phonebook: {"name":"NNAme Kerstin","normalizedName":"NNAmekerstin","number":"004930628xy6","id":"631","phonebookId":"0"}
                          2019-12-12 22:08:05.006  - debug: tr-064-community.0 (31690) callMonitor.set: type=inbound caller=030254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                          2019-12-12 22:08:05.022  - debug: tr-064-community.0 (31690) State-Change {"val":true,"ack":true,"ts":1576184885010,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184885010}
                          2019-12-12 22:08:05.026  - debug: tr-064-community.0 (31690) State-Change {"val":"030254xy","ack":true,"ts":1576184885011,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183605807}
                          2019-12-12 22:08:05.031  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184885011,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851814}
                          2019-12-12 22:08:05.034  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:04","ack":true,"ts":1576184885011,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184885011}
                          2019-12-12 22:08:05.039  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184885012,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914757}
                          2019-12-12 22:08:05.044  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184885013,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851817}
                          2019-12-12 22:08:05.048  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"030254xy\",\"callee\":\"628xy6\",\"_type\":\"inbound\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\"}","ack":true,"ts":1576184885014,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851819}
                          2019-12-12 22:08:05.053  - debug: tr-064-community.0 (31690) State-Change {"val":"ring","ack":true,"ts":1576184885014,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184885014}
                          2019-12-12 22:08:08.937  - debug: tr-064-community.0 (31690) in updateAll
                          2019-12-12 22:08:08.939  - debug: tr-064-community.0 (31690) updateDevices
                          2019-12-12 22:08:08.940  - debug: tr-064-community.0 (31690) forEachConfiguredDevice
                          2019-12-12 22:08:09.991  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:09;CONNECT;2;11;030254xy;\r\n"
                          2019-12-12 22:08:09.993  - debug: tr-064-community.0 (31690) callmonitor handle connect message: {"caller":"030254xy","callee":"628xy6","_type":"inbound","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin","extension":"11"}
                          2019-12-12 22:08:09.997  - debug: tr-064-community.0 (31690) callMonitor.set: type=connect caller=030254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                          2019-12-12 22:08:10.022  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184890002,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                          2019-12-12 22:08:10.027  - debug: tr-064-community.0 (31690) State-Change {"val":"030254xy","ack":true,"ts":1576184890003,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890003}
                          2019-12-12 22:08:10.032  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184890003,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770528}
                          2019-12-12 22:08:10.037  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890004,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926674}
                          2019-12-12 22:08:10.042  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890005,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770530}
                          2019-12-12 22:08:10.047  - debug: tr-064-community.0 (31690) State-Change {"val":"11","ack":true,"ts":1576184890006,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890006}
                          2019-12-12 22:08:10.055  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:09","ack":true,"ts":1576184890006,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890006}
                          2019-12-12 22:08:10.060  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890007,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926676}
                          2019-12-12 22:08:10.063  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890016,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770535}
                          2019-12-12 22:08:10.083  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"030254xy\",\"callee\":\"628xy6\",\"_type\":\"connect\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\",\"extension\":\"11\"}","ack":true,"ts":1576184890017,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890017}
                          2019-12-12 22:08:10.087  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890019,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890019}
                          2019-12-12 22:08:10.089  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890019,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890019}
                          2019-12-12 22:08:10.105  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:10;CONNECT;1;4;628xy6;\r\n"
                          2019-12-12 22:08:10.106  - debug: tr-064-community.0 (31690) callmonitor handle connect message: {"caller":"254xy","callee":"628xy6","extension":"4","_type":"outbound","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin"}
                          2019-12-12 22:08:10.113  - debug: tr-064-community.0 (31690) callMonitor.set: type=connect caller=254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                          2019-12-12 22:08:10.126  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184890118,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                          2019-12-12 22:08:10.130  - debug: tr-064-community.0 (31690) State-Change {"val":"254xy","ack":true,"ts":1576184890119,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890119}
                          2019-12-12 22:08:10.135  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184890120,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770528}
                          2019-12-12 22:08:10.138  - debug: tr-064-community.0 (31690) State-Change {"val":"4","ack":true,"ts":1576184890120,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890120}
                          2019-12-12 22:08:10.141  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890121,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926674}
                          2019-12-12 22:08:10.145  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890121,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770530}
                          2019-12-12 22:08:10.150  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:10","ack":true,"ts":1576184890121,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890121}
                          2019-12-12 22:08:10.154  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890122,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926676}
                          2019-12-12 22:08:10.158  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890122,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770535}
                          2019-12-12 22:08:10.162  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"254xy\",\"callee\":\"628xy6\",\"extension\":\"4\",\"_type\":\"connect\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\"}","ack":true,"ts":1576184890123,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890123}
                          2019-12-12 22:08:10.166  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890123,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890019}
                          2019-12-12 22:08:10.169  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890124,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890124}
                          2019-12-12 22:08:12.263  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:12;DISCONNECT;1;3;\r\n"
                          2019-12-12 22:08:12.264  - debug: tr-064-community.0 (31690) callmonitor handle lastCall message: {"caller":"254xy","callee":"628xy6","extension":"4","_type":"connect","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin","type":"disconnect","duration":3}
                          2019-12-12 22:08:12.270  - debug: tr-064-community.0 (31690) callMonitor.set: type=lastCall caller=254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                          2019-12-12 22:08:12.286  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184892275,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                          2019-12-12 22:08:12.291  - debug: tr-064-community.0 (31690) State-Change {"val":"254xy","ack":true,"ts":1576184892275,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892275}
                          2019-12-12 22:08:12.296  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184892276,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859270}
                          2019-12-12 22:08:12.301  - debug: tr-064-community.0 (31690) State-Change {"val":"4","ack":true,"ts":1576184892277,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892277}
                          2019-12-12 22:08:12.306  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892277,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933087}
                          2019-12-12 22:08:12.310  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:12;DISCONNECT;2;3;\r\n"
                          2019-12-12 22:08:12.311  - debug: tr-064-community.0 (31690) callmonitor handle lastCall message: {"caller":"030254xy","callee":"628xy6","_type":"connect","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin","extension":"11","type":"disconnect","duration":3}
                          2019-12-12 22:08:12.325  - debug: tr-064-community.0 (31690) callMonitor.set: type=lastCall caller=030254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                          2019-12-12 22:08:12.338  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892278,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859272}
                          2019-12-12 22:08:12.340  - debug: tr-064-community.0 (31690) State-Change {"val":"disconnect","ack":true,"ts":1576184892279,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859273}
                          2019-12-12 22:08:12.343  - debug: tr-064-community.0 (31690) State-Change {"val":3,"ack":true,"ts":1576184892279,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892279}
                          2019-12-12 22:08:12.345  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:12","ack":true,"ts":1576184892280,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892280}
                          2019-12-12 22:08:12.348  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892281,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933103}
                          2019-12-12 22:08:12.350  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892281,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859275}
                          2019-12-12 22:08:12.359  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"254xy\",\"callee\":\"628xy6\",\"extension\":\"4\",\"_type\":\"lastCall\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\",\"type\":\"disconnect\",\"duration\":3}","ack":true,"ts":1576184892282,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892282}
                          2019-12-12 22:08:12.362  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892282,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892282}
                          2019-12-12 22:08:12.364  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892283,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892283}
                          2019-12-12 22:08:12.384  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184892370,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                          2019-12-12 22:08:12.386  - debug: tr-064-community.0 (31690) State-Change {"val":"030254xy","ack":true,"ts":1576184892375,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892375}
                          2019-12-12 22:08:12.389  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184892376,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859270}
                          2019-12-12 22:08:12.393  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892376,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933087}
                          2019-12-12 22:08:12.396  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892377,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859272}
                          2019-12-12 22:08:12.398  - debug: tr-064-community.0 (31690) State-Change {"val":"11","ack":true,"ts":1576184892377,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892377}
                          2019-12-12 22:08:12.404  - debug: tr-064-community.0 (31690) State-Change {"val":"disconnect","ack":true,"ts":1576184892378,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859273}
                          2019-12-12 22:08:12.409  - debug: tr-064-community.0 (31690) State-Change {"val":3,"ack":true,"ts":1576184892378,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892279}
                          2019-12-12 22:08:12.411  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:12","ack":true,"ts":1576184892378,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892280}
                          2019-12-12 22:08:12.416  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892379,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933103}
                          2019-12-12 22:08:12.422  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892379,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859275}
                          2019-12-12 22:08:12.425  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"030254xy\",\"callee\":\"628xy6\",\"_type\":\"lastCall\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\",\"extension\":\"11\",\"type\":\"disconnect\",\"duration\":3}","ack":true,"ts":1576184892380,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892380}
                          2019-12-12 22:08:12.430  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892380,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892282}
                          2019-12-12 22:08:12.432  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892381,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892381}
                          2019-12-12 22:08:20.527  - debug: tr-064-community.0 (31690) in updateAll
                          2019-12-12 22:08:20.530  - debug: tr-064-community.0 (31690) updateDevices
                          2019-12-12 22:08:20.530  - debug: tr-064-community.0 (31690) forEachConfiguredDevice
                          
                          
                          
                          apollon77A 2 Replies Last reply
                          0
                          • marcusklM Offline
                            marcusklM Offline
                            marcuskl
                            wrote on last edited by
                            #491

                            Findet man diesen Adaper schon in IoBroker/Adapter ?

                            Host: Intel Nuc6cayh (16GB Ram, 240GB SSD) mit Proxmox.

                            Iobroker VM, InfluxDB LXC, Pihole LXC, Tasmoadmin LXC, Easy2connect VM

                            conectasC 1 Reply Last reply
                            0
                            • conectasC conectas

                              @apollon77

                              Bitte am Ende des Tages bitte nicht vergessen eine func Version rein zu legen (habe gerade festgestellt das im iobroker backup .. nix von tr-064 drin ist)

                              1. Ich muss wahrscheinlich gleich Mittag essen... sonst wird die besagte Kerstin .. na ja 😉
                              
                              
                              
                              
                              
                              
                              2019-12-12 22:08:04.642  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:04;CALL;1;4;254xy;628xy6;SIP3;\r\n"
                              2019-12-12 22:08:04.643  - debug: tr-064-community.0 (31690) callmonitor handle outbound message: {"caller":"254xy","callee":"628xy6","extension":"4"}
                              2019-12-12 22:08:04.647  - debug: tr-064-community.0 (31690) Search number 004930254xy in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                              2019-12-12 22:08:04.652  - debug: tr-064-community.0 (31690) Search number 004930628xy6 in phonebook: {"name":"NNAme Kerstin","normalizedName":"NNAmekerstin","number":"004930628xy6","id":"631","phonebookId":"0"}
                              2019-12-12 22:08:04.656  - debug: tr-064-community.0 (31690) callMonitor.set: type=outbound caller=254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                              2019-12-12 22:08:04.686  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184884671,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184855434}
                              2019-12-12 22:08:04.693  - debug: tr-064-community.0 (31690) State-Change {"val":"254xy","ack":true,"ts":1576184884672,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914392}
                              2019-12-12 22:08:04.699  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184884676,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851355}
                              2019-12-12 22:08:04.704  - debug: tr-064-community.0 (31690) State-Change {"val":"4","ack":true,"ts":1576184884677,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914401}
                              2019-12-12 22:08:04.708  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:04","ack":true,"ts":1576184884678,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184884678}
                              2019-12-12 22:08:04.711  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184884680,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914403}
                              2019-12-12 22:08:04.717  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184884681,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851367}
                              2019-12-12 22:08:04.721  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"254xy\",\"callee\":\"628xy6\",\"extension\":\"4\",\"_type\":\"outbound\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\"}","ack":true,"ts":1576184884682,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851368}
                              2019-12-12 22:08:04.999  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:04;RING;2;030254xy;628xy6;SIP0;\r\n"
                              2019-12-12 22:08:05.000  - debug: tr-064-community.0 (31690) callmonitor handle inbound message: {"caller":"030254xy","callee":"628xy6"}
                              2019-12-12 22:08:05.003  - debug: tr-064-community.0 (31690) Search number 004930254xy in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                              2019-12-12 22:08:05.004  - debug: tr-064-community.0 (31690) Search number 004930628xy6 in phonebook: {"name":"NNAme Kerstin","normalizedName":"NNAmekerstin","number":"004930628xy6","id":"631","phonebookId":"0"}
                              2019-12-12 22:08:05.006  - debug: tr-064-community.0 (31690) callMonitor.set: type=inbound caller=030254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                              2019-12-12 22:08:05.022  - debug: tr-064-community.0 (31690) State-Change {"val":true,"ack":true,"ts":1576184885010,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184885010}
                              2019-12-12 22:08:05.026  - debug: tr-064-community.0 (31690) State-Change {"val":"030254xy","ack":true,"ts":1576184885011,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183605807}
                              2019-12-12 22:08:05.031  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184885011,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851814}
                              2019-12-12 22:08:05.034  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:04","ack":true,"ts":1576184885011,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184885011}
                              2019-12-12 22:08:05.039  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184885012,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914757}
                              2019-12-12 22:08:05.044  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184885013,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851817}
                              2019-12-12 22:08:05.048  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"030254xy\",\"callee\":\"628xy6\",\"_type\":\"inbound\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\"}","ack":true,"ts":1576184885014,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851819}
                              2019-12-12 22:08:05.053  - debug: tr-064-community.0 (31690) State-Change {"val":"ring","ack":true,"ts":1576184885014,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184885014}
                              2019-12-12 22:08:08.937  - debug: tr-064-community.0 (31690) in updateAll
                              2019-12-12 22:08:08.939  - debug: tr-064-community.0 (31690) updateDevices
                              2019-12-12 22:08:08.940  - debug: tr-064-community.0 (31690) forEachConfiguredDevice
                              2019-12-12 22:08:09.991  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:09;CONNECT;2;11;030254xy;\r\n"
                              2019-12-12 22:08:09.993  - debug: tr-064-community.0 (31690) callmonitor handle connect message: {"caller":"030254xy","callee":"628xy6","_type":"inbound","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin","extension":"11"}
                              2019-12-12 22:08:09.997  - debug: tr-064-community.0 (31690) callMonitor.set: type=connect caller=030254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                              2019-12-12 22:08:10.022  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184890002,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                              2019-12-12 22:08:10.027  - debug: tr-064-community.0 (31690) State-Change {"val":"030254xy","ack":true,"ts":1576184890003,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890003}
                              2019-12-12 22:08:10.032  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184890003,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770528}
                              2019-12-12 22:08:10.037  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890004,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926674}
                              2019-12-12 22:08:10.042  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890005,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770530}
                              2019-12-12 22:08:10.047  - debug: tr-064-community.0 (31690) State-Change {"val":"11","ack":true,"ts":1576184890006,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890006}
                              2019-12-12 22:08:10.055  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:09","ack":true,"ts":1576184890006,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890006}
                              2019-12-12 22:08:10.060  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890007,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926676}
                              2019-12-12 22:08:10.063  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890016,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770535}
                              2019-12-12 22:08:10.083  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"030254xy\",\"callee\":\"628xy6\",\"_type\":\"connect\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\",\"extension\":\"11\"}","ack":true,"ts":1576184890017,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890017}
                              2019-12-12 22:08:10.087  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890019,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890019}
                              2019-12-12 22:08:10.089  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890019,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890019}
                              2019-12-12 22:08:10.105  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:10;CONNECT;1;4;628xy6;\r\n"
                              2019-12-12 22:08:10.106  - debug: tr-064-community.0 (31690) callmonitor handle connect message: {"caller":"254xy","callee":"628xy6","extension":"4","_type":"outbound","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin"}
                              2019-12-12 22:08:10.113  - debug: tr-064-community.0 (31690) callMonitor.set: type=connect caller=254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                              2019-12-12 22:08:10.126  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184890118,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                              2019-12-12 22:08:10.130  - debug: tr-064-community.0 (31690) State-Change {"val":"254xy","ack":true,"ts":1576184890119,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890119}
                              2019-12-12 22:08:10.135  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184890120,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770528}
                              2019-12-12 22:08:10.138  - debug: tr-064-community.0 (31690) State-Change {"val":"4","ack":true,"ts":1576184890120,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890120}
                              2019-12-12 22:08:10.141  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890121,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926674}
                              2019-12-12 22:08:10.145  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890121,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770530}
                              2019-12-12 22:08:10.150  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:10","ack":true,"ts":1576184890121,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890121}
                              2019-12-12 22:08:10.154  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890122,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926676}
                              2019-12-12 22:08:10.158  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890122,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770535}
                              2019-12-12 22:08:10.162  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"254xy\",\"callee\":\"628xy6\",\"extension\":\"4\",\"_type\":\"connect\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\"}","ack":true,"ts":1576184890123,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890123}
                              2019-12-12 22:08:10.166  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890123,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890019}
                              2019-12-12 22:08:10.169  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890124,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890124}
                              2019-12-12 22:08:12.263  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:12;DISCONNECT;1;3;\r\n"
                              2019-12-12 22:08:12.264  - debug: tr-064-community.0 (31690) callmonitor handle lastCall message: {"caller":"254xy","callee":"628xy6","extension":"4","_type":"connect","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin","type":"disconnect","duration":3}
                              2019-12-12 22:08:12.270  - debug: tr-064-community.0 (31690) callMonitor.set: type=lastCall caller=254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                              2019-12-12 22:08:12.286  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184892275,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                              2019-12-12 22:08:12.291  - debug: tr-064-community.0 (31690) State-Change {"val":"254xy","ack":true,"ts":1576184892275,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892275}
                              2019-12-12 22:08:12.296  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184892276,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859270}
                              2019-12-12 22:08:12.301  - debug: tr-064-community.0 (31690) State-Change {"val":"4","ack":true,"ts":1576184892277,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892277}
                              2019-12-12 22:08:12.306  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892277,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933087}
                              2019-12-12 22:08:12.310  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:12;DISCONNECT;2;3;\r\n"
                              2019-12-12 22:08:12.311  - debug: tr-064-community.0 (31690) callmonitor handle lastCall message: {"caller":"030254xy","callee":"628xy6","_type":"connect","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin","extension":"11","type":"disconnect","duration":3}
                              2019-12-12 22:08:12.325  - debug: tr-064-community.0 (31690) callMonitor.set: type=lastCall caller=030254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                              2019-12-12 22:08:12.338  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892278,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859272}
                              2019-12-12 22:08:12.340  - debug: tr-064-community.0 (31690) State-Change {"val":"disconnect","ack":true,"ts":1576184892279,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859273}
                              2019-12-12 22:08:12.343  - debug: tr-064-community.0 (31690) State-Change {"val":3,"ack":true,"ts":1576184892279,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892279}
                              2019-12-12 22:08:12.345  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:12","ack":true,"ts":1576184892280,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892280}
                              2019-12-12 22:08:12.348  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892281,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933103}
                              2019-12-12 22:08:12.350  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892281,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859275}
                              2019-12-12 22:08:12.359  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"254xy\",\"callee\":\"628xy6\",\"extension\":\"4\",\"_type\":\"lastCall\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\",\"type\":\"disconnect\",\"duration\":3}","ack":true,"ts":1576184892282,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892282}
                              2019-12-12 22:08:12.362  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892282,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892282}
                              2019-12-12 22:08:12.364  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892283,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892283}
                              2019-12-12 22:08:12.384  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184892370,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                              2019-12-12 22:08:12.386  - debug: tr-064-community.0 (31690) State-Change {"val":"030254xy","ack":true,"ts":1576184892375,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892375}
                              2019-12-12 22:08:12.389  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184892376,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859270}
                              2019-12-12 22:08:12.393  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892376,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933087}
                              2019-12-12 22:08:12.396  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892377,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859272}
                              2019-12-12 22:08:12.398  - debug: tr-064-community.0 (31690) State-Change {"val":"11","ack":true,"ts":1576184892377,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892377}
                              2019-12-12 22:08:12.404  - debug: tr-064-community.0 (31690) State-Change {"val":"disconnect","ack":true,"ts":1576184892378,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859273}
                              2019-12-12 22:08:12.409  - debug: tr-064-community.0 (31690) State-Change {"val":3,"ack":true,"ts":1576184892378,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892279}
                              2019-12-12 22:08:12.411  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:12","ack":true,"ts":1576184892378,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892280}
                              2019-12-12 22:08:12.416  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892379,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933103}
                              2019-12-12 22:08:12.422  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892379,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859275}
                              2019-12-12 22:08:12.425  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"030254xy\",\"callee\":\"628xy6\",\"_type\":\"lastCall\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\",\"extension\":\"11\",\"type\":\"disconnect\",\"duration\":3}","ack":true,"ts":1576184892380,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892380}
                              2019-12-12 22:08:12.430  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892380,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892282}
                              2019-12-12 22:08:12.432  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892381,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892381}
                              2019-12-12 22:08:20.527  - debug: tr-064-community.0 (31690) in updateAll
                              2019-12-12 22:08:20.530  - debug: tr-064-community.0 (31690) updateDevices
                              2019-12-12 22:08:20.530  - debug: tr-064-community.0 (31690) forEachConfiguredDevice
                              
                              
                              
                              apollon77A Online
                              apollon77A Online
                              apollon77
                              wrote on last edited by
                              #492

                              @conectas jetzt sollte aber alles geschrieben werden oder ?! Zumindestens sagt das log das

                              Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                              • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                              • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                              conectasC 1 Reply Last reply
                              0
                              • conectasC conectas

                                @apollon77

                                Bitte am Ende des Tages bitte nicht vergessen eine func Version rein zu legen (habe gerade festgestellt das im iobroker backup .. nix von tr-064 drin ist)

                                1. Ich muss wahrscheinlich gleich Mittag essen... sonst wird die besagte Kerstin .. na ja 😉
                                
                                
                                
                                
                                
                                
                                2019-12-12 22:08:04.642  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:04;CALL;1;4;254xy;628xy6;SIP3;\r\n"
                                2019-12-12 22:08:04.643  - debug: tr-064-community.0 (31690) callmonitor handle outbound message: {"caller":"254xy","callee":"628xy6","extension":"4"}
                                2019-12-12 22:08:04.647  - debug: tr-064-community.0 (31690) Search number 004930254xy in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                                2019-12-12 22:08:04.652  - debug: tr-064-community.0 (31690) Search number 004930628xy6 in phonebook: {"name":"NNAme Kerstin","normalizedName":"NNAmekerstin","number":"004930628xy6","id":"631","phonebookId":"0"}
                                2019-12-12 22:08:04.656  - debug: tr-064-community.0 (31690) callMonitor.set: type=outbound caller=254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                                2019-12-12 22:08:04.686  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184884671,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184855434}
                                2019-12-12 22:08:04.693  - debug: tr-064-community.0 (31690) State-Change {"val":"254xy","ack":true,"ts":1576184884672,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914392}
                                2019-12-12 22:08:04.699  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184884676,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851355}
                                2019-12-12 22:08:04.704  - debug: tr-064-community.0 (31690) State-Change {"val":"4","ack":true,"ts":1576184884677,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914401}
                                2019-12-12 22:08:04.708  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:04","ack":true,"ts":1576184884678,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184884678}
                                2019-12-12 22:08:04.711  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184884680,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914403}
                                2019-12-12 22:08:04.717  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184884681,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851367}
                                2019-12-12 22:08:04.721  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"254xy\",\"callee\":\"628xy6\",\"extension\":\"4\",\"_type\":\"outbound\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\"}","ack":true,"ts":1576184884682,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851368}
                                2019-12-12 22:08:04.999  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:04;RING;2;030254xy;628xy6;SIP0;\r\n"
                                2019-12-12 22:08:05.000  - debug: tr-064-community.0 (31690) callmonitor handle inbound message: {"caller":"030254xy","callee":"628xy6"}
                                2019-12-12 22:08:05.003  - debug: tr-064-community.0 (31690) Search number 004930254xy in phonebook: {"name":"NNAme Stefan","normalizedName":"NNAmestefan","number":"004930254xy","id":"634","phonebookId":"0"}
                                2019-12-12 22:08:05.004  - debug: tr-064-community.0 (31690) Search number 004930628xy6 in phonebook: {"name":"NNAme Kerstin","normalizedName":"NNAmekerstin","number":"004930628xy6","id":"631","phonebookId":"0"}
                                2019-12-12 22:08:05.006  - debug: tr-064-community.0 (31690) callMonitor.set: type=inbound caller=030254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                                2019-12-12 22:08:05.022  - debug: tr-064-community.0 (31690) State-Change {"val":true,"ack":true,"ts":1576184885010,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184885010}
                                2019-12-12 22:08:05.026  - debug: tr-064-community.0 (31690) State-Change {"val":"030254xy","ack":true,"ts":1576184885011,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183605807}
                                2019-12-12 22:08:05.031  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184885011,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851814}
                                2019-12-12 22:08:05.034  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:04","ack":true,"ts":1576184885011,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184885011}
                                2019-12-12 22:08:05.039  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184885012,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182914757}
                                2019-12-12 22:08:05.044  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184885013,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851817}
                                2019-12-12 22:08:05.048  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"030254xy\",\"callee\":\"628xy6\",\"_type\":\"inbound\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\"}","ack":true,"ts":1576184885014,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184851819}
                                2019-12-12 22:08:05.053  - debug: tr-064-community.0 (31690) State-Change {"val":"ring","ack":true,"ts":1576184885014,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184885014}
                                2019-12-12 22:08:08.937  - debug: tr-064-community.0 (31690) in updateAll
                                2019-12-12 22:08:08.939  - debug: tr-064-community.0 (31690) updateDevices
                                2019-12-12 22:08:08.940  - debug: tr-064-community.0 (31690) forEachConfiguredDevice
                                2019-12-12 22:08:09.991  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:09;CONNECT;2;11;030254xy;\r\n"
                                2019-12-12 22:08:09.993  - debug: tr-064-community.0 (31690) callmonitor handle connect message: {"caller":"030254xy","callee":"628xy6","_type":"inbound","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin","extension":"11"}
                                2019-12-12 22:08:09.997  - debug: tr-064-community.0 (31690) callMonitor.set: type=connect caller=030254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                                2019-12-12 22:08:10.022  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184890002,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                                2019-12-12 22:08:10.027  - debug: tr-064-community.0 (31690) State-Change {"val":"030254xy","ack":true,"ts":1576184890003,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890003}
                                2019-12-12 22:08:10.032  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184890003,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770528}
                                2019-12-12 22:08:10.037  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890004,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926674}
                                2019-12-12 22:08:10.042  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890005,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770530}
                                2019-12-12 22:08:10.047  - debug: tr-064-community.0 (31690) State-Change {"val":"11","ack":true,"ts":1576184890006,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890006}
                                2019-12-12 22:08:10.055  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:09","ack":true,"ts":1576184890006,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890006}
                                2019-12-12 22:08:10.060  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890007,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926676}
                                2019-12-12 22:08:10.063  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890016,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770535}
                                2019-12-12 22:08:10.083  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"030254xy\",\"callee\":\"628xy6\",\"_type\":\"connect\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\",\"extension\":\"11\"}","ack":true,"ts":1576184890017,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890017}
                                2019-12-12 22:08:10.087  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890019,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890019}
                                2019-12-12 22:08:10.089  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890019,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890019}
                                2019-12-12 22:08:10.105  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:10;CONNECT;1;4;628xy6;\r\n"
                                2019-12-12 22:08:10.106  - debug: tr-064-community.0 (31690) callmonitor handle connect message: {"caller":"254xy","callee":"628xy6","extension":"4","_type":"outbound","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin"}
                                2019-12-12 22:08:10.113  - debug: tr-064-community.0 (31690) callMonitor.set: type=connect caller=254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                                2019-12-12 22:08:10.126  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184890118,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                                2019-12-12 22:08:10.130  - debug: tr-064-community.0 (31690) State-Change {"val":"254xy","ack":true,"ts":1576184890119,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890119}
                                2019-12-12 22:08:10.135  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184890120,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770528}
                                2019-12-12 22:08:10.138  - debug: tr-064-community.0 (31690) State-Change {"val":"4","ack":true,"ts":1576184890120,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890120}
                                2019-12-12 22:08:10.141  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890121,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926674}
                                2019-12-12 22:08:10.145  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890121,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770530}
                                2019-12-12 22:08:10.150  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:10","ack":true,"ts":1576184890121,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890121}
                                2019-12-12 22:08:10.154  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184890122,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182926676}
                                2019-12-12 22:08:10.158  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184890122,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576183770535}
                                2019-12-12 22:08:10.162  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"254xy\",\"callee\":\"628xy6\",\"extension\":\"4\",\"_type\":\"connect\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\"}","ack":true,"ts":1576184890123,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890123}
                                2019-12-12 22:08:10.166  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890123,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890019}
                                2019-12-12 22:08:10.169  - debug: tr-064-community.0 (31690) State-Change {"val":"connect","ack":true,"ts":1576184890124,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890124}
                                2019-12-12 22:08:12.263  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:12;DISCONNECT;1;3;\r\n"
                                2019-12-12 22:08:12.264  - debug: tr-064-community.0 (31690) callmonitor handle lastCall message: {"caller":"254xy","callee":"628xy6","extension":"4","_type":"connect","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin","type":"disconnect","duration":3}
                                2019-12-12 22:08:12.270  - debug: tr-064-community.0 (31690) callMonitor.set: type=lastCall caller=254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                                2019-12-12 22:08:12.286  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184892275,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                                2019-12-12 22:08:12.291  - debug: tr-064-community.0 (31690) State-Change {"val":"254xy","ack":true,"ts":1576184892275,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892275}
                                2019-12-12 22:08:12.296  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184892276,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859270}
                                2019-12-12 22:08:12.301  - debug: tr-064-community.0 (31690) State-Change {"val":"4","ack":true,"ts":1576184892277,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892277}
                                2019-12-12 22:08:12.306  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892277,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933087}
                                2019-12-12 22:08:12.310  - debug: tr-064-community.0 (31690) callmonitor raw data: "12.12.19 22:08:12;DISCONNECT;2;3;\r\n"
                                2019-12-12 22:08:12.311  - debug: tr-064-community.0 (31690) callmonitor handle lastCall message: {"caller":"030254xy","callee":"628xy6","_type":"connect","callerName":"NNAme Stefan","calleeName":"NNAme Kerstin","extension":"11","type":"disconnect","duration":3}
                                2019-12-12 22:08:12.325  - debug: tr-064-community.0 (31690) callMonitor.set: type=lastCall caller=030254xy callee=628xy6 callerName=NNAme Stefan calleeName=NNAme Kerstin
                                2019-12-12 22:08:12.338  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892278,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859272}
                                2019-12-12 22:08:12.340  - debug: tr-064-community.0 (31690) State-Change {"val":"disconnect","ack":true,"ts":1576184892279,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859273}
                                2019-12-12 22:08:12.343  - debug: tr-064-community.0 (31690) State-Change {"val":3,"ack":true,"ts":1576184892279,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892279}
                                2019-12-12 22:08:12.345  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:12","ack":true,"ts":1576184892280,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892280}
                                2019-12-12 22:08:12.348  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892281,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933103}
                                2019-12-12 22:08:12.350  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892281,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859275}
                                2019-12-12 22:08:12.359  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"254xy\",\"callee\":\"628xy6\",\"extension\":\"4\",\"_type\":\"lastCall\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\",\"type\":\"disconnect\",\"duration\":3}","ack":true,"ts":1576184892282,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892282}
                                2019-12-12 22:08:12.362  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892282,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892282}
                                2019-12-12 22:08:12.364  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892283,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892283}
                                2019-12-12 22:08:12.384  - debug: tr-064-community.0 (31690) State-Change {"val":false,"ack":true,"ts":1576184892370,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184890002}
                                2019-12-12 22:08:12.386  - debug: tr-064-community.0 (31690) State-Change {"val":"030254xy","ack":true,"ts":1576184892375,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892375}
                                2019-12-12 22:08:12.389  - debug: tr-064-community.0 (31690) State-Change {"val":"628xy6","ack":true,"ts":1576184892376,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859270}
                                2019-12-12 22:08:12.393  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892376,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933087}
                                2019-12-12 22:08:12.396  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892377,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859272}
                                2019-12-12 22:08:12.398  - debug: tr-064-community.0 (31690) State-Change {"val":"11","ack":true,"ts":1576184892377,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892377}
                                2019-12-12 22:08:12.404  - debug: tr-064-community.0 (31690) State-Change {"val":"disconnect","ack":true,"ts":1576184892378,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859273}
                                2019-12-12 22:08:12.409  - debug: tr-064-community.0 (31690) State-Change {"val":3,"ack":true,"ts":1576184892378,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892279}
                                2019-12-12 22:08:12.411  - debug: tr-064-community.0 (31690) State-Change {"val":"12.12.19 22:08:12","ack":true,"ts":1576184892378,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892280}
                                2019-12-12 22:08:12.416  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Stefan","ack":true,"ts":1576184892379,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576182933103}
                                2019-12-12 22:08:12.422  - debug: tr-064-community.0 (31690) State-Change {"val":"NNAme Kerstin","ack":true,"ts":1576184892379,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184859275}
                                2019-12-12 22:08:12.425  - debug: tr-064-community.0 (31690) State-Change {"val":"{\"caller\":\"030254xy\",\"callee\":\"628xy6\",\"_type\":\"lastCall\",\"callerName\":\"NNAme Stefan\",\"calleeName\":\"NNAme Kerstin\",\"extension\":\"11\",\"type\":\"disconnect\",\"duration\":3}","ack":true,"ts":1576184892380,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892380}
                                2019-12-12 22:08:12.430  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892380,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892282}
                                2019-12-12 22:08:12.432  - debug: tr-064-community.0 (31690) State-Change {"val":"end","ack":true,"ts":1576184892381,"q":0,"from":"system.adapter.tr-064-community.0","user":"system.user.admin","lc":1576184892381}
                                2019-12-12 22:08:20.527  - debug: tr-064-community.0 (31690) in updateAll
                                2019-12-12 22:08:20.530  - debug: tr-064-community.0 (31690) updateDevices
                                2019-12-12 22:08:20.530  - debug: tr-064-community.0 (31690) forEachConfiguredDevice
                                
                                
                                
                                apollon77A Online
                                apollon77A Online
                                apollon77
                                wrote on last edited by
                                #493

                                @conectas sagte in Test Adapter tr-064-community v1.0.x:

                                Bitte am Ende des Tages bitte nicht vergessen eine func Version rein zu legen (habe gerade festgestellt das im iobroker backup .. nix von tr-064 drin ist)

                                Das wird so eine Sache ... Den Stand von früher heute wiederherzustellen wir nahezu unmöglich ... und wir müssen jetzt mal endlich vorankommen

                                Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                                • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                                • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                                1 Reply Last reply
                                0
                                • apollon77A apollon77

                                  @conectas jetzt sollte aber alles geschrieben werden oder ?! Zumindestens sagt das log das

                                  conectasC Offline
                                  conectasC Offline
                                  conectas
                                  wrote on last edited by conectas
                                  #494

                                  @apollon77

                                  außer toPauseState werden im callmonitor nix angelegt..

                                  tr-064-community.0.callmonitor // Hat sich nicht geändert.

                                  tr-064-community.0.callForwarding sieht okay aus..

                                  tr-064-community.0.states ist bis auf den Eintrag: tr-064-community.0.states.calllists auch leer

                                  1 Reply Last reply
                                  0
                                  • marcusklM marcuskl

                                    Findet man diesen Adaper schon in IoBroker/Adapter ?

                                    conectasC Offline
                                    conectasC Offline
                                    conectas
                                    wrote on last edited by
                                    #495

                                    @marcuskl sagte in Test Adapter tr-064-community v1.0.x:

                                    Findet man diesen Adaper schon in IoBroker/Adapter ?

                                    Nein.

                                    marcusklM 1 Reply Last reply
                                    0
                                    • apollon77A apollon77

                                      Hallo,

                                      der tr-064 Adapter von soef ist mit fast 10.000 Installationen ein sehr oft genutzter Adapter. Leider ist der Entwickler nicht mehr aktiv und so wird auch der Adapter nicht mehr weiterentwickelt. Um dies ggf zu ändern hat sich die Entwicklergruppe der ioBroker-Community-Adapter entschieden die soef Adapter zu übernehmen und versuchen weiterzuentwickeln.

                                      Der erste so etwas aufgefrischte Adapter ist genau der tr-064 Adapter. Am Funktionsumfang hat sich hier noch nichts geändert, aber der Adapter wurde intern aktualisiert.
                                      Jetzt würden wir diese neue Version gern veröffentlichen um Sie als neue Basis zu nutzen.

                                      Die neue Version steht zur manuellen Installation unter GitHub-Link https://github.com/iobroker-community-adapters/ioBroker.tr-064-community zur Verfügung. Installiert einfach per GitHub-Icon.
                                      Die Einstellungen einer bestehenden tr-06 Instanz sollten sich durch Übername des "native"-Teils der Instanzeinstellungen unter system.adapter.tr-064.X (X=Instanznummer) in das neue Instanzobjekt übernehmen lassen.

                                      Hier brauchen wir von Euch Testunterstützung und freuen uns auf Euer Feedback!
                                      Danke für Eure Unterstützung.

                                      Ingo und die anderen Community-Entwickler

                                      sigi234S Online
                                      sigi234S Online
                                      sigi234
                                      Forum Testing Most Active
                                      wrote on last edited by sigi234
                                      #496

                                      @apollon77

                                      Für Apollon77

                                      Screenshot (914)_LI.jpg

                                      Screenshot (919)_LI.jpg

                                      Screenshot (921).png

                                      Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                                      Immer Daten sichern!

                                      conectasC 1 Reply Last reply
                                      0
                                      • sigi234S sigi234

                                        @apollon77

                                        Für Apollon77

                                        Screenshot (914)_LI.jpg

                                        Screenshot (919)_LI.jpg

                                        Screenshot (921).png

                                        conectasC Offline
                                        conectasC Offline
                                        conectas
                                        wrote on last edited by
                                        #497

                                        @sigi234 sagte in Test Adapter tr-064-community v1.0.x:

                                        oder so.. mit Bild ist ja feige 😉
                                        bin für 15min weg. Mittagessen...

                                        sigi234S 1 Reply Last reply
                                        0
                                        • conectasC conectas

                                          @sigi234 sagte in Test Adapter tr-064-community v1.0.x:

                                          oder so.. mit Bild ist ja feige 😉
                                          bin für 15min weg. Mittagessen...

                                          sigi234S Online
                                          sigi234S Online
                                          sigi234
                                          Forum Testing Most Active
                                          wrote on last edited by
                                          #498

                                          @conectas sagte in Test Adapter tr-064-community v1.0.x:

                                          oder so.. mit Bild ist ja feige

                                          Ein Bild sagt mehr als 1000 Worte. 😀

                                          Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                                          Immer Daten sichern!

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          299

                                          Online

                                          32.4k

                                          Users

                                          81.3k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe