Posting the ADX table and json mapping commands used in the pipeline for
reference. .create tables people(name:string,age:int,place:string,
timestamp:timespan ) .create table people ingestion json mapping
'peoplemapping'
'[{"column":"name","path":"$.name"},{"column":"age","path":"$.age"}
,{"column":...
Below is an example of logstash pipeline to read different indices data
and ingest to multiple ADX tables depending on index. input {
elasticsearch { hosts => ["http://localhost:9200"] index => "people"
user => "elastic" password => "pwd" tags => ["people"] } elasticsearch {
hosts => ["http://localh...
Couple others I have in my collection:Intro to Kusto Queries ·
mrblackistone/LearningDevOpsAndAzure Wiki (github.com)
KustoQueries/Queries.md at master · jorodas/KustoQueries (github.com)
tobiasmcvey/kusto-queries: example queries for learning the kusto
language (github.com)
Latest Comments