ApplicationInsights-dotnet-.../README.md

64 строки
4.9 KiB
Markdown
Исходник Обычный вид История

2016-01-26 03:04:16 +03:00
![Build Status](https://mseng.visualstudio.com/DefaultCollection/_apis/public/build/definitions/96a62c4a-58c2-4dbb-94b6-5979ebc7f2af/2678/badge)
2016-02-16 11:08:57 +03:00
[![codecov.io](https://codecov.io/github/Microsoft/ApplicationInsights-server-dotnet/coverage.svg?branch=develop)](https://codecov.io/github/Microsoft/ApplicationInsights-server-dotnet?branch=develop)
2016-01-26 03:06:52 +03:00
[![Nuget](https://img.shields.io/nuget/vpre/Microsoft.ApplicationInsights.Web.svg)](http://nuget.org/packages/Microsoft.ApplicationInsights.Web)
2016-01-26 03:04:16 +03:00
2016-01-29 19:27:15 +03:00
# Visual Studio Application Insights SDK for .NET Web Applications
2016-01-20 21:19:00 +03:00
2016-01-29 19:27:15 +03:00
The code in this repository is the .NET web application SDK for Application Insights. [Application Insights][AILandingPage] is a service that lets you monitor your live application's performance and usage. This SDK sends telemetry to the service. It collects data such as web request timings and succcess rates, dependency calls, exceptions, and server performance counters. You can also use the SDK to send your own telemetry and add modules to collect logs. You can use this SDK in any .NET web application, hosted either on your own servers or on Microsoft Azure.
2016-01-20 03:13:06 +03:00
2016-01-29 19:27:15 +03:00
## Get the SDK
2016-01-20 03:13:06 +03:00
2016-01-29 19:27:15 +03:00
The SDK is installed on each project by the Application Insights tools in Visual Studio (2013 and later).
2016-01-20 03:13:06 +03:00
2016-01-29 19:27:15 +03:00
To [add Application Insights to your project in Visual Studio][AddInVS]:
2016-01-20 03:13:06 +03:00
2016-01-29 19:27:15 +03:00
* If you're creating a new project, check **Add Application Insights** in the New Project dialog.
* If it's an existing project, right-click your project in Solution Explorer and select **Add Application Insights** or **Update Application Insights**.
* If these options aren't available for your project type, use Extension Manager in Visual Studio to install or update the NuGet package. Create a [new Application Insights resource][CreateResource] in the Azure portal, obtain its instrumentation key, and insert that in ApplicationInsights.config.
2016-01-20 03:13:06 +03:00
2016-01-29 19:27:15 +03:00
Run your project, and then [open your Application Insights resource][WebDocumentation] in the [Azure Preview Portal][AzurePortal] and look for events.
2016-01-20 03:13:06 +03:00
2016-03-10 04:46:08 +03:00
## To upgrade to the latest SDK
* After you upgrade, you'll need to merge back any customizations you made to ApplicationInsights.config. If you're unsure whether you customized it, create a new project, add Application Insights to it, and compare your .config file with the one in the new project. Make a note of any differences.
* In Solution Explorer, right-click your project and choose **Manage NuGet packages**.
* Set the filter to show Updates.
* Select **Microsoft.ApplicationInsights.Web** and choose **Update**. (This will also upgrade all the dependent packages.)
* Compare ApplicationInsights.config with the old copy. Most of the changes you'll see are because we removed some modules and made others parameterizable. Reinstate any customizations you made to the old file.
* Rebuild your solution.
2016-01-20 03:13:06 +03:00
## To build
* Visual Studio 2015 Community or Enterprise
2016-01-20 03:13:06 +03:00
* Clone the Git repository
* Open Visual Studio solution (devenv Web\Microsoft.ApplicationInsights.Web.sln)
* Build solution in Visual Studio
2016-01-20 03:13:06 +03:00
If you prefer using build scripts, run ```buildDebug.cmd``` or ```buildRelease.cmd```
2016-01-20 03:13:06 +03:00
2016-01-20 21:19:00 +03:00
## Branches
- [master][master] contains the *latest* published release located on [NuGet][WebNuGet].
- [develop][develop] contains the code for the *next* release.
## Contributing
We strongly welcome and encourage contributions to this project. Please read the [contributor's guide][ContribGuide]. If making a large change we request that you open an [issue][GitHubIssue] first. If we agree that an issue is a bug, we'll add the "bug" label, and issues that we plan to fix are labeled with an iteration number. We follow the [Git Flow][GitFlow] approach to branching.
2016-01-20 21:19:00 +03:00
2016-06-22 08:37:01 +03:00
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
2016-01-29 19:27:15 +03:00
2016-01-20 21:19:00 +03:00
[Azure]: https://azure.com/
[AILandingPage]: http://azure.microsoft.com/services/application-insights/
2016-01-29 19:27:15 +03:00
[AzurePortal]: https://portal.azure.com/
[WebDocumentation]: https://azure.microsoft.com/documentation/articles/app-insights-asp-net/#monitor
2016-01-20 21:19:00 +03:00
[master]: https://github.com/Microsoft/ApplicationInsights-server-dotnet/tree/master/
[develop]: https://github.com/Microsoft/ApplicationInsights-server-dotnet/tree/develop/
[GitFlow]: http://nvie.com/posts/a-successful-git-branching-model/
[ContribGuide]: https://github.com/Microsoft/ApplicationInsights-server-dotnet/blob/develop/CONTRIBUTING.md/
2016-01-20 21:19:00 +03:00
[GitHubIssue]: https://github.com/Microsoft/ApplicationInsights-server-dotnet/issues/
[WebNuGet]: https://www.nuget.org/packages/Microsoft.ApplicationInsights.Web/
[MyGet]:http://myget.org/gallery/applicationinsights/
2016-01-29 19:27:15 +03:00
[AddInVS]:https://azure.microsoft.com/documentation/articles/app-insights-asp-net/#ide
[CreateResource]: https://azure.microsoft.com/documentation/articles/app-insights-create-new-resource/