1
0
Форкнуть 0
ASP.NET Core web applications monitoring
Перейти к файлу
Anastasia Baranchenkova db90a5c26a Fix namespaces 2015-04-28 11:17:43 -07:00
src/Microsoft.ApplicationInsights.AspNet Add tests for request name and some tests refactoring 2015-04-27 22:25:42 -07:00
test Fix namespaces 2015-04-28 11:17:43 -07:00
.gitattributes PerfTest solution 2015-04-17 14:15:21 -07:00
.gitignore Remove project.lock.json files from repo 2015-04-16 16:33:00 -07:00
ApplicationInsights.AspNet.sln Move to RC - first set of changes for getting build to work 2015-04-16 16:23:54 -07:00
LICENSE Initial commit 2015-03-17 12:39:40 -07:00
NuGet.config fix project file and remove custom nuget server 2015-04-20 15:53:35 -07:00
Readme.md Update Readme.md 2015-04-23 10:28:28 -07:00
global.json Move to RC - first set of changes for getting build to work 2015-04-16 16:23:54 -07:00

Readme.md

Microsoft Application Insights for Asp.Net vNext applications

This repository has a code for Application Insights monitoring of Asp.Net vNext applications. Read about contrubution policies on Application Insights Home repository

Getting Started

For standard Asp.Net template you need to modify four files (this will be the default template instrumentation in future).

project.json Add new reference:

"Microsoft.ApplicationInsights.AspNet": "0.30.0.1-beta"

config.json Configure instrumentation key:

 "ApplicationInsights": {
 	"InstrumentationKey": "11111111-2222-3333-4444-555555555555"
 }

Startup.cs Add service:

services.AddApplicationInsightsTelemetry(Configuration);

Add middleware and configure developer mode:

// Add Application Insights monitoring to the request pipeline as a very first middleware.
app.UseApplicationInsightsRequestTelemetry();
...
// Add the following to the request pipeline only in development environment.
if (string.Equals(env.EnvironmentName, "Development", StringComparison.OrdinalIgnoreCase))
{
	app.SetApplicationInsightsTelemetryDeveloperMode();
}
...
// Add Application Insights exceptions handling to the request pipeline.
app.UseApplicationInsightsExceptionTelemetry();

_Layout.cshtml Define using and injection:

@using Microsoft.ApplicationInsights.AspNet
@inject Microsoft.ApplicationInsights.DataContracts.RequestTelemetry RequestTelelemtry

And insert HtmlHelper to the end of <head> section:

	@Html.ApplicationInsightsJavaScriptSnippet(RequestTelelemtry.Context.InstrumentationKey);
</head>

Repository structure

root\
    ApplicationInsights.AspNet.sln - Main Solution

    src\
        ApplicationInsights.AspNet - Application Insights package

    test\
        ApplicationInsights.AspNet.Tests - Unit tests
        FunctionalTestUtils - test utilities for functional tests
        SampleWebAppIntegration  - functional MVC test application

Developing

  1. Repository (private now): https://github.com/microsoft/AppInsights-aspnetv5
  2. Asp.Net information: https://github.com/aspnet/home
  3. SDK is build with beta4 asp.net nuget packages so it cannot run with Visual Studio 2015 CTP6. You'll need to use dnx directly like explained in this article. Please note, that recently "k" was renamed to "dnx" - you'll need to adjust instructions accordingly.

Running and writing tests

There are two sets of tests unit tests and functional tests. Please use unit tests for all features testing. The purpose of functional tests is just end-to-end validation of functionality on sample applications.

Functional tests Functional tests are regular web applications with unit tests integrated into them. Application can be compiled as a regular web application as well as set of tests. Typical functional test will do the following:

  1. Host the current project in In-Proc server.
  2. Initialize application insights telemetry channel.
  3. Initiate request to self hosted web application using HttpClient.
  4. Check data received in telemetry channel.

Those are modifications made for regular web application to make it work this way:

Add dependencies to project.json:

"FunctionalTestUtils": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-beta5-*",

and test command:

"test": "xunit.runner.aspnet"

Add this initialization logic to Startup.cs:

services.AddFunctionalTestTelemetryChannel();

Running Tests Open a developer command prompt, navigate to project folder and run:

dnx . test