[V2] Unable to deploy filter module example to IOT Edge control environment
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
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)