代码之家  ›  专栏  ›  技术社区  ›  Piyush Kumar

在负载平衡器中打印实例的状态

  •  1
  • Piyush Kumar  · 技术社区  · 6 年前

    我想打印连接到负载平衡器的实例的状态。(运行中/停止运行)。 我如何使用Boto3做到这一点。我附上了屏幕截图,以指定我需要打印的内容。 提前谢谢。 enter image description here

    1 回复  |  直到 6 年前
        1
  •  2
  •   Sudharsan Sivasankaran    6 年前

    describe_instance_health -描述指定实例相对于指定负载平衡器的状态

    import boto3
    client = boto3.client("elb")
    response = client.describe_instance_health(LoadBalancerName='testname')
    for instance in response['InstanceStates']:
        print(instance['InstanceId'],instance['State'])