Your Name 3 yıl önce
ebeveyn
işleme
23e817b8c1
1 değiştirilmiş dosya ile 10 ekleme ve 8 silme
  1. 10 8
      hhh/aws-monitor/cl-test.py

+ 10 - 8
hhh/aws-monitor/cl-test.py

@@ -5,17 +5,19 @@ cmd='aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,Att
 cmds=cmd.split(' ')
 #cl=subprocess.run(cmds,text=True, capture_output=True)
 cl=subprocess.Popen(cmds, stdout=subprocess.PIPE)
-lines = cl.stdout.readlines()
+lst=[]
+
+while True:
+    l = cl.stdout.readline()
+    if '"AccessKeyId":' in l:
+        lst.append(l)
+
+    if '"EventName":' in l:
+        lst.append(l)
+#lines = cl.stdout.readlines()
 #clstr=str(cl)
 #lines=clstr.split('\n')
-lst=[]
-for l in lines:
-    print(l)
-#    if '"AccessKeyId":' in l:
-#        lst.append(l)
 
-#    if '"EventName":' in l:
- #       lst.append(l)
 
 print(lst)