quickwit-oss / quickwit-datasource

Quickwit data source for Grafana
GNU Affero General Public License v3.0
41 stars 10 forks source link

Console warn "Duplicate field names in DataFrame: message" seen on a Grafana instance with 0.4.0-beta.2 version: #82

Open fmassot opened 6 months ago

fmassot commented 6 months ago

I did not reproduce it locally. I tested a Grafana 10.3.3 with Quickwit 0.4.0-beta.2 installed.

ddelemeny commented 6 months ago

Likely culprit : https://github.com/quickwit-oss/quickwit-datasource/blob/main/src/datasource.ts#L773

If we're going to modify the dataFrame, we should probably prefix our fields to avoid collisions.

$qw_${field.name}?

fmassot commented 6 months ago

@ddelemeny sounds good