kusto

Application Insights: Analytics - how to extract string at specific position

你离开我真会死。 提交于 2020-07-20 07:24:06
问题 I'd like to do, Extracting "query" strings where param=1 as follows in "2." Getting pageViews in Analytics with table as "3." 1. Actual urls included in pageView https://example.com/dir01/?query=apple&param=1 https://example.com/dir01/?query=apple&param=1 https://example.com/dir01/?query=lemon+juice&param=1 https://example.com/dir01/?query=lemon+juice&param=0 https://example.com/dir01/?query=tasteful+grape+wine&param=1 2. Value expected to extract apple lemon+juice tasteful+grape+wine 3.

How to properly authenticate Kusto using a Python client?

人走茶凉 提交于 2020-05-16 13:58:08
问题 I'm trying to test a connection between my node and Azure Data Explorer (ADX/ Kusto). I'm thinking to create a table on Kusto using a python script. Please be aware that I'm not very familiar with any of this, hence the detailed steps below. I'm following this quickstart guide on Microsoft docs. Generate application ID and key Using App Registrations service: Create new registration (named kusto test): Create a client secrets: Create Kusto DB From the cluster, create a database from the UI

Is there a method to view Application Insights logs besides Azure Portal?

邮差的信 提交于 2020-04-15 20:09:05
问题 I am unable to endure clicking so many times in Azure Portal to get to AppInsights log analytics. Saving the URL to the analytics blade and returning to it also frequently fails to load the page due to what appear to be some authentication token expiration issues. How can I run my Kusto queries on my AppInsights instance without using Azure Portal? 回答1: We are running a private preview of the ability to use the Azure Data Explorer tools such as Kusto Explorer and Kusto Web explorer to query

Is there a method to view Application Insights logs besides Azure Portal?

吃可爱长大的小学妹 提交于 2020-04-15 20:07:31
问题 I am unable to endure clicking so many times in Azure Portal to get to AppInsights log analytics. Saving the URL to the analytics blade and returning to it also frequently fails to load the page due to what appear to be some authentication token expiration issues. How can I run my Kusto queries on my AppInsights instance without using Azure Portal? 回答1: We are running a private preview of the ability to use the Azure Data Explorer tools such as Kusto Explorer and Kusto Web explorer to query

When IngestionFailureInfo.ShouldRetry is true

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-25 08:32:26
问题 I'm implementing retry for failed ingest operation on ADX, my question is in the title. On the side note, I saw some differences between IngestionStatus (getting ingest status via table) and IngestionFailureInfo (getting ingest status via queue) IngestionStatus have Status.PartiallySucceeded , while IngestionFailureInfo have no way to tell whether an ingest operation is partially succeeded or not. Can Status.PartiallySucceeded occur when ingesting from stream ? How can I know if an ingest

How to transform a JSON array of objects to a Kusto table?

戏子无情 提交于 2019-12-25 00:51:25
问题 I have a JSON schema that I get from the server and I need to transform this JSON into a log analytics query language table and use that table to make a join with another table. The JSON has the following schema: [{ "X": "xyz", "Y": "xyz", "Z": "xyz", "prop1": "value1", "prop2": "value2", "prop3": "value3" }, { "X": "xyz", "Y": "xyz", "Z": "xyz", "prop1": "value1", "prop2": "value2", "prop3": "value3" }] I tried this : let table = todynamic('[{ "X": "xyz", "Y": "xyz", "Z": "xyz", "prop1":

Add column of totals pr. field value

半城伤御伤魂 提交于 2019-12-24 21:48:54
问题 I start with a list of failures that take place in locations failureName, failureLocation failure a, location 1 failure b, location 1 failure a, location 2 failure a, location 1 <etc> I can transform that into this table by using summarize count() by location failureName, failureLocation, count failure a, location 1, 100 failure a, location 2, 50 failure b, location 1, 10 <etc> I'd like to transform the counts into percent on a per. failure basis, so I need to add a sum per failure name. My