Search code examples
azure-application-insightskqlappinsights

Kql equivalent functions


I'm trying to manipulate the contents of fields returned from application Insights logging and was wondering if there are KQL equivalents for the Oracle substr and instr functions?


Solution

  • The equivalent of Oracle substr function in KQL is substring().

    The equivalent of Oracle instr function in KQL is indexof().