public sendRawTelemetryEvent()

in src/common/baseTelemetryReporter.ts [290:295]


	public sendRawTelemetryEvent(eventName: string, properties?: RawTelemetryEventProperties, measurements?: TelemetryEventMeasurements): void {
		if (this.userOptIn && eventName !== "") {
			properties = { ...properties, ...this.getCommonProperties() };
			this.telemetryAppender.logEvent(`${this.extensionId}/${eventName}`, { properties, measurements });
		}
	}