「Sentry」:修訂間差異
跳至導覽
跳至搜尋
第32行: | 第32行: | ||
* {{Official|https://sentry.io/}} {{en}} | * {{Official|https://sentry.io/}} {{en}} | ||
* [https://github.com/getsentry/onpremise Sentry On-Premise setup] {{en}} | |||
* [https://docs.sentry.io/server/ Docs - Sentry Server] {{en}} | * [https://docs.sentry.io/server/ Docs - Sentry Server] {{en}} | ||
[[Category:軟體]] | [[Category:軟體]] |
於 2021年8月30日 (一) 17:03 的修訂
Sentry是一套蒐集錯誤訊息的軟體,或是對應的雲端服務。
硬體
官方推估每天處理四百萬的事件,資料保留90天,大約需要1.5 TB的空間[1]。
簡介
Sentry提供SDK在用戶端安裝後就可以蒐集錯誤資訊,並且在伺服器上分類並提供介面讓維護者可以確認情況。
安裝
這邊以Ubuntu 20.04為作業系統,需要先安裝Docker與docker-compose
,並且設定權限:
sudo usermod -a -G docker www-data
然後裝到www-data
下:
sudo chsh -s /bin/bash www-data; sudo chown www-data:www-data ~www-data; sudo su - www-data -c "git clone https://github.com/getsentry/onpremise.git; cd onpremise; git checkout 21.1.0; ./install.sh; docker-compose up -d"
設定
參考文獻
- ↑ Docs - Installation. [2019-04-22].
外部連結
- 官方網站 (英文)
- Sentry On-Premise setup (英文)
- Docs - Sentry Server (英文)