iot-edge-v1 icon indicating copy to clipboard operation
iot-edge-v1 copied to clipboard

[V2] Unable to deploy filter module example to IOT Edge control environment

Open kapilghimire opened this issue 7 years ago • 1 comments

I am running IOT Edge control environment inside docker that is running in VM over Azure cloud.

I am able to deploy temperature sensor module successfuly

But when i try to deploy filter module it status remain pending

even i have found that the route configuration specified for deployment for filter modules are not saved

can anyone tell where thing might have went wrong

kapilghimire avatar Mar 26 '18 09:03 kapilghimire

Hello @kapilghimire

Is the filter module running? docker ps -a will show all modules and indicate the running status of each module. After that, the next best place to look are the docker logs on the edge device, starting with the edgeAgent. i.e.:

sudo docker logs edgeAgent

These logs should give an indication if the filter module was not found, or started and then failed, etc....

If the module started, I would also look at the docker logs for the filter module itself:

sudo docker logs FilterModule (or whatever the appropriate name is)

darobs avatar Mar 26 '18 23:03 darobs