가져오기 오류가 발생했습니다. 'HAProxyServer' 이름을 가져올 수 없습니다.

가져오기 오류가 발생했습니다. 'HAProxyServer' 이름을 가져올 수 없습니다.
#!/usr/bin/python3.6

from haproxystats import HAProxyServer

class HAProxyServer:
    haproxy=HAProxyServer('x.x.x.x:x222')
    for b in haproxy.backends:
        print('%s: %s' % (b.name, b.status))

위의 코드를 실행하면 오류가 발생합니다.

python3.6hatop.py

  File "hatop.py", line 3, in <module>
    from haproxystats import HAProxyServer
ImportError: cannot import name 'HAProxyServer'```

답변1

이는 "HAProxyServer" 모듈이 Python 모듈에 존재하지 않음을 의미합니다. 다음 명령을 사용하여 설치해야 합니다.

pip install haproxy-stats

공식 문서를 참조하세요:

https://github.com/bcicen/haproxy-stats

관련 정보