"ActivitiesManager": {
"AllowShowDeveloper": false,
"HiddenActivities": ["UiPath.Mail.Activities.Business.GmailApplicationCard","UiPath.Mail.Activities.Business.OutlookApplicationCard"]
}
"ActivitiesManager": {
"AllowShowDeveloper": false,
"HiddenActivities": ["UiPath.Mail.Activities.Business.GmailApplicationCard","UiPath.Mail.Activities.Business.OutlookApplicationCard"]
允许用户在 StudioX 的活动面板中选择“显示开发者”
筛选器。如果设置为 False
,则选项不可用。
"EnforceReleaseNotes": null,
"DisplayLegacyFrameworkDeprecation": true,
"AnalyzeOnPublishParam": {
"AllowEdit": false,
"Value": false
"AnalyzeOnPushParam": {
"AllowEdit": true,
"Value": false
"AnalyzeOnRunParam": {
"AllowEdit": false,
"Value": false
"AnalyzeRpaXamlsOnlyParam": {
"AllowEdit": false,
"Value": false
"AdditionalAnalyzerRulePathParam": {
"AllowEdit": false,
"Value": null
"DefaultProjectFolderParam": {
"AllowEdit": false,
"Value": null
"DefaultProcessPublishUrlParam": {
"AllowEdit": false,
"Value": null
"DefaultLibraryPublishUrlParam": {
"AllowEdit": false,
"Value": null
"DefaultTemplatePublishUrlParam": {
"AllowEdit": false,
"Value": "C:\\Users\\username\\Documents\\UiPath\\.templates"
"DefaultPipTypeParam": {
"Value": "ChildSession",
"AllowEdit": true
"ModernBehaviorParam": {
"AllowEdit": false,
"Value": false
"ObjectRepositoryEnforcedParam": {
"AllowEdit": false,
"Value": false
"UseConnectionServiceParam": {
"AllowEdit": true,
"Value": false
"PlatformAutoUpdateIntervalDaysParam": {
"AllowEdit": true,
"Value": 7
"HideSequencesParam": {
"AllowEdit": true,
"Value": true
"AllowedPublishFeeds": {
"Custom": true,
"PersonalWorkspace": true,
"TenantPackages": true,
"FolderPackages": true,
"HostLibraries": true,
"TenantLibraries": true,
"Local": true
"Workflow": {
"DefaultProjectLanguageParam": {
"Value": VisualBasic,
"AllowEdit": false
"DefaultProjectFrameworkParam": {
"Value": "Classic",
"AllowEdit": true
"AllowedProjectFrameworks": {
"Classic": true,
"Modern": true,
"CrossPlatform": true
"DockedAnnotationsParam": {
"AllowEdit": false,
"Value": true
"ShowDataManagerOnlyParam": {
"AllowEdit": true,
"Value": false
"IsCollapsedViewSlimParam": {
"AllowEdit": false,
"Value": false
"UseSmartFilePathsParam": {
"AllowEdit": true,
"Value": true
"EnableLineNumberingParam": {
"AllowEdit": true,
"Value": true
"EnableActivityOnlineRecommendationsParam": {
"AllowEdit": true,
"Value": true
"EnforceReleaseNotes": null,
"DisplayLegacyFrameworkDeprecation": true,
"AnalyzeOnPublishParam": {
"AllowEdit": false,
"Value": false
"AnalyzeOnPushParam": {
"AllowEdit": true,
"Value": false
"AnalyzeOnRunParam": {
"AllowEdit": false,
"Value": false
"AnalyzeRpaXamlsOnlyParam": {
"AllowEdit": false,
"Value": false
"AdditionalAnalyzerRulePathParam": {
"AllowEdit": false,
"Value": null
"DefaultProjectFolderParam": {
"AllowEdit": false,
"Value": null
"DefaultProcessPublishUrlParam": {
"AllowEdit": false,
"Value": null
"DefaultLibraryPublishUrlParam": {
"AllowEdit": false,
"Value": null
"DefaultTemplatePublishUrlParam": {
"AllowEdit": false,
"Value": "C:\\Users\\username\\Documents\\UiPath\\.templates"
"DefaultPipTypeParam": {
"Value": "ChildSession",
"AllowEdit": true
"ModernBehaviorParam": {
"AllowEdit": false,
"Value": false
"ObjectRepositoryEnforcedParam": {
"AllowEdit": false,
"Value": false
"UseConnectionServiceParam": {
"AllowEdit": true,
"Value": false
"PlatformAutoUpdateIntervalDaysParam": {
"AllowEdit": true,
"Value": 7
"HideSequencesParam": {
"AllowEdit": true,
"Value": true
"AllowedPublishFeeds": {
"Custom": true,
"PersonalWorkspace": true,
"TenantPackages": true,
"FolderPackages": true,
"HostLibraries": true,
"TenantLibraries": true,
"Local": true
允许编辑 - 指定是否允许用户更改由监管文件配置的默认设置(true
表示允许,false
表示拒绝)。
"Value" - 指定默认设置,如下表所述。
通过“遥测”下的参数,您可以将 Studio 使用情况数据发送到 Azure 门户中的 Application Insights 资源。此数据可用于监控和分析用户在 Studio 中执行的操作。要启用此功能,请在“检测密钥”参数中输入 Application Insights 实例的“检测密钥”。
{
"Telemetry": {
"TelemetryOptions": {
"TelemetryOptionsDictonary": {
"instrumentation-keys": ""
"Telemetry": {
"TelemetryOptions": {
"TelemetryOptionsDictonary": {
"instrumentation-keys": ""
有关发送到 Application Insights 的遥测数据的信息,请参阅下表。
使用 Application Insights 中的数据
除了 Microsoft 官方文档中描述的用例场景外,您还可以在 Azure Insights 实例的 Azure Monitor 中使用日志分析测试和构建查询。要查看某个事件的所有可能数据,您可以构建一个简单的查询,以探索该事件在预定义时间范围内的所有出现情况。例如:
customEvents
| where name == "StudioStarted"
customEvents
| where name == "StudioStarted"
有关遥测查询的示例和每个查询的说明,请参阅下表。您还可以查看已知问题列表。
| extend TotalSessionTimeInSeconds = tostring(customDimensions.TotalSessionTimeInSeconds)
| extend SessionId = tostring(parse_json(tostring(customDimensions.Context))
| summarize AvgSessionTime_inMinutes = round(avg(todouble(TotalSessionTimeInSeconds))/60,2) by bin(timestamp, 1d)
| order by timestamp desc
过去 30 天(不包括当天)的平均每日会话时长(以分钟为单位,保留两位小数)。
| where name == "OpenProject"
| where timestamp >= startofday(ago(30d))
and timestamp <= endofday(ago(1d))
| summarize count(name) by bin(timestamp, 1d)
| order by timestamp desc
过去 30 天内(不包括当天)每天打开项目的次数。
| 其中名称 == "NewProjectCreated"
| where timestamp >= startofday(ago(30d))
and timestamp <= endofday(ago(1d))
| extend ActionArgs = tostring(customDimensions
| summarize count(name) by ActionArgs,
| order by timestamp desc
过去 30 天内(不包括当天)创建的项目数量和类型。
| where name == "StartDebug"
| where timestamp >= startofday(ago(30d))
and timestamp <= endofday(ago(1d))
| extend RunTarget = tostring(customDimensions
| summarize count(name) by RunTarget,
| order by timestamp desc
过去 30 天内(不包括当天)启动的运行次数和目标。
| where name == "Designer_RunTo"
| where timestamp >= startofday(ago(30d))
and timestamp <= endofday(ago(1d))
| summarize count(name) by bin(timestamp, 1d)
| order by timestamp desc
过去 30 天内(不包括当天)执行了“运行至此活动”的次数。