https://github.com/brandonhenricks/xperience-community-application-insights
Enrich your Xperience By Kentico Application Insights data.
https://github.com/brandonhenricks/xperience-community-application-insights
application-insights kentico monitoring xperience-by-kentico
Last synced: 7 months ago
JSON representation
Enrich your Xperience By Kentico Application Insights data.
- Host: GitHub
- URL: https://github.com/brandonhenricks/xperience-community-application-insights
- Owner: brandonhenricks
- License: mit
- Created: 2024-07-18T02:32:25.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-24T11:23:39.000Z (about 1 year ago)
- Last Synced: 2025-02-10T11:07:10.517Z (8 months ago)
- Topics: application-insights, kentico, monitoring, xperience-by-kentico
- Language: C#
- Homepage:
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# XperienceCommunity.ApplicationInsights
Welcome to the **XperienceCommunity.ApplicationInsights** project! This repository provides seamless integration of Microsoft Application Insights with Xperience By Kentico websites. The primary goal is to enrich Request Telemetry with detailed RoutedWebPage data and WebsiteChannel Context data, enabling deeper insights into web application performance and user interactions.
[](LICENSE)
[](https://github.com/brandonhenricks/xperience-community-application-insights/actions)## Table of Contents
- [Introduction](#introduction)
- [Features](#features)
- [Installation](#installation)
- [Configuration](#configuration)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
- [Acknowledgements](#acknowledgements)## Introduction
**XperienceCommunity.ApplicationInsights** enhances your Xperience By Kentico websites by integrating Microsoft Application Insights. This integration allows you to capture and analyze telemetry data, providing valuable insights into your website's performance and user behavior. By enriching Request Telemetry with RoutedWebPage and WebsiteChannel Context data, this project ensures that you have a comprehensive understanding of your site's operational metrics.
## Features
- **Seamless Integration**: Easily integrate Microsoft Application Insights with Xperience By Kentico websites.
- **Enhanced Telemetry**: Enrich Request Telemetry with RoutedWebPage data and WebsiteChannel Context data.
- **In-depth Analysis**: Gain deeper insights into web application performance and user interactions.
- **Extensibility**: Extend and customize telemetry data to suit your specific needs.## Installation
To install **XperienceCommunity.ApplicationInsights**, follow these steps:
1. **NuGet Package**: Install the NuGet package via the Package Manager Console.
```shell
Install-Package XperienceCommunity.ApplicationInsights
```2. **Configure Services**: Add the necessary services to your `Startup.cs` file.
```csharp
public void ConfigureServices(IServiceCollection services)
{
services.AddApplicationInsightsTelemetry();
services.AddXperienceApplicationInsights();
services.AddControllersWithViews(options =>
{
options.Filters.Add(typeof(XperienceApplicationInsightsFilter));
});
}
```## Configuration
Configure the integration by updating your `appsettings.json` file with the necessary Application Insights settings.
```json
{
"ApplicationInsights": {
"InstrumentationKey": "YOUR_INSTRUMENTATION_KEY"
}
}
```## Contributing
Contributions are welcome! Please read our [Contributing Guide](CONTRIBUTING.md) to learn how you can help improve this project.
1. Fork the repository.
2. Create a feature branch.
3. Commit your changes.
4. Push to the branch.
5. Create a new Pull Request.## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.
## Acknowledgements
Special thanks to the community for their continuous support and contributions.
---
Thank you for using **XperienceCommunity.ApplicationInsights**! We hope this project enhances your telemetry data and provides valuable insights into your Xperience By Kentico websites. For any questions or issues, please open an issue on GitHub or reach out to our community.
Happy coding!