Skip to content

Instantly share code, notes, and snippets.

@gaffneyc
gaffneyc / check.rb
Created February 15, 2024 13:57
Check Fly.io standby status
require "json"
require "terminal-table"
fly_app = ARGV[0]
if fly_app.nil?
warn "Usage: check.rb [fly app name]"
exit 1
end
Machine = Struct.new(:config) do