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