socialforge/config/oneapm.yml

38 lines
815 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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