Track dialog events in composer dialogs

Viewed 17

We have a mixed composer project. The Composer dialogs were created with Composer, but the project is programmed with C#. The logging of the Luis results works perfectly. However, we don't get any dialog events (start, end) logged in AppInsights. Does anyone have any idea why this might be. Here is the code:

var ausstiegXXDialogResource = resourceExplorer.GetResource("Ausstieg_XX_Dialog.dialog");
var ausstiegXXDialog = resourceExplorer.LoadType<AdaptiveDialog>(ausstiegXXDialogResource);

// Log the data to AppInsights with _telemetryClient

ausstiegXXDialog.TelemetryClient = this._telemetryClient;

AddDialog(ausstiegXXDialog);
0 Answers
Related