This repository has been archived by the owner on Apr 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 442
Granular and Extended Event Alerting #105
Labels
Comments
cc/ @aananthraj @PavelKarpenka |
This is an extension of #43, so we'll close that issue and have the discussion here. |
akshaychitneni
added a commit
to akshaychitneni/kubewatch
that referenced
this issue
Nov 11, 2018
fixes vmware-archive#105 This feature adds support to alert on specific event type per resource. For example, to watch only create and update events on deployment resource, kubewatch.yaml should be resource: deployment: watch: true events: create: true update: true delete: false This also adds custom event type 'loadbalancercreate' to notify when there is a loadbalancer created for a service. resource: services: watch: true events: create: true update: true delete: true loadbalancercreate: true
unbreakab1e
pushed a commit
to joomcode/kubewatch
that referenced
this issue
Mar 5, 2019
fixes vmware-archive#105 This feature adds support to alert on specific event type per resource. For example, to watch only create and update events on deployment resource, kubewatch.yaml should be resource: deployment: watch: true events: create: true update: true delete: false This also adds custom event type 'loadbalancercreate' to notify when there is a loadbalancer created for a service. resource: services: watch: true events: create: true update: true delete: true loadbalancercreate: true
@tylerauerbeck can we continue this discussion here or in #176 ? |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There have been a few requests to be able to be very specific about what types of events kubewatch alerts on.
For example, rather than being alerted of all events when you subscribe to an object like
pods
, you may just be interested in a single action (create
,update
,delete
). So we may want to have our yaml file look something like:There are also some types of objects that have a larger series of events, such as jobs. Specifically for the Job type, it may be interested to see whether the job completed successfully or if it failed.
This issue is to discuss
The text was updated successfully, but these errors were encountered: