There was an error while loading. Please reload this page.
1 parent 817518e commit fb65e0bCopy full SHA for fb65e0b
1 file changed
src/tracer/src/extracts/process_watcher/watcher.rs
@@ -261,6 +261,11 @@ impl ProcessWatcher {
261
}
262
263
264
+ // Process start triggers
265
+ self.trigger_processor
266
+ .process_process_start_triggers(process_start_triggers)
267
+ .await?;
268
+
269
// Process out of memory triggers
270
self.trigger_processor
271
.process_out_of_memory_triggers(out_of_memory_triggers)
@@ -271,11 +276,6 @@ impl ProcessWatcher {
276
.process_process_end_triggers(process_end_triggers)
272
277
.await?;
273
278
274
- // Process start triggers
275
- self.trigger_processor
- .process_process_start_triggers(process_start_triggers)
- .await?;
-
279
Ok(())
280
281
0 commit comments