mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
feat(core): Add production root executions (#14845)
Co-authored-by: Guillaume Jacquart <jacquart.guillaume@gmail.com> Co-authored-by: Danny Martini <danny@n8n.io>
This commit is contained in:
@@ -46,6 +46,7 @@ describe('LicenseMetricsService', () => {
|
||||
totalUsers: 400,
|
||||
totalCredentials: 500,
|
||||
productionExecutions: 600,
|
||||
productionRootExecutions: 550,
|
||||
manualExecutions: 700,
|
||||
};
|
||||
|
||||
@@ -60,6 +61,10 @@ describe('LicenseMetricsService', () => {
|
||||
{ name: 'totalUsers', value: mockRenewalMetrics.totalUsers },
|
||||
{ name: 'totalCredentials', value: mockRenewalMetrics.totalCredentials },
|
||||
{ name: 'productionExecutions', value: mockRenewalMetrics.productionExecutions },
|
||||
{
|
||||
name: 'productionRootExecutions',
|
||||
value: mockRenewalMetrics.productionRootExecutions,
|
||||
},
|
||||
{ name: 'manualExecutions', value: mockRenewalMetrics.manualExecutions },
|
||||
{ name: 'activeWorkflowTriggers', value: mockActiveTriggerCount },
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user