mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
140 lines
4.4 KiB
TypeScript
140 lines
4.4 KiB
TypeScript
import { EventEmitter } from 'events';
|
|
import { Container, Service } from 'typedi';
|
|
import type { INode, IRun, IWorkflowBase } from 'n8n-workflow';
|
|
import { StatisticsNames } from '@db/entities/WorkflowStatistics';
|
|
import { WorkflowStatisticsRepository } from '@db/repositories/workflowStatistics.repository';
|
|
import { UserService } from '@/services/user.service';
|
|
import { Logger } from '@/Logger';
|
|
import { OwnershipService } from './ownership.service';
|
|
|
|
@Service()
|
|
export class WorkflowStatisticsService extends EventEmitter {
|
|
constructor(
|
|
private readonly logger: Logger,
|
|
private readonly repository: WorkflowStatisticsRepository,
|
|
private readonly ownershipService: OwnershipService,
|
|
) {
|
|
super({ captureRejections: true });
|
|
if ('SKIP_STATISTICS_EVENTS' in process.env) return;
|
|
|
|
this.on(
|
|
'nodeFetchedData',
|
|
async (workflowId, node) => await this.nodeFetchedData(workflowId, node),
|
|
);
|
|
this.on(
|
|
'workflowExecutionCompleted',
|
|
async (workflowData, runData) => await this.workflowExecutionCompleted(workflowData, runData),
|
|
);
|
|
}
|
|
|
|
async workflowExecutionCompleted(workflowData: IWorkflowBase, runData: IRun): Promise<void> {
|
|
// Determine the name of the statistic
|
|
const finished = runData.finished ? runData.finished : false;
|
|
const manual = runData.mode === 'manual';
|
|
let name: StatisticsNames;
|
|
|
|
if (finished) {
|
|
if (manual) name = StatisticsNames.manualSuccess;
|
|
else name = StatisticsNames.productionSuccess;
|
|
} else {
|
|
if (manual) name = StatisticsNames.manualError;
|
|
else name = StatisticsNames.productionError;
|
|
}
|
|
|
|
// Get the workflow id
|
|
const workflowId = workflowData.id;
|
|
if (!workflowId) return;
|
|
|
|
try {
|
|
const upsertResult = await this.repository.upsertWorkflowStatistics(name, workflowId);
|
|
|
|
if (name === StatisticsNames.productionSuccess && upsertResult === 'insert') {
|
|
const project = await Container.get(OwnershipService).getWorkflowProjectCached(workflowId);
|
|
if (project.type === 'personal') {
|
|
const owner = await Container.get(OwnershipService).getProjectOwnerCached(project.id);
|
|
|
|
const metrics = {
|
|
project_id: project.id,
|
|
workflow_id: workflowId,
|
|
user_id: owner?.id,
|
|
};
|
|
|
|
if (owner && !owner.settings?.userActivated) {
|
|
await Container.get(UserService).updateSettings(owner.id, {
|
|
firstSuccessfulWorkflowId: workflowId,
|
|
userActivated: true,
|
|
userActivatedAt: runData.startedAt.getTime(),
|
|
});
|
|
}
|
|
|
|
// Send the metrics
|
|
this.emit('telemetry.onFirstProductionWorkflowSuccess', metrics);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
this.logger.verbose('Unable to fire first workflow success telemetry event');
|
|
}
|
|
}
|
|
|
|
async nodeFetchedData(workflowId: string | undefined | null, node: INode): Promise<void> {
|
|
if (!workflowId) return;
|
|
|
|
const insertResult = await this.repository.insertWorkflowStatistics(
|
|
StatisticsNames.dataLoaded,
|
|
workflowId,
|
|
);
|
|
if (insertResult === 'failed' || insertResult === 'alreadyExists') return;
|
|
|
|
// Compile the metrics since this was a new data loaded event
|
|
const project = await this.ownershipService.getWorkflowProjectCached(workflowId);
|
|
const owner = await this.ownershipService.getProjectOwnerCached(project.id);
|
|
|
|
let metrics = {
|
|
user_id: owner?.id,
|
|
project_id: project.id,
|
|
workflow_id: workflowId,
|
|
node_type: node.type,
|
|
node_id: node.id,
|
|
};
|
|
|
|
// This is probably naive but I can't see a way for a node to have multiple credentials attached so..
|
|
if (node.credentials) {
|
|
Object.entries(node.credentials).forEach(([credName, credDetails]) => {
|
|
metrics = Object.assign(metrics, {
|
|
credential_type: credName,
|
|
credential_id: credDetails.id,
|
|
});
|
|
});
|
|
}
|
|
|
|
// Send metrics to posthog
|
|
this.emit('telemetry.onFirstWorkflowDataLoad', metrics);
|
|
}
|
|
}
|
|
|
|
export declare interface WorkflowStatisticsService {
|
|
on(
|
|
event: 'nodeFetchedData',
|
|
listener: (workflowId: string | undefined | null, node: INode) => void,
|
|
): this;
|
|
on(
|
|
event: 'workflowExecutionCompleted',
|
|
listener: (workflowData: IWorkflowBase, runData: IRun) => void,
|
|
): this;
|
|
on(
|
|
event: 'telemetry.onFirstProductionWorkflowSuccess',
|
|
listener: (metrics: { user_id: string; workflow_id: string }) => void,
|
|
): this;
|
|
on(
|
|
event: 'telemetry.onFirstWorkflowDataLoad',
|
|
listener: (metrics: {
|
|
user_id: string;
|
|
workflow_id: string;
|
|
node_type: string;
|
|
node_id: string;
|
|
credential_type?: string;
|
|
credential_id?: string;
|
|
}) => void,
|
|
): this;
|
|
}
|