간단하게 돌려봄. 정확하지 않을 수 있음. 테스트 할 때마다 값이 달라져서 적당한 추세정도만 확인하는 것으로..
- Host
- MacBook Pro (Retina, 15-inch, Late 2013)
- 2.3 GHz Intel Core i7 / 16GB 16000MHz DDR3
- Test Server
# docker stack deploy --compose-file ./docker-stack.yml prom-stack | |
version: "3" | |
services: | |
prometheus: | |
image: prom/prometheus:latest | |
networks: | |
- monitoring | |
ports: | |
- 9001:9090 |
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
# References: | |
# http://blog.mixu.net/2011/08/13/nginx-websockets-ssl-and-socket-io-deployment/ | |
# http://blog.exceliance.fr/2012/09/10/how-to-get-ssl-with-haproxy-getting-rid-of-stunnel-stud-nginx-or-pound/ | |
# | |
global | |
nbproc 2 | |
maxconn 16384 | |
defaults |
http://guides.rubyonrails.org/layouts_and_rendering.html#the-status-option
require 'spec_helper' | |
describe "User Model" do | |
context "Association" do | |
it { should have_many(:groups) } | |
end | |
context "Validation" do | |
it "name과 email속성을 가진다." do |