Code Monkey home page Code Monkey logo

logreplay's Introduction

客户端日志埋点校验系统

介绍

  • 本系统用于管理手机客户端日志埋点信息,并对埋点日志进行直观有效的测试和验证。

主要功能

  • 管理用户: 包括创建用户,登录,修改角色和密码等。

  • 埋点信息管理: 包括创建、修改页面信息操作项信息操作参数信息等。以上埋点信息均按不同产品类型进行区分,可通过右上角下拉框切换产品类型。

  • 埋点信息校验: 包括实时校验,查询和处理校验结果,以及操作项的校验状态查询等功能。

技术选型

  • 前端框架:  jQuery, Bootstrap3, Sea.js

  • 后端框架:  Spring Boot, Spring Framework, Shiro

  • 数  据  库:  MySQL

开发环境运行方法

  1.下载项目 git clone https://github.com/yangziwen/logreplay.git

  2.初始化数据库

create database logreplay default charset utf8;
grant all on logreplay.* to 'mobile'@localhost identified by 'mobile';
flush privileges;

  此后在logreplay数据库中执行src/main/resources/sql路径下的schema.sql和data.sql中的sql

use logreplay;
set autocommit=0;
source src/main/resources/sql/schema.sql; commit;
source src/main/resources/sql/data.sql; commit;
set autocommit=1;

  3.运行项目 mvn spring-boot:run

  4.访问项目 http://localhost:8075 ( 用户名:admin / 密码: 1234 )

生产环境运行方法

  1.打包项目 mvn clean package

  2.运行项目 java -jar -Dspring.config.location=${your_application_properties_file} logreplay.war或将war包部署到独立的tomcat(8.5)中

logreplay's People

Contributors

dependabot[bot] avatar yangziwen avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.