Skip to content

Instantly share code, notes, and snippets.

@paractmol
Created February 27, 2018 21:27
Show Gist options
  • Save paractmol/8f0159de3830f363a07806822058c642 to your computer and use it in GitHub Desktop.
Save paractmol/8f0159de3830f363a07806822058c642 to your computer and use it in GitHub Desktop.
SCHEDULER.every '5s' do
stats = Requests::Wordpress.new.stats
send_event(
'page_views',
current: stats['visitors_today'],
last: stats['visitors_yesterday']
)
stars = Requests::Github.new('https://github.com/sparklemotion/nokogiri').stars_count
send_event('stars_count', current: stars)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment