I am trying to create a dashboard with deployments during the month based on projects as dropdown fields using Column graph
this is my query for the dashboard.
index="concourse" sourcetype="deployments: csv" month="$mt$" project="$project$" | stats count by project, month
This basically gives me the count for the deployments by project
with the above query if i choose
Project = ALL and Month=February
This is basically showing the data correctly in the graph wit proper name [like a, b, c projects deployed during this month]
When I choose Project=BUY and Month=ALL
Then it is populating the results but showing as [BUY,BUY,BUY,BUY] on x-axis and count on y-axis and not displaying the month
... View more