Azure Application Insights continues export data json contains following fields,
"context": {
"session": {
"id": "5JMv4",
"isFirst": false
}
}
But I could not find this session IsFirst in app insights ( pageViews | getschema) how azure is mapping this values in continues export, because I want to manually export data, and wants know from which field I need read data for isFirst fields.
When we manually exporting data from Application Insights, we might have the option to include additional properties or manipulate the data before exporting it. In this case,
isFirstappears to be a property that is derived or added during the export process, rather than being a native property of telemetry data.session_isFirstproperty is typically not directly available as a top-level field in thepageViewstable. Instead, it is derived or computed based on the session information available in thecontextfield.It means that the
session_isFirstproperty is being derived from thecontext.session.isFirstfield. To manually export this information, you would need to extract it from thecontextfield.Query:
Here I have Tracked a sample user sessions in Azure Application Insights and then exported the data manually.
customDimensions.SessionIdandcustomDimensions.SessionIsFirstare placeholders for the actual field names that the Application Insights schema might use.