-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Open
Labels
area/uiarea/visRelating to visualization in the UIRelating to visualization in the UIkind/bugneeds/more-infoseverity/sev-3team/dumplingsteam/uiv2-prod-bugTrying to track all issues in V2 Prod to check code qualityTrying to track all issues in V2 Prod to check code quality
Milestone
Description
Using commit 8de4517.
Here is my sample query:
mybucket = "my_bucket"
from(bucket: mybucket)
|> range(start: -15m)
|> keep(columns:["_measurement"])
|> filter(fn: (r) => r._measurement =~ /^h/)
|> unique(column: "_measurement")
|> group()
|> yield(name: "h measurements")
from(bucket: mybucket)
|> range(start: -15m)
|> keep(columns:["_measurement"])
|> filter(fn: (r) => r._measurement =~ /^q/)
|> unique(column: "_measurement")
|> group()
|> yield(name: "q measurements")
The raw result of this, according to the chrome network inspector, is
#group,false,false,false
#datatype,string,long,string
#default,q measurements,,
,result,table,_measurement
,,0,qxxx
#group,false,false,false
#datatype,string,long,string
#default,h measurements,,
,result,table,_measurement
,,0,hxxx
When I render this result as a table view, there is a picker for the table but I can't choose other than whatever view happens to be displayed. Viewing the raw data displays correctly.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area/uiarea/visRelating to visualization in the UIRelating to visualization in the UIkind/bugneeds/more-infoseverity/sev-3team/dumplingsteam/uiv2-prod-bugTrying to track all issues in V2 Prod to check code qualityTrying to track all issues in V2 Prod to check code quality