lidong
lidong

Reputation: 608

What is the Azure Kusto command to show more columns in the table

By default In Azure AppInsight Logs, only some of columns shown in the table, click the arrow in left will show more content, but what is the command to add additional columns in the table? I don't like "project", for which you need to specify all columns you want.

Upvotes: 0

Views: 3062

Answers (2)

gusgol
gusgol

Reputation: 503

In case you ended up here just trying to find an easy way to check all columns of a table:

.show table TableName

.show table TableName details

.show table TableName cslschema

Upvotes: 1

Tiny Wang
Tiny Wang

Reputation: 15961

Did you mean that you wanna show all the columns like this? As you said, after executing the query, click the arrow in the left will show more content, that means the query has got all columns. So we only need to choose to select all to make all of them to show in the table.

enter image description here

Upvotes: 1

Related Questions