Telemetry

AIFINEX Flow'un anonim uygulama kullanım bilgilerini nasıl topladığını öğrenin


Flowise açık kaynak deposu, anonim kullanım bilgilerini toplayan yerleşik bir telemetriye sahiptir. Bu, Flowise'ın kullanımını daha iyi anlamamıza yardımcı olarak, yeni özellikler geliştirme ve sorunları çözme çabalarımıza öncelik vermemizi ve Flowise'ın performansını ve kararlılığını artırmamızı sağlar.

Kaynak kodundan çağrılan tüm konumları bularak bu iddiaları doğrulayabilirsiniz. telemetry.sendTelemetry

Durum
Metadatalar

chatflow_created

{
    "version": <app-version>,
    "chatlowId": <chatflow-id>,
    "flowGraph": {
        "nodes": [<nodeid-1>, <nodeid-2>],
        "edges": [
            {
                "source": <nodeid-1>,
                "target": <nodeid-2>
            }
        ]
    }
}

tool_created

{
    "version": <app-version>,
    "toolId": <tool-id>,
    "toolName": <tool-name>
}

assistant_created

{
    "version": <app-version>,
    "assistantId": <assistant-id>
}

vector_upserted

{
    "version": <app-version>,
    "chatlowId": <chatflow-id>,
    "type": "INTERNAL", // EXTERNAL
    "flowGraph": {
        "nodes": [<nodeid-1>, <nodeid-2>],
        "edges": [
            {
                "source": <nodeid-1>,
                "target": <nodeid-2>
            }
        ]
    },
    "stopNodeId": <nodeid-1>
}

prediction_sent

{
    "version": <app-version>,
    "chatlowId": <chatflow-id>,
    "chatId": <chat-id>,
    "type": "INTERNAL", // EXTERNAL
    "flowGraph": {
        "nodes": [<nodeid-1>, <nodeid-2>],
        "edges": [
            {
                "source": <nodeid-1>,
                "target": <nodeid-2>
            }
        ]
    }
}

Telemetriyi Devre Dışı Bırak

Kullanıcılar .env dosyasında DISABLE_FLOWISE_TELEMETRY öğesini true olarak ayarlayarak telemetriyi devre dışı bırakabilirler.

Last updated