microsoft / onefuzz

A self-hosted Fuzzing-As-A-Service platform
MIT License
2.82k stars 198 forks source link

Separate out webhook and signalr calls from `SendEvent` function. #3506

Open nharper285 opened 1 year ago

nharper285 commented 1 year ago

Currently, the send webhook functionality and signar functionality is directly tied to the 'SendEvent' calls to Application Insights. This means that anytime an event is called, we also potentially send a webhook. This doesn't make sense in the context of the 'TaskHeartbeat' event calls.

The functionality should be separated.

AB#165988