1、新建一个springboot项目 2.定义个切面类,并指定切入点,获取所需记录信息(如:访问人IP, 访问地址,访问地址名称等) 3.新建数据库 SET FOREIGN_KEY_CHECKS=0; -- Table structure for ds_access_log-- DROP TABLE ...
分类:
编程语言 时间:
2019-09-02 14:15:22
阅读次数:
105
1、有一个日志文件access.log,内容如下09:28:59404200335655409:29:00200200323232109:30:00300200323232109:36:00500200323232109:39:00200200323232109:40:00400200323232109:47:002002003232321...现在需要统计第二列包含200这个字符的总行数,请写出
分类:
数据库 时间:
2019-08-29 17:58:52
阅读次数:
100
nginx日志截取示例日志路径:/usr/local/nginx/logs,截取access.log中2019年3月24日17点00~02之间的日志: 写法1:cataccess.log|awk‘$4>="[24/Mar/2019:17:00:00"&&$4<="[24/Mar/2019:17:02:00"‘ 写法2:cataccess.log|egrep"24/Mar
分类:
其他好文 时间:
2019-08-22 19:05:39
阅读次数:
109
1.安装GoAccess 工具可以直接使用 2.使用goaccess命令将日志生成html文件 --real-time-html 表示实时的显示日志内容 --time-format 时间格式 --date-format 日期格式 --log-format 用于指定日志字符串格式 命令执行完后开启一个 ...
分类:
数据库 时间:
2019-08-20 21:49:03
阅读次数:
106
server { listen 80; server_name localhost; #charset koi8-r; #access_log /var/log/nginx/host.access.log main; location / { root /usr/share/nginx/html; ... ...
分类:
其他好文 时间:
2019-08-16 00:47:18
阅读次数:
93
Nginx日志对于统计、系统服务排错很有用。 Nginx日志主要分为两种:access_log(访问日志)和error_log(错误日志)。 通过访问日志我们可以得到用户的IP地址、浏览器的信息,请求的处理时间等信息。 错误日志记录了访问出错的信息,可以帮助我们定位错误的原因。 因此,将日志好好利用 ...
分类:
其他好文 时间:
2019-08-15 01:08:14
阅读次数:
101
标红的为用的比较多的1.根据访问IP统计UVawk‘{print$1}‘access.log|sort|uniq-c|wc-l2.统计访问URL统计PVawk‘{print$7}‘access.log|wc-l3.查询访问最频繁的URLawk‘{print$7}‘access.log|sort|uniq-c|sort-n-k1-r|more4.查询访问最频繁的IPawk‘{print$1}‘acc
分类:
其他好文 时间:
2019-08-13 18:45:26
阅读次数:
81
import logging logging.basicConfig(filename='access.log',# format='%(asctime)s - %(name)s - %(levelname)s -%(module)s: %(message)s',# datefmt='%Y-%m-% ...
分类:
其他好文 时间:
2019-07-21 20:01:39
阅读次数:
148
#!/bin/bash # apachedata=$(date +%Y%m%d) time=$(date +%Y%m%d%H --date='1 hour ago') cd /logs/apache/ tar -zcvf genius_access_log_$time.tar.gz genius_a ...
分类:
Web程序 时间:
2019-07-12 18:44:57
阅读次数:
148
logs/error_logCustomLog logs/access_log common--默认为以上部分 修改为如下: logs/error_logCustomLog logs/access_log common--默认为以上部分 修改为如下: logs/error_logCustomLog ...
分类:
Web程序 时间:
2019-07-09 22:35:42
阅读次数:
377