You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/config/oneapm.yml

38 lines
800 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#
# OneApm Ruby探针配置
#
common: &default_settings
license_key: 'BAQMBw8FUwR2542UFFpDXFgVVk66e2dZWB4EBlQHSf846wgBGwICFQoD0498BAEfBgNIAlQ='
# 您在这里填写的app_name会显示在OneAPM的管理后台界面中。
#
# 如果您修改了此处的app_name一个新的应用会出现在后台
# 数据会上传到这个新应用,并停止向旧的应用上传数据。
#
app_name: trustie
#
# 环境相关配置
#
production:
<<: *default_settings
monitor_mode: true
development:
<<: *default_settings
# development模式下探针开启并上传性能数据
monitor_mode: true
app_name: trustie(Development)
test:
<<: *default_settings
monitor_mode: false
staging:
<<: *default_settings
monitor_mode: true
app_name: My Application (Staging)