telemetry

How to use JProfiler custom probe telemetry for monitoring Guava cache statistics

谁说我不能喝 提交于 2019-12-12 18:12:15
问题 At JPL, we use model transformation techniques for our systems engineering work. We use the Eclipse QVTO implementation of OMG's QVT specification. http://www.eclipse.org/modeling/m2m/downloads/index.php?project=qvtoml However, the Eclipse QVTO compiler is frustratingly slow. With judicious application of Guava's cache, I've managed to make significant performance improvements to the Eclispe QVTO compiler. More could be done but with what I have, I would like to get a view of the

How to get the Qna Maker “Q” from Analytics Application Insights?

懵懂的女人 提交于 2019-12-11 10:16:38
问题 I have created my chatbot's knowledge base with Qna Maker and I am trying to visualize some statistics with Analytics Application Insights. What I want to do I would like to create a chart with the most requested Qna Maker questions. My problem I can't find the Qna Maker questions in the customDimensions traces on Analytics but only their Id : My question Is their a way to get the Qna Maker Question linked to this Id directly from the Analytics Application Insights tool ? Thank you. PS : I

How to set session id or create custom field into ApplicationInsights from FunctionApp

大憨熊 提交于 2019-12-11 08:45:36
问题 Function app is as below: public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.Function, "get", Route = null)]HttpRequestMessage request, ILogger log) { log.LogInformation("Information", infoOBject); } local.json file has applicationInstrument key. How to add additional field and set "Session_Id" for "Request" entry in application insights. 回答1: You need to this using some custom logging from Application Insights First, install the Nuget package Install-Package

Is there memory impact or performance cause without TelemetryClient.Flush()

删除回忆录丶 提交于 2019-12-11 08:03:53
问题 Using telemetry client to log custom event log as follow: var telemetryClient = new TelemetryClient(); telemetryClient.InstrumentationKey = "<your actual insight instrumentkey>"; telemetryClient.TrackRequest(req.RequestUri.ToString(), DateTime.Now, Stopwatch.StartNew().Elapsed, "200", true); My question is: do we need to flush the client using telemetryClient.Flush() or is it not required? Even when not flushing it also works and we are able to see the log. 回答1: Usually, you don't need to

Data Values Logged Remain Unchanged - DJI UXSDKDemo

核能气质少年 提交于 2019-12-11 06:55:56
问题 I am logging IMU Information from a DJI Drone via the iOS DJI UXSDKDemo. Using the method below, I am able to receive a log of the four desired values (IMU State, IMU Count, Gyroscope, and Accelerometer). When I run the app connected to a drone, however, the logs are stored, the logs from these flights list each of the four values as zero. The drone I am connecting the app to is not flying, yet even when I move the drone around, the values do not change. Do I need to import any files to the

Getting User Information in App Insights

蹲街弑〆低调 提交于 2019-12-11 05:28:08
问题 I have a web forms application. I have integrated the App Insights SDK, I receive the notifications about the application like button click (through Custom Events, Track Event function) on my Azure portal. How can I get user information like: What regions/geography the user is logging from, which browser is he/she accessing through... things like that. Right now, In Azure Portal under Usage--> Users I get: No data for 'users' with values of 'Country or region'. Similarly, no data messages are

How to retrieve telemetry for all customer devices from Thingsboard via websocket

别来无恙 提交于 2019-12-08 03:25:33
问题 I want to get the latest telemetry for all devices related to a single customer from thingsboard CE via API over a websocket. So that I can update a jquery datatable in real-time when measurements are received. after manually adding a relation for customer->device via GUI latest telemetry data is now flowing to the CUSTOMER entityType in Thingsboard. However; the data returned does not contain any device attribute information that I can use to match the ws response to the device that

Application Insights purge data from custom data source

人走茶凉 提交于 2019-12-07 18:28:26
问题 I load custom data into an application insights app via a Azure Function programatically on a schedule. The workflow is essentially loading a json file onto an azure storage account, calling post to a particular endpoint with body containing link with sas token to json file, and then the ingest cycle occurs loading the json into the custom data source. What I have noticed is that the ingestion cycle concatonates old records with the new JSON - and I need to PURGE the data before triggering a

Telemetry sampling without affecting the errors/failures

痞子三分冷 提交于 2019-12-07 15:37:50
问题 I want to log a percentage of the success calls in app insights. I came across this post https://docs.microsoft.com/en-us/azure/azure-monitor/app/sampling and I think Fixed-rate sampling is appropriate here. But does this affect all logging equally? Will some errors/failures no longer be logged? I am looking for a solution that logs a percentage of the success calls, but keeps all failed requests/errors. 回答1: I don't think this is supported out of the box, but you can write your own

Application Insights purge data from custom data source

元气小坏坏 提交于 2019-12-06 04:48:05
I load custom data into an application insights app via a Azure Function programatically on a schedule. The workflow is essentially loading a json file onto an azure storage account, calling post to a particular endpoint with body containing link with sas token to json file, and then the ingest cycle occurs loading the json into the custom data source. What I have noticed is that the ingestion cycle concatonates old records with the new JSON - and I need to PURGE the data before triggering a new ingestion so the JSON file always represents the complete state of the data set. Is there any API