Skip to content

jango2015/ApplicationInsights-aspnet5

 
 

Repository files navigation

Microsoft Application Insights for ASP.NET 5 applications

This repository has a code for Application Insights monitoring of ASP.NET 5 applications. Read about contribution policies on Application Insights Home repository

Getting Started

Application Insights monitoring is a service that allows you to collect monitoring and diagnostics information about your application. Getting started guide shows how you can onboard your ASP.NET 5 web application to use Application Insights SDK.

Application Insights collects lots of out-of-the-box information like requests, exceptions and usage. It also allows to configure additional data collection. Configure guide demonstrates the most common tasks you may want to do.

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
        Mvc6Framework45.FunctionalTests - functional tests for MVC application
        WebApiShimFw46.FunctionalTests - functional tests for Web API application
        PerfTest - performance test

Developing

Pre-requisites

git clone https://github.com/Microsoft/ApplicationInsights-aspnet5.git

Building

From Visual Studio 2015

devenv ApplicationInsights.AspNet.sln

From Visual Studio 2015 Developer Command Prompt.

msbuild ApplicationInsights.AspNet.sln
  • If you get NPM package restore errors, make sure Node and NPM are added to PATH.
  • If you get Bower pacakge restore errors, make sure Git is added to PATH.
  • If you get Dnu package restore errors, make sure Dnx is installed or open the solution in Visual Studio 2015, which will take care of this.

Branches

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-beta6-*",

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

About

Asp.Net v5 web applicaitons monitoring middleware

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 93.9%
  • HTML 3.3%
  • PowerShell 1.7%
  • Other 1.1%