The ConnectionAdapter defines two callbacks :checkout
(connect) and :checkin
(disconnect).
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.set_callback :checkout, :after do
raw_connection
end
require 'net/http' | |
require 'json' | |
class Client | |
def call(method, url, path=nil, headers={}, body=nil, timeout=60) | |
net_class = Object.const_get("Net::HTTP::#{constantize(method)}") | |
uri = URI("#{url}#{path}") |
{ | |
"ensure_newline_at_eof_on_save": true, | |
"font_size": 12.0, | |
"trim_trailing_white_space_on_save": true | |
} |
# add AWS credentials to ENV variables or modify the script to pass in credentials | |
require 'thread' | |
require 'aws-sdk' | |
# settings | |
region = 'my-region' | |
bucket = 'my-bucket' | |
prefix = 'my-prefix' | |
acl = "private" | |
parallel = 25 |
# add this into application.rb | |
initializer_file = Rails.root.join('config', 'initializers', 'my_initializer.rb') | |
reloader = ActiveSupport::FileUpdateChecker.new([initializer_file]) do | |
load initializer_file | |
end | |
ActiveSupport::Reloader.to_prepare do | |
reloader.execute | |
end |
The ConnectionAdapter defines two callbacks :checkout
(connect) and :checkin
(disconnect).
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.set_callback :checkout, :after do
raw_connection
end
alias simulator='open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app' |
If you have multiple applications on Heroku and would like to use a single Logentries account for all of them, this is how you do it. Basically, do not use add-ons, and send all drains to your account.
Add Log
Manual
access.log
new
set named myapp-{environment}
, for instance myapp-staging
(at least, this is how I like to name my entries)Plain TCP, UDP - logs are sent via syslog
optionCreate Log Token
pg_restore --verbose --clean --no-acl --no-owner -h localhost -d {database} sql.dump |
def stub_rails_env_as(env) | |
allow(Rails).to receive(:env).and_return(ActiveSupport::StringInquirer.new(env.to_s)) | |
end |
If you have packaged your application into a release generated with Rebar, you might want to have the following:
HEART is the Heartbeat Monitoring of an Erlang Runtime System. The purpose of the heart port program is to check that the Erlang runtime system it is supervising is still running, so that if the VM crashes or becomes unresponsive, it is restarted.