process-mining
latest
false
- 在开始之前
- 管理访问权限
- 入门指南
- 集成
- 使用流程应用程序
- 创建应用程序
- 正在加载数据
- Transforming data
- 自定义仪表板
- 发布流程应用程序
- 应用程序模板
- 通知
- 其他资源
重要 :
请注意,此内容已使用机器翻译进行了部分本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。

Process Mining 用户指南
上次更新日期 2026年4月23日
为自动化潜力配置字段
备注:
确保在数据模型的“事件”表中正确映射“自动化潜力”字段:
-
Automated -
Event_cost -
Event_processing_time
Event_cost 与 Event_processing_time
用于计算自动化潜力的Event_cost和Event_processing_time不属于输入数据的一部分。 您可以在 “使用 SQL 语句的数据转换”中为事件日志配置这些字段。
以下代码块显示了用于定义Event_cost示例 SQL 查询。
case
when tableA."Activity" = 'ActivityA'
then {{ pm_utils.to_double(20.00) }}
when tableA."Activity" = 'ActivityB'
then {{ pm_utils.to_double(10.00) }}
when tableA."Activity" = 'ActivityC'
then {{ pm_utils.to_double(5.00) }}
when tableA."Activity" = 'ActivityD'
then {{ pm_utils.to_double(0) }}
end as "Event_cost"
case
when tableA."Activity" = 'ActivityA'
then {{ pm_utils.to_double(20.00) }}
when tableA."Activity" = 'ActivityB'
then {{ pm_utils.to_double(10.00) }}
when tableA."Activity" = 'ActivityC'
then {{ pm_utils.to_double(5.00) }}
when tableA."Activity" = 'ActivityD'
then {{ pm_utils.to_double(0) }}
end as "Event_cost"
以下代码块显示了用于定义Event_processing_time示例 SQL 查询。
case
when tableA."Activity" = 'ActivityA'
then 50000
when tableA."Activity" = 'ActivityB'
then 120000
when tableA."Activity" = 'ActivityC'
then 300000
when tableA."Activity" = 'ActivityD'
then 40000
end as "Event_processing_time"
case
when tableA."Activity" = 'ActivityA'
then 50000
when tableA."Activity" = 'ActivityB'
then 120000
when tableA."Activity" = 'ActivityC'
then 300000
when tableA."Activity" = 'ActivityD'
then 40000
end as "Event_processing_time"
备注:
Event_processing_time的时间单位为毫秒。
使用 dbt 种子提供数据输入
对于数据转换的seeds\文件夹中仍包含Automation_estimates_raw.csv种子文件的流程应用程序,您可以使用此文件提供输入数据,以用于“自动化潜力”仪表板中的计算。对于所有活动,您可以提供Event_processing_time (以毫秒为单位)和Event_cost 。下图显示了一个示例。

备注:
如果使用 Automation_estimates_raw.csv 种子文件提供了 event_processing_time,但未填写所有活动的,则默认情况下剩余活动的“手动处理时间”为 NULL。考虑使用平均吞吐时间作为这些活动的 event_Processing_time。如果您使用在其中提供event_log作为输入的应用程序模板,则还可以将event_processing_time指定为该文件中的列。在事件级别指定的值将优先于使用种子文件为每个活动指定的值。