Sentry 8 错误跟踪服务搭建

简介

sentry是一个人性化收集&定位&定格程序错误的工具。说白了就是在网页上就能看到你的错误栈信息,和各种当时的环境变量。比你大眼瞪小眼看那些日志强多了。有多强? 谁用谁知道.
支持框架超多, 主流语言基本上都是支持的

英文官方安装教程

点击Installation with Python查看官方python教程

但是官方不建议使用python直接安装了, 而是建议使用docker.

安装

言归正传开始安装, 本教程安装的sentry为version==8.19, 系统环境 ubuntu 16.04 (其他版本应该无妨)

  1. 安装 postgreSql

    $ sudo aptitude install postgresql
    
  2. 安装redis

    $ sudo aptitude install redis-server
    
  3. [可选, 推荐] pip安装virtualenvvirutalenvwrapper然后创建虚拟环境sentry

    $ sudo pip install virtualenv
    $ sudo pip install virutalenvwrapper
    $ vim ~/.bashrc
    

    .bashrc末尾追加:

    export WORKON_HOME=$HOME/.virtualenvs  
    source /usr/local/bin/virtualenvwrapper.sh
    

    紧接着

    $ source ~/.bashrc
    
  1. 安装sentry包(到目前最新版本是8.19.0)

    $ mkvirtualenv sentry
    $ workon sentry
    $ pip install sentry
    
  2. 创建配置

    $ sudo `which sentry` init /etc/sentry
    
  3. 修改postgresql密码

    $ sudo -u postgres psql
    postgres=# \password
    

    然后自己指定密码

  4. 修改数据库配置

    $ vim /etc/sentry/sentry.conf.py
    

    修改密码用户名等

  5. 修改其他配置

    $ vim /etc/sentry/config.yml
    
    • 如果无需邮箱则修改 mail.backend: 'dummy'

    • 下面以qq企业邮箱为例

      qq邮箱需要用到ssl, sentry是基于django1.6, django1.6原生不支持ssl, 从1.7开始支持, 所以先安装django_smtp_ssl以支持ssl

      pip install django_smtp_ssl
      

      修改 /etc/sentry/config.yml

      mail.backend: 'django_smtp_ssl.SSLEmailBackend'  # Use dummy if you want to disable email entirely
      mail.host: 'smtp.exmail.qq.com'
      mail.port: 465
      mail.username: 'username@yourdomain.com'
      mail.password: 'yourpassword'
      mail.use-tls: false
      # The email address to send on behalf of
      mail.from: 'username@yourdomain.com'
      mail.list-namespace: 'yourdomain.com'
      
  1. 创建sentry 数据库

    $ sudo -u postgres createdb sentry
    
  2. sentry 更新数据库

    $ SENTRY_CONF=/etc/sentry `which sentry` upgrade
    

    (如果有错误, 见下一章错误处理)

  3. sentry 创建用户, 如果上一步(upgrade)里边创建了超级用户这一步可以省略

    $ SENTRY_CONF=/etc/sentry `which sentry` createuser
    
  4. 启动服务

    注意: 这里启动worker不能使用root, supervisor需要显式指定用户

    两种方式任选其一, 推荐supervisor, 可以持久化服务

    • 手动启动服务

      • 启动sentry web服务

        $ SENTRY_CONF=/etc/sentry `which sentry` run web
        
      • 启动sentry worker服务

        $ SENTRY_CONF=/etc/sentry `which sentry` run worker
        
      • 启动sentry cron服务

        $ SENTRY_CONF=/etc/sentry `which sentry` run cron
        
    • supervisor启动服务, 需要配置supervisor, 然后创建配置文件如下

      [program:sentry-web]
      directory=/tmp
      environment=SENTRY_CONF="/etc/sentry"
      command=<sentry_path>/sentry start
      autostart=true
      autorestart=true
      redirect_stderr=true
      stdout_logfile=syslog
      stderr_logfile=syslog
      user=<not root>
      
      [program:sentry-worker]
      directory=/tmp
      environment=SENTRY_CONF="/etc/sentry"
      command=<sentry_path>/sentry run worker
      autostart=true
      autorestart=true
      redirect_stderr=true
      stdout_logfile=syslog
      stderr_logfile=syslog
      user=<not root>
      
      [program:sentry-cron]
      directory=/tmp
      environment=SENTRY_CONF="/etc/sentry"
      command=<sentry_path>/sentry run cron
      autostart=true
      autorestart=true
      redirect_stderr=true
      stdout_logfile=syslog
      stderr_logfile=syslog
      user=<not root>
      

错误处理

  • 错误1: 如果在sentry update发生错误:

    AttributeError: 'NoneType' object has no attribute 'connection_pool'

    则是 redis 包2.10.6的 bug, 使用2.10.5解决

    pip install redis==2.10.5
    
  • 错误2: Pillow安装错误, 网上有各种教程自行搜索

  • 错误3:

    sentry@sentry:/var$ sudo -u postgres psql -p 5432 -h localhost
    psql: could not connect to server: Connection refused
        Is the server running on host "localhost" (127.0.0.1) and accepting
        TCP/IP connections on port 5432?
    could not connect to server: Cannot assign requested address
        Is the server running on host "localhost" (::1) and accepting
        TCP/IP connections on port 5432?
    sentry@sentry:/var$ sudo -u postgres psql                     
    psql: could not connect to server: No such file or directory
        Is the server running locally and accepting
        connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?
    

    解决:

    dpkg-reconfigure locales
    然后选择合适你的本地语言
    
    pg_createcluster 9.5 main --start
    (9.5 is my version of postgresql)
    
    /etc/init.d/postgresql start
    
    然后就运行成功了
    sudo su - postgres
    psql
    

使用

打开sentry web界面: localhost:9000

使用之前设置的superuser登录
手动设置邮箱之后便可以尽情使用了
登录之后创建项目, 然后选定自己要跟踪的项目的类型(我的是django), 里边会有对应的对接教程, 很简单直接按照步骤安装即可

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容