<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to read data from Azure Log Analitycs ? in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/8868#M4399</link>
    <description>&lt;P&gt;Thank you for sharing best answers here &lt;/P&gt;</description>
    <pubDate>Wed, 03 May 2023 15:39:24 GMT</pubDate>
    <dc:creator>Priyag1</dc:creator>
    <dc:date>2023-05-03T15:39:24Z</dc:date>
    <item>
      <title>How to read data from Azure Log Analitycs ?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/8865#M4396</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to read data from Azure Log Analitycs Workspace directaly, have any idea ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2023 23:53:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/8865#M4396</guid>
      <dc:creator>William_Scardua</dc:creator>
      <dc:date>2023-02-22T23:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to read data from Azure Log Analitycs ?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/8867#M4398</link>
      <description>&lt;P&gt;Hi @William Scardua​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use Log Analytics REST API to extract the data from databricks.&lt;/P&gt;&lt;P&gt;Please refer below link for more information-&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/rest/api/loganalytics/" alt="https://learn.microsoft.com/en-us/rest/api/loganalytics/" target="_blank"&gt;Log Analytics REST API | Microsoft Learn&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 06:30:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/8867#M4398</guid>
      <dc:creator>Ajay-Pandey</dc:creator>
      <dc:date>2023-02-23T06:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to read data from Azure Log Analitycs ?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/8868#M4399</link>
      <description>&lt;P&gt;Thank you for sharing best answers here &lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 15:39:24 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/8868#M4399</guid>
      <dc:creator>Priyag1</dc:creator>
      <dc:date>2023-05-03T15:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to read data from Azure Log Analitycs ?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/110324#M43541</link>
      <description>&lt;P&gt;You can use Kusto Spark connector for that: &lt;A href="https://github.com/Azure/azure-kusto-spark/blob/master/docs/KustoSource.md#source-read-command" target="_blank"&gt;https://github.com/Azure/azure-kusto-spark/blob/master/docs/KustoSource.md#source-read-command&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;It heavily depends on how you access data, there could be a need for using ADX cluster for it: &lt;A href="https://learn.microsoft.com/en-us/azure/data-explorer/query-monitor-data" target="_blank"&gt;https://learn.microsoft.com/en-us/azure/data-explorer/query-monitor-data&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2025 12:13:49 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/110324#M43541</guid>
      <dc:creator>alexott</dc:creator>
      <dc:date>2025-02-16T12:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to read data from Azure Log Analitycs ?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/115495#M45097</link>
      <description>&lt;P&gt;Here is a sample on how to do it using azure-kusto-spark connector with managed identity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;df = spark.read.format("com.microsoft.kusto.spark.datasource") \
    .option("kustoCluster", "https://ade.loganalytics.io/subscriptions/{subscriptionid}/resourceGroups/{rg-name}/providers/microsoft.operationalinsights/workspaces/{log-analytics-name}") \
    .option("kustoDatabase", "{log-analytics-name}") \
    .option("kustoQuery", "Table| take 10") \
    .option("managedIdentityAuth", "true") \
    .option("managedIdentityClientId", "00000000-0000-0000-0000-000000000000") \
    .load()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 10:29:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-read-data-from-azure-log-analitycs/m-p/115495#M45097</guid>
      <dc:creator>pregress</dc:creator>
      <dc:date>2025-04-15T10:29:52Z</dc:date>
    </item>
  </channel>
</rss>

