1

I use Cloudify 2.7.0 GA and I bootstrapped cloudify on Openstack Havana.

How to integrate cloudify monitoring and Zabbix?

Eliran Malka
  • 15,821
  • 6
  • 77
  • 100

2 Answers2

2

You can use the REST API to get Cloudify metrics:

/{version}/deployments/{appName}/service/{serviceName}/instances/{instanceId}/metrics

See the corresponding entry on the REST API docs.

Eliran Malka
  • 15,821
  • 6
  • 77
  • 100
Nati Shalom
  • 101
  • 1
  • 4
  • 4
  • Is there a list of monitoring metrics type "Server Uptime", "Client Connections","Total Queries","Slow Queries"... – user3544494 Sep 30 '14 at 14:30
0

I would use curl to get metrics from management interface and zabbix_trapper to send them zabbix server. https://www.zabbix.com/documentation/2.2/manual/config/items/itemtypes/trapper

I didn't use api before but if there is an api to expose metrics, it would be proper method.

code_ada
  • 874
  • 12
  • 25