├── DB ├── LogStore.db └── Management.db ├── Lib ├── Beetle.Express │ ├── 2.0 │ │ └── Beetle.Express.dll │ └── 4.0 │ │ └── Beetle.Express.dll ├── IKende.com.core.dll ├── Peanut.dll ├── System.Data.SQLite.dll └── protobuf-net.dll ├── Log4Grid.Appender.Test ├── App.config ├── Log4Grid.Appender.Test.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── Log4Grid.Appender ├── Log4Grid.Appender.csproj ├── Log4GridAppender.cs └── Properties │ └── AssemblyInfo.cs ├── Log4Grid.Config ├── InterfaceFactory.cs ├── Log4Grid.Config.csproj ├── Log4GridSection.csd ├── Log4GridSection.csd.config ├── Log4GridSection.csd.cs ├── Log4GridSection.csd.diagram ├── Log4GridSection.csd.xsd └── Properties │ └── AssemblyInfo.cs ├── Log4Grid.DBModels ├── Converts.cs ├── DBModels.Model.cs ├── DBModels.cs ├── Log4Grid.DBModels.csproj └── Properties │ └── AssemblyInfo.cs ├── Log4Grid.DataAccess ├── Log4Grid.DataAccess.csproj ├── LogSearchHandlerBase.cs ├── LogStoreHandlerBase.cs ├── ManagementBase.cs ├── Properties │ └── AssemblyInfo.cs └── UserHandlerBase.cs ├── Log4Grid.Interfaces ├── IAppManagement.cs ├── ILogSearchHandler.cs ├── ILogStoreHandler.cs ├── IUserManager.cs ├── Log4Grid.Interfaces.csproj └── Properties │ └── AssemblyInfo.cs ├── Log4Grid.MSSQL ├── Log4Grid.MSSQL.csproj ├── Log4Grid.MSSQL.csproj.user ├── LogSearchHandler.cs ├── LogStoreHandler.cs ├── Management.cs ├── Properties │ └── AssemblyInfo.cs ├── UserHandler.cs └── log4grid.sql ├── Log4Grid.Management.Web ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Codes │ └── Utils.cs ├── Controllers │ ├── Filters │ │ ├── AjaxSuccess.cs │ │ └── LoginAttribute.cs │ └── HomeController.cs ├── Css │ ├── bootstrap-dialog.min.css │ ├── bootstrap.min.css │ ├── datepicker3.css │ └── website.css ├── Global.asax ├── Global.asax.cs ├── Images │ ├── app.png │ ├── application.png │ ├── icon.png │ ├── log4grid-icon.png │ └── server.png ├── Log4Grid.Management.Web.Publish.xml ├── Log4Grid.Management.Web.csproj ├── Log4Grid.Management.Web.csproj.user ├── Log4Grid.config ├── Models │ ├── HomeLogList.cs │ ├── HomeUsers.cs │ └── IndexView.cs ├── Properties │ └── AssemblyInfo.cs ├── Views │ ├── Controls │ │ └── Pagebar.cshtml │ ├── Default.cshtml │ ├── Home │ │ ├── CreateUser.cshtml │ │ ├── Index.cshtml │ │ ├── LogList.cshtml │ │ ├── Login.cshtml │ │ └── Users.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── js │ ├── bootstrap-datepicker.js │ ├── bootstrap-dialog.min.js │ └── locales │ │ ├── bootstrap-datepicker.ar.js │ │ ├── bootstrap-datepicker.az.js │ │ ├── bootstrap-datepicker.bg.js │ │ ├── bootstrap-datepicker.ca.js │ │ ├── bootstrap-datepicker.cs.js │ │ ├── bootstrap-datepicker.cy.js │ │ ├── bootstrap-datepicker.da.js │ │ ├── bootstrap-datepicker.de.js │ │ ├── bootstrap-datepicker.el.js │ │ ├── bootstrap-datepicker.es.js │ │ ├── bootstrap-datepicker.et.js │ │ ├── bootstrap-datepicker.fa.js │ │ ├── bootstrap-datepicker.fi.js │ │ ├── bootstrap-datepicker.fr.js │ │ ├── bootstrap-datepicker.gl.js │ │ ├── bootstrap-datepicker.he.js │ │ ├── bootstrap-datepicker.hr.js │ │ ├── bootstrap-datepicker.hu.js │ │ ├── bootstrap-datepicker.id.js │ │ ├── bootstrap-datepicker.is.js │ │ ├── bootstrap-datepicker.it.js │ │ ├── bootstrap-datepicker.ja.js │ │ ├── bootstrap-datepicker.ka.js │ │ ├── bootstrap-datepicker.kk.js │ │ ├── bootstrap-datepicker.kr.js │ │ ├── bootstrap-datepicker.lt.js │ │ ├── bootstrap-datepicker.lv.js │ │ ├── bootstrap-datepicker.mk.js │ │ ├── bootstrap-datepicker.ms.js │ │ ├── bootstrap-datepicker.nb.js │ │ ├── bootstrap-datepicker.nl-BE.js │ │ ├── bootstrap-datepicker.nl.js │ │ ├── bootstrap-datepicker.no.js │ │ ├── bootstrap-datepicker.pl.js │ │ ├── bootstrap-datepicker.pt-BR.js │ │ ├── bootstrap-datepicker.pt.js │ │ ├── bootstrap-datepicker.ro.js │ │ ├── bootstrap-datepicker.rs-latin.js │ │ ├── bootstrap-datepicker.rs.js │ │ ├── bootstrap-datepicker.ru.js │ │ ├── bootstrap-datepicker.sk.js │ │ ├── bootstrap-datepicker.sl.js │ │ ├── bootstrap-datepicker.sq.js │ │ ├── bootstrap-datepicker.sv.js │ │ ├── bootstrap-datepicker.sw.js │ │ ├── bootstrap-datepicker.th.js │ │ ├── bootstrap-datepicker.tr.js │ │ ├── bootstrap-datepicker.ua.js │ │ ├── bootstrap-datepicker.vi.js │ │ ├── bootstrap-datepicker.zh-CN.js │ │ └── bootstrap-datepicker.zh-TW.js └── packages.config ├── Log4Grid.Models ├── ApplicationData.cs ├── Log4Grid.Models.csproj ├── LogModel.cs ├── LogType.cs ├── Properties │ └── AssemblyInfo.cs ├── ProtobufPacket.cs ├── StatModel.cs └── User.cs ├── Log4Grid.MySQL ├── Log4Grid.MySQL.csproj ├── LogSearchHandler.cs ├── LogStoreHandler.cs ├── Management.cs ├── MySQLDriver.cs ├── Properties │ └── AssemblyInfo.cs ├── UserHandler.cs └── log4grid.sql ├── Log4Grid.Service.ConsoleApp ├── App.config ├── Log4Grid.Service.ConsoleApp.csproj ├── Log4Grid.config ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── Log4Grid.Service.WinService ├── App.config ├── Log4Grid.Service.WinService.csproj ├── Log4Grid.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Service1.Designer.cs ├── Service1.cs ├── install.bat └── uninstall.bat ├── Log4Grid.Service ├── Log4Grid.Service.csproj ├── Log4Grid.Service.csproj.user ├── LogServer.cs ├── LogServerSection.csd ├── LogServerSection.csd.config ├── LogServerSection.csd.cs ├── LogServerSection.csd.diagram ├── LogServerSection.csd.xsd ├── MessageHandler.cs ├── Properties │ └── AssemblyInfo.cs └── Utils.cs ├── Log4Grid.Sqlite ├── DBModel.Model.cs ├── DBModel.cs ├── Log4Grid.Sqlite.csproj ├── Log4Grid.Sqlite.csproj.user ├── LogSearchHandler.cs ├── LogStoreHandler.cs ├── Management4Sqlite.cs ├── Properties │ └── AssemblyInfo.cs ├── SqliteDriver.cs └── UserHandler.cs ├── Log4Grid.sln ├── Log4Grid.suo ├── README.md └── packages ├── Microsoft.AspNet.Mvc.4.0.20710.0 ├── Microsoft.AspNet.Mvc.4.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.2.0.20710.0 ├── Microsoft.AspNet.Razor.2.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.WebApi.4.0.20710.0 └── Microsoft.AspNet.WebApi.4.0.20710.0.nupkg ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0 ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0 ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg ├── content │ └── web.config.transform └── lib │ └── net40 │ ├── System.Web.Http.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0 ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Http.WebHost.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebPages.2.0.20710.0 ├── Microsoft.AspNet.WebPages.2.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── Microsoft.Net.Http.2.0.20710.0 ├── Microsoft.Net.Http.2.0.20710.0.nupkg └── lib │ ├── net40 │ ├── System.Net.Http.WebRequest.dll │ ├── System.Net.Http.WebRequest.xml │ ├── System.Net.Http.dll │ └── System.Net.Http.xml │ └── net45 │ └── _._ ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── Newtonsoft.Json.4.5.6 ├── Newtonsoft.Json.4.5.6.nupkg └── lib │ └── net40 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml └── repositories.config /DB/LogStore.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beetlex-io/Log4Grid/9ea2a950bf9212d84cb10c60695aac78f618f3bc/DB/LogStore.db -------------------------------------------------------------------------------- /DB/Management.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beetlex-io/Log4Grid/9ea2a950bf9212d84cb10c60695aac78f618f3bc/DB/Management.db -------------------------------------------------------------------------------- /Lib/Beetle.Express/2.0/Beetle.Express.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beetlex-io/Log4Grid/9ea2a950bf9212d84cb10c60695aac78f618f3bc/Lib/Beetle.Express/2.0/Beetle.Express.dll -------------------------------------------------------------------------------- /Lib/Beetle.Express/4.0/Beetle.Express.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beetlex-io/Log4Grid/9ea2a950bf9212d84cb10c60695aac78f618f3bc/Lib/Beetle.Express/4.0/Beetle.Express.dll -------------------------------------------------------------------------------- /Lib/IKende.com.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beetlex-io/Log4Grid/9ea2a950bf9212d84cb10c60695aac78f618f3bc/Lib/IKende.com.core.dll -------------------------------------------------------------------------------- /Lib/Peanut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beetlex-io/Log4Grid/9ea2a950bf9212d84cb10c60695aac78f618f3bc/Lib/Peanut.dll -------------------------------------------------------------------------------- /Lib/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beetlex-io/Log4Grid/9ea2a950bf9212d84cb10c60695aac78f618f3bc/Lib/System.Data.SQLite.dll -------------------------------------------------------------------------------- /Lib/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beetlex-io/Log4Grid/9ea2a950bf9212d84cb10c60695aac78f618f3bc/Lib/protobuf-net.dll -------------------------------------------------------------------------------- /Log4Grid.Appender.Test/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 |