计算匹配的 Salt Minion 数量

计算匹配的 Salt Minion 数量

有没有一种简单的方法来计算比赛返回的奴才数量,例如:

salt -C 'G@ec2_roles:test' match.count

答案1

您可以添加--summary任何 salt 调用,例如:

salt -C 'G@ec2_roles:test' --summary

执行结束后你将收到一份报告,告诉你有多少个仆从成为目标:

-------------------------------------------
Summary
-------------------------------------------
# of minions targeted: 528
# of minions returned: 501
# of minions that did not return: 27
# of minions with errors: 0
-------------------------------------------

答案2

您可以更改输出格式并通过 wc 运行它:

salt -C 'G@ec2_roles:test' test.ping --out=txt | wc -l

相关内容