Commit 95403566 authored by jithu.tagore's avatar jithu.tagore

Update infra_as_service_monitor.py

parent 16462ead
...@@ -175,8 +175,9 @@ def docker_container(): ...@@ -175,8 +175,9 @@ def docker_container():
for i in containers: for i in containers:
if i.attrs["State"]["Status"] =="restarting" or i.attrs["State"]["Status"] =="exited": if i.attrs["State"]["Status"] =="restarting" or i.attrs["State"]["Status"] =="exited":
container_restart.append(i) container_restart.append(i)
da= i.attrs["State"]
print("state") print("state")
print(i) print(da)
data.append([i.name, i.id, i.attrs["State"]["Status"]]) data.append([i.name, i.id, i.attrs["State"]["Status"]])
except Exception as e: except Exception as e:
logger.exception(e) logger.exception(e)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment