Skip to content

Commit 641b622

Browse files
author
restrry
committed
update functional test
1 parent 0827a61 commit 641b622

File tree

3 files changed

+25
-9
lines changed

3 files changed

+25
-9
lines changed

x-pack/test/functional_execution_context/config.ts

+4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
5555
'--logging.loggers[1].name=execution_context',
5656
'--logging.loggers[1].level=debug',
5757
`--logging.loggers[1].appenders=${JSON.stringify(['file'])}`,
58+
59+
'--logging.loggers[2].name=http.server.response',
60+
'--logging.loggers[2].level=all',
61+
`--logging.loggers[2].appenders=${JSON.stringify(['file'])}`,
5862
],
5963
},
6064
};

x-pack/test/functional_execution_context/fixtures/plugins/alerts/server/plugin.ts

-6
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,6 @@ export class FixturePlugin implements Plugin<void, void, FixtureSetupDeps, Fixtu
9393
},
9494
},
9595
async (ctx, req, res) => {
96-
const transaction = apmAgent.startTransaction();
97-
const subscription = req.events.completed$.subscribe(() => {
98-
transaction?.end();
99-
subscription.unsubscribe();
100-
});
101-
10296
await ctx.core.elasticsearch.client.asInternalUser.ping();
10397

10498
return res.ok({

x-pack/test/functional_execution_context/tests/log_correlation.ts

+21-3
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,30 @@ export default function ({ getService }: FtrProviderContext) {
2525

2626
expect(response2.body.traceId).not.to.be(response1.body.traceId);
2727

28+
let responseTraceId: string | undefined;
2829
await assertLogContains({
29-
description: 'traceId included in the Kibana logs',
30-
predicate: (record) =>
30+
description: 'traceId included in the http logs',
31+
predicate: (record) => {
3132
// we don't check trace.id value since trace.id in the test plugin and Kibana are different on CI.
3233
// because different 'elastic-apm-node' instaces are imported
33-
Boolean(record.http?.request?.id?.includes('myheader1') && record.trace?.id),
34+
if (
35+
record.log?.logger === 'http.server.response' &&
36+
record.url?.path === '/emit_log_with_trace_id'
37+
) {
38+
responseTraceId = record.trace?.id;
39+
return true;
40+
}
41+
return false;
42+
},
43+
retry,
44+
});
45+
46+
expect(responseTraceId).to.be.a('string');
47+
48+
await assertLogContains({
49+
description: 'elasticsearch logs have the same traceId',
50+
predicate: (record) =>
51+
record.log?.logger === 'elasticsearch.query.data' && record.trace?.id === responseTraceId,
3452
retry,
3553
});
3654
});

0 commit comments

Comments
 (0)