Team, I was using Kibana interactive input control for my visualization part and wanted to use my job id or job name . As it's a string value it does not show in filters, only numeric values like timestamp i'm using now. I want to make a visualization such that if i search by particular job id/job name(which are string) it will show particular things related to that only.
So you have a "jobID" and a "jobName" field that do not show up in the Input Control list?
You can take a look at the way the sample flight data has set up the input control in order to check that you set you Input Control correctly.
As for the symbols there, they show what type the field is in your index: # for a number, t is for text and the ? is for unknown types of field. What i'm thinking in this case is that you didn't have any data that contained those fields when you created the index pattern. A index cache refresh should be enough to clear it up and even to show them in the Input Control list: https://www.elastic.co/guide/en/kibana/current/index-patterns.html#reload-fields
Thanks reloading the index did the job. 

