Kibana visualize top 10 Apache requests

Hello everyone.
I'm a little stuck here... I want to create a visualization on Kibana which shows ten most invoked requests of a web site (I named the field which contains de request URL "UrlRequest"), and I would like to do it using horizontal/vertical bars (I don't know if this is possible).

Sorry for my english, is terribble.
I will really appreciate any help.

Kibana does not generally let you visualize full text fields, it expects fields to be keywords or otherwise have doc_values enabled (which keywords do, and full text does not). Assuming you have this mapping set up, then you can set up the visualization using the Terms aggregation on UrlRequest.

Thanks for the reply. I solved this by using "Visual Builder". It's pretty easy to use and can get really great visualization like this.

Regards!