aboutsummaryrefslogtreecommitdiff
path: root/lib/longboat/config.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/longboat/config.rb')
-rw-r--r--lib/longboat/config.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/longboat/config.rb b/lib/longboat/config.rb
new file mode 100644
index 0000000..874a5be
--- /dev/null
+++ b/lib/longboat/config.rb
@@ -0,0 +1,16 @@
+require 'optimist'
+
+module Longboat
+ module Config
+ def self.parse!
+ Optimist::options do
+ # Collection interval
+ opt :collect_every, "Collection interval", type: Integer, default: 60
+
+ # Sinatra server
+ opt :server_bind, "Server listening address", type: String, default: "127.0.0.1:8564"
+ opt :server_path, "Path to metrics", type: String, default: "/metrics"
+ end
+ end
+ end
+end