Я создал собственную метрику в Google Analytics и упомянул необходимую переменную в шаблоне:
import {Injectable} from "@angular/core";
declare let ga: Function;
@Injectable()
export class GoogleAnalyticsEventsService {
public emitEvent(eventCategory: string,
eventAction: string,
eventLabel: string = null,
eventValue: number = null) {
ga('send', 'event', {
eventCategory: eventCategory,
eventLabel: eventLabel,
eventAction: eventAction,
eventValue: eventValue
});
}
}
В моем компоненте я упомянул ее так:
var metricValue = '1';
ga('set', 'metric6', metricValue);
Нокак-то не работает.Пожалуйста, помогите