1.install postgreSQL(v9.6)
2.pip install sentry(v8.13.0)
3.sentry init #初始化配置文件

4.配置好postgreSQL

需要连接redis

5.sentry upgrade #创建超级用户 输错后可以用 sentry createuser
6.sentry start #主程序
  sentry run worker #worker 任务执行框架celery
  sentry run cron #Run periodic task dispatcher.
  sentry run --help
  
sentry python API docs:
https://docs.sentry.io/clients/python/


Error:
http://www.jianshu.com/p/9e422d9f1ce2
sentry run worker #worker 任务执行框架celery
报错:
[root@iZ115fd3dixZ opt]# sentry run worker
Running a worker with superuser privileges when the
worker accepts messages serialized with pickle is a very bad idea!


If you really want to continue then you have to set the C_FORCE_ROOT
environment variable (but please think about this before you do).


User information: uid=0 euid=0 gid=0 egid=0
解决方法:
[root@iZ115fd3dixZ opt]# export C_FORCE_ROOT="true" #写进linux环境变量里面
[root@iZ115fd3dixZ opt]# sentry run worker
[code]解决办法:
from celery import Celery, platforms

platforms.C_FORCE_ROOT = True  #加上这一行

 

*.*.*.*:9001 user/123
supervisor:
[program:sentry_worker]
command=sentry run worker
autorestart=true
autostart=true
startsecs=3
priority=50
redirect_stderr = true
stdout_logfile=/opt/sentry_worker.log

[program:sentry_cron]
command=sentry run cron
autorestart=true
autostart=true
startsecs=3
priority=50

[program:sentry_start]
command=sentry start
autorestart=true
autostart=true
startsecs=3
priority=100
redirect_stderr = true
stdout_logfile=/opt/sentry_start.log


【转】sentry 实时事件日志聚合平台

 原文:https://blog.csdn.net/u013636377/article/details/59110827
 

Fundebug

如果你觉得自己去搭建Sentry系统过于复杂,可以使用国内类似的SaaS产品Fundebug,Fundebug有免费的基础版本。
Fundebug提供前端JavaScript监控,支持所有主流前端框架,微信小程序监控,微信小游戏监控,后端Node.js监控。
【转】sentry 实时事件日志聚合平台

 

 

相关文章:

  • 2021-08-17
  • 2021-06-28
  • 2021-10-05
  • 2022-01-02
  • 2021-10-04
  • 2021-11-15
  • 2021-09-01
  • 2021-08-21
猜你喜欢
  • 2021-06-26
  • 2022-12-23
  • 2021-04-28
  • 2021-10-12
  • 2021-04-02
  • 2022-01-06
相关资源
相似解决方案