13 lines
459 B
Plaintext
13 lines
459 B
Plaintext
|
# -*- coding: UTF-8 -*-
|
||
|
"""
|
||
|
Surveillance des services OpenNebula
|
||
|
"""
|
||
|
|
||
|
from zephir.monitor.agents.services import TCPServices
|
||
|
from zephir.monitor.agentmanager.config import (IP_SUNSTONE,
|
||
|
VNC_PROXY_PORT_SUNSTONE)
|
||
|
|
||
|
test = '{}:{}'.format(IP_SUNSTONE, VNC_PROXY_PORT_SUNSTONE)
|
||
|
AGENTS.append(TCPServices('proxyvnc', {test: "Proxy VNC"}, period=115,
|
||
|
description="Etat du serveur Proxy VNC"))
|