Blog Post

Azure Data Explorer Blog
1 MIN READ

How to add dynamic data into a table using '.ingest inline into table' command

Tzvia's avatar
Tzvia
Icon for Microsoft rankMicrosoft
Jul 23, 2019

Let's start with table definition 

 

.create table ExpensiveKustoQueries_Test (User: string, TimeStamp: datetime, CpuTime: timespan) 

Now Ingestion with dynamic Value 

 

 

.set-or-append ExpensiveKustoQueries_Test <| print User = "xx@Kusto.com", Timestamp = now(),CpuTime = totimespan("06:48:02.2656250")

 

 

Updated Jul 23, 2019
Version 2.0
No CommentsBe the first to comment