# 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 5
# self = https://watcher.sour.is/conv/ai4svoa
Swarmprom - Prometheus Monitoring for Docker Swarm

And this little gem of an article has helped me build a custom node-exporter Docker image where I can now correctly show the hostnames of my Docker nodes in Grafana graphs using expressions like:


sum((node_memory_MemAvailable_bytes{job="docker_nodes"} / node_memory_MemTotal_bytes{job="docker_nodes"} * 100) * on(instance) group_left(node_id, node_name) node_meta) by (node_id, node_name)


e.g:
Swarmprom - Prometheus Monitoring for Docker Swarm

And this little gem of an article has helped me build a custom node-exporter Docker image where I can now correctly show the hostnames of my Docker nodes in Grafana graphs using expressions like:


sum((node_memory_MemAvailable_bytes{job="docker_nodes"} / node_memory_MemTotal_bytes{job="docker_nodes"} * 100) * on(instance) group_left(node_id, node_name) node_meta) by (node_id, node_name)


e.g:
@prologic Created a repo for this at git.mills.io/prologic/node-exporter 👌
@prologic Created a repo for this at git.mills.io/prologic/node-exporter 👌
@prologic Slick! :-)