You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env ruby |
|
# vim: set noet sw=2 ts=2 sts=2: |
|
|
|
require 'systemd/journal' |
|
require 'prometheus/client' |
|
require 'prometheus/client/formats/text' |
|
require 'ostruct' |
|
|
|
require_relative 'lib/collector' |
|
|
|
if __FILE__ == $0 |
|
Collector.start |
|
end
|
|
|