Notifications for service provisioning


Vineet Banga <vineetbanga1@...>
 

Is there any notification mechanism available in CF to listen on service broker create/update/delete calls? We are implementing multiple services exposed via Service Broker in the marketplace and would like to take certain common actions when services are being provisioned.

Vineet


James Bayer
 

there is no standard notification mechanism built into cf today for this
kind of information. as an administrator, you could possibly potentially
build and deploy a loggregator firehose nozzle that looked for this type of
information and create notifications based on that content.

the service lifecycle events are tracked and stored in the cloud controller
database and accessible via the api and cli.

for example:
$ cf curl /v2/events?q=type:audit.service_instance.create

see this and similar lifecycle events for services:
http://apidocs.cloudfoundry.org/215/events/list_service_instance_create_events.html

there have been recent threads on the list about having a more proactive
notification system component, but that is still in the formative stages of
discussion.

On Wed, Aug 12, 2015 at 11:25 AM, Vineet Banga <vineetbanga1(a)gmail.com>
wrote:

Is there any notification mechanism available in CF to listen on service
broker create/update/delete calls? We are implementing multiple services
exposed via Service Broker in the marketplace and would like to take
certain common actions when services are being provisioned.

Vineet


--
Thank you,

James Bayer