Skip to main content

Centreon Api for use Webservice in Centreon Web 2.8.0 or later

Project description

https://badge.fury.io/py/centreonapi.png https://travis-ci.com/guillaumewatteeux/centreon-sdk-python.svg?branch=master

Make a Python LIB for Centreon API

Forked from https://github.com/centreon/centreon-sdk-python

Install

$ pip install centreonapi

Usages

  • Connect to Centreon platform

from centreonapi.centreon import Webservice
centreon = centreon("https://centreon.mydomain.tld, "admin", "centreon")
  • List all hosts on Centreon platform

centreon.hosts.list()
>>>
{
  'Centeon-central': Centeon-central,
  'server1': myserver1
}
  • Add new host

centreon.hosts.add(
  name='server1',
  alias='DBServ',
  ip=127.0.0.1,
  template="DB-Host-Template",
  hg="DB Servers"
  )
  • Get host

_, myhost = centreon.hosts.get('server1')
myhost.name
>>>
server1
  • Macros

Get macros

_, macros = myhost.getmacro()
macros
>>>
{
  '$_HOSTMODULESTATSFILE$': $_HOSTMODULESTATSFILE$,
  '$_HOSTMYSQLPASSWORD$': $_HOSTMYSQLPASSWORD$,
  '$_HOSTMYSQLPORT$': $_HOSTMYSQLPORT$,
}

mymacro = macros.get('$_HOSTMYSQLPORT$')
mymacro.value
>>>
3306

Set Macros

myhost.setmacro('SECRETMACRO', 'pass', 1, 'secret macro pass')
  • HostTemplate on host

myhost.gettemplate()
>>>
{
  'App-Monitoring-Centreon-Central-custom': App-Monitoring-Centreon-Central-custom,
  'App-Monitoring-Centreon-Database-custom': App-Monitoring-Centreon-Database-custom,
  'App-Monitoring-Centreon-Poller-custom': App-Monitoring-Centreon-Poller-custom
}

Documentation

Complete documentation here

Features

  • TODO

Documentation

The full documentation is at http://centreonapi.rtfd.org.

History

0.1.5 (2019-02-16)

  • Beta version

0.1.0 (2018-12-14)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

centreonapi-0.1.7.tar.gz (19.3 kB view hashes)

Uploaded Source

Built Distribution

centreonapi-0.1.7-py2.py3-none-any.whl (23.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page