MCPcopy
hub / github.com/FlowiseAI/Flowise / sendTelemetry

Method sendTelemetry

packages/server/src/utils/telemetry.ts:25–35  ·  view source on GitHub ↗
(event: string, properties: Record<string, any> = {}, orgId = '')

Source from the content-addressed store, hash-verified

23 }
24
25 async sendTelemetry(event: string, properties: Record<string, any> = {}, orgId = ''): Promise<void> {
26 properties.version = await getAppVersion()
27 if (this.postHog) {
28 const distinctId = orgId || uuidv4()
29 this.postHog.capture({
30 event,
31 distinctId,
32 properties
33 })
34 }
35 }
36
37 async flush(): Promise<void> {
38 if (this.postHog) {

Callers 13

executeAgentFlowFunction · 0.80
telemetry.test.tsFile · 0.80
executeUpsertFunction · 0.80
executeFlowFunction · 0.80
createToolFunction · 0.80
createEvaluationFunction · 0.80
saveChatflowFunction · 0.80
createVariableFunction · 0.80
createDocumentStoreFunction · 0.80
createCustomMcpServerFunction · 0.80
createAssistantFunction · 0.80

Calls 1

getAppVersionFunction · 0.90

Tested by

no test coverage detected