Skip to content

Commit 0c0308b

Browse files
authored
BugFix/Spelling correction in telemetry payload (#2001)
spelling correction
1 parent 57efa25 commit 0c0308b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/server/src/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ export class App {
436436

437437
await this.telemetry.sendTelemetry('chatflow_created', {
438438
version: await getAppVersion(),
439-
chatlowId: results.id,
439+
chatflowId: results.id,
440440
flowGraph: getTelemetryFlowObj(JSON.parse(results.flowData)?.nodes, JSON.parse(results.flowData)?.edges)
441441
})
442442

@@ -2004,7 +2004,7 @@ export class App {
20042004

20052005
await this.telemetry.sendTelemetry('vector_upserted', {
20062006
version: await getAppVersion(),
2007-
chatlowId: chatflowid,
2007+
chatflowId: chatflowid,
20082008
type: isInternal ? chatType.INTERNAL : chatType.EXTERNAL,
20092009
flowGraph: getTelemetryFlowObj(nodes, edges),
20102010
stopNodeId
@@ -2360,7 +2360,7 @@ export class App {
23602360
logger.debug(`[server]: Finished running ${nodeToExecuteData.label} (${nodeToExecuteData.id})`)
23612361
await this.telemetry.sendTelemetry('prediction_sent', {
23622362
version: await getAppVersion(),
2363-
chatlowId: chatflowid,
2363+
chatflowId: chatflowid,
23642364
chatId,
23652365
type: isInternal ? chatType.INTERNAL : chatType.EXTERNAL,
23662366
flowGraph: getTelemetryFlowObj(nodes, edges)

0 commit comments

Comments
 (0)