forked from n8n-io/n8n
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): Fix Message Event Bus Metrics not counting up for labeled …
…metrics (n8n-io#11396)
- Loading branch information
1 parent
8cbe947
commit 7fc3b25
Showing
3 changed files
with
113 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
109 changes: 109 additions & 0 deletions
109
packages/cli/src/metrics/__tests__/prometheus-metrics.service.unmocked.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
import { GlobalConfig } from '@n8n/config'; | ||
import type express from 'express'; | ||
import { mock } from 'jest-mock-extended'; | ||
import type { InstanceSettings } from 'n8n-core'; | ||
import promClient from 'prom-client'; | ||
|
||
import { EventMessageWorkflow } from '@/eventbus/event-message-classes/event-message-workflow'; | ||
import type { EventService } from '@/events/event.service'; | ||
import { mockInstance } from '@test/mocking'; | ||
|
||
import { MessageEventBus } from '../../eventbus/message-event-bus/message-event-bus'; | ||
import { PrometheusMetricsService } from '../prometheus-metrics.service'; | ||
|
||
jest.unmock('@/eventbus/message-event-bus/message-event-bus'); | ||
|
||
const customPrefix = 'custom_'; | ||
|
||
const eventService = mock<EventService>(); | ||
const instanceSettings = mock<InstanceSettings>({ instanceType: 'main' }); | ||
const app = mock<express.Application>(); | ||
const eventBus = new MessageEventBus( | ||
mock(), | ||
mock(), | ||
mock(), | ||
mock(), | ||
mock(), | ||
mock(), | ||
mock(), | ||
mock(), | ||
); | ||
|
||
describe('workflow_success_total', () => { | ||
test('support workflow id labels', async () => { | ||
// ARRANGE | ||
const globalConfig = mockInstance(GlobalConfig, { | ||
endpoints: { | ||
metrics: { | ||
prefix: '', | ||
includeMessageEventBusMetrics: true, | ||
includeWorkflowIdLabel: true, | ||
}, | ||
}, | ||
}); | ||
|
||
const prometheusMetricsService = new PrometheusMetricsService( | ||
mock(), | ||
eventBus, | ||
globalConfig, | ||
eventService, | ||
instanceSettings, | ||
); | ||
|
||
await prometheusMetricsService.init(app); | ||
|
||
// ACT | ||
const event = new EventMessageWorkflow({ | ||
eventName: 'n8n.workflow.success', | ||
payload: { workflowId: '1234' }, | ||
}); | ||
|
||
eventBus.emit('metrics.eventBus.event', event); | ||
|
||
// ASSERT | ||
const workflowSuccessCounter = | ||
await promClient.register.getSingleMetricAsString('workflow_success_total'); | ||
|
||
expect(workflowSuccessCounter).toMatchInlineSnapshot(` | ||
"# HELP workflow_success_total Total number of n8n.workflow.success events. | ||
# TYPE workflow_success_total counter | ||
workflow_success_total{workflow_id="1234"} 1" | ||
`); | ||
}); | ||
|
||
test('support a custom prefix', async () => { | ||
// ARRANGE | ||
const globalConfig = mockInstance(GlobalConfig, { | ||
endpoints: { | ||
metrics: { | ||
prefix: customPrefix, | ||
}, | ||
}, | ||
}); | ||
|
||
const prometheusMetricsService = new PrometheusMetricsService( | ||
mock(), | ||
eventBus, | ||
globalConfig, | ||
eventService, | ||
instanceSettings, | ||
); | ||
|
||
await prometheusMetricsService.init(app); | ||
|
||
// ACT | ||
const event = new EventMessageWorkflow({ | ||
eventName: 'n8n.workflow.success', | ||
payload: { workflowId: '1234' }, | ||
}); | ||
|
||
eventBus.emit('metrics.eventBus.event', event); | ||
|
||
// ASSERT | ||
const versionInfoMetric = promClient.register.getSingleMetric(`${customPrefix}version_info`); | ||
|
||
if (!versionInfoMetric) { | ||
fail(`Could not find a metric called "${customPrefix}version_info"`); | ||
} | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters