VKCOM / lighthouse

Lightweight interface for ClickHouse

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Array support

morozovsk opened this issue · comments

I have this structure:

create table pinba.requests
(
   ...,
  `tags.name`       Array(String),
  `tags.value`      Array(String),
  `timers.hitCount` Array(UInt32),
  `timers.value`    Array(Float32),
  `timers.tagName`  Array(Array(String)),
  `timers.tagValue` Array(Array(String)),
)

And I don't see my data:
screen297

Tabbix for example:
screen298

Phpstorm for example (has problems with Array(Float32) and Array(Float32)):
screen299

DBeaver for example (has problems with Array(Float32) and Array(Float32)):
screen300

Lighthouse actually does support arrays, but the support is nowhere near full, that's true. Thank you for your report!