# 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/qfawlrq
如何監控 Go Runtime
文章來自於 http://blog.helongfei.com/2019/%E7%9B%91%E6%8E%A7-go-runtime/,也可以閱讀原文閱讀。Go 通常作爲守護進程存在,若我們不做任何監控,放任其「自由」的使用資源,那有可能會發現意外情況,比如「Goroutine 泄露」。那我們應該如何監控,又要監控哪些指標呢?監控指標監控的核心是監控指標,「有用」的指標纔是有意義,那 Go 有 ⌘ Read more