CN109753488B - HTTP-based server operation log management method and system - Google Patents

HTTP-based server operation log management method and system Download PDF

Info

Publication number
CN109753488B
CN109753488B CN201910008938.0A CN201910008938A CN109753488B CN 109753488 B CN109753488 B CN 109753488B CN 201910008938 A CN201910008938 A CN 201910008938A CN 109753488 B CN109753488 B CN 109753488B
Authority
CN
China
Prior art keywords
log
log file
file
record
working record
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.)
Active
Application number
CN201910008938.0A
Other languages
Chinese (zh)
Other versions
CN109753488A (en
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.)
Fiberhome Supermicro Information And Technology Co ltd
Fiberhome Telecommunication Technologies Co Ltd
Original Assignee
Fiberhome Supermicro Information And Technology Co ltd
Fiberhome Telecommunication Technologies 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 Fiberhome Supermicro Information And Technology Co ltd, Fiberhome Telecommunication Technologies Co Ltd filed Critical Fiberhome Supermicro Information And Technology Co ltd
Priority to CN201910008938.0A priority Critical patent/CN109753488B/en
Publication of CN109753488A publication Critical patent/CN109753488A/en
Application granted granted Critical
Publication of CN109753488B publication Critical patent/CN109753488B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Landscapes

  • Debugging And Monitoring (AREA)

Abstract

The invention discloses a server operation log management method and system based on HTTP, relating to the technical field of operation log management, wherein the method comprises a log writing process, and the log writing process comprises the following steps: locking the log file, and only allowing the current user to write in the log file; judging whether the size of the log file reaches a file size set value or not, and if so, covering the earliest working record with the latest working record; otherwise, continuously adding the latest working record in the log file; and unlocking the log file. The invention carries out detailed log recording on the log file, avoids interference of other users and ensures the smooth operation of log management.

Description

HTTP-based server operation log management method and system
Technical Field
The invention relates to the technical field of operation log management, in particular to a method and a system for managing a server operation log based on HTTP.
Background
The log system is an effective technical means for monitoring the running state of the server, common log systems are generally a system running log and a system operation log, the system running log pays attention to information generated in the execution process of software layer codes, the system operation log pays attention to system safety and operation layer information, all previous operations on the server can be known through analysis and processing of the operation log, and meanwhile when the server has problems, particularly the safety problem, whether the operation is caused by illegal operations can be judged through stored operation traces;
currently, most server systems do not perform detailed log recording on the operation of the whole server, so that effective records and evidences are lacked when problems occur;
therefore, there is a need for a log management method, in which a server records in detail an operation performed by a user.
Disclosure of Invention
Aiming at the defects in the prior art, the invention aims to provide a server operation log management method and system based on HTTP, which are used for recording logs in detail, avoiding the interference of other users and ensuring the smooth operation of log management.
In order to achieve the above purposes, the technical scheme adopted by the invention is as follows:
a server operation log management method based on HTTP comprises a log writing process and a log reading process, wherein the log writing process comprises the following steps:
locking the log file, and only allowing the current user to write in the log file;
judging whether the size of the log file reaches a file size set value or not, and if so, covering the earliest working record with the latest working record; otherwise, continuously adding the latest working record in the log file;
unlocking the log file;
the log reading process comprises the steps of:
opening the log file in a read-only mode, and calculating the total number of records in the log file and the percentage of the total number of current records in the set file size according to the size of each working record;
establishing a starting index and a terminating index, determining the range of the work records to be checked in the log file, acquiring the total number of the work records to be checked, and sequentially carrying out readable formatting on each work record to be checked;
extracting the readable and formatted working record to be viewed in a json form, and returning HTTP response to the web browser for processing and displaying; wherein the content of the first and second substances,
when the log file is opened, the existing content in the log file is not cleared;
and after the recording mode is selected, when the latest working record is written, the latest working record is allowed to be used for overwriting the oldest working record.
On the basis of the technical scheme, the latest working record comprises at least one of user login and logout, network card setting, server power control, alarm configuration and configuration file updating.
On the basis of the technical scheme, the establishing of the starting index and the ending index comprises the following steps: when the initial index value issued by the application program is less than 0, correcting the initial index value to 0; when the termination index value is larger than the total number of the current records, the termination index value is corrected to be the total number of the current records; and when the starting index value is greater than the ending index value or the ending index value is less than 0 or the starting index value is greater than the total number of the current records, the operation is exited.
The invention also provides a server operation log management system based on HTTP, the system comprises a log writing unit and a log reading unit, the log writing unit comprises:
a log file locking module to: locking the log file, and only allowing the current user to write in the log file;
a write module to: judging whether the size of the log file reaches a file size set value or not, and if so, covering the earliest working record with the latest working record; otherwise, continuously adding the latest working record in the log file;
a log file unlocking module to: unlocking the log file and closing the log file;
the log reading unit includes:
a computing module to: opening the log file in a read-only mode, and calculating the total number of records in the log file and the percentage of the total number of current records in the set file size according to the size of each working record;
an index building module to: establishing a starting index and a terminating index;
an acquisition module to: determining the range of the work records to be checked in the log file, and acquiring the total number of the work records to be checked;
a readable formatting module to: sequentially carrying out readable formatting on each work record to be checked;
an extraction module to: and extracting the readable and formatted working record to be viewed in a json form, and returning an HTTP response to the web browser for processing and displaying.
On the basis of the above technical solution, the log writing unit further includes a log file protection module, which is configured to:
when the log file is opened, the content already in the log file is not cleared.
On the basis of the technical scheme, the latest working record comprises at least one of user login and logout, network card setting, server power control, alarm configuration and configuration file updating.
On the basis of the above technical solution, the index establishing module is specifically configured to: when the initial index value issued by the application program is less than 0, correcting the initial index value to 0; and when the termination index value is larger than the total number of the current records, correcting the termination index value into the total number of the current records.
Compared with the prior art, the invention has the advantages that:
(1) the invention carries out detailed log recording on the log file, avoids interference of other users and ensures the smooth operation of log management.
(2) The invention avoids changing the log file in a read-only mode, supports multi-user simultaneous reading, can provide convenience for the lookup work by establishing the initial index and the termination index, and improves the working efficiency.
(3) The invention describes the relevant operation records by automatically converting the corresponding language according to the language format of the BMC Web interface, is convenient to expand and is beneficial to internationalization.
Drawings
Fig. 1 is a flowchart of a method for managing an HTTP-based server oplog according to embodiment 1 of the present invention;
fig. 2 is a step diagram of a log reading process of the HTTP-based server operation log management method according to embodiment 3 of the present invention;
fig. 3 is a block diagram of a log writing unit of the HTTP-based server operation log management system according to embodiment 5 of the present invention;
fig. 4 is a block diagram of a log writing unit of the HTTP-based server operation log management system according to embodiment 6 of the present invention;
fig. 5 is a block diagram of a log reading unit of the HTTP-based server operation log management system in embodiment 7 of the present invention;
in the figure: 1. a log writing unit; 10. a log file locking module; 11. a write module; 12. a log file unlocking module; 13. a log file protection module; 2. a log reading unit; 20. a calculation module; 21. an index establishing module; 22. an acquisition module; 23. a readable formatting module; 24. an extraction module; 25. and an extraction instruction acquisition module.
Detailed Description
Embodiments of the present invention will be described in further detail below with reference to the accompanying drawings.
Example 1
Referring to fig. 1, an embodiment 1 of the present invention provides a method for managing a server operation log based on HTTP, where the method includes a log writing process, where the log writing process includes the following steps:
a1, locking the log file, and only allowing the current user to write the log file;
a2, obtaining the size of a log file, judging whether the size of the log file reaches a set value of the file size, if so, setting a first recording mode, wherein the first recording mode is to use the latest working record to cover the earliest working record, and if not, setting a second recording mode, wherein the second recording mode is to continue to add the latest working record in the log file;
a3, unlocking the log file;
a4, closing the log file.
In the present invention, before step a1, there is also a start step a 0: after an application program triggers log records, identifying whether log files exist or not, namely, opening the log files if the log files exist, and if the log files do not exist, creating the log files;
after an application program triggers log recording, whether a log file exists or not is firstly identified, if the log file does not exist, the log file for recording the working condition of the application program needs to be created, if the log file exists, the log file is opened, and it needs to be noted that the log file can be stored in a nonvolatile Flash, and when the log file is opened, the log file is opened in an additional mode, namely the existing content of the log file is not cleared, but the content is newly added after the existing content of the log file;
in step a1, in order to ensure that the log file is not modified by multiple users when it is opened, the log file is locked, so that the log file is only allowed to be written by one user each time, and other users need to wait until the log file is unlocked to rewrite the log file;
in step a2, obtaining the size of the log file, and determining whether the size of the log file reaches a file size set value, where the file size set value is a preset value, and if the file size set value reaches the set value, setting a first entry mode, where the first entry mode is to use the latest work record to cover the earliest work record, and if the file size set value is not reached, setting a second entry mode, where the second entry mode is to continue to add the latest work record in the log file;
then in steps A3 and A4, after the latest work record is recorded in the log file, the log file is unlocked so as to be operated later, and after the operation is finished, the log file is closed;
the method locks the log file, selects an entry mode according to the size of the log file, then enters the current server operation instruction into the log file, unlocks the log file, and finally closes the log file.
The invention carries out detailed log recording on the log file, avoids interference of other users and ensures the smooth operation of log management.
When necessary, the invention can also automatically convert the corresponding language according to the language format of the BMC Web interface to describe the relevant operation record, is convenient to expand and is beneficial to internationalization.
Example 2
An embodiment 2 of the present invention provides a method for managing a server operation log based on HTTP, where on the basis of embodiment 1, the log writing process further includes the following steps:
when the log file is opened, the existing content in the log file is not cleared;
therefore, the existing content of the log file is prevented from being modified, the original content is prevented from being changed, and the log management is prevented from being influenced;
here, it is only when the log file is opened that the content already existing in the log file is not cleared, and when the latest job record is written after the entry method is selected, the oldest job record is still allowed to be overwritten with the latest job record.
In this embodiment, the latest work record includes at least one of user login and logout, network card setting, server power control, alarm configuration, and configuration file update.
Example 3
Referring to fig. 2, an embodiment of the present invention provides a method for managing a server operation log based on HTTP, where on the basis of embodiment 1, the method further includes a log reading process, and the log reading process includes the following steps:
b1, opening the log file in a read-only mode, and calculating the total number of records in the log file and the percentage of the total number of current records in the set file size according to the size of each working record;
b2, establishing a start index and an end index, determining the range of the work records to be viewed in the log file, acquiring the total number of the work records to be viewed, and sequentially carrying out readable formatting on each work record to be viewed;
b3, extracting the readable formatted working record to be viewed in a json form, and returning an HTTP response to the web browser end for processing and displaying;
b4, closing the log file;
in the present invention, before step B1, there is also a start step B0: acquiring a log file extracting instruction, and starting the operation of extracting the log file after receiving the log file extracting instruction;
in step B1, the log file is opened in a read-only manner, thereby avoiding modification of the contents of the log file;
because a large amount of data may exist in the log file, step B2 needs to be performed to establish a start index and an end index, so that after determining the range of the work record to be read in the file according to the start index and the end index, the records of the total record size to be checked are read, and readable formatting operation is performed on each work record in sequence;
and then, storing the readable formatted working record in a json form, returning a response to the web browser end through HTTP for processing and displaying, and closing the log file after consulting.
It should be noted that the json format is more convenient and more efficient in parsing than other formats.
The embodiment is a log reading process, changes to the log file are avoided in a read-only mode, simultaneous reading of multiple users is supported, convenience can be provided for the lookup work by establishing the initial index and the termination index, and the work efficiency is improved.
It should be noted that, when the start index and the end index are established, the range of the work record to be viewed in the log file is determined, the total number of the work records to be viewed is obtained, and each work record to be viewed is subjected to readable formatting in sequence:
the operation records are sequentially subjected to readable formatting from the last record to the first record extracted according to the reverse order, so that the operation records executed later can be displayed on the web firstly;
in addition, only English and Chinese are currently supported according to the language format of the current WEB interface, and the recorded content can be automatically converted into the language format corresponding to the WEB interface according to the newly added language required subsequently.
Example 4
The embodiment of the invention provides a server operation log management method based on HTTP, and on the basis of the embodiment 3, in the step B3: when the initial index value issued by the application program is less than 0, correcting the initial index value to 0; when the ending index value is larger than the total number of the current records, the ending index value is corrected to the total number of the current records, and parameters issued by an application program are calculated and corrected to obtain a starting index and an ending index; and when the starting index value is greater than the ending index value or the ending index value is less than 0 or the starting index value is greater than the total number of the current records, the operation is exited.
Example 5
As shown in fig. 3, an embodiment of the present invention provides a system for managing a server operation log based on HTTP, where the system includes a log writing unit 1, and the log writing unit 1 includes:
a log file locking module 10 for: locking the log file, and only allowing one user to write the log file each time;
a write module 11 for: judging whether the size of the log file reaches a file size set value or not, and if so, covering the earliest working record with the latest working record; otherwise, continuously adding the latest working record in the log file;
a log file unlocking module 12 for: unlocking the log file;
in this embodiment, the log writing unit 1 further includes a log file triggering module 13, configured to perform a log storage operation starting step, and configured to identify whether a log file exists after an application triggers log recording, where the log file exists, that is, the log file is opened, and if the log file does not exist, create the log file;
in the invention, after an application program triggers log recording, whether a log file exists or not is firstly identified, if the log file does not exist, the log file for recording the working condition of the application program needs to be created, if the log file exists, the log file is opened, and the log file can be stored in a nonvolatile Flash, and is opened in an additional mode when the log file is opened, namely the existing content of the log file is not removed, but the content is newly added after the existing content of the log file;
in order to ensure that the log file cannot be modified by a plurality of users when the log file is opened, the log file is locked, so that the log file only allows one user to write in each time, and other users can rewrite the log file after the log file is unlocked;
acquiring the size of a log file, judging whether the size of the log file reaches a file size set value or not, if so, setting a first recording mode, wherein the first recording mode is to cover the earliest working record by using the latest working record, and if not, setting a second recording mode, wherein the second recording mode is to continuously add the latest working record in the log file;
then recording the current server operation command in a log file;
the method locks the log file, selects an entry mode according to the size of the log file, then enters the current server operation instruction into the log file, unlocks the log file, and finally closes the log file.
The invention carries out detailed log recording on the log file, avoids interference of other users and ensures the smooth operation of log management.
Example 6
As shown in fig. 4, an embodiment of the present invention provides a server operation log management system based on HTTP, and on the basis of embodiment 5:
the log writing unit 1 further includes a log file protection module 13, which is configured to not clear content already existing in the log file when the log file is opened;
therefore, the existing content of the log file is prevented from being modified, the original content is prevented from being changed, and the log management is prevented from being influenced;
here, it is only when the log file is opened that the content already existing in the log file is not cleared, and when the latest job record is written after the entry method is selected, the oldest job record is still allowed to be overwritten with the latest job record.
The latest working record comprises at least one of user login and logout, network card setting, server power control, alarm configuration and configuration file updating.
Example 7
As shown in fig. 5, an embodiment of the present invention provides a server operation log management system based on HTTP, where on the basis of embodiment 5, the system further includes a log reading unit 2, and the log reading unit 2 includes:
a calculation module 20 for: opening the log file in a read-only mode, and calculating the total number of records in the log file and the percentage of the total number of current records in the set file size according to the size of each working record;
an index building module 21 for: establishing a starting index and a terminating index;
an acquisition module 22 for: determining the range of the work records to be checked in the log file, and acquiring the total number of the work records to be checked;
a readable formatting module 23 for: sequentially carrying out readable formatting on each work record to be checked;
an extraction module 24 for: extracting the readable and formatted working record to be viewed in a json form, and returning a response to the web browser end through HTTP for processing and displaying;
in the invention, the system also comprises an extraction instruction acquisition module 25, which is used for acquiring an instruction for extracting the log file and starting the operation of extracting the log file after receiving the instruction for extracting the log file;
the log file is opened in a read-only mode, so that the content of the log file is prevented from being modified;
because a large amount of data may exist in the log file, an index establishing module is required to be recorded to establish a starting index and an ending index, so that the range of the working record to be read in the file is determined according to the starting index and the ending index, then the record with the size of the total record to be checked is read, and each working record is subjected to readable formatting operation in sequence;
and then, storing the readable formatted working record in a json form, returning a response to the web browser end through HTTP for processing and displaying, and closing the log file after consulting.
It should be noted that the json format is more convenient and more efficient in parsing than other formats.
The embodiment is a log reading process, changes to the log file are avoided in a read-only mode, simultaneous reading of multiple users is supported, convenience can be provided for the lookup work by establishing the initial index and the termination index, and the work efficiency is improved.
It should be noted that, when the start index and the end index are established, the range of the work record to be viewed in the log file is determined, the total number of the work records to be viewed is obtained, and each work record to be viewed is subjected to readable formatting in sequence:
the operation records are sequentially subjected to readable formatting from the last record to the first record extracted according to the reverse order, so that the operation records executed later can be displayed on the web firstly;
in addition, only English and Chinese are currently supported according to the language format of the current WEB interface, and the recorded content can be automatically converted into the language format corresponding to the WEB interface according to the newly added language required subsequently.
Example 8
The embodiment of the invention provides a server operation log management system based on HTTP, which is based on embodiment 7:
the index establishing module 21 is specifically configured to: when the initial index value issued by the application program is less than 0, correcting the initial index value to 0; when the termination index value is larger than the total number of the current records, the termination index value is corrected to be the total number of the current records; and when the starting index value is greater than the ending index value or the ending index value is less than 0 or the starting index value is greater than the total number of the current records, the operation is exited.
The present invention is not limited to the above-mentioned preferred embodiments, and any other products in various forms can be obtained by anyone with the teaching of the present invention, but any changes in the shape or structure thereof, which have the same or similar technical solutions as the present invention, are within the protection scope.

Claims (6)

1. A server operation log management method based on HTTP is characterized by comprising a log writing process and a log reading process, wherein the log writing process comprises the following steps:
locking the log file, and only allowing the current user to write in the log file;
judging whether the size of the log file reaches a file size set value or not, and if so, covering the earliest working record with the latest working record; otherwise, continuously adding the latest working record in the log file;
unlocking the log file;
the log reading process comprises the steps of:
opening the log file in a read-only mode, and calculating the total number of records in the log file and the percentage of the total number of current records in the set file size according to the size of each working record;
establishing a starting index and a terminating index, determining the range of the work records to be checked in the log file, acquiring the total number of the work records to be checked, and sequentially carrying out readable formatting on each work record to be checked;
extracting the readable and formatted working record to be viewed in a json form, and returning HTTP response to the web browser for processing and displaying; wherein the content of the first and second substances,
when the log file is opened, the existing content in the log file is not cleared;
and after the recording mode is selected, when the latest working record is written, the latest working record is allowed to be used for overwriting the oldest working record.
2. The HTTP-based server oplog management method of claim 1, wherein: the latest working record comprises at least one of user login and logout, network card setting, server power control, alarm configuration and configuration file updating.
3. The HTTP-based server oplog management method of claim 1, wherein the establishing a start index and a stop index comprises the steps of: when the initial index value issued by the application program is less than 0, correcting the initial index value to 0; when the termination index value is larger than the total number of the current records, the termination index value is corrected to be the total number of the current records; and when the starting index value is greater than the ending index value or the ending index value is less than 0 or the starting index value is greater than the total number of the current records, the operation is exited.
4. An HTTP-based server operation log management system, characterized in that the system comprises a log writing unit and a log reading unit, the log writing unit comprises:
a log file locking module to: locking the log file, and only allowing the current user to write in the log file;
a write module to: judging whether the size of the log file reaches a file size set value or not, and if so, covering the earliest working record with the latest working record; otherwise, continuously adding the latest working record in the log file;
a log file unlocking module to: unlocking the log file and closing the log file;
the log writing unit further comprises a log file protection module for:
when the log file is opened, the existing content in the log file is not cleared;
after the input mode is selected, when the latest working record is written, the earliest working record is allowed to be covered by the latest working record;
the log reading unit includes:
a computing module to: opening the log file in a read-only mode, and calculating the total number of records in the log file and the percentage of the total number of current records in the set file size according to the size of each working record;
an index building module to: establishing a starting index and a terminating index;
an acquisition module to: determining the range of the work records to be checked in the log file, and acquiring the total number of the work records to be checked;
a readable formatting module to: sequentially carrying out readable formatting on each work record to be checked;
an extraction module to: and extracting the readable and formatted working record to be viewed in a json form, and returning an HTTP response to the web browser for processing and displaying.
5. The HTTP-based server oplog management system of claim 4, wherein: the latest working record comprises at least one of user login and logout, network card setting, server power control, alarm configuration and configuration file updating.
6. The HTTP-based server oplog management system of claim 4, wherein the index creation module is specifically configured to: when the initial index value issued by the application program is less than 0, correcting the initial index value to 0; and when the termination index value is larger than the total number of the current records, correcting the termination index value into the total number of the current records.
CN201910008938.0A 2019-01-04 2019-01-04 HTTP-based server operation log management method and system Active CN109753488B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910008938.0A CN109753488B (en) 2019-01-04 2019-01-04 HTTP-based server operation log management method and system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910008938.0A CN109753488B (en) 2019-01-04 2019-01-04 HTTP-based server operation log management method and system

Publications (2)

Publication Number Publication Date
CN109753488A CN109753488A (en) 2019-05-14
CN109753488B true CN109753488B (en) 2021-03-23

Family

ID=66405235

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910008938.0A Active CN109753488B (en) 2019-01-04 2019-01-04 HTTP-based server operation log management method and system

Country Status (1)

Country Link
CN (1) CN109753488B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111858536A (en) * 2020-08-03 2020-10-30 聚好看科技股份有限公司 Service log transmission method and terminal

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1159649C (en) * 2000-12-28 2004-07-28 中兴通讯股份有限公司 Automatic circular daily record information storing method and system
US7996680B2 (en) * 2006-09-27 2011-08-09 Hewlett-Packard Development Company, L.P. Secure data log management
CN102981944B (en) * 2012-12-12 2016-04-20 青岛海信宽带多媒体技术有限公司 A kind of log storing method based on file system
CN104394145B (en) * 2014-11-25 2015-09-23 飞天诚信科技股份有限公司 A kind of dynamic token and method of work thereof with journal function
CN108038207A (en) * 2017-12-15 2018-05-15 暴风集团股份有限公司 A kind of daily record data processing system, method and server

Also Published As

Publication number Publication date
CN109753488A (en) 2019-05-14

Similar Documents

Publication Publication Date Title
CN110569214B (en) Index construction method and device for log file and electronic equipment
CN109936621B (en) Information security multi-page message pushing method, device, equipment and storage medium
CN111125598A (en) Intelligent data query method, device, equipment and storage medium
CN109347698A (en) User terminal operations order and echo message monitoring method under a kind of linux system
CN112559372B (en) Method, system and storage medium for generating interface test case
CN103109264A (en) Creating a configuration file template
CN112632960A (en) Log analysis method and system based on dynamic field template
WO2021169280A1 (en) Virtual disk check code generation method, apparatus and device, and storage medium
CN109753488B (en) HTTP-based server operation log management method and system
CN111159497A (en) Regular expression generation method and regular expression-based data extraction method
CN102073553A (en) File recovery method and device
EP2645238A1 (en) File-processing device for executing a pre-processed file, and recording medium for executing a related file-processing method in a computer
CN111143434A (en) Intelligent data checking method, device, equipment and storage medium
US6651033B2 (en) Automatic workflow monitoring/control method and apparatus
CN110650137A (en) Coal mine network abnormal behavior early warning method, system, equipment and readable storage medium
CN104516953B (en) A kind of black box subsystem for power dispatching automation magnanimity message
CN103399714B (en) The maintenance system of storage device configurations information and using method thereof
US20070233818A1 (en) Recording medium storing input/output screen generation program, and method for suppressing an unreasonable screen shift
CN116185785A (en) Early warning method and device for file abnormal change
CN107016054A (en) A kind of method and device of log information storage
CN101478769A (en) Method for protocol message log off-line storage and mobile communication terminal
CN106713666A (en) Recognition display method and device of verification information
US8775528B2 (en) Computer readable recording medium storing linking keyword automatically extracting program, linking keyword automatically extracting method and apparatus
US20180373603A1 (en) Web Application System and Database Utilization Method Therefor
CN114124679A (en) Internet of things terminal log uploading method and device and internet of things terminal

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant