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.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/longboat/config.rb b/lib/longboat/config.rb
index 874a5be..8f4907c 100644
--- a/lib/longboat/config.rb
+++ b/lib/longboat/config.rb
@@ -5,11 +5,14 @@ module Longboat
def self.parse!
Optimist::options do
# Collection interval
- opt :collect_every, "Collection interval", type: Integer, default: 60
+ opt :collect_every, "Collection interval", type: Integer, default: 60
+
+ # Job data
+ opt :metric_prefix, "Prefix for metric names", type: String, default: "longboat_"
# 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"
+ 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