We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8e2bbb8 + f4726ae commit 7d3f133Copy full SHA for 7d3f133
src/handler.ts
@@ -56,6 +56,10 @@ export abstract class ConnectionHandler {
56
.onReady()
57
.then(
58
() => {
59
+ this.languageClient.onTelemetry(event => {
60
+ const eventName = event.Name ? event.Name : 'PUPPET_LANGUAGESERVER_EVENT';
61
+ reporter.sendTelemetryEvent(eventName, event.Measurements, event.Properties);
62
+ });
63
this.setConnectionStatus('Loading Puppet', ConnectionStatus.Starting);
64
this.queryLanguageServerStatusWithProgress();
65
},
0 commit comments