[go: up one dir, main page]

CN103425750A - A cross-platform and cross-application log collection system and its collection management method - Google Patents

A cross-platform and cross-application log collection system and its collection management method Download PDF

Info

Publication number
CN103425750A
CN103425750A CN2013103118424A CN201310311842A CN103425750A CN 103425750 A CN103425750 A CN 103425750A CN 2013103118424 A CN2013103118424 A CN 2013103118424A CN 201310311842 A CN201310311842 A CN 201310311842A CN 103425750 A CN103425750 A CN 103425750A
Authority
CN
China
Prior art keywords
log
cross
collection
server
log collection
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN2013103118424A
Other languages
Chinese (zh)
Inventor
季统凯
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
G Cloud Technology Co Ltd
Original Assignee
G Cloud Technology Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by G Cloud Technology Co Ltd filed Critical G Cloud Technology Co Ltd
Priority to CN2013103118424A priority Critical patent/CN103425750A/en
Publication of CN103425750A publication Critical patent/CN103425750A/en
Pending legal-status Critical Current

Links

Images

Landscapes

  • Debugging And Monitoring (AREA)

Abstract

本发明涉及信息处理技术领域,尤其是一种跨平台跨应用的日志收集管理方法。本发明包括三个主要实体:日志采集客户端,日志服务器,统一管理页面。日志采集客户端部署于运行在不同操作系统上的各个不同业务系统所在的物理机上,定时采集重要日志数据并发送到日志服务器;日志服务器和统一管理页面部署在另一台能被所有日志采集客户端访问到的物理机器上,提供日志统一管理的服务。本发明屏蔽了底层异构系统的差异性,解决不同应用间日志杂乱无章难以有效管理利用的问题,可以用于日志的收集管理中。

The present invention relates to the field of information processing technology, and in particular to a cross-platform and cross-application log collection and management method. The present invention includes three main entities: a log collection client, a log server, and a unified management page. The log collection client is deployed on a physical machine where different business systems running on different operating systems are located, and regularly collects important log data and sends it to the log server; the log server and the unified management page are deployed on another physical machine that can be accessed by all log collection clients, providing a unified log management service. The present invention shields the differences in underlying heterogeneous systems, solves the problem that logs between different applications are disorganized and difficult to effectively manage and utilize, and can be used in log collection and management.

Description

一种跨平台跨应用的日志收集系统及其收集管理方法A cross-platform and cross-application log collection system and its collection management method

技术领域technical field

本发明涉及信息处理技术领域,尤其是一种跨平台跨应用的日志收集管理方法。The invention relates to the technical field of information processing, in particular to a cross-platform and cross-application log collection and management method.

背景技术Background technique

日志记录模块是每个应用程序,底层操作系统必须的基础模块。在系统运行过程中产生日志文件,可以记录系统的运行状况,用户的各种操作行为。当系统运行缓慢,或者异常退出时;通过查看日志文件,可以快速定位问题、修复缺陷,让系统正常运行。The logging module is a basic module that every application and the underlying operating system must have. Log files are generated during system operation, which can record the operating status of the system and various operation behaviors of users. When the system runs slowly or exits abnormally, by viewing the log files, you can quickly locate the problem, fix the defect, and make the system run normally.

目前日志记录这项功能无论在操作系统层面,还是普通应用程序都已经十分成熟,被做成一个通用的独立模块,例如syslog,log4j等,除支持日志记录外,还支持日志发送到远程的服务器,或直接保存到数据库中。At present, the function of logging is very mature both at the operating system level and in ordinary applications. It is made into a common independent module, such as syslog, log4j, etc. In addition to supporting logging, it also supports sending logs to remote servers. , or save directly to the database.

大致的来说,日志记录分为以下步骤:Roughly speaking, logging is divided into the following steps:

1、调用日志模块的API接口,记录日志1. Call the API interface of the log module to record the log

在应用程序中需要记录日志的地方调用日志模块提供的API接口,就可以实现日志的记录。记录时也可以指定日志存储的格式,关键字段等。In the place where logs need to be recorded in the application program, the API interface provided by the log module can be called to realize the log recording. When recording, you can also specify the log storage format, key fields, etc.

2、将记录的日志持久化,存储到指定地方2. Persist the recorded log and store it in a designated place

日志被记录后就需要保存到某个地方,存储的地方就比较灵活多变,一般情况是直接保存到文件中,也可以保存到数据库里,甚至发送到一台Socket服务器上,让该服务器的业务流程去处理这条日志信息。After the log is recorded, it needs to be saved to a certain place, and the storage place is more flexible and changeable. Generally, it is directly saved to a file, or can be saved to a database, or even sent to a Socket server, so that the server's Business process to process this log information.

3、日志查看3. Log view

日志存储到文件中可以直接通过文本程序打开查看,存储到数据库中可以通过SQL语句去查看。Logs stored in files can be opened and viewed directly through text programs, and logs stored in databases can be viewed through SQL statements.

虽然日志模块已经十分成熟,但仍然存在以下弊端:Although the log module is very mature, there are still the following disadvantages:

一是,使用某种日志技术必须使用该技术提供的API接口,对于新开发的应用这点不是问题;但对于原有应用的话,就需要大刀阔斧地修改程序的源代码,由于日志相关的代码分布范围广,修改起来相当麻烦。First, to use a certain log technology, you must use the API interface provided by the technology, which is not a problem for newly developed applications; but for original applications, it is necessary to drastically modify the source code of the program, due to the distribution of log-related codes The scope is wide, and it is quite troublesome to modify.

二是,收集日志数据时可定制性差,通过只提供为数不多的方式去筛选感兴趣的日志数据,甚至对系统产生的所有日志照单全收地存储到文件、数据库或发送到远程服务器上。日志的数量是巨大的,而有用的日志数据占日志总量百分比不高,不能有效的收集到有用的日志,会大大降低对日志可利率。The second is that the customizability is poor when collecting log data. Only a few ways are provided to filter the log data of interest, and even all the logs generated by the system are stored in files, databases or sent to remote servers. . The number of logs is huge, and the useful log data accounts for a small percentage of the total logs. If useful logs cannot be collected effectively, the profitability of the logs will be greatly reduced.

三是,日志查看,现有分析的机制不完善,往往只是简单的查询到日志产生的来源,时间等简单的信息;不能通过日志数据,提供有效的图表全方位展示系统当前的运行状态,用户操作行为之类更有用的信息。The third is that for log viewing, the existing analysis mechanism is not perfect, and it is often only a simple query to the source of the log, time and other simple information; the log data cannot be used to provide effective charts to fully display the current operating status of the system. More useful information such as operational behavior.

发明内容Contents of the invention

本发明解决的技术问题之一是针对部署在不同操作系统上的不同应用的日志收集管理困难、效率低下的问题,提出一种跨平台跨应用的日志收集系统。One of the technical problems solved by the present invention is to propose a cross-platform and cross-application log collection system aiming at the problems of difficult log collection and management and low efficiency of different applications deployed on different operating systems.

本发明解决的技术问题之二是针对部署在不同操作系统上的不同应用的日志收集管理困难、效率低下的问题,提出一种跨平台跨应用的日志收集管理方法。The second technical problem solved by the present invention is to propose a cross-platform and cross-application log collection and management method for the problems of difficulty and low efficiency in log collection and management of different applications deployed on different operating systems.

本发明解决上述技术问题之一的技术方案是:The technical scheme that the present invention solves one of above-mentioned technical problem is:

包括日志采集客户端、日志服务器和统一管理页面;Including log collection client, log server and unified management page;

所述的日志采集客户端,对分散在不同操作系统不同应用的日志进行采集,可根据自定义日志格式、类型或其他关键字,有选择地采集日志数据;可适用于Windows或者Linux操作系统,邮件服务器或者普通web网站;The log collection client collects logs scattered in different operating systems and different applications, and can selectively collect log data according to custom log formats, types or other keywords; it can be applied to Windows or Linux operating systems, mail server or normal web site;

所述的日志服务器,接收日志采集客户端发送的日志数据,并进行压缩、存储、备份和恢复;同时对重要日志进行报警通知关系人员;The log server receives the log data sent by the log collection client, and compresses, stores, backs up and restores it; and at the same time, alarms the important logs to notify relevant personnel;

所述的统一管理页面,提供与用户交互的界面,在此界面中用户可以查看感兴趣的日志,对日志采集客户端和日志服务器进行系统配置与维护,分析不同应用中终端用户的操作行为等。The unified management page provides an interface for interacting with users. In this interface, users can view logs they are interested in, perform system configuration and maintenance on the log collection client and log server, and analyze the operation behavior of end users in different applications, etc. .

本发明解决上述技术问题之二的技术方案是:The technical scheme that the present invention solves above-mentioned technical problem two is:

具体步骤如下,Specific steps are as follows,

第1步,部署到分散在内部网络中的各台物理机上的日志采集客户端,根据预先定制好的日志模板与采集频率,收集符合采集条件的日志数据,发送到日志服务器;并且对原有应用系统的日志记录接口不需要作任何修改;Step 1, deploy the log collection client on each physical machine scattered in the internal network, collect log data that meets the collection conditions according to the pre-customized log template and collection frequency, and send it to the log server; The logging interface of the application system does not require any modification;

第2步,日志服务器在预先分配的端口上监听各个日志采集客户端传送过来的日志数据,存储到数据库中;根据当前库中的日志数据量自动进行压缩处理,备份到文件中;在需要查看历史数据时,从备份文件解压数据,恢复到数据库中;Step 2: The log server listens to the log data sent by each log collection client on the pre-allocated port and stores it in the database; automatically compresses the log data according to the amount of the current database and backs it up to the file; For historical data, decompress the data from the backup file and restore it to the database;

第3步,用户通过统一管理页面查看日志服务器接收的相关日志信息,通过分析统计模块,以直观可靠的图表展示不同应用目前的运行情况,反映出不同用户操作行为和趋势。In the third step, the user checks the relevant log information received by the log server through the unified management page, and through the analysis and statistics module, displays the current running status of different applications in intuitive and reliable charts, reflecting different user operation behaviors and trends.

本发明不使用API侵入原有代码中,把关注点放在原有系统产生的日志文件中,对日志文件中的纪录逐条分析,过滤,再确定是否收集。本发明提供一种易于扩展的日志模板机制;以模板的形式提供日志的筛选过滤功能,做到完成定制化,如果现有模板无法满足需求,只需开发一个新的模板就能迅速满足当前需求。本发明引入各种web界面,报表展示方式,集合多种分析处理方法,对日志数据进行深入挖掘分析,形象生动展示。The present invention does not use API to intrude into the original code, but focuses on the log files generated by the original system, analyzes and filters the records in the log files one by one, and then determines whether to collect them. The present invention provides an easy-to-extend log template mechanism; it provides log screening and filtering functions in the form of templates to achieve customization. If the existing templates cannot meet the requirements, only a new template can be developed to quickly meet the current needs . The present invention introduces various web interfaces, report display methods, and integrates multiple analysis and processing methods to carry out in-depth mining and analysis on log data, and display vividly.

因此,本发明对不同操作系统,不同应用产生的日志进行快速有效收集,并且能从中分析统计比日志数据本身更有用的信息,如系统运行状况,用户操作行为等。实现了:(1)高维护性,尽可能保持原有系统不需要修动;(2)可扩展性,满足不断变化的日志采集需求;(3)智能化,通过普通的日志数据分析挖掘出更有用信息。完善增强了现有日志模块功能。Therefore, the present invention quickly and effectively collects the logs generated by different operating systems and different applications, and can analyze and count information more useful than the log data itself, such as system operation status, user operation behavior, etc. Achieved: (1) high maintenance, keeping the original system as much as possible without modification; (2) scalability, meeting the ever-changing log collection requirements; (3) intelligence, mining through ordinary log data analysis More useful information. Improve and enhance the function of the existing log module.

附图说明Description of drawings

下面结合附图对本发明进一步说明:Below in conjunction with accompanying drawing, the present invention is further described:

图1是本发明系统框图;Fig. 1 is a system block diagram of the present invention;

图2是本发明方法实施流程图。Fig. 2 is the flow chart of the implementation of the method of the present invention.

具体实施方式Detailed ways

通过对现有日志模块的不足之处进行深入分析,本发明提出了一种跨平台跨应用的日志收集系统及其收集管理方法,如图1所示,所述系统包括:Through in-depth analysis of the deficiencies of the existing log module, the present invention proposes a cross-platform cross-application log collection system and its collection management method, as shown in Figure 1, the system includes:

日志采集客户端:对分散在不同操作系统不同应用的日志进行采集,可根据自定义日志格式,类型或其他关键字,有选择地采集感兴趣的日志数据。不管是Windows或者Linux操作系统,还是邮件服务器或者普通web网站,均可通过这个客户端收集日志。Log collection client: collect logs scattered in different operating systems and applications, and selectively collect interesting log data according to custom log formats, types or other keywords. Whether it is Windows or Linux operating system, mail server or ordinary web site, logs can be collected through this client.

日志服务器:接收日志采集客户端发过来的日志数据,进行压缩、存储、备份和恢复。同时对重要日志进行报警通知关系人员。Log server: Receive the log data sent by the log collection client, and perform compression, storage, backup and recovery. At the same time, alarms are sent to important logs to notify relevant personnel.

统一管理页面:提供与用户交互的界面,在此界面中用户可以查看感兴趣的日志,对前两个实体进行系统配置与维护,分析不同应用中终端用户的操作行为等。Unified management page: Provide an interface for interacting with users. In this interface, users can view the logs they are interested in, perform system configuration and maintenance on the first two entities, and analyze the operation behavior of end users in different applications.

本发明的处理流程如图2,主要包括以下3个实施步骤:Processing flow of the present invention is as Fig. 2, mainly comprises following 3 implementation steps:

第1步,部署到分散在内部网络中的各台物理机上的日志采集客户端,根据预先定制好的日志模板与采集频率,收集符合采集条件的日志数据,发送到日志服务器;并且对原有应用系统的日志记录接口不需要作任何修改。Step 1, deploy the log collection client on each physical machine scattered in the internal network, collect log data that meets the collection conditions according to the pre-customized log template and collection frequency, and send it to the log server; The logging interface of the application system does not need any modification.

第2步,日志服务器在预先分配的端口上监听各个采集客户端传送过来的日志数据,存储到数据库中;根据当前库中的日志数据量自动进行压缩处理,备份到文件中;在需要查看历史数据时,从备份文件解压数据,恢复到数据库中。Step 2: The log server listens to the log data sent by each collection client on the pre-allocated port, and stores it in the database; automatically compresses the log data according to the amount of log data in the current database, and backs them up to the file; when you need to view the history When saving data, decompress the data from the backup file and restore it to the database.

第3步,用户通过统一管理页面查看日志服务器接收的相关日志信息,通过分析统计模块,以直观可靠的图表展示不同应用目前的运行情况,反映出不同用户操作行为和趋势。In the third step, the user checks the relevant log information received by the log server through the unified management page, and through the analysis and statistics module, displays the current running status of different applications in intuitive and reliable charts, reflecting different user operation behaviors and trends.

Claims (2)

1.一种跨平台跨应用的日志收集系统,其特征在于:包括日志采集客户端、日志服务器和统一管理页面;1. A cross-platform cross-application log collection system, characterized in that: comprising a log collection client, a log server and a unified management page; 所述的日志采集客户端,对分散在不同操作系统不同应用的日志进行采集,可根据自定义日志格式、类型或其他关键字,有选择地采集日志数据;可适用于Windows或者Linux操作系统,邮件服务器或者普通web网站;The log collection client collects logs scattered in different operating systems and different applications, and can selectively collect log data according to custom log formats, types or other keywords; it can be applied to Windows or Linux operating systems, mail server or normal web site; 所述的日志服务器,接收日志采集客户端发送的日志数据,并进行压缩、存储、备份和恢复;同时对重要日志进行报警通知关系人员;The log server receives the log data sent by the log collection client, and compresses, stores, backs up and restores it; and at the same time, alarms the important logs to notify relevant personnel; 所述的统一管理页面,提供与用户交互的界面,在此界面中用户可以查看感兴趣的日志,对日志采集客户端和日志服务器进行系统配置与维护,分析不同应用中终端用户的操作行为等。The unified management page provides an interface for interacting with users. In this interface, users can view logs they are interested in, perform system configuration and maintenance on the log collection client and log server, and analyze the operation behavior of end users in different applications, etc. . 2.一种跨平台跨应用的日志收集管理方法,其特征在于:具体步骤如下,2. A cross-platform and cross-application log collection management method, characterized in that: the specific steps are as follows, 第1步,部署到分散在内部网络中的各台物理机上的日志采集客户端,根据预先定制好的日志模板与采集频率,收集符合采集条件的日志数据,发送到日志服务器;并且对原有应用系统的日志记录接口不需要作任何修改;Step 1, deploy the log collection client on each physical machine scattered in the internal network, collect log data that meets the collection conditions according to the pre-customized log template and collection frequency, and send it to the log server; The logging interface of the application system does not require any modification; 第2步,日志服务器在预先分配的端口上监听各个日志采集客户端传送过来的日志数据,存储到数据库中;根据当前库中的日志数据量自动进行压缩处理,备份到文件中;在需要查看历史数据时,从备份文件解压数据,恢复到数据库中;Step 2: The log server listens to the log data sent by each log collection client on the pre-allocated port and stores it in the database; automatically compresses the log data according to the amount of the current database and backs it up to the file; For historical data, decompress the data from the backup file and restore it to the database; 第3步,用户通过统一管理页面查看日志服务器接收的相关日志信息,通过分析统计模块,以直观可靠的图表展示不同应用目前的运行情况,反映出不同用户操作行为和趋势。In the third step, the user checks the relevant log information received by the log server through the unified management page, and through the analysis and statistics module, displays the current running status of different applications in intuitive and reliable charts, reflecting different user operation behaviors and trends.
CN2013103118424A 2013-07-23 2013-07-23 A cross-platform and cross-application log collection system and its collection management method Pending CN103425750A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN2013103118424A CN103425750A (en) 2013-07-23 2013-07-23 A cross-platform and cross-application log collection system and its collection management method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN2013103118424A CN103425750A (en) 2013-07-23 2013-07-23 A cross-platform and cross-application log collection system and its collection management method

Publications (1)

Publication Number Publication Date
CN103425750A true CN103425750A (en) 2013-12-04

Family

ID=49650489

Family Applications (1)

Application Number Title Priority Date Filing Date
CN2013103118424A Pending CN103425750A (en) 2013-07-23 2013-07-23 A cross-platform and cross-application log collection system and its collection management method

Country Status (1)

Country Link
CN (1) CN103425750A (en)

Cited By (32)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103412893A (en) * 2013-07-24 2013-11-27 广东电子工业研究院有限公司 A log collection system and its collection method
CN103824069A (en) * 2014-03-19 2014-05-28 北京邮电大学 Intrusion detection method based on multi-host-log correlation
CN103927252A (en) * 2014-04-18 2014-07-16 安徽科大讯飞信息科技股份有限公司 Cross-component log recording method, device and system
CN104113431A (en) * 2014-02-20 2014-10-22 西安未来国际信息股份有限公司 Distributed log acquisition pipeline design acting on cloud computing data center
CN104539630A (en) * 2015-01-19 2015-04-22 北京网秦天下科技有限公司 Method and device for checking linux journal files at windows client
CN104572416A (en) * 2014-12-29 2015-04-29 北京锐安科技有限公司 Operation and maintenance data processing method and device
CN104717368A (en) * 2015-04-08 2015-06-17 宇龙计算机通信科技(深圳)有限公司 Flow-data updating method, flow-data updating system and terminal
CN104899023A (en) * 2015-05-13 2015-09-09 深圳市金立通信设备有限公司 Data statistic method and device
WO2015139565A1 (en) * 2014-03-17 2015-09-24 Hangzhou H3C Technologies Co., Ltd. Heterogeneous logging system management configuration
CN105099740A (en) * 2014-05-15 2015-11-25 中国移动通信集团浙江有限公司 Log management system and log collection method
CN105141448A (en) * 2015-07-28 2015-12-09 杭州华为数字技术有限公司 Method and device for collecting log
CN105245394A (en) * 2014-07-07 2016-01-13 北京风行在线技术有限公司 Method and equipment for analyzing network access log based on layered approach
CN105471635A (en) * 2015-11-18 2016-04-06 中国建设银行股份有限公司 Method, device and system for processing system logs
CN105550264A (en) * 2015-12-09 2016-05-04 苏州天平先进数字科技有限公司 User journal collecting and processing system and method
CN105550265A (en) * 2015-12-09 2016-05-04 苏州天平先进数字科技有限公司 Quasi-real-time user log collecting and processing method
CN105656706A (en) * 2014-11-14 2016-06-08 北京通达无限科技有限公司 Business data processing method and device
CN106339244A (en) * 2016-08-30 2017-01-18 中国银行股份有限公司 Method and device for realizing statistical information collection
CN106533810A (en) * 2016-12-28 2017-03-22 Tcl集团股份有限公司 Log management methods, terminal and cloud server
CN106657408A (en) * 2017-02-24 2017-05-10 深圳市中博睿存信息技术有限公司 Cross-platform log collecting and processing framework
CN106886483A (en) * 2015-12-16 2017-06-23 阿里巴巴集团控股有限公司 The method and apparatus for providing, obtaining terminal applies daily record
CN107104840A (en) * 2017-05-21 2017-08-29 郑州云海信息技术有限公司 A kind of daily record monitoring method, apparatus and system
CN107347062A (en) * 2017-06-19 2017-11-14 北京开数科技有限公司 A kind of method, electronic equipment and the readable storage medium storing program for executing of daily record data processing
CN107451034A (en) * 2017-08-17 2017-12-08 浪潮软件股份有限公司 A kind of big data cluster log management apparatus, method and system
CN108052452A (en) * 2017-12-29 2018-05-18 北京酷我科技有限公司 The visual optimization method that a kind of daily record is checked and accepted
CN108446346A (en) * 2018-03-07 2018-08-24 鞍钢集团矿业有限公司 A kind of data centralization backup system and method
CN109344034A (en) * 2018-09-29 2019-02-15 郑州云海信息技术有限公司 A method and apparatus for managing logs
CN109471776A (en) * 2018-11-13 2019-03-15 天津津航计算技术研究所 A kind of vxworks operating system log collecting method based on Ethernet
CN109617869A (en) * 2018-12-06 2019-04-12 中铁程科技有限责任公司 Inter-network log real-time collecting method and terminal
CN110188082A (en) * 2019-04-25 2019-08-30 视联动力信息技术股份有限公司 A kind of processing method and processing device of journal file
CN111382042A (en) * 2018-12-29 2020-07-07 上海北塔软件股份有限公司 Log management method based on big data stream type calculation
CN112363905A (en) * 2021-01-13 2021-02-12 北京云真信科技有限公司 Application log collection system
CN114661682A (en) * 2021-12-24 2022-06-24 奇安信科技集团股份有限公司 Log file generation method and device

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1670708A (en) * 2004-03-17 2005-09-21 联想(北京)有限公司 Management method for computer log
CN101594252A (en) * 2009-06-01 2009-12-02 中兴通讯股份有限公司 A kind of massive logs storage management system and method
CN101826993A (en) * 2010-02-04 2010-09-08 蓝盾信息安全技术股份有限公司 Method, system and device for monitoring security event
CN101969386A (en) * 2010-11-09 2011-02-09 道有道(北京)科技有限公司 Log acquisition device and log acquisition method
CN102394771A (en) * 2011-10-26 2012-03-28 广州杰赛科技股份有限公司 Socket type embedded log acquisition system and method

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1670708A (en) * 2004-03-17 2005-09-21 联想(北京)有限公司 Management method for computer log
CN101594252A (en) * 2009-06-01 2009-12-02 中兴通讯股份有限公司 A kind of massive logs storage management system and method
CN101826993A (en) * 2010-02-04 2010-09-08 蓝盾信息安全技术股份有限公司 Method, system and device for monitoring security event
CN101969386A (en) * 2010-11-09 2011-02-09 道有道(北京)科技有限公司 Log acquisition device and log acquisition method
CN102394771A (en) * 2011-10-26 2012-03-28 广州杰赛科技股份有限公司 Socket type embedded log acquisition system and method

Cited By (41)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103412893A (en) * 2013-07-24 2013-11-27 广东电子工业研究院有限公司 A log collection system and its collection method
CN104113431A (en) * 2014-02-20 2014-10-22 西安未来国际信息股份有限公司 Distributed log acquisition pipeline design acting on cloud computing data center
WO2015139565A1 (en) * 2014-03-17 2015-09-24 Hangzhou H3C Technologies Co., Ltd. Heterogeneous logging system management configuration
CN103824069A (en) * 2014-03-19 2014-05-28 北京邮电大学 Intrusion detection method based on multi-host-log correlation
CN103927252A (en) * 2014-04-18 2014-07-16 安徽科大讯飞信息科技股份有限公司 Cross-component log recording method, device and system
CN105099740A (en) * 2014-05-15 2015-11-25 中国移动通信集团浙江有限公司 Log management system and log collection method
CN105245394A (en) * 2014-07-07 2016-01-13 北京风行在线技术有限公司 Method and equipment for analyzing network access log based on layered approach
CN105656706B (en) * 2014-11-14 2020-09-15 北京通达无限科技有限公司 Service data processing method and device
CN105656706A (en) * 2014-11-14 2016-06-08 北京通达无限科技有限公司 Business data processing method and device
CN104572416A (en) * 2014-12-29 2015-04-29 北京锐安科技有限公司 Operation and maintenance data processing method and device
CN104539630A (en) * 2015-01-19 2015-04-22 北京网秦天下科技有限公司 Method and device for checking linux journal files at windows client
CN104717368A (en) * 2015-04-08 2015-06-17 宇龙计算机通信科技(深圳)有限公司 Flow-data updating method, flow-data updating system and terminal
CN104717368B (en) * 2015-04-08 2017-09-08 宇龙计算机通信科技(深圳)有限公司 Data on flows update method, data on flows more new system and terminal
CN104899023A (en) * 2015-05-13 2015-09-09 深圳市金立通信设备有限公司 Data statistic method and device
CN105141448A (en) * 2015-07-28 2015-12-09 杭州华为数字技术有限公司 Method and device for collecting log
CN105141448B (en) * 2015-07-28 2018-10-02 杭州华为数字技术有限公司 A kind of acquisition method and device of daily record
CN105471635B (en) * 2015-11-18 2019-05-31 中国建设银行股份有限公司 A kind of processing method of system log, device and system
CN105471635A (en) * 2015-11-18 2016-04-06 中国建设银行股份有限公司 Method, device and system for processing system logs
CN105550265A (en) * 2015-12-09 2016-05-04 苏州天平先进数字科技有限公司 Quasi-real-time user log collecting and processing method
CN105550264A (en) * 2015-12-09 2016-05-04 苏州天平先进数字科技有限公司 User journal collecting and processing system and method
CN106886483A (en) * 2015-12-16 2017-06-23 阿里巴巴集团控股有限公司 The method and apparatus for providing, obtaining terminal applies daily record
CN106339244A (en) * 2016-08-30 2017-01-18 中国银行股份有限公司 Method and device for realizing statistical information collection
CN106533810A (en) * 2016-12-28 2017-03-22 Tcl集团股份有限公司 Log management methods, terminal and cloud server
CN106657408A (en) * 2017-02-24 2017-05-10 深圳市中博睿存信息技术有限公司 Cross-platform log collecting and processing framework
CN107104840A (en) * 2017-05-21 2017-08-29 郑州云海信息技术有限公司 A kind of daily record monitoring method, apparatus and system
CN107347062A (en) * 2017-06-19 2017-11-14 北京开数科技有限公司 A kind of method, electronic equipment and the readable storage medium storing program for executing of daily record data processing
CN107451034A (en) * 2017-08-17 2017-12-08 浪潮软件股份有限公司 A kind of big data cluster log management apparatus, method and system
CN108052452A (en) * 2017-12-29 2018-05-18 北京酷我科技有限公司 The visual optimization method that a kind of daily record is checked and accepted
CN108446346A (en) * 2018-03-07 2018-08-24 鞍钢集团矿业有限公司 A kind of data centralization backup system and method
CN108446346B (en) * 2018-03-07 2022-04-15 鞍钢集团矿业有限公司 Data centralized backup system and method
CN109344034A (en) * 2018-09-29 2019-02-15 郑州云海信息技术有限公司 A method and apparatus for managing logs
CN109471776A (en) * 2018-11-13 2019-03-15 天津津航计算技术研究所 A kind of vxworks operating system log collecting method based on Ethernet
CN109471776B (en) * 2018-11-13 2022-04-19 天津津航计算技术研究所 Ethernet-based log collection method for VxWorks operating system
CN109617869A (en) * 2018-12-06 2019-04-12 中铁程科技有限责任公司 Inter-network log real-time collecting method and terminal
CN109617869B (en) * 2018-12-06 2021-04-02 中铁程科技有限责任公司 Cross-network log real-time acquisition method and terminal
CN111382042A (en) * 2018-12-29 2020-07-07 上海北塔软件股份有限公司 Log management method based on big data stream type calculation
CN110188082A (en) * 2019-04-25 2019-08-30 视联动力信息技术股份有限公司 A kind of processing method and processing device of journal file
CN112363905A (en) * 2021-01-13 2021-02-12 北京云真信科技有限公司 Application log collection system
CN112363905B (en) * 2021-01-13 2021-08-24 北京云真信科技有限公司 Application log collection system
CN114661682A (en) * 2021-12-24 2022-06-24 奇安信科技集团股份有限公司 Log file generation method and device
CN114661682B (en) * 2021-12-24 2024-12-24 奇安信科技集团股份有限公司 Log file generation method and device

Similar Documents

Publication Publication Date Title
CN103425750A (en) A cross-platform and cross-application log collection system and its collection management method
CN110493348B (en) Intelligent monitoring alarm system based on Internet of things
CN103412893A (en) A log collection system and its collection method
US11868373B2 (en) Method and apparatus for monitoring an in-memory computer system
CN103491354B (en) System operation monitoring and controlling visual platform
US9590880B2 (en) Dynamic collection analysis and reporting of telemetry data
US10534659B2 (en) Policy based dynamic data collection for problem analysis
CN106709003A (en) Hadoop-based mass log data processing method
CN104598495A (en) Hierarchical storage method and system based on distributed file system
CN102411533A (en) Log-management optimizing method for clustered storage system
CN102750326A (en) Log management optimization method of cluster system based on downsizing strategy
CN104883365A (en) Method and device for storing and reading security logs and security control system
CN103488793A (en) User behavior monitoring method based on information retrieval
CN113505048A (en) Unified monitoring platform based on application system portrait and implementation method
CN110598051A (en) Power industry monitoring system, method and device
CN113076229B (en) General enterprise-level information technology monitoring system
CN102708158A (en) PostgreSQL (postgres structured query language) cloud storage filing and scheduling system
CN109542750A (en) Distributed information log system
CN105302697A (en) Running state monitoring method and system of density data model database
CN107635003A (en) System log management method, device and system
CN104935444B (en) Isomery log system management configuration device and method
CN103986790A (en) A method for monitoring and alarming cloud data center infrastructure
CN106951431A (en) A kind of cluster monitoring collecting method
CN113434366A (en) Event processing method and system
CN117914511A (en) Security audit system based on data exchange and log analysis

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
RJ01 Rejection of invention patent application after publication

Application publication date: 20131204

RJ01 Rejection of invention patent application after publication