class TCellAgent::Routes::RouteEndpoint

Attributes

database[RW]
database_queries_discovered[RW]

Public Class Methods

new() click to toggle source
# File lib/tcell_agent/routes/table.rb, line 16
def initialize
  @database_queries_discovered = {}
  @database = Hash.new do |d_h, d_k| # Database
    d_h[d_k] = Hash.new do |s_h, s_k| # Schema
      s_h[s_k] = Hash.new do |t_h, t_k| # Table
        t_h[t_k] = Hash.new do |f_h, f_k| # Field
          f_h[f_k] = FieldEndpoint.new
        end
      end
    end
  end
end