@@ -50,11 +50,15 @@ type watcherSettings struct {
50
50
filterLabelSelector string
51
51
}
52
52
53
+ type WatcherHook [T Object ] func (cluster string , obj T )
54
+
53
55
type Watcher [T Object ] struct {
54
56
watchers []* clusterWatcher [T ]
55
57
log logrus.FieldLogger
56
58
resourceCounter metric.Int64UpDownCounter
57
59
watchedType string
60
+ onUpdate WatcherHook [T ]
61
+ onRemove WatcherHook [T ]
58
62
}
59
63
60
64
func newWatcher [T Object ](mgr * Manager , obj T , settings * watcherSettings , log logrus.FieldLogger ) * Watcher [T ] {
@@ -104,6 +108,10 @@ func (w *Watcher[T]) add(cluster string, obj T) {
104
108
}
105
109
106
110
func (w * Watcher [T ]) remove (cluster string , obj T ) {
111
+ if w .onRemove != nil {
112
+ w .onRemove (cluster , obj )
113
+ }
114
+
107
115
w .resourceCounter .Add (context .TODO (), 1 , metric .WithAttributes (attribute .String ("type" , w .watchedType ), attribute .String ("action" , "remove" )))
108
116
w .log .WithFields (logrus.Fields {
109
117
"cluster" : cluster ,
@@ -113,6 +121,9 @@ func (w *Watcher[T]) remove(cluster string, obj T) {
113
121
}
114
122
115
123
func (w * Watcher [T ]) update (cluster string , obj T ) {
124
+ if w .onUpdate != nil {
125
+ w .onUpdate (cluster , obj )
126
+ }
116
127
w .resourceCounter .Add (context .TODO (), 1 , metric .WithAttributes (attribute .String ("type" , w .watchedType ), attribute .String ("action" , "update" )))
117
128
w .log .WithFields (logrus.Fields {
118
129
"cluster" : cluster ,
@@ -285,6 +296,14 @@ func (w *Watcher[T]) SystemAuthenticatedClient(ctx context.Context, cluster stri
285
296
return nil , fmt .Errorf ("no watcher for cluster %s" , cluster )
286
297
}
287
298
299
+ func (w * Watcher [T ]) OnRemove (fn WatcherHook [T ]) {
300
+ w .onRemove = fn
301
+ }
302
+
303
+ func (w * Watcher [T ]) OnUpdate (fn WatcherHook [T ]) {
304
+ w .onUpdate = fn
305
+ }
306
+
288
307
func Objects [T Object ](list []* EnvironmentWrapper [T ]) []T {
289
308
ret := make ([]T , len (list ))
290
309
for i , obj := range list {
0 commit comments