telemetry 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/lib/telemetry/flows.rb +23 -2
- data/lib/telemetry/version.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,15 +1,15 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            !binary "U0hBMQ==":
         | 
| 3 3 | 
             
              metadata.gz: !binary |-
         | 
| 4 | 
            -
                 | 
| 4 | 
            +
                YTljZTRmOTQ3Y2Y5OGJhZjJiNWIwM2VlMjBiYzM4MjA3YWNhOWRkNA==
         | 
| 5 5 | 
             
              data.tar.gz: !binary |-
         | 
| 6 | 
            -
                 | 
| 6 | 
            +
                YTE1ZWEwNjM3N2UxNzdhYmU1Y2FiMTdiODYyOTZmNDUzZGU1ZjM2MA==
         | 
| 7 7 | 
             
            !binary "U0hBNTEy":
         | 
| 8 8 | 
             
              metadata.gz: !binary |-
         | 
| 9 | 
            -
                 | 
| 10 | 
            -
                 | 
| 11 | 
            -
                 | 
| 9 | 
            +
                NWFiNzEyOGI4NTQxMTM3ODUzYWZkYmM2NjBlZjdjZWMyYWM3ODUxODRmNTBk
         | 
| 10 | 
            +
                NzQ4Mjc2YzhmOWM2NDhkMzUwY2Y4YmVmMzA4NjE4MTcxM2Y0ZjA1MjcyNGI4
         | 
| 11 | 
            +
                NDI0N2YxYTYzODQ5NGE3YWU4OTBlYjgyZjFkOWNlZmM5NzM5ZWQ=
         | 
| 12 12 | 
             
              data.tar.gz: !binary |-
         | 
| 13 | 
            -
                 | 
| 14 | 
            -
                 | 
| 15 | 
            -
                 | 
| 13 | 
            +
                ZGU5NzRlODM0MWZiYjQyY2MyNTMwMTY1MWE4MjFjYmE2YWJiODcxZGU0ODcw
         | 
| 14 | 
            +
                NDU2NTEzZDFjMTk0ZTA3ZGYwYjIwNTRjM2NlMGJjMzZjYzJiZGRkMGIzMGJk
         | 
| 15 | 
            +
                MTJlNDQzMzlmYmMxYzBiNjQ1MDgwYTVkZTAyNGU5Mzk1ZDk5Zjg=
         | 
    
        data/lib/telemetry/flows.rb
    CHANGED
    
    | @@ -14,20 +14,23 @@ module Telemetry | |
| 14 14 | 
             
            	class Barchart < Hashie::Dash
         | 
| 15 15 | 
             
            		include TelemetryFlows
         | 
| 16 16 | 
             
            		property :tag, :required => true
         | 
| 17 | 
            -
             | 
| 17 | 
            +
            		property :title
         | 
| 18 | 
            +
              	property :bars, :default => []
         | 
| 18 19 | 
             
            	end
         | 
| 19 20 |  | 
| 20 21 | 
             
            	# Bulletchart
         | 
| 21 22 | 
             
            	class Bulletchart < Hashie::Dash
         | 
| 22 23 | 
             
            		include TelemetryFlows
         | 
| 23 24 | 
             
            		property :tag, :required => true
         | 
| 24 | 
            -
             | 
| 25 | 
            +
            		property :title
         | 
| 26 | 
            +
              	property :bulletcharts, :default => []
         | 
| 25 27 | 
             
            	end
         | 
| 26 28 |  | 
| 27 29 | 
             
            	# Countdown
         | 
| 28 30 | 
             
            	class Countdown < Hashie::Dash
         | 
| 29 31 | 
             
            		include TelemetryFlows
         | 
| 30 32 | 
             
            		property :tag, :required => true
         | 
| 33 | 
            +
            		property :title
         | 
| 31 34 | 
             
            		property :time, :required => true
         | 
| 32 35 | 
             
            		property :message, :required => true
         | 
| 33 36 | 
             
            	end
         | 
| @@ -36,6 +39,7 @@ module Telemetry | |
| 36 39 | 
             
            	class Gauge < Hashie::Dash
         | 
| 37 40 | 
             
            		include TelemetryFlows
         | 
| 38 41 | 
             
            		property :tag, :required => true
         | 
| 42 | 
            +
            		property :title
         | 
| 39 43 | 
             
            		property :value, :required => true
         | 
| 40 44 | 
             
            		property :value_color
         | 
| 41 45 | 
             
            		property :max
         | 
| @@ -49,6 +53,7 @@ module Telemetry | |
| 49 53 | 
             
            	class Graph < Hashie::Dash
         | 
| 50 54 | 
             
            		include TelemetryFlows
         | 
| 51 55 | 
             
            		property :tag, :required => true
         | 
| 56 | 
            +
            		property :title
         | 
| 52 57 | 
             
            		property :renderer
         | 
| 53 58 | 
             
            		property :series, :default => []
         | 
| 54 59 | 
             
            		property :min_scale
         | 
| @@ -59,6 +64,7 @@ module Telemetry | |
| 59 64 | 
             
            	# Icons
         | 
| 60 65 | 
             
            	class Icon < Hashie::Dash
         | 
| 61 66 | 
             
            		include TelemetryFlows
         | 
| 67 | 
            +
            		property :title
         | 
| 62 68 | 
             
            		property :tag, :required => true
         | 
| 63 69 | 
             
            		property :icons, :default => []
         | 
| 64 70 | 
             
            	end
         | 
| @@ -66,6 +72,7 @@ module Telemetry | |
| 66 72 | 
             
            	# iFrame
         | 
| 67 73 | 
             
            	class Iframe < Hashie::Dash
         | 
| 68 74 | 
             
            		include TelemetryFlows
         | 
| 75 | 
            +
            		property :title
         | 
| 69 76 | 
             
            		property :tag, :required => true
         | 
| 70 77 | 
             
            		property :url, :required => true
         | 
| 71 78 | 
             
            	end
         | 
| @@ -73,6 +80,7 @@ module Telemetry | |
| 73 80 | 
             
            	# Log
         | 
| 74 81 | 
             
            	class Log < Hashie::Dash
         | 
| 75 82 | 
             
            		include TelemetryFlows
         | 
| 83 | 
            +
            		property :title
         | 
| 76 84 | 
             
            		property :tag, :required => true
         | 
| 77 85 | 
             
            		property :messages, :default => []
         | 
| 78 86 | 
             
            	end
         | 
| @@ -80,6 +88,7 @@ module Telemetry | |
| 80 88 | 
             
            	# Map
         | 
| 81 89 | 
             
            	class Map < Hashie::Dash
         | 
| 82 90 | 
             
            		include TelemetryFlows
         | 
| 91 | 
            +
            		property :title
         | 
| 83 92 | 
             
            		property :tag, :required => true
         | 
| 84 93 | 
             
            		property :map_type, :required => true
         | 
| 85 94 | 
             
            		property :points, :default => []
         | 
| @@ -89,6 +98,7 @@ module Telemetry | |
| 89 98 | 
             
            	class Multigauge < Hashie::Dash
         | 
| 90 99 | 
             
            		include TelemetryFlows
         | 
| 91 100 | 
             
            		property :tag, :required => true
         | 
| 101 | 
            +
            		property :title
         | 
| 92 102 | 
             
            		property :gauges, :default => []
         | 
| 93 103 | 
             
            	end
         | 
| 94 104 |  | 
| @@ -96,6 +106,7 @@ module Telemetry | |
| 96 106 | 
             
            	class Multivalue < Hashie::Dash
         | 
| 97 107 | 
             
            		include TelemetryFlows
         | 
| 98 108 | 
             
            		property :tag, :required => true
         | 
| 109 | 
            +
            		property :title
         | 
| 99 110 | 
             
            		property :values, :default => []
         | 
| 100 111 | 
             
            	end
         | 
| 101 112 |  | 
| @@ -103,6 +114,7 @@ module Telemetry | |
| 103 114 | 
             
            	class Servers < Hashie::Dash
         | 
| 104 115 | 
             
            		include TelemetryFlows
         | 
| 105 116 | 
             
            		property :tag, :required => true
         | 
| 117 | 
            +
            		property :title
         | 
| 106 118 | 
             
            		property :servers, :default => []
         | 
| 107 119 | 
             
            		property :orange
         | 
| 108 120 | 
             
            		property :red
         | 
| @@ -112,6 +124,7 @@ module Telemetry | |
| 112 124 | 
             
            	class Status < Hashie::Dash
         | 
| 113 125 | 
             
            		include TelemetryFlows
         | 
| 114 126 | 
             
            		property :tag, :required => true
         | 
| 127 | 
            +
            		property :title
         | 
| 115 128 | 
             
            		property :statuses, :default => []
         | 
| 116 129 | 
             
            	end
         | 
| 117 130 |  | 
| @@ -119,6 +132,7 @@ module Telemetry | |
| 119 132 | 
             
            	class Table < Hashie::Dash
         | 
| 120 133 | 
             
            		include TelemetryFlows
         | 
| 121 134 | 
             
            		property :tag, :required => true
         | 
| 135 | 
            +
            		property :title
         | 
| 122 136 | 
             
            		property :table, :default => []
         | 
| 123 137 | 
             
            		property :headers, :default => []
         | 
| 124 138 | 
             
            		property :colors, :default => []
         | 
| @@ -128,6 +142,7 @@ module Telemetry | |
| 128 142 | 
             
            	class Text < Hashie::Dash
         | 
| 129 143 | 
             
            		include TelemetryFlows
         | 
| 130 144 | 
             
            		property :tag, :required => true
         | 
| 145 | 
            +
            		property :title
         | 
| 131 146 | 
             
            		property :text, :required => true
         | 
| 132 147 | 
             
            		property :alignment
         | 
| 133 148 | 
             
            	end
         | 
| @@ -136,6 +151,7 @@ module Telemetry | |
| 136 151 | 
             
            	class Tickertape < Hashie::Dash
         | 
| 137 152 | 
             
            		include TelemetryFlows
         | 
| 138 153 | 
             
            		property :tag, :required => true
         | 
| 154 | 
            +
            		property :title
         | 
| 139 155 | 
             
            		property :messages, :default => []
         | 
| 140 156 | 
             
            	end
         | 
| 141 157 |  | 
| @@ -143,6 +159,7 @@ module Telemetry | |
| 143 159 | 
             
            	class Timechart < Hashie::Dash
         | 
| 144 160 | 
             
            		include TelemetryFlows
         | 
| 145 161 | 
             
            		property :tag, :required => true
         | 
| 162 | 
            +
            		property :title
         | 
| 146 163 | 
             
            		property :values, :default => []
         | 
| 147 164 | 
             
            		property :type, :required => true
         | 
| 148 165 | 
             
            	end
         | 
| @@ -151,6 +168,7 @@ module Telemetry | |
| 151 168 | 
             
            	class Timeline < Hashie::Dash
         | 
| 152 169 | 
             
            		include TelemetryFlows
         | 
| 153 170 | 
             
            		property :tag, :required => true
         | 
| 171 | 
            +
            		property :title
         | 
| 154 172 | 
             
            		property :messages, :default => []
         | 
| 155 173 | 
             
            	end
         | 
| 156 174 |  | 
| @@ -158,6 +176,7 @@ module Telemetry | |
| 158 176 | 
             
            	class Timeseries < Hashie::Dash
         | 
| 159 177 | 
             
            		include TelemetryFlows
         | 
| 160 178 | 
             
            		property :tag, :required => true
         | 
| 179 | 
            +
            		property :title
         | 
| 161 180 | 
             
            		property :value, :required => true
         | 
| 162 181 | 
             
            		property :type, :required => true
         | 
| 163 182 | 
             
            		property :label, :required => true
         | 
| @@ -170,6 +189,7 @@ module Telemetry | |
| 170 189 | 
             
            	class Upstatus < Hashie::Dash
         | 
| 171 190 | 
             
            		include TelemetryFlows
         | 
| 172 191 | 
             
            		property :tag, :required => true
         | 
| 192 | 
            +
            		property :title
         | 
| 173 193 | 
             
            		property :up, :default => []
         | 
| 174 194 | 
             
            		property :down, :default => []
         | 
| 175 195 | 
             
            		property :uptime
         | 
| @@ -180,6 +200,7 @@ module Telemetry | |
| 180 200 | 
             
            	class Value < Hashie::Dash
         | 
| 181 201 | 
             
            		include TelemetryFlows
         | 
| 182 202 | 
             
            		property :tag, :required => true
         | 
| 203 | 
            +
            		property :title
         | 
| 183 204 | 
             
            		property :value, :required => true
         | 
| 184 205 | 
             
            		property :color
         | 
| 185 206 | 
             
            		property :delta
         | 
    
        data/lib/telemetry/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: telemetry
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1.1. | 
| 4 | 
            +
              version: 1.1.8
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - W. Gersham Meharg
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2013-07- | 
| 11 | 
            +
            date: 2013-07-30 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: oj
         |