grafonnet icon indicating copy to clipboard operation
grafonnet copied to clipboard

g.panel.timeSeries.fieldConfig.defaults.custom.withInsertNulls missing?

Open berlincount opened this issue 1 year ago • 1 comments

Hello,

probably a bug in the Grafana schema, but g.panel.timeSeries.fieldConfig.defaults.custom.withInsertNulls - used to show gaps in the data as gaps in the graph seems to be missing.

Any workaround while this needs implementation?

Cheers,

count

berlincount avatar Mar 27 '24 13:03 berlincount

This'll get fixed in future versions, I'd suggest working around by simply adding a JSON blurb to your panel:

panel + {
  fieldConfig+: {
    defaults+: {
      custom+: {
        insertNulls: '<value>',
      },
    },
  },
}

Duologic avatar May 13 '24 12:05 Duologic