Skip to content

docker部署sentry

  1. 下载sentry代码
shell
#下载sentry代码
git clone https://github.com/getsentry/self-hosted.git

# 进入项目中  
cd self-hosted

# 执行部署
./install.sh
  1. 需要安装docker、docker-compose 如果安装访问外网慢,可以设置docker镜像源

  2. 启动sentry

shell
docker-compose up -d
  1. 停止sentry
shell
docker-compose down
  1. 查看sentry状态
shell
docker-compose ps
  1. 访问sentry
shell
http://localhost:9000

遇到的问题

  1. 遇到“CSRF verification failed. Request aborted”问题的解决办法

1.1 修改self-hosted/sentry/config.yaml文件

yaml
system.url-prefix: 'http://10.0.100.13:9000' # 修改为你的sentry地址

1.2 重新启动sentry

shell
docker-compose down
docker-compose up -d

sentry 使用文档

sentry的使用文档

senty告警推送钉钉

参考地址 sentry默认服务中是不支持发送钉钉告警的,使用webhooks回调地址,因为参数格式的问题,也是不行的,只能自己搭建服务器。