I would like to create a table from two different elements with two different protocols in a dashboard.
Using a query with inner join will always provide a table with columns from both tables. I.e. if the matching value is port. The port column from both tables are shown in the result. How do I hide one of these columns from the resulting table?
Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 4th June 2024
You can remove that column (and any other undesired column) from your result with the Select operator.
Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 4th June 2024
Ahh, of course!
Thank you!