Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ui: query with multiple yields, cannot choose which yield to view as table #13553

Open
mark-rushakoff opened this issue Apr 22, 2019 · 4 comments
Assignees
Labels
area/ui area/vis Relating to visualization in the UI kind/bug needs/more-info severity/sev-3 team/dumplings team/ui v2-prod-bug Trying to track all issues in V2 Prod to check code quality
Milestone

Comments

@mark-rushakoff
Copy link
Contributor

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.

@stale
Copy link

stale bot commented Jul 28, 2019

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the wontfix label Jul 28, 2019
@mark-rushakoff
Copy link
Contributor Author

I think this is still an issue.

@stale stale bot removed the wontfix label Jul 28, 2019
@stale
Copy link

stale bot commented Jan 15, 2020

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the wontfix label Jan 15, 2020
@russorat
Copy link
Contributor

bump

@stale stale bot removed the wontfix label Jan 15, 2020
@russorat russorat removed the epic/vis label Feb 18, 2020
@russorat russorat added this to the OSS GA milestone Mar 18, 2020
@asalem1 asalem1 added the v2-prod-bug Trying to track all issues in V2 Prod to check code quality label Jun 17, 2021
@kristinarobinson kristinarobinson self-assigned this Nov 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/ui area/vis Relating to visualization in the UI kind/bug needs/more-info severity/sev-3 team/dumplings team/ui v2-prod-bug Trying to track all issues in V2 Prod to check code quality
Projects
None yet
Development

No branches or pull requests

4 participants