Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove trends support (not in 10.0 schema)
  • Loading branch information
v-zhuravlev committed Nov 9, 2023
commit f5802af2388bbc8d0d94e32e4166e81edfb835b1
8 changes: 2 additions & 6 deletions docs/node-observ-lib/panels.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -920,10 +920,6 @@ local utils = commonlib.utils;
])
+ table.queryOptions.withTransformationsMixin(
[
{
id: 'timeSeriesTable',
options: {},
},
{
id: 'joinByField',
options: {
Expand All @@ -935,14 +931,14 @@ local utils = commonlib.utils;
id: 'filterFieldsByName',
options: {
include: {
pattern: 'device|duplex|address|Value.+|Trend.+',
pattern: 'device|duplex|address|Value.+',
},
},
},
{
id: 'renameByRegex',
options: {
regex: '(Value|Trend) #(.*)',
regex: '(Value) #(.*)',
renamePattern: '$2',
},
},
Expand Down