Multiple table colums

Hello, I just got start with Grafana and made my first dashboard. Im trying to make a table containing firewall actions (source ip / dest. ip / action etc) but I am having some issues with getting all my data in a table, to be more specific I cant add columns to my table using lucene/keywords (it just adds all values into 1 line making it unreadable). I use elasticsearch to fill the table,

I could use JSON/raw document and add columns that way but then Im not able to select alot of the keyword/fields I have when using lucene. Somehow they arent in the list for raw document/JSON.

Can I add more columns to the table and split the data from one line to multiple columns ?

Thanks !

Hi,

No, that’s not supported I think.

Can you please provide an example elasticsearch document together with mapping, i.e. get <index>/_mapping and possible also a screenshot which highlight your problem with the missing keyword/fields?

Thanks

Marcus

I have the same issues, as a newbie is quite difficult. I’m sure we’re going to get used!

hello, How to do multiple sum or count using table panel and elastic datasource

Since Grafana v6.0 bucket script pipeline aggregations are supported by using the metric Bucket Script:

How to do multiple count, for example, group by field A? I want to count field.login=success & field.login= failed.

Add a group by terms aggregation for field.login

this is what i wanna do. i want to count total trx, total.response=success, total.response.error, etc for every URI Name. please find attachment below.

Don’t think you can do that in one query. What you can do in one query is to group by terms (URI name) and another terms (total.response) and metric=count which will give you columns URI name, “response type”, count as an example.

ok thanks i’ll try it

Team ,

I have similar use case . I want to enable split up of order data status in table view for specific locations. Eg. (New , Approved , Pending Approved)

Location : New Pending Completed Total
CL 1 3 5 9
ML 5 1 2 8

Now i’m getting the overall count in single row. but not getting the split up’s. Is it possible to achieve in split up’s as given above?

Angel