This topic describes how to configure a word cloud to display query results.
Background information
A word cloud visualizes text data. It is a cloud-like and colored image composed of words. You can use a word cloud to display a large amount of text data. The font size or color of a word indicates the significance of the word. This allows you to recognize the most significant words in an efficient way.
The words in a word cloud are sorted.
Procedure
Examples
To query the distribution of hostnames in NGINX logs, execute the following query statement:
* | select hostname, count(1) as count group by hostname order by count desc limit 1000
Select hostname
for Word Column and count
for Value Column.
