sanjay900 / Kusto.Toolkit

Tools to make building Kusto query analyzers easier.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kusto.Toolkit

Tools for building Kusto query analyzers.

This project is published at: https://www.nuget.org/packages/Kusto.Toolkit/

This project depends on:

  1. Microsoft.Azure.Kusto.Language -- Kusto parser and intellisense APIs
  2. Microsoft.Azure.Kusto.Data -- Kusto client query APIs
  3. Newtonsoft.Json -- caching schema locally

Use the SymbolLoader family of classes to feed the Kusto parser with database schemas directly from your cluster.

  1. ServerSymbolLoader -- loads symbols from a Kusto server using admin commands.
  2. FileSymbolLoader -- loads and saves symbols into a file based symbol store.
  3. CachedSymbolLoader -- loads symbols from file based cache or kusto server when not found locally.

Use the SymbolResolver class along with a SymbolLoader to load schema for cluster/database references in queries.

Use extension methods found in the KustoCodeExtensions class like GetDatabaseTablesReferenced and GetDatabaseTableColumnsReferenced to help you determine which tables and columns are used in a query, or use GetSourceColumns to determine which database table columns contributed to the content of any result columns.

Use extension methods found in the GlobalStateExtensions class like AddOrUpdateDatabaseMembers to easily add or update tables or functions in the default database, or used ApplyCommand to apply changes to schema symbols using commands.

About

Tools to make building Kusto query analyzers easier.

License:Apache License 2.0


Languages

Language:C# 100.0%Language:Batchfile 0.0%