是否可以将 postgres 中包含的数据发送到仪表板?我在这里找到了 mysql 示例和相同的问题。
我在工作文件夹中编辑了我的工作。我还包括了pg gem。
require 'pg'
conn = PGconn.new(:host => "10.10.8.10", :port => "5432",:dbname => "db1",:login => "test",:password => "test")
results = conn.exec("select partner,sitetype from test")
# Sending to List widget, so map to :label and :value
acctitems = results.map do |row|
row = {
:label => row['partner'],
:value => row['sitetype']
}
end
# Update the List widget
send_event('account_count', { items: acctitems } )
end