Closed 123Jun321 closed 4 years ago
I am unable to replicate. To confirm, you had a working deployment, disconnected the device from the internet, then restarted the device?
This looks like an issue with docker's DNS lookup. Can you run iotedge check in an online mode as well please?
Hi liftchett,
Because the device is our client's, and we can't let it connect the internet now, so I'm sorry that I can't provide the iotedge check log in the online mode. But I print the DNS information of the docker as below:
root@sxygsj-EC0-1817V2NA:~# docker network ls
NETWORK ID NAME DRIVER SCOPE
d8091fe76952 azure-iot-edge bridge local
092561cadb9d bridge bridge local
2c86b22095a3 host host local
8943cd55cc60 none null local
root@sxygsj-EC0-1817V2NA:~# docker inspect azure-iot-edge
[
{
"Name": "azure-iot-edge",
"Id": "d8091fe76952c5fe4bee4366c364b47efb723870a8222532824b58b5cd2c6ae3",
"Created": "2019-07-30T18:54:13.860461163+08:00",
"Scope": "local",
"Driver": "bridge",
"EnableIPv6": false,
"IPAM": {
"Driver": "default",
"Options": null,
"Config": [
{
"Subnet": "172.18.0.0/16",
"Gateway": "172.18.0.1"
}
]
},
"Internal": false,
"Attachable": false,
"Ingress": false,
"ConfigFrom": {
"Network": ""
},
"ConfigOnly": false,
"Containers": {
"433b175cb1c122d45016432828eaeac21163bc52dfc4961183d01a5ec1445fe5": {
"Name": "monitor19-2-18-17",
"EndpointID": "f97fcdf09a1d394e8bded165a1fd8d3dfa1ff618da239249a23c7c995d390218",
"MacAddress": "02:42:ac:12:00:02",
"IPv4Address": "172.18.0.2/16",
"IPv6Address": ""
},
"8d3be21006cc080ee199121590388e429f23cde5e50dd80bd175f3be32dc5de0": {
"Name": "upload19-2-18-19",
"EndpointID": "d252be36c21eea29ab75c0c957ddc4091afc6ff922b3c67431e2ddc4a6406238",
"MacAddress": "02:42:ac:12:00:03",
"IPv4Address": "172.18.0.3/16",
"IPv6Address": ""
}
},
"Options": {},
"Labels": {}
}
]
root@sxygsj-EC0-1817V2NA:~# cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.1.1
root@sxygsj-EC0-1817V2NA:~# cat /etc/docker/daemon.json
{"registry-mirrors": ["http://xxxxxx.m.daocloud.io"]}
hope it can help.
Hi philipktlin,
After we add DNS config, the problem seemed to be solved, we will test more times, and if it occurs again, we will provide the information to you.
Closed for now.
@123Jun321:
After we add DNS config, the problem seemed to be solved, we will test more times, and if it occurs again, we will provide the information to you.
Can you detail what you did to configure DNS? Was this on Linux, Windows 10 IoT Core, or Windows 10 IoT Enterprise?
From the initial report in this thread it was on Ubuntu 1604.
@123Jun321:
After we add DNS config, the problem seemed to be solved, we will test more times, and if it occurs again, we will provide the information to you.
Can you detail what you did to configure DNS? Was this on Linux, Windows 10 IoT Core, or Windows 10 IoT Enterprise?
Hi Robin,
The os is Linux, and we follow the official document to configure the DNS. https://docs.microsoft.com/en-us/azure/iot-edge/troubleshoot#edge-agent-module-continually-reports-empty-config-file-and-no-modules-start-on-the-device
Expected Behavior
it should restart successfully when the device is in offline mode
Current Behavior
it restarted failed when the device is in offline mode, but when we connect the network again, it will be normal and start successfully
Steps to Reproduce
Provide a detailed set of steps to reproduce the bug. 1.disconnect the edge device 2.restart the os
Context (Environment)
Output of
iotedge check
Click here
``` root@sxygsj-EC0-1817V2NA:~# ping baidu.com ping: unknown host baidu.com root@sxygsj-EC0-1817V2NA:~# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES root@sxygsj-EC0-1817V2NA:~# iotedge list NAME STATUS DESCRIPTION CONFIG root@sxygsj-EC0-1817V2NA:~# docker images REPOSITORY TAG IMAGE ID CREATED SIZE mcr.microsoft.com/azureiotedge-hub 1.0 96a80ac41eca 3 months ago 149MB mcr.microsoft.com/azureiotedge-agent 1.0 c34a85282c60 3 months ago 136MB mysql 5.5 d404d78aa797 9 months ago 205MB sxygsjdocker/upload 19.2.18.19 fdee106ad8d0 12 months ago 143MB sxygsjdocker/monitor 19.2.18.17 c38420199d69 12 months ago 130MB root@sxygsj-EC0-1817V2NA:~# iotedge check Configuration checks -------------------- √ config.yaml is well-formed - OK √ config.yaml has well-formed connection string - OK √ container engine is installed and functional - OK ‼ config.yaml has correct hostname - Warning config.yaml has hostname sxygsj-EC0-1817V2NA which does not comply with RFC 1035. - Hostname must be between 1 and 255 octets inclusive. - Each label in the hostname (component separated by ".") must be between 1 and 63 octets inclusive. - Each label must start with an ASCII alphabet character (a-z), end with an ASCII alphanumeric character (a-z, 0-9), and must contain only ASCII alphanumeric characters or hyphens (a-z, 0-9, "-"). Not complying with RFC 1035 may cause errors during the TLS handshake with modules and downstream devices. × config.yaml has correct URIs for daemon mgmt endpoint - Error Unable to find image 'mcr.microsoft.com/azureiotedge-diagnostics:1.0.8' locally docker: Error response from daemon: Get https://mcr.microsoft.com/v2/: dial tcp: lookup mcr.microsoft.com on [::1]:53: read udp [::1]:60834->[::1]:53: read: connection refused. See 'docker run --help'. ‼ latest security daemon - Warning Error while fetching latest versions of edge components: could not send HTTP request ‼ host time is close to real time - Warning Could not query NTP server × container time is close to host time - Error Could not query local time inside container ‼ DNS server - Warning Container engine is not configured with DNS server setting, which may impact connectivity to IoT Hub. Please see https://aka.ms/iotedge-prod-checklist-dns for best practices. You can ignore this warning if you are setting DNS server per module in the Edge deployment. ‼ production readiness: certificates - Warning Device is using self-signed, automatically generated certs. Please see https://aka.ms/iotedge-prod-checklist-certs for best practices. √ production readiness: certificates expiry - OK √ production readiness: container engine - OK ‼ production readiness: logs policy - Warning Container engine is not configured to rotate module logs which may cause it run out of disk space. Please see https://aka.ms/iotedge-prod-checklist-logs for best practices. You can ignore this warning if you are setting log policy per module in the Edge deployment. Connectivity checks ------------------- × host can connect to and perform TLS handshake with IoT Hub AMQP port - Error Could not connect to sxygsj-iot.azure-devices.cn:5671 : could not resolve hostname × host can connect to and perform TLS handshake with IoT Hub HTTPS / WebSockets port - Error Could not connect to sxygsj-iot.azure-devices.cn:443 : could not resolve hostname × host can connect to and perform TLS handshake with IoT Hub MQTT port - Error Could not connect to sxygsj-iot.azure-devices.cn:8883 : could not resolve hostname × container on the default network can connect to IoT Hub AMQP port - Error Container on the default network could not connect to sxygsj-iot.azure-devices.cn:5671 × container on the default network can connect to IoT Hub HTTPS / WebSockets port - Error Container on the default network could not connect to sxygsj-iot.azure-devices.cn:443 × container on the default network can connect to IoT Hub MQTT port - Error Container on the default network could not connect to sxygsj-iot.azure-devices.cn:8883 × container on the IoT Edge module network can connect to IoT Hub AMQP port - Error Container on the azure-iot-edge network could not connect to sxygsj-iot.azure-devices.cn:5671 × container on the IoT Edge module network can connect to IoT Hub HTTPS / WebSockets port - Error Container on the azure-iot-edge network could not connect to sxygsj-iot.azure-devices.cn:443 × container on the IoT Edge module network can connect to IoT Hub MQTT port - Error Container on the azure-iot-edge network could not connect to sxygsj-iot.azure-devices.cn:8883 × Edge Hub can bind to ports on host - Error Could not check current state of Edge Hub container 5 check(s) succeeded. 6 check(s) raised warnings. Re-run with --verbose for more details. 12 check(s) raised errors. Re-run with --verbose for more details. ```Device Information
Runtime Versions
iotedge version
]: iotedge 1.0.8 (208b2204fd30e856d00b280112422130c104b9f0)docker version
]: Version: 3.0.5 API version: 1.40 Go version: go1.12.1 Git commit: ba9934d4 Built: Thu Apr 18 22:01:41 2019 OS/Arch: linux/amd64 Experimental: falseNote: when using Windows containers on Windows, run
docker -H npipe:////./pipe/iotedge_moby_engine version
insteadLogs
iotedged logs
``` -- Logs begin at 二 2020-02-25 11:03:14 CST, end at 二 2020-02-25 18:21:47 CST. -- 2月 25 11:03:45 sxygsj-EC0-1817V2NA systemd[1]: Started Azure IoT Edge daemon. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Using config file: /etc/iotedge/config.yaml 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Starting Azure IoT Edge Security Daemon 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Version - 1.0.8 (208b2204fd30e856d00b280112422130c104b9f0) 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Using runtime network id azure-iot-edge 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Initializing the module runtime... 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Initializing module runtime... 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Successfully initialized module runtime 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Finished initializing the module runtime. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Configuring /var/lib/iotedge as the home directory. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Configuring certificates... 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Transparent gateway certificates not found, operating in quick start mode... 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Finished configuring certificates. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Initializing hsm... 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Finished initializing hsm. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Detecting if configuration file has changed... 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - No change to configuration file detected. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Edge issuer CA expiration date: 2020-05-24T07:05:45Z 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Obtaining workload CA succeeded. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Provisioning edge device... 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Manually provisioning device "sx-dt-zy-ljy-001" in hub "sxygsj-iot.azure-devices.cn" 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Finished provisioning edge device. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Starting management API... 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Starting workload API... 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Starting watchdog with 60 second frequency... 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Listening on fd://iotedge.mgmt.socket/ with 1 thread for management API. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Listening on fd://iotedge.socket/ with 1 thread for workload API. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Checking edge runtime status 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [WARN] - A module runtime error occurred. 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:03:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:04:45Z [INFO] - Checking edge runtime status 2月 25 11:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:04:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:04:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:04:45Z [WARN] - A module runtime error occurred. 2月 25 11:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:04:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:04:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:04:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:04:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:05:45Z [INFO] - Checking edge runtime status 2月 25 11:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:05:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:05:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:05:45Z [WARN] - A module runtime error occurred. 2月 25 11:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:05:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:05:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:05:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:05:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:06:45Z [INFO] - Checking edge runtime status 2月 25 11:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:06:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:06:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:06:45Z [WARN] - A module runtime error occurred. 2月 25 11:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:06:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:06:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:06:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:06:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:07:45Z [INFO] - Checking edge runtime status 2月 25 11:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:07:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:07:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:07:45Z [WARN] - A module runtime error occurred. 2月 25 11:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:07:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:07:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:07:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:07:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:08:45Z [INFO] - Checking edge runtime status 2月 25 11:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:08:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:08:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:08:45Z [WARN] - A module runtime error occurred. 2月 25 11:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:08:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:08:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:08:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:08:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:09:45Z [INFO] - Checking edge runtime status 2月 25 11:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:09:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:09:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:09:45Z [WARN] - A module runtime error occurred. 2月 25 11:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:09:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:09:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:09:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:09:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:10:45Z [INFO] - Checking edge runtime status 2月 25 11:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:10:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:10:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:10:45Z [WARN] - A module runtime error occurred. 2月 25 11:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:10:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:10:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:10:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:10:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:11:45Z [INFO] - Checking edge runtime status 2月 25 11:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:11:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:11:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:11:45Z [WARN] - A module runtime error occurred. 2月 25 11:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:11:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:11:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:11:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:11:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:12:45Z [INFO] - Checking edge runtime status 2月 25 11:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:12:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:12:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:12:45Z [WARN] - A module runtime error occurred. 2月 25 11:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:12:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:12:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:12:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:12:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:13:45Z [INFO] - Checking edge runtime status 2月 25 11:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:13:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:13:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:13:45Z [WARN] - A module runtime error occurred. 2月 25 11:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:13:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:13:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:13:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:13:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:14:45Z [INFO] - Checking edge runtime status 2月 25 11:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:14:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:14:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:14:45Z [WARN] - A module runtime error occurred. 2月 25 11:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:14:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:14:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:14:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:14:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:15:45Z [INFO] - Checking edge runtime status 2月 25 11:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:15:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:15:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:15:45Z [WARN] - A module runtime error occurred. 2月 25 11:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:15:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:15:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:15:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:15:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:16:45Z [INFO] - Checking edge runtime status 2月 25 11:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:16:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:16:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:16:45Z [WARN] - A module runtime error occurred. 2月 25 11:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:16:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:16:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:16:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:16:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:17:45Z [INFO] - Checking edge runtime status 2月 25 11:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:17:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:17:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:17:45Z [WARN] - A module runtime error occurred. 2月 25 11:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:17:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:17:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:17:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:17:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:18:45Z [INFO] - Checking edge runtime status 2月 25 11:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:18:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:18:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:18:45Z [WARN] - A module runtime error occurred. 2月 25 11:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:18:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:18:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:18:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:18:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:19:45Z [INFO] - Checking edge runtime status 2月 25 11:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:19:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:19:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:19:45Z [WARN] - A module runtime error occurred. 2月 25 11:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:19:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:19:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:19:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:19:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:20:45Z [INFO] - Checking edge runtime status 2月 25 11:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:20:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:20:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:20:45Z [WARN] - A module runtime error occurred. 2月 25 11:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:20:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:20:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:20:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:20:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:21:45Z [INFO] - Checking edge runtime status 2月 25 11:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:21:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:21:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:21:45Z [WARN] - A module runtime error occurred. 2月 25 11:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:21:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:21:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:21:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:21:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:22:45Z [INFO] - Checking edge runtime status 2月 25 11:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:22:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:22:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:22:45Z [WARN] - A module runtime error occurred. 2月 25 11:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:22:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:22:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:22:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:22:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:23:45Z [INFO] - Checking edge runtime status 2月 25 11:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:23:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:23:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:23:45Z [WARN] - A module runtime error occurred. 2月 25 11:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:23:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:23:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:23:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:23:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:24:45Z [INFO] - Checking edge runtime status 2月 25 11:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:24:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:24:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:24:45Z [WARN] - A module runtime error occurred. 2月 25 11:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:24:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:24:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:24:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:24:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:25:45Z [INFO] - Checking edge runtime status 2月 25 11:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:25:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:25:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:25:45Z [WARN] - A module runtime error occurred. 2月 25 11:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:25:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:25:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:25:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:25:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:26:45Z [INFO] - Checking edge runtime status 2月 25 11:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:26:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:26:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:26:45Z [WARN] - A module runtime error occurred. 2月 25 11:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:26:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:26:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:26:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:26:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:27:45Z [INFO] - Checking edge runtime status 2月 25 11:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:27:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:27:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:27:45Z [WARN] - A module runtime error occurred. 2月 25 11:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:27:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:27:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:27:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:27:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:28:45Z [INFO] - Checking edge runtime status 2月 25 11:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:28:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:28:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:28:45Z [WARN] - A module runtime error occurred. 2月 25 11:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:28:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:28:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:28:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:28:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:29:45Z [INFO] - Checking edge runtime status 2月 25 11:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:29:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:29:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:29:45Z [WARN] - A module runtime error occurred. 2月 25 11:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:29:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:29:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:29:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:29:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:30:45Z [INFO] - Checking edge runtime status 2月 25 11:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:30:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:30:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:30:45Z [WARN] - A module runtime error occurred. 2月 25 11:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:30:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:30:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:30:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:30:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:31:45Z [INFO] - Checking edge runtime status 2月 25 11:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:31:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:31:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:31:45Z [WARN] - A module runtime error occurred. 2月 25 11:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:31:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:31:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:31:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:31:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:32:45Z [INFO] - Checking edge runtime status 2月 25 11:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:32:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:32:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:32:45Z [WARN] - A module runtime error occurred. 2月 25 11:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:32:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:32:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:32:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:32:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:33:45Z [INFO] - Checking edge runtime status 2月 25 11:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:33:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:33:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:33:45Z [WARN] - A module runtime error occurred. 2月 25 11:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:33:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:33:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:33:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:33:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:34:45Z [INFO] - Checking edge runtime status 2月 25 11:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:34:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:34:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:34:45Z [WARN] - A module runtime error occurred. 2月 25 11:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:34:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:34:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:34:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:34:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:35:45Z [INFO] - Checking edge runtime status 2月 25 11:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:35:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:35:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:35:45Z [WARN] - A module runtime error occurred. 2月 25 11:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:35:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:35:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:35:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:35:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:36:45Z [INFO] - Checking edge runtime status 2月 25 11:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:36:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:36:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:36:45Z [WARN] - A module runtime error occurred. 2月 25 11:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:36:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:36:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:36:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:36:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:37:45Z [INFO] - Checking edge runtime status 2月 25 11:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:37:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:37:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:37:45Z [WARN] - A module runtime error occurred. 2月 25 11:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:37:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:37:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:37:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:37:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:38:45Z [INFO] - Checking edge runtime status 2月 25 11:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:38:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:38:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:38:45Z [WARN] - A module runtime error occurred. 2月 25 11:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:38:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:38:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:38:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:38:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:39:45Z [INFO] - Checking edge runtime status 2月 25 11:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:39:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:39:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:39:45Z [WARN] - A module runtime error occurred. 2月 25 11:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:39:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:39:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:39:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:39:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:40:45Z [INFO] - Checking edge runtime status 2月 25 11:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:40:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:40:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:40:45Z [WARN] - A module runtime error occurred. 2月 25 11:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:40:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:40:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:40:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:40:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:41:45Z [INFO] - Checking edge runtime status 2月 25 11:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:41:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:41:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:41:45Z [WARN] - A module runtime error occurred. 2月 25 11:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:41:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:41:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:41:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:41:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:42:45Z [INFO] - Checking edge runtime status 2月 25 11:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:42:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:42:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:42:45Z [WARN] - A module runtime error occurred. 2月 25 11:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:42:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:42:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:42:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:42:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:43:45Z [INFO] - Checking edge runtime status 2月 25 11:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:43:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:43:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:43:45Z [WARN] - A module runtime error occurred. 2月 25 11:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:43:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:43:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:43:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:43:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:44:45Z [INFO] - Checking edge runtime status 2月 25 11:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:44:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:44:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:44:45Z [WARN] - A module runtime error occurred. 2月 25 11:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:44:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:44:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:44:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:44:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:45:45Z [INFO] - Checking edge runtime status 2月 25 11:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:45:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:45:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:45:45Z [WARN] - A module runtime error occurred. 2月 25 11:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:45:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:45:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:45:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:45:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:46:45Z [INFO] - Checking edge runtime status 2月 25 11:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:46:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:46:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:46:45Z [WARN] - A module runtime error occurred. 2月 25 11:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:46:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:46:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:46:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:46:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:47:45Z [INFO] - Checking edge runtime status 2月 25 11:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:47:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:47:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:47:45Z [WARN] - A module runtime error occurred. 2月 25 11:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:47:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:47:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:47:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:47:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:48:45Z [INFO] - Checking edge runtime status 2月 25 11:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:48:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:48:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:48:45Z [WARN] - A module runtime error occurred. 2月 25 11:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:48:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:48:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:48:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:48:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:49:45Z [INFO] - Checking edge runtime status 2月 25 11:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:49:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:49:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:49:45Z [WARN] - A module runtime error occurred. 2月 25 11:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:49:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:49:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:49:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:49:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:50:45Z [INFO] - Checking edge runtime status 2月 25 11:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:50:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:50:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:50:45Z [WARN] - A module runtime error occurred. 2月 25 11:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:50:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:50:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:50:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:50:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:51:45Z [INFO] - Checking edge runtime status 2月 25 11:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:51:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:51:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:51:45Z [WARN] - A module runtime error occurred. 2月 25 11:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:51:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:51:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:51:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:51:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:52:45Z [INFO] - Checking edge runtime status 2月 25 11:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:52:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:52:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:52:45Z [WARN] - A module runtime error occurred. 2月 25 11:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:52:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:52:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:52:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:52:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:53:45Z [INFO] - Checking edge runtime status 2月 25 11:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:53:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:53:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:53:45Z [WARN] - A module runtime error occurred. 2月 25 11:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:53:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:53:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:53:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:53:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:54:45Z [INFO] - Checking edge runtime status 2月 25 11:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:54:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:54:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:54:45Z [WARN] - A module runtime error occurred. 2月 25 11:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:54:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:54:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:54:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:54:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:55:45Z [INFO] - Checking edge runtime status 2月 25 11:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:55:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:55:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:55:45Z [WARN] - A module runtime error occurred. 2月 25 11:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:55:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:55:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:55:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:55:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:56:45Z [INFO] - Checking edge runtime status 2月 25 11:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:56:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:56:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:56:45Z [WARN] - A module runtime error occurred. 2月 25 11:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:56:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:56:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:56:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:56:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:57:45Z [INFO] - Checking edge runtime status 2月 25 11:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:57:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:57:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:57:45Z [WARN] - A module runtime error occurred. 2月 25 11:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:57:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:57:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:57:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:57:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:58:45Z [INFO] - Checking edge runtime status 2月 25 11:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:58:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:58:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:58:45Z [WARN] - A module runtime error occurred. 2月 25 11:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:58:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:58:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:58:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:58:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 11:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:59:45Z [INFO] - Checking edge runtime status 2月 25 11:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:59:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 11:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:59:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 11:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:59:45Z [WARN] - A module runtime error occurred. 2月 25 11:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:59:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 11:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:59:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 11:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:59:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 11:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T03:59:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:00:45Z [INFO] - Checking edge runtime status 2月 25 12:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:00:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:00:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:00:45Z [WARN] - A module runtime error occurred. 2月 25 12:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:00:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:00:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:00:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:00:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:01:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:01:45Z [INFO] - Checking edge runtime status 2月 25 12:01:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:01:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:01:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:01:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:01:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:01:45Z [WARN] - A module runtime error occurred. 2月 25 12:01:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:01:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:01:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:01:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:01:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:01:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:01:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:01:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:02:28 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:02:28Z [INFO] - [mgmt] - - - [2020-02-25 04:02:28.091258039 UTC] "GET /modules?api-version=2019-01-30 HTTP/1.1" 200 OK 14 "-" "iotedge/0.1.0" auth_id(-) 2月 25 12:02:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:02:45Z [INFO] - Checking edge runtime status 2月 25 12:02:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:02:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:02:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:02:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:02:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:02:45Z [WARN] - A module runtime error occurred. 2月 25 12:02:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:02:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:02:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:02:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:02:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:02:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:02:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:02:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:03:45Z [INFO] - Checking edge runtime status 2月 25 12:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:03:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:03:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:03:45Z [WARN] - A module runtime error occurred. 2月 25 12:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:03:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:03:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:03:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:03:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:03:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:04:45Z [INFO] - Checking edge runtime status 2月 25 12:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:04:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:04:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:04:45Z [WARN] - A module runtime error occurred. 2月 25 12:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:04:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:04:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:04:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:04:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:04:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:05:45Z [INFO] - Checking edge runtime status 2月 25 12:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:05:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:05:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:05:45Z [WARN] - A module runtime error occurred. 2月 25 12:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:05:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:05:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:05:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:05:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:05:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:06:45Z [INFO] - Checking edge runtime status 2月 25 12:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:06:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:06:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:06:45Z [WARN] - A module runtime error occurred. 2月 25 12:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:06:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:06:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:06:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:06:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:06:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:07:45Z [INFO] - Checking edge runtime status 2月 25 12:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:07:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:07:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:07:45Z [WARN] - A module runtime error occurred. 2月 25 12:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:07:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:07:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:07:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:07:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:07:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:08:45Z [INFO] - Checking edge runtime status 2月 25 12:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:08:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:08:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:08:45Z [WARN] - A module runtime error occurred. 2月 25 12:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:08:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:08:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:08:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:08:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:08:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:09:45Z [INFO] - Checking edge runtime status 2月 25 12:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:09:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:09:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:09:45Z [WARN] - A module runtime error occurred. 2月 25 12:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:09:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:09:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:09:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:09:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:09:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:10:45Z [INFO] - Checking edge runtime status 2月 25 12:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:10:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:10:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:10:45Z [WARN] - A module runtime error occurred. 2月 25 12:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:10:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:10:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:10:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:10:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:10:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:11:45Z [INFO] - Checking edge runtime status 2月 25 12:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:11:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:11:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:11:45Z [WARN] - A module runtime error occurred. 2月 25 12:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:11:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:11:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:11:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:11:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:11:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:12:45Z [INFO] - Checking edge runtime status 2月 25 12:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:12:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:12:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:12:45Z [WARN] - A module runtime error occurred. 2月 25 12:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:12:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:12:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:12:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:12:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:12:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:13:45Z [INFO] - Checking edge runtime status 2月 25 12:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:13:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:13:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:13:45Z [WARN] - A module runtime error occurred. 2月 25 12:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:13:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:13:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:13:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:13:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:13:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:14:45Z [INFO] - Checking edge runtime status 2月 25 12:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:14:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:14:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:14:45Z [WARN] - A module runtime error occurred. 2月 25 12:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:14:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:14:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:14:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:14:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:14:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:15:45Z [INFO] - Checking edge runtime status 2月 25 12:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:15:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:15:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:15:45Z [WARN] - A module runtime error occurred. 2月 25 12:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:15:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:15:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:15:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:15:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:15:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:16:45Z [INFO] - Checking edge runtime status 2月 25 12:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:16:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:16:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:16:45Z [WARN] - A module runtime error occurred. 2月 25 12:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:16:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:16:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:16:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:16:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:16:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:17:45Z [INFO] - Checking edge runtime status 2月 25 12:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:17:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:17:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:17:45Z [WARN] - A module runtime error occurred. 2月 25 12:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:17:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:17:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:17:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:17:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:17:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:18:45Z [INFO] - Checking edge runtime status 2月 25 12:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:18:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:18:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:18:45Z [WARN] - A module runtime error occurred. 2月 25 12:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:18:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:18:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:18:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:18:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:18:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:19:45Z [INFO] - Checking edge runtime status 2月 25 12:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:19:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:19:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:19:45Z [WARN] - A module runtime error occurred. 2月 25 12:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:19:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:19:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:19:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:19:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:19:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:20:45Z [INFO] - Checking edge runtime status 2月 25 12:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:20:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:20:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:20:45Z [WARN] - A module runtime error occurred. 2月 25 12:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:20:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:20:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:20:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:20:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:20:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:21:45Z [INFO] - Checking edge runtime status 2月 25 12:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:21:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:21:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:21:45Z [WARN] - A module runtime error occurred. 2月 25 12:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:21:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:21:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:21:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:21:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:21:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:22:45Z [INFO] - Checking edge runtime status 2月 25 12:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:22:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:22:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:22:45Z [WARN] - A module runtime error occurred. 2月 25 12:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:22:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:22:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:22:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:22:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:22:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:23:45Z [INFO] - Checking edge runtime status 2月 25 12:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:23:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:23:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:23:45Z [WARN] - A module runtime error occurred. 2月 25 12:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:23:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:23:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:23:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:23:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:23:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:24:45Z [INFO] - Checking edge runtime status 2月 25 12:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:24:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:24:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:24:45Z [WARN] - A module runtime error occurred. 2月 25 12:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:24:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:24:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:24:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:24:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:24:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:25:45Z [INFO] - Checking edge runtime status 2月 25 12:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:25:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:25:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:25:45Z [WARN] - A module runtime error occurred. 2月 25 12:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:25:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:25:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:25:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:25:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:25:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:26:45Z [INFO] - Checking edge runtime status 2月 25 12:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:26:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:26:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:26:45Z [WARN] - A module runtime error occurred. 2月 25 12:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:26:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:26:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:26:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:26:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:26:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:27:45Z [INFO] - Checking edge runtime status 2月 25 12:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:27:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:27:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:27:45Z [WARN] - A module runtime error occurred. 2月 25 12:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:27:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:27:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:27:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:27:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:27:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:28:45Z [INFO] - Checking edge runtime status 2月 25 12:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:28:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:28:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:28:45Z [WARN] - A module runtime error occurred. 2月 25 12:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:28:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:28:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:28:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:28:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:28:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:29:45Z [INFO] - Checking edge runtime status 2月 25 12:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:29:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:29:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:29:45Z [WARN] - A module runtime error occurred. 2月 25 12:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:29:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:29:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:29:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:29:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:29:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:30:45Z [INFO] - Checking edge runtime status 2月 25 12:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:30:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:30:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:30:45Z [WARN] - A module runtime error occurred. 2月 25 12:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:30:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:30:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:30:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:30:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:30:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:31:45Z [INFO] - Checking edge runtime status 2月 25 12:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:31:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:31:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:31:45Z [WARN] - A module runtime error occurred. 2月 25 12:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:31:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:31:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:31:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:31:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:31:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:32:45Z [INFO] - Checking edge runtime status 2月 25 12:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:32:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:32:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:32:45Z [WARN] - A module runtime error occurred. 2月 25 12:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:32:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:32:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:32:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:32:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:32:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:33:45Z [INFO] - Checking edge runtime status 2月 25 12:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:33:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:33:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:33:45Z [WARN] - A module runtime error occurred. 2月 25 12:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:33:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:33:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:33:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:33:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:33:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:34:45Z [INFO] - Checking edge runtime status 2月 25 12:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:34:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:34:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:34:45Z [WARN] - A module runtime error occurred. 2月 25 12:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:34:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:34:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:34:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:34:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:34:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:35:45Z [INFO] - Checking edge runtime status 2月 25 12:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:35:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:35:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:35:45Z [WARN] - A module runtime error occurred. 2月 25 12:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:35:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:35:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:35:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:35:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:35:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:36:45Z [INFO] - Checking edge runtime status 2月 25 12:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:36:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:36:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:36:45Z [WARN] - A module runtime error occurred. 2月 25 12:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:36:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:36:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:36:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:36:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:36:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:37:45Z [INFO] - Checking edge runtime status 2月 25 12:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:37:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:37:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:37:45Z [WARN] - A module runtime error occurred. 2月 25 12:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:37:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:37:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:37:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:37:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:37:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:38:45Z [INFO] - Checking edge runtime status 2月 25 12:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:38:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:38:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:38:45Z [WARN] - A module runtime error occurred. 2月 25 12:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:38:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:38:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:38:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:38:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:38:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:39:45Z [INFO] - Checking edge runtime status 2月 25 12:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:39:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:39:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:39:45Z [WARN] - A module runtime error occurred. 2月 25 12:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:39:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:39:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:39:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:39:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:39:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:40:45Z [INFO] - Checking edge runtime status 2月 25 12:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:40:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:40:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:40:45Z [WARN] - A module runtime error occurred. 2月 25 12:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:40:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:40:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:40:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:40:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:40:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:41:45Z [INFO] - Checking edge runtime status 2月 25 12:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:41:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:41:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:41:45Z [WARN] - A module runtime error occurred. 2月 25 12:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:41:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:41:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:41:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:41:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:41:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:42:45Z [INFO] - Checking edge runtime status 2月 25 12:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:42:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:42:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:42:45Z [WARN] - A module runtime error occurred. 2月 25 12:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:42:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:42:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:42:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:42:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:42:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:43:45Z [INFO] - Checking edge runtime status 2月 25 12:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:43:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:43:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:43:45Z [WARN] - A module runtime error occurred. 2月 25 12:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:43:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:43:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:43:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:43:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:43:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:44:45Z [INFO] - Checking edge runtime status 2月 25 12:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:44:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:44:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:44:45Z [WARN] - A module runtime error occurred. 2月 25 12:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:44:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:44:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:44:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:44:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:44:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:45:45Z [INFO] - Checking edge runtime status 2月 25 12:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:45:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:45:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:45:45Z [WARN] - A module runtime error occurred. 2月 25 12:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:45:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:45:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:45:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:45:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:45:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:46:45Z [INFO] - Checking edge runtime status 2月 25 12:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:46:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:46:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:46:45Z [WARN] - A module runtime error occurred. 2月 25 12:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:46:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:46:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:46:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:46:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:46:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:47:45Z [INFO] - Checking edge runtime status 2月 25 12:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:47:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:47:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:47:45Z [WARN] - A module runtime error occurred. 2月 25 12:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:47:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:47:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:47:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:47:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:47:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:48:45Z [INFO] - Checking edge runtime status 2月 25 12:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:48:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:48:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:48:45Z [WARN] - A module runtime error occurred. 2月 25 12:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:48:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:48:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:48:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:48:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:48:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:49:45Z [INFO] - Checking edge runtime status 2月 25 12:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:49:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:49:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:49:45Z [WARN] - A module runtime error occurred. 2月 25 12:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:49:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:49:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:49:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:49:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:49:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:50:45Z [INFO] - Checking edge runtime status 2月 25 12:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:50:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:50:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:50:45Z [WARN] - A module runtime error occurred. 2月 25 12:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:50:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:50:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:50:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:50:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:50:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:51:45Z [INFO] - Checking edge runtime status 2月 25 12:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:51:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:51:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:51:45Z [WARN] - A module runtime error occurred. 2月 25 12:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:51:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:51:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:51:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:51:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:51:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:52:45Z [INFO] - Checking edge runtime status 2月 25 12:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:52:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:52:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:52:45Z [WARN] - A module runtime error occurred. 2月 25 12:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:52:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:52:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:52:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:52:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:52:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:53:45Z [INFO] - Checking edge runtime status 2月 25 12:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:53:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:53:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:53:45Z [WARN] - A module runtime error occurred. 2月 25 12:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:53:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:53:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:53:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:53:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:53:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:54:45Z [INFO] - Checking edge runtime status 2月 25 12:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:54:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:54:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:54:45Z [WARN] - A module runtime error occurred. 2月 25 12:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:54:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:54:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:54:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:54:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:54:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:55:45Z [INFO] - Checking edge runtime status 2月 25 12:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:55:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:55:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:55:45Z [WARN] - A module runtime error occurred. 2月 25 12:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:55:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:55:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:55:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:55:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:55:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:56:45Z [INFO] - Checking edge runtime status 2月 25 12:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:56:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:56:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:56:45Z [WARN] - A module runtime error occurred. 2月 25 12:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:56:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:56:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:56:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:56:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:56:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:57:45Z [INFO] - Checking edge runtime status 2月 25 12:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:57:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:57:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:57:45Z [WARN] - A module runtime error occurred. 2月 25 12:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:57:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:57:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:57:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:57:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:57:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:58:45Z [INFO] - Checking edge runtime status 2月 25 12:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:58:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:58:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:58:45Z [WARN] - A module runtime error occurred. 2月 25 12:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:58:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:58:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:58:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:58:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:58:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 12:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:59:45Z [INFO] - Checking edge runtime status 2月 25 12:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:59:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 12:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:59:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 12:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:59:45Z [WARN] - A module runtime error occurred. 2月 25 12:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:59:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 12:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:59:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 12:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:59:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 12:59:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T04:59:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution 2月 25 13:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T05:00:45Z [INFO] - Checking edge runtime status 2月 25 13:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T05:00:45Z [INFO] - Creating and starting edge runtime module edgeAgent 2月 25 13:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T05:00:45Z [WARN] - Error in watchdog when checking for edge runtime status: 2月 25 13:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T05:00:45Z [WARN] - A module runtime error occurred. 2月 25 13:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T05:00:45Z [WARN] - caused by: Could not get identity $edgeAgent 2月 25 13:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T05:00:45Z [WARN] - caused by: Could not get module $edgeAgent 2月 25 13:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T05:00:45Z [WARN] - caused by: Could not perform HTTP request 2月 25 13:00:45 sxygsj-EC0-1817V2NA iotedged[2131]: 2020-02-25T05:00:45Z [WARN] - caused by: an error occurred trying to connect: failed to lookup address information: Temporary failure in name resolution ```edge-agent logs
```edge-hub logs
```Additional Information