I'm using grafana, influxdb and jmeter. I have this table. I need to add a column that says "Base Line" with a value different for each request name. I have tried the following: - Grafana does not seem to have a way to add static values for columns, or a query equivalent of sql for "select 'value' as 'columnName'" - I tried creating a new time series for static data (base lines) and do a join of the results from jmeter with the series I created, but I get this error:
error parsing query: found AS, expected ;
I'm having a hard time trying to create an extra column with fixed data for each request... my last resort is to modify or create a jmeter plugin for that matter, but before going for that, there might be something I could be missing.