user3544494
user3544494

Reputation: 57

Cloudify monitoring and Zabbix

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

How to integrate cloudify monitoring and Zabbix?

Upvotes: 1

Views: 555

Answers (2)

code_ada
code_ada

Reputation: 884

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.

Upvotes: 0

Nati Shalom
Nati Shalom

Reputation: 101

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.

Upvotes: 2

Related Questions