├── .all-contributorsrc ├── .dockerignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── ---bug-report.md │ ├── ---custom-issue-template.md │ └── --feature-request.md ├── dependabot.yml └── workflows │ └── dotnet-core.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── EasyProfiler.sln ├── GitFlow.md ├── LICENSE ├── README.md ├── SECURITY.md ├── common.props ├── heroku.yml ├── pull_request_template.md ├── samples └── EasyProfiler.Web.Dotnet6 │ ├── Controllers │ └── DefaultController.cs │ ├── Customer.cs │ ├── Docs │ └── README.md │ ├── EasyProfiler.Web.Dotnet6.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SampleDbContext.cs │ └── appsettings.json └── src ├── EasyProfiler.AspNetCore ├── Controllers │ └── EasyProfilerController.cs ├── Dtos │ ├── BaseResponseDto.cs │ └── ProfilerResponseDto.cs └── EasyProfiler.AspNetCore.csproj ├── EasyProfiler.Core ├── Abstractions │ ├── IEasyProfilerBaseService.cs │ └── IEasyProfilerContext.cs ├── Concrete │ └── EasyProfilerBaseManager.cs ├── EasyProfiler.Core.csproj ├── Entities │ ├── BaseEntity.cs │ ├── Profiler.cs │ └── QueryType.cs ├── Exceptions │ └── BaseException.cs ├── Helpers │ ├── AdvancedQuery │ │ └── AdvancedFilterModel.cs │ ├── Extensions │ │ └── CollectionExtensions.cs │ └── Responses │ │ └── SlowestEndpointResponseModel.cs ├── Statics │ └── Values.cs └── easyProfilerSQLServer.png ├── EasyProfiler.CronJob ├── Abstractions │ ├── CronJobService.cs │ └── ICronConfiguration.cs ├── Common │ ├── CronConfiguration.cs │ ├── DbResulationConfiguration.cs │ ├── Resulation.cs │ └── ResulationCronAttribute.cs ├── EasyProfiler.CronJob.csproj ├── Extensions │ └── CronJobServiceExtensions.cs └── Jobs │ └── DbWriterCronJob.cs ├── EasyProfiler.EntityFrameworkCore ├── EasyProfiler.EntityFrameworkCore.csproj ├── Extensions │ └── DbCommandExtensions.cs ├── Generators │ └── GuidGenerator.cs └── ProfilerCoreDbContext.cs ├── EasyProfiler.MariaDb ├── Context │ ├── DesignTimeDbContext.cs │ └── ProfilerMariaDbContext.cs ├── EasyProfiler.MariaDb.csproj ├── Extensions │ ├── Host.cs │ ├── Interception.cs │ └── ServiceCollection.cs ├── Interceptors │ └── EasyProfilerInterceptors.cs ├── Migrations │ ├── 20201027202735_Initial.Designer.cs │ ├── 20201027202735_Initial.cs │ ├── 20201109184436_AddRequestUrl.Designer.cs │ ├── 20201109184436_AddRequestUrl.cs │ ├── 20201125200552_AddQueryType.Designer.cs │ ├── 20201125200552_AddQueryType.cs │ ├── 20210424215337_ChangeDatabaseSchema.Designer.cs │ ├── 20210424215337_ChangeDatabaseSchema.cs │ ├── 20210426222331_AddStartAndEndDate.Designer.cs │ ├── 20210426222331_AddStartAndEndDate.cs │ └── ProfilerDbContextModelSnapshot.cs └── easyProfilerMariaDb.png ├── EasyProfiler.Mongo ├── Configuration │ └── ConnectionModel.cs ├── Context │ └── EasyProfilerMongoDbContext.cs ├── EasyProfiler.Mongo.csproj ├── Entities │ ├── BaseEntity.cs │ └── Profiler.cs ├── Extensions │ ├── ClusterBuilderExtensions.cs │ ├── CommandExtensions.cs │ └── ServiceCollectionExtensions.cs ├── Jobs │ └── MongoWriterCronJob.cs ├── Statics │ └── MongoValues.cs └── easyProfilerMongo.png ├── EasyProfiler.PostgreSQL ├── Context │ ├── DesignTimeDbContext.cs │ └── ProfilerPostgreSqlDbContext.cs ├── EasyProfiler.PostgreSQL.csproj ├── Extensions │ ├── Host.cs │ ├── Interception.cs │ └── ServiceCollection.cs ├── Interceptors │ └── EasyProfilerInterceptors.cs ├── Migrations │ ├── 20201101113017_Initial.Designer.cs │ ├── 20201101113017_Initial.cs │ ├── 20201109183336_AddRequestUrl.Designer.cs │ ├── 20201109183336_AddRequestUrl.cs │ ├── 20201125200354_AddQueryType.Designer.cs │ ├── 20201125200354_AddQueryType.cs │ ├── 20210423145154_ChangeDatabaseSchema.Designer.cs │ ├── 20210423145154_ChangeDatabaseSchema.cs │ ├── 20210426221042_AddStartAndEndDate.Designer.cs │ ├── 20210426221042_AddStartAndEndDate.cs │ └── ProfilerDbContextModelSnapshot.cs └── easyProfilerPostgreSQL.png └── EasyProfiler.SQLServer ├── Context ├── DesignTimeDbContext.cs └── ProfilerSqlServerDbContext.cs ├── EasyProfiler.SQLServer.csproj ├── Extensions ├── Host.cs ├── Interception.cs └── ServiceCollection.cs ├── Interceptors └── EasyProfilerInterceptors.cs ├── Migrations ├── 20201107194601_ChangeDurationDataType.Designer.cs ├── 20201107194601_ChangeDurationDataType.cs ├── 20201109184302_AddRequestUrl.Designer.cs ├── 20201109184302_AddRequestUrl.cs ├── 20201125200702_AddQueryType.Designer.cs ├── 20201125200702_AddQueryType.cs ├── 20210424213928_ChangeDatabaseSchema.Designer.cs ├── 20210424213928_ChangeDatabaseSchema.cs ├── 20210426222352_AddStartAndEndDate.Designer.cs ├── 20210426222352_AddStartAndEndDate.cs └── ProfilerDbContextModelSnapshot.cs └── easyProfilerSQLServer.png /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/.github/ISSUE_TEMPLATE/---bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---custom-issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/.github/ISSUE_TEMPLATE/---custom-issue-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/.github/ISSUE_TEMPLATE/--feature-request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/.github/workflows/dotnet-core.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Contributing of EasyProfiler 2 | To be contiuned... 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/Dockerfile -------------------------------------------------------------------------------- /EasyProfiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/EasyProfiler.sln -------------------------------------------------------------------------------- /GitFlow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/GitFlow.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/SECURITY.md -------------------------------------------------------------------------------- /common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/common.props -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/heroku.yml -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Pull Request Template of EasyProfiler 2 | 3 | To be contiuned... 4 | -------------------------------------------------------------------------------- /samples/EasyProfiler.Web.Dotnet6/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/samples/EasyProfiler.Web.Dotnet6/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /samples/EasyProfiler.Web.Dotnet6/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/samples/EasyProfiler.Web.Dotnet6/Customer.cs -------------------------------------------------------------------------------- /samples/EasyProfiler.Web.Dotnet6/Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/samples/EasyProfiler.Web.Dotnet6/Docs/README.md -------------------------------------------------------------------------------- /samples/EasyProfiler.Web.Dotnet6/EasyProfiler.Web.Dotnet6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/samples/EasyProfiler.Web.Dotnet6/EasyProfiler.Web.Dotnet6.csproj -------------------------------------------------------------------------------- /samples/EasyProfiler.Web.Dotnet6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/samples/EasyProfiler.Web.Dotnet6/Program.cs -------------------------------------------------------------------------------- /samples/EasyProfiler.Web.Dotnet6/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/samples/EasyProfiler.Web.Dotnet6/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/EasyProfiler.Web.Dotnet6/SampleDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/samples/EasyProfiler.Web.Dotnet6/SampleDbContext.cs -------------------------------------------------------------------------------- /samples/EasyProfiler.Web.Dotnet6/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/samples/EasyProfiler.Web.Dotnet6/appsettings.json -------------------------------------------------------------------------------- /src/EasyProfiler.AspNetCore/Controllers/EasyProfilerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.AspNetCore/Controllers/EasyProfilerController.cs -------------------------------------------------------------------------------- /src/EasyProfiler.AspNetCore/Dtos/BaseResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.AspNetCore/Dtos/BaseResponseDto.cs -------------------------------------------------------------------------------- /src/EasyProfiler.AspNetCore/Dtos/ProfilerResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.AspNetCore/Dtos/ProfilerResponseDto.cs -------------------------------------------------------------------------------- /src/EasyProfiler.AspNetCore/EasyProfiler.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.AspNetCore/EasyProfiler.AspNetCore.csproj -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Abstractions/IEasyProfilerBaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Abstractions/IEasyProfilerBaseService.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Abstractions/IEasyProfilerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Abstractions/IEasyProfilerContext.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Concrete/EasyProfilerBaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Concrete/EasyProfilerBaseManager.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/EasyProfiler.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/EasyProfiler.Core.csproj -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Entities/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Entities/BaseEntity.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Entities/Profiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Entities/Profiler.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Entities/QueryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Entities/QueryType.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Exceptions/BaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Exceptions/BaseException.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Helpers/AdvancedQuery/AdvancedFilterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Helpers/AdvancedQuery/AdvancedFilterModel.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Helpers/Extensions/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Helpers/Extensions/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Helpers/Responses/SlowestEndpointResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Helpers/Responses/SlowestEndpointResponseModel.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/Statics/Values.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/Statics/Values.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Core/easyProfilerSQLServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Core/easyProfilerSQLServer.png -------------------------------------------------------------------------------- /src/EasyProfiler.CronJob/Abstractions/CronJobService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.CronJob/Abstractions/CronJobService.cs -------------------------------------------------------------------------------- /src/EasyProfiler.CronJob/Abstractions/ICronConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.CronJob/Abstractions/ICronConfiguration.cs -------------------------------------------------------------------------------- /src/EasyProfiler.CronJob/Common/CronConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.CronJob/Common/CronConfiguration.cs -------------------------------------------------------------------------------- /src/EasyProfiler.CronJob/Common/DbResulationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.CronJob/Common/DbResulationConfiguration.cs -------------------------------------------------------------------------------- /src/EasyProfiler.CronJob/Common/Resulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.CronJob/Common/Resulation.cs -------------------------------------------------------------------------------- /src/EasyProfiler.CronJob/Common/ResulationCronAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.CronJob/Common/ResulationCronAttribute.cs -------------------------------------------------------------------------------- /src/EasyProfiler.CronJob/EasyProfiler.CronJob.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.CronJob/EasyProfiler.CronJob.csproj -------------------------------------------------------------------------------- /src/EasyProfiler.CronJob/Extensions/CronJobServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.CronJob/Extensions/CronJobServiceExtensions.cs -------------------------------------------------------------------------------- /src/EasyProfiler.CronJob/Jobs/DbWriterCronJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.CronJob/Jobs/DbWriterCronJob.cs -------------------------------------------------------------------------------- /src/EasyProfiler.EntityFrameworkCore/EasyProfiler.EntityFrameworkCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.EntityFrameworkCore/EasyProfiler.EntityFrameworkCore.csproj -------------------------------------------------------------------------------- /src/EasyProfiler.EntityFrameworkCore/Extensions/DbCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.EntityFrameworkCore/Extensions/DbCommandExtensions.cs -------------------------------------------------------------------------------- /src/EasyProfiler.EntityFrameworkCore/Generators/GuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.EntityFrameworkCore/Generators/GuidGenerator.cs -------------------------------------------------------------------------------- /src/EasyProfiler.EntityFrameworkCore/ProfilerCoreDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.EntityFrameworkCore/ProfilerCoreDbContext.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Context/DesignTimeDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Context/DesignTimeDbContext.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Context/ProfilerMariaDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Context/ProfilerMariaDbContext.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/EasyProfiler.MariaDb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/EasyProfiler.MariaDb.csproj -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Extensions/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Extensions/Host.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Extensions/Interception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Extensions/Interception.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Extensions/ServiceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Extensions/ServiceCollection.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Interceptors/EasyProfilerInterceptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Interceptors/EasyProfilerInterceptors.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/20201027202735_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/20201027202735_Initial.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/20201027202735_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/20201027202735_Initial.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/20201109184436_AddRequestUrl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/20201109184436_AddRequestUrl.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/20201109184436_AddRequestUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/20201109184436_AddRequestUrl.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/20201125200552_AddQueryType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/20201125200552_AddQueryType.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/20201125200552_AddQueryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/20201125200552_AddQueryType.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/20210424215337_ChangeDatabaseSchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/20210424215337_ChangeDatabaseSchema.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/20210424215337_ChangeDatabaseSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/20210424215337_ChangeDatabaseSchema.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/20210426222331_AddStartAndEndDate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/20210426222331_AddStartAndEndDate.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/20210426222331_AddStartAndEndDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/20210426222331_AddStartAndEndDate.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/Migrations/ProfilerDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/Migrations/ProfilerDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/EasyProfiler.MariaDb/easyProfilerMariaDb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.MariaDb/easyProfilerMariaDb.png -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/Configuration/ConnectionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/Configuration/ConnectionModel.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/Context/EasyProfilerMongoDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/Context/EasyProfilerMongoDbContext.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/EasyProfiler.Mongo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/EasyProfiler.Mongo.csproj -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/Entities/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/Entities/BaseEntity.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/Entities/Profiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/Entities/Profiler.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/Extensions/ClusterBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/Extensions/ClusterBuilderExtensions.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/Extensions/CommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/Extensions/CommandExtensions.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/Jobs/MongoWriterCronJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/Jobs/MongoWriterCronJob.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/Statics/MongoValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/Statics/MongoValues.cs -------------------------------------------------------------------------------- /src/EasyProfiler.Mongo/easyProfilerMongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.Mongo/easyProfilerMongo.png -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Context/DesignTimeDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Context/DesignTimeDbContext.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Context/ProfilerPostgreSqlDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Context/ProfilerPostgreSqlDbContext.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/EasyProfiler.PostgreSQL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/EasyProfiler.PostgreSQL.csproj -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Extensions/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Extensions/Host.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Extensions/Interception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Extensions/Interception.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Extensions/ServiceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Extensions/ServiceCollection.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Interceptors/EasyProfilerInterceptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Interceptors/EasyProfilerInterceptors.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/20201101113017_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/20201101113017_Initial.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/20201101113017_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/20201101113017_Initial.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/20201109183336_AddRequestUrl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/20201109183336_AddRequestUrl.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/20201109183336_AddRequestUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/20201109183336_AddRequestUrl.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/20201125200354_AddQueryType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/20201125200354_AddQueryType.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/20201125200354_AddQueryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/20201125200354_AddQueryType.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/20210423145154_ChangeDatabaseSchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/20210423145154_ChangeDatabaseSchema.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/20210423145154_ChangeDatabaseSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/20210423145154_ChangeDatabaseSchema.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/20210426221042_AddStartAndEndDate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/20210426221042_AddStartAndEndDate.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/20210426221042_AddStartAndEndDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/20210426221042_AddStartAndEndDate.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/Migrations/ProfilerDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/Migrations/ProfilerDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/EasyProfiler.PostgreSQL/easyProfilerPostgreSQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.PostgreSQL/easyProfilerPostgreSQL.png -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Context/DesignTimeDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Context/DesignTimeDbContext.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Context/ProfilerSqlServerDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Context/ProfilerSqlServerDbContext.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/EasyProfiler.SQLServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/EasyProfiler.SQLServer.csproj -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Extensions/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Extensions/Host.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Extensions/Interception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Extensions/Interception.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Extensions/ServiceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Extensions/ServiceCollection.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Interceptors/EasyProfilerInterceptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Interceptors/EasyProfilerInterceptors.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/20201107194601_ChangeDurationDataType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/20201107194601_ChangeDurationDataType.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/20201107194601_ChangeDurationDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/20201107194601_ChangeDurationDataType.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/20201109184302_AddRequestUrl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/20201109184302_AddRequestUrl.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/20201109184302_AddRequestUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/20201109184302_AddRequestUrl.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/20201125200702_AddQueryType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/20201125200702_AddQueryType.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/20201125200702_AddQueryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/20201125200702_AddQueryType.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/20210424213928_ChangeDatabaseSchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/20210424213928_ChangeDatabaseSchema.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/20210424213928_ChangeDatabaseSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/20210424213928_ChangeDatabaseSchema.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/20210426222352_AddStartAndEndDate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/20210426222352_AddStartAndEndDate.Designer.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/20210426222352_AddStartAndEndDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/20210426222352_AddStartAndEndDate.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/Migrations/ProfilerDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/Migrations/ProfilerDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/EasyProfiler.SQLServer/easyProfilerSQLServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furkandeveloper/EasyProfiler/HEAD/src/EasyProfiler.SQLServer/easyProfilerSQLServer.png --------------------------------------------------------------------------------