mirror of
https://github.com/langgenius/dify.git
synced 2026-02-10 21:14:25 +08:00
- Add EnterpriseOtelTrace handler with span emission for workflows and nodes - Implement minimal-span strategy: slim spans + detailed companion logs - Add deterministic span/trace IDs for cross-workflow trace correlation - Add metric collection at 100% accuracy (counters & histograms) - Add event handlers for app lifecycle and feedback telemetry - Add cross-workflow trace linking with parent context propagation - Add OTEL exporter with configurable sampling and privacy controls - Wire enterprise telemetry into workflow execution pipeline - Add telemetry configuration in enterprise configs
31 lines
747 B
Python
31 lines
747 B
Python
from enum import StrEnum
|
|
|
|
|
|
class EnterpriseTelemetrySpan(StrEnum):
|
|
WORKFLOW_RUN = "dify.workflow.run"
|
|
NODE_EXECUTION = "dify.node.execution"
|
|
DRAFT_NODE_EXECUTION = "dify.node.execution.draft"
|
|
|
|
|
|
class EnterpriseTelemetryCounter(StrEnum):
|
|
TOKENS = "tokens"
|
|
REQUESTS = "requests"
|
|
ERRORS = "errors"
|
|
FEEDBACK = "feedback"
|
|
DATASET_RETRIEVALS = "dataset_retrievals"
|
|
|
|
|
|
class EnterpriseTelemetryHistogram(StrEnum):
|
|
WORKFLOW_DURATION = "workflow_duration"
|
|
NODE_DURATION = "node_duration"
|
|
MESSAGE_DURATION = "message_duration"
|
|
MESSAGE_TTFT = "message_ttft"
|
|
TOOL_DURATION = "tool_duration"
|
|
|
|
|
|
__all__ = [
|
|
"EnterpriseTelemetryCounter",
|
|
"EnterpriseTelemetryHistogram",
|
|
"EnterpriseTelemetrySpan",
|
|
]
|