# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/vyfrqaq
Go 服務自動收集線上問題現場**
前言--對於 pprof,相信熟悉 Go 語言的程序員基本都不陌生,一般線上的問題都是靠它可以快速定位。但是實際項目中,很多時候我們爲了性能都不會開啓它,但是出了問題又要靠它來分析。好在 go-zero 已經幫我們很好的集成進來了,我們只需要像開關一樣去開啓、關閉它即可,這樣我們就可以配合運維監控,當出現 cpu、內存等異常情況時候,自動開始開啓收集(比如大半夜你睡的正香的時候),那麼第二天可以通 ⌘ Read more