ローカルのredisにPythonから接続確認ができます。
>>> from redis.sentinel import Sentinel
>>> sentinel = Sentinel([('localhost', 26379)], stream_timeout=0.1)
>>> sentinel.discover_master('mymaster')
('xxx.xxx.xxx.xxx', 6379)
接続できてないときはNotFoundErrorが出ます。
>>> sentinel.discover_master('mymaster')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "build/bdist.linux-x86_64/egg/redis/sentinel.py", line 220, in discover_master
redis.sentinel.MasterNotFoundError: No master found for 'mymaster'
その他詳しくはこちら
https://pypi.org/project/redis/