How to display the process name in grafana which is fetched from influxdb?

Hi all, I use collectd to collect the metrics and pushed into influxdb. I collect the process metrics from collectd and pushed into influxdb and i need to visulaize in grafana.
As of now my output of influxdb is like
> name: processes_value
> tags: host=Slave1-Collectd
> time instance type type_instance value
> ---- -------- ---- ------------- -----
> 1568702686327447056 ps_state running 2
> 1568702686327448620 ps_state sleeping 84
> 1568702686327449675 ps_state zombies 0
> 1568702686327450700 ps_state stopped 0
> 1568702686327451715 ps_state paging 0
> 1568702686327452935 ps_state blocked 0
> 1568702686327454380 apache ps_vm 0
> 1568702686327455615 apache ps_rss 0
> 1568702686327456953 apache ps_data 0
> 1568702686327458291 apache ps_code 0
> 1568702686327459491 apache ps_stacksize 0
> 1568702686327464669 collectd ps_vm 687271936
> 1568702686327465888 collectd ps_rss 2236416
> 1568702686327466901 collectd ps_data 621162496
> 1568702686327467928 collectd ps_code 4988928
> 1568702686327469080 collectd ps_stacksize 2176
> 1568702686327524835 fork_rate 3994

And my grafana query is
select mean(value) from “processes_value” WHERE “type_instance” = ‘running’ AND “type” = ‘ps_state’ AND “host” =~ /^$host$/ AND $timeFilter GROUP BY time($interval) fill(null)

Output:

It is showing as running process is 2. But i need to know what process is running…
How can i do that in grafna…

Kindly help!