Class: Blazer::Result
- Inherits:
-
Object
- Object
- Blazer::Result
- Defined in:
- lib/blazer/result.rb
Instance Attribute Summary collapse
-
#cached_at ⇒ Object
Returns the value of attribute cached_at.
-
#columns ⇒ Object
readonly
Returns the value of attribute columns.
-
#data_source ⇒ Object
readonly
Returns the value of attribute data_source.
-
#error ⇒ Object
readonly
Returns the value of attribute error.
-
#forecast_error ⇒ Object
readonly
Returns the value of attribute forecast_error.
-
#just_cached ⇒ Object
Returns the value of attribute just_cached.
-
#rows ⇒ Object
readonly
Returns the value of attribute rows.
Instance Method Summary collapse
- #anomaly?(series) ⇒ Boolean
- #cached? ⇒ Boolean
- #chart_type ⇒ Object
- #column_types ⇒ Object
- #detect_anomaly ⇒ Object
-
#forecast ⇒ Object
TODO cache it? don’t want to put result data (even hashed version) into cache without developer opt-in.
- #forecastable? ⇒ Boolean
-
#initialize(data_source, columns, rows, error, cached_at, just_cached) ⇒ Result
constructor
A new instance of Result.
- #smart_values ⇒ Object
- #timed_out? ⇒ Boolean
Constructor Details
#initialize(data_source, columns, rows, error, cached_at, just_cached) ⇒ Result
Returns a new instance of Result.
6 7 8 9 10 11 12 13 |
# File 'lib/blazer/result.rb', line 6 def initialize(data_source, columns, rows, error, cached_at, just_cached) @data_source = data_source @columns = columns @rows = rows @error = error @cached_at = cached_at @just_cached = just_cached end |
Instance Attribute Details
#cached_at ⇒ Object
Returns the value of attribute cached_at.
4 5 6 |
# File 'lib/blazer/result.rb', line 4 def cached_at @cached_at end |
#columns ⇒ Object (readonly)
Returns the value of attribute columns.
3 4 5 |
# File 'lib/blazer/result.rb', line 3 def columns @columns end |
#data_source ⇒ Object (readonly)
Returns the value of attribute data_source.
3 4 5 |
# File 'lib/blazer/result.rb', line 3 def data_source @data_source end |
#error ⇒ Object (readonly)
Returns the value of attribute error.
3 4 5 |
# File 'lib/blazer/result.rb', line 3 def error @error end |
#forecast_error ⇒ Object (readonly)
Returns the value of attribute forecast_error.
3 4 5 |
# File 'lib/blazer/result.rb', line 3 def forecast_error @forecast_error end |
#just_cached ⇒ Object
Returns the value of attribute just_cached.
4 5 6 |
# File 'lib/blazer/result.rb', line 4 def just_cached @just_cached end |
#rows ⇒ Object (readonly)
Returns the value of attribute rows.
3 4 5 |
# File 'lib/blazer/result.rb', line 3 def rows @rows end |
Instance Method Details
#anomaly?(series) ⇒ Boolean
171 172 173 174 175 176 |
# File 'lib/blazer/result.rb', line 171 def anomaly?(series) series = series.reject { |v| v[0].nil? }.sort_by { |v| v[0] } anomaly_detector = Blazer.anomaly_detectors.fetch(Blazer.anomaly_checks) anomaly_detector.call(series) end |
#cached? ⇒ Boolean
19 20 21 |
# File 'lib/blazer/result.rb', line 19 def cached? cached_at.present? end |
#chart_type ⇒ Object
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/blazer/result.rb', line 69 def chart_type @chart_type ||= begin if column_types.compact.size >= 2 && column_types.compact == ["time"] + (column_types.compact.size - 1).times.map { "numeric" } "line" elsif column_types == ["time", "string", "numeric"] "line2" elsif column_types == ["string", "numeric"] && @columns.last == "pie" "pie" elsif column_types.compact.size >= 2 && column_types == ["string"] + (column_types.compact.size - 1).times.map { "numeric" } "bar" elsif column_types == ["string", "string", "numeric"] "bar2" elsif column_types == ["numeric", "numeric"] "scatter" end end end |
#column_types ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/blazer/result.rb', line 48 def column_types @column_types ||= begin columns.each_with_index.map do |k, i| v = (rows.find { |r| r[i] } || {})[i] if smart_values[k] "string" elsif v.is_a?(Numeric) "numeric" elsif v.is_a?(Time) || v.is_a?(Date) "time" elsif v.nil? nil elsif v.is_a?(String) && v.encoding == Encoding::BINARY "binary" else "string" end end end end |
#detect_anomaly ⇒ Object
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
# File 'lib/blazer/result.rb', line 122 def detect_anomaly anomaly = nil = nil if rows.empty? = "No data" else if chart_type == "line" || chart_type == "line2" series = [] if chart_type == "line" columns[1..-1].each_with_index.each do |k, i| series << {name: k, data: rows.map { |r| [r[0], r[i + 1]] }} end else rows.group_by { |r| v = r[1]; (smart_values[columns[1]] || {})[v.to_s] || v }.each_with_index.map do |(name, v), i| series << {name: name, data: v.map { |v2| [v2[0], v2[2]] }} end end current_series = nil begin anomalies = [] series.each do |s| current_series = s[:name] anomalies << s[:name] if anomaly?(s[:data]) end anomaly = anomalies.any? if anomaly if anomalies.size == 1 = "Anomaly detected in #{anomalies.first}" else = "Anomalies detected in #{anomalies.to_sentence}" end else = "No anomalies detected" end rescue => e = "#{current_series}: #{e.}" raise e if Rails.env.development? end else = "Bad format" end end [anomaly, ] end |
#forecast ⇒ Object
TODO cache it? don’t want to put result data (even hashed version) into cache without developer opt-in
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/blazer/result.rb', line 94 def forecast count = (@rows.size * 0.25).round.clamp(30, 365) forecaster = Blazer.forecasters.fetch(Blazer.forecasting) forecast = forecaster.call(@rows.to_h, count: count) # round integers if @rows[0][1].is_a?(Integer) forecast = forecast.map { |k, v| [k, v.round] }.to_h end @rows.each do |row| row[2] = nil end @rows.unshift(*forecast.map { |k, v| [k, nil, v] }) @columns << "forecast" # reset cache @column_types = nil @chart_type = nil forecast rescue => e @forecast_error = String.new("Error generating forecast") @forecast_error << ": #{e..sub("Invalid parameter: ", "")}" nil end |
#forecastable? ⇒ Boolean
87 88 89 |
# File 'lib/blazer/result.rb', line 87 def forecastable? @forecastable ||= Blazer.forecasting && column_types == ["time", "numeric"] && @rows.size >= 10 end |
#smart_values ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/blazer/result.rb', line 23 def smart_values @smart_values ||= begin smart_values = {} columns.each_with_index do |key, i| smart_columns_data_source = ([data_source] + Array(data_source.settings["inherit_smart_settings"]).map { |ds| Blazer.data_sources[ds] }).find { |ds| ds.smart_columns[key] } if smart_columns_data_source query = smart_columns_data_source.smart_columns[key] res = if query.is_a?(Hash) query else values = rows.map { |r| r[i] }.compact.uniq result = smart_columns_data_source.run_statement(ActiveRecord::Base.send(:sanitize_sql_array, [query.sub("{value}", "(?)"), values])) result.rows end smart_values[key] = res.to_h { |k, v| [k.nil? ? k : k.to_s, v] } end end smart_values end end |
#timed_out? ⇒ Boolean
15 16 17 |
# File 'lib/blazer/result.rb', line 15 def timed_out? error == Blazer::TIMEOUT_MESSAGE end |