├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── blobs ├── app-insights-telemetrydata.PNG ├── app-insights.PNG ├── asf-application.PNG └── live-metrics.PNG ├── cake ├── build.cake ├── build.ps1 └── tools │ └── packages.config └── src ├── AzureServiceFabric.Demo.Diagnostics.sln ├── AzureServiceFabric.Demo.Diagnostics ├── ApplicationPackageRoot │ └── ApplicationManifest.xml ├── ApplicationParameters │ ├── Cloud.xml │ ├── Local.1Node.xml │ └── Local.5Node.xml ├── AzureServiceFabric.Demo.Diagnostics.sfproj ├── PublishProfiles │ ├── Cloud.xml │ ├── Local.1Node.xml │ └── Local.5Node.xml ├── Scripts │ └── Deploy-FabricApplication.ps1 ├── app.config └── packages.config ├── MyActor.Interfaces ├── IMyActor.cs └── MyActor.Interfaces.csproj ├── MyActor ├── App.config ├── MyActor.cs ├── MyActor.csproj ├── PackageRoot │ ├── Config │ │ └── Settings.xml │ └── ServiceManifest.xml └── Program.cs ├── MyStateless ├── App.config ├── MyStateless.cs ├── MyStateless.csproj ├── PackageRoot │ ├── Config │ │ └── Settings.xml │ └── ServiceManifest.xml ├── Program.cs └── Properties │ └── launchSettings.json ├── ServiceFabric.Logging ├── Actors │ ├── ActorServiceFactory.cs │ └── TimedActor.cs ├── ApplicationInsights │ ├── ApplicationInsightsPropertyFormatter.cs │ ├── LiveStreamProvider.cs │ ├── OperationContextTelemetryInitializer.cs │ └── TelemetryBuilder.cs ├── Extensions │ ├── HttpRequestExtensions.cs │ └── ILoggerExtensions.cs ├── FabricEnvironmentVariable.cs ├── HeaderIdentifiers.cs ├── ILoggerFactoryBuilder.cs ├── LogEventLevelExtensions.cs ├── LoggerFactoryBuilder.cs ├── Middleware │ ├── RequestTrackingMiddleware.cs │ └── RequestTrackingMiddlewareExtensions.cs ├── PropertyMap │ ├── ApiRequestProperties.cs │ ├── DependencyProperties.cs │ ├── MetricProperties.cs │ ├── ServiceContextProperties.cs │ └── SharedProperties.cs ├── Remoting │ ├── IProxyFactoryProvider.cs │ ├── IServiceRemoting.cs │ ├── ProxyFactoryProvider.cs │ └── ServiceRemoting.cs ├── ServiceFabric.Logging.csproj └── ServiceFabricEvent.cs ├── ServiceInterfaces ├── IMyService.cs └── ServiceInterfaces.csproj └── WebApi ├── Controllers └── ValuesController.cs ├── PackageRoot ├── Config │ └── Settings.xml └── ServiceManifest.xml ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── WebApi.cs ├── WebApi.csproj ├── app.config ├── appsettings.Development.json └── appsettings.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/_config.yml -------------------------------------------------------------------------------- /blobs/app-insights-telemetrydata.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/blobs/app-insights-telemetrydata.PNG -------------------------------------------------------------------------------- /blobs/app-insights.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/blobs/app-insights.PNG -------------------------------------------------------------------------------- /blobs/asf-application.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/blobs/asf-application.PNG -------------------------------------------------------------------------------- /blobs/live-metrics.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/blobs/live-metrics.PNG -------------------------------------------------------------------------------- /cake/build.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/cake/build.cake -------------------------------------------------------------------------------- /cake/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/cake/build.ps1 -------------------------------------------------------------------------------- /cake/tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/cake/tools/packages.config -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics.sln -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/ApplicationPackageRoot/ApplicationManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/ApplicationPackageRoot/ApplicationManifest.xml -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/ApplicationParameters/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/ApplicationParameters/Cloud.xml -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/ApplicationParameters/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/ApplicationParameters/Local.1Node.xml -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/ApplicationParameters/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/ApplicationParameters/Local.5Node.xml -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/AzureServiceFabric.Demo.Diagnostics.sfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/AzureServiceFabric.Demo.Diagnostics.sfproj -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/PublishProfiles/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/PublishProfiles/Cloud.xml -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/PublishProfiles/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/PublishProfiles/Local.1Node.xml -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/PublishProfiles/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/PublishProfiles/Local.5Node.xml -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/Scripts/Deploy-FabricApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/Scripts/Deploy-FabricApplication.ps1 -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/app.config -------------------------------------------------------------------------------- /src/AzureServiceFabric.Demo.Diagnostics/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/AzureServiceFabric.Demo.Diagnostics/packages.config -------------------------------------------------------------------------------- /src/MyActor.Interfaces/IMyActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyActor.Interfaces/IMyActor.cs -------------------------------------------------------------------------------- /src/MyActor.Interfaces/MyActor.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyActor.Interfaces/MyActor.Interfaces.csproj -------------------------------------------------------------------------------- /src/MyActor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyActor/App.config -------------------------------------------------------------------------------- /src/MyActor/MyActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyActor/MyActor.cs -------------------------------------------------------------------------------- /src/MyActor/MyActor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyActor/MyActor.csproj -------------------------------------------------------------------------------- /src/MyActor/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyActor/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /src/MyActor/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyActor/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /src/MyActor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyActor/Program.cs -------------------------------------------------------------------------------- /src/MyStateless/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyStateless/App.config -------------------------------------------------------------------------------- /src/MyStateless/MyStateless.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyStateless/MyStateless.cs -------------------------------------------------------------------------------- /src/MyStateless/MyStateless.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyStateless/MyStateless.csproj -------------------------------------------------------------------------------- /src/MyStateless/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyStateless/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /src/MyStateless/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyStateless/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /src/MyStateless/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyStateless/Program.cs -------------------------------------------------------------------------------- /src/MyStateless/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/MyStateless/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/Actors/ActorServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/Actors/ActorServiceFactory.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/Actors/TimedActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/Actors/TimedActor.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/ApplicationInsights/ApplicationInsightsPropertyFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/ApplicationInsights/ApplicationInsightsPropertyFormatter.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/ApplicationInsights/LiveStreamProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/ApplicationInsights/LiveStreamProvider.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/ApplicationInsights/OperationContextTelemetryInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/ApplicationInsights/OperationContextTelemetryInitializer.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/ApplicationInsights/TelemetryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/ApplicationInsights/TelemetryBuilder.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/Extensions/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/Extensions/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/Extensions/ILoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/Extensions/ILoggerExtensions.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/FabricEnvironmentVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/FabricEnvironmentVariable.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/HeaderIdentifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/HeaderIdentifiers.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/ILoggerFactoryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/ILoggerFactoryBuilder.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/LogEventLevelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/LogEventLevelExtensions.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/LoggerFactoryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/LoggerFactoryBuilder.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/Middleware/RequestTrackingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/Middleware/RequestTrackingMiddleware.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/Middleware/RequestTrackingMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/Middleware/RequestTrackingMiddlewareExtensions.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/PropertyMap/ApiRequestProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/PropertyMap/ApiRequestProperties.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/PropertyMap/DependencyProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/PropertyMap/DependencyProperties.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/PropertyMap/MetricProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/PropertyMap/MetricProperties.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/PropertyMap/ServiceContextProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/PropertyMap/ServiceContextProperties.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/PropertyMap/SharedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/PropertyMap/SharedProperties.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/Remoting/IProxyFactoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/Remoting/IProxyFactoryProvider.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/Remoting/IServiceRemoting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/Remoting/IServiceRemoting.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/Remoting/ProxyFactoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/Remoting/ProxyFactoryProvider.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/Remoting/ServiceRemoting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/Remoting/ServiceRemoting.cs -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/ServiceFabric.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/ServiceFabric.Logging.csproj -------------------------------------------------------------------------------- /src/ServiceFabric.Logging/ServiceFabricEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceFabric.Logging/ServiceFabricEvent.cs -------------------------------------------------------------------------------- /src/ServiceInterfaces/IMyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceInterfaces/IMyService.cs -------------------------------------------------------------------------------- /src/ServiceInterfaces/ServiceInterfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/ServiceInterfaces/ServiceInterfaces.csproj -------------------------------------------------------------------------------- /src/WebApi/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/WebApi/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /src/WebApi/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /src/WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/Program.cs -------------------------------------------------------------------------------- /src/WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/WebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/Startup.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/WebApi.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/WebApi.csproj -------------------------------------------------------------------------------- /src/WebApi/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/app.config -------------------------------------------------------------------------------- /src/WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/appsettings.Development.json -------------------------------------------------------------------------------- /src/WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expecho/Azure-Service-Fabric-Logging-And-Monitoring/HEAD/src/WebApi/appsettings.json --------------------------------------------------------------------------------