CN113742172A - Server log acquisition method, system and related device - Google Patents
Server log acquisition method, system and related device Download PDFInfo
- Publication number
- CN113742172A CN113742172A CN202110949589.XA CN202110949589A CN113742172A CN 113742172 A CN113742172 A CN 113742172A CN 202110949589 A CN202110949589 A CN 202110949589A CN 113742172 A CN113742172 A CN 113742172A
- Authority
- CN
- China
- Prior art keywords
- log
- log data
- client
- server
- acquisition
- 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.)
- Granted
Links
- 238000000034 method Methods 0.000 title claims abstract description 55
- 230000008569 process Effects 0.000 claims abstract description 20
- 238000004590 computer program Methods 0.000 claims description 9
- 238000012163 sequencing technique Methods 0.000 claims description 3
- 230000009471 action Effects 0.000 description 3
- 238000010586 diagram Methods 0.000 description 2
- 238000012986 modification Methods 0.000 description 2
- 230000004048 modification Effects 0.000 description 2
- 238000012546 transfer Methods 0.000 description 2
- 230000009286 beneficial effect Effects 0.000 description 1
- 238000004891 communication Methods 0.000 description 1
- 230000003287 optical effect Effects 0.000 description 1
- 238000005457 optimization Methods 0.000 description 1
- 238000012545 processing Methods 0.000 description 1
- 230000000750 progressive effect Effects 0.000 description 1
- 230000004044 response Effects 0.000 description 1
- 238000013024 troubleshooting Methods 0.000 description 1
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/30—Monitoring
- G06F11/3065—Monitoring arrangements determined by the means or processing involved in reporting the monitored data
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/30—Monitoring
- G06F11/34—Recording or statistical evaluation of computer activity, e.g. of down time, of input/output operation ; Recording or statistical evaluation of user activity, e.g. usability assessment
- G06F11/3466—Performance evaluation by tracing or monitoring
- G06F11/3476—Data logging
-
- Y—GENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
- Y02—TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
- Y02D—CLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
- Y02D10/00—Energy efficient computing, e.g. low power processors, power management or thermal management
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- General Engineering & Computer Science (AREA)
- Quality & Reliability (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computer Hardware Design (AREA)
- Debugging And Monitoring (AREA)
Abstract
The application provides a method, a system and a related device for collecting server logs, which relate to the field of servers, wherein the servers are provided with SSE service connection with clients, and the method comprises the following steps: receiving a log collection request from a client; calling a log acquisition component to respond to the log acquisition request to obtain log data; and feeding the log data back to the client through the SSE service connection. The SSE protocol can realize long connection from the server to the client without adopting third-party service and supports short-line reconnection and custom-sent data types, so that the process of requesting the server log by the client in the application does not need to adopt the third-party service, the log acquisition structure is simplified, the data type of the log data is expanded, and the log acquisition process is more flexible and convenient.
Description
Technical Field
The present application relates to the field of servers, and in particular, to a method, a system, and a related device for collecting server logs.
Background
The microservice architecture of a distributed cluster typically contains hundreds or even thousands of services that may be deployed to any one machine in the cluster. Therefore, if the log output of a certain microservice needs to be checked, the process is complicated. Typically, it is first necessary to query on which server the service is deployed, then obtain the access rights of the target server to the system administrator, and log on to the server via ssh and use the tail-f command to view the log in real time. This process is very time consuming and requires high user operation. And if the micro-service is based on a high availability environment with k8s multiple copies, one micro-service may deploy multiple copies, which may add complexity to the positioning problem, and in troubleshooting the problem, log information in each copy often needs to be traversed.
In the existing technical scheme, communication between a WEB page and a server is established through a websocket, and log information is output to the WEB page from a server. However, due to the complexity of the websocket, the websocket needs to be realized by means of a third-party class library, so that the log information is extremely inconvenient to obtain.
Disclosure of Invention
The application aims to provide a server log acquisition method, a server log acquisition system, a computer readable storage medium and a server, which can catch up to acquire log data of the server.
In order to solve the technical problem, the present application provides a method for collecting server logs, where a server and a client are provided with an SSE service connection, and the method includes:
receiving a log collection request from a client;
calling a log acquisition component to respond to the log acquisition request to obtain log data;
and feeding the log data back to the client through the SSE service connection.
Preferably, invoking the log collection component to respond to the log collection request, and obtaining the log data includes:
calling a log acquisition component to analyze the log acquisition request and determining a service name corresponding to the log request;
executing a preset log collection operation instruction of a kernel buffer area in the server, and acquiring log data corresponding to the service name through a preset channel of the kernel buffer area.
Preferably, if the SSE service connection is provided with an adapter, receiving a log collection request from a client includes:
and after the adapter receives a preset request instruction of a client, receiving a log collection request forwarded by the adapter.
Preferably, the feeding back of the log data to the client through the SSE service connection includes:
sending the log data to the adapter;
the adapter judges whether the log data is a log of a single copy service;
if yes, feeding the log data back to the client;
and if not, the log data is integrated or sequenced and then fed back to the client.
Preferably, after the log data is integrated or sequenced, the feeding back to the client includes:
if the log data are integrated, each copy of the log data is marked respectively to obtain first log data, and the first log data are fed back to the client; the mark is used for recording the display position and the display sequence of the copy when the client performs split-screen display;
if the log data are sequenced, sequencing the log records of all the copies in the log data according to the time stamps to obtain second log data, and feeding the second log data back to the client; the copy sequence is the display sequence of the log data at the client.
Preferably, the sorting log records of each copy in the log data according to the time stamp to obtain the second log data includes:
defining a preset set, and configuring a corresponding iterator for each copy in the preset set;
traversing the preset set; determining a target copy containing a minimum timestamp in a current preset set in each traversal process, adding a log record corresponding to the minimum timestamp to intermediate log data, and moving an iterator corresponding to the target copy forwards;
and ending traversal when iterators corresponding to all the copies in the preset set finish iteration, and taking the intermediate log data as the second log data.
Preferably, after the log data is fed back to the client through the SSE service connection, the method further includes:
receiving a keyword query instruction;
and highlighting the keywords corresponding to the keyword query instruction in the log data.
The application also provides a collection system of server log, and the server is equipped with SSE service connection with the customer end, includes:
the request receiving module is used for receiving a log acquisition request from a client;
the log acquisition module is used for calling the log acquisition component to respond to the log acquisition request to obtain log data;
and the log feedback module is used for feeding the log data back to the client through the SSE service connection.
The present application also provides a computer-readable storage medium having stored thereon a computer program which, when being executed by a processor, carries out the steps of the method as set forth above.
The present application further provides a server comprising a memory and a processor, wherein the memory stores a computer program, and the processor implements the steps of the method described above when calling the computer program in the memory.
The application provides a method for collecting server logs, wherein an SSE service connection is arranged between a server and a client, and the method comprises the following steps: receiving a log collection request from a client; calling a log acquisition component to respond to the log acquisition request to obtain log data; and feeding the log data back to the client through the SSE service connection.
According to the method and the device, after the log collection request is received, the log collection assembly is directly called to collect corresponding log data, and the feedback is connected through the SSE service, the long connection from the server to the client can be realized without adopting a third-party service due to the SSE protocol, and the data type of short-line reconnection and self-defined sending is supported, so that the third-party service is not needed in the process of requesting the server log by the client, the log collection structure is simplified, the data type of the log data is expanded, and the log collection process is more flexible and convenient.
The application also provides a server log acquisition system, a computer readable storage medium and a server, which have the beneficial effects and are not repeated herein.
Drawings
In order to more clearly illustrate the embodiments of the present application or the technical solutions in the prior art, the drawings needed to be used in the description of the embodiments or the prior art will be briefly introduced below, it is obvious that the drawings in the following description are only embodiments of the present application, and for those skilled in the art, other drawings can be obtained according to the provided drawings without creative efforts.
Fig. 1 is a flowchart of a method for collecting server logs according to an embodiment of the present application;
fig. 2 is a schematic structural diagram of an acquisition system of a server log according to an embodiment of the present application.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present application clearer, the technical solutions in the embodiments of the present application will be clearly and completely described below with reference to the drawings in the embodiments of the present application, and it is obvious that the described embodiments are some embodiments of the present application, but not all embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present application.
Referring to fig. 1, fig. 1 is a flowchart of a method for collecting server logs according to an embodiment of the present application, and the specific process is as follows:
s101: receiving a log collection request from a client;
the implementation subject of the embodiment may be any server that can provide a log query service. This step is intended to receive the log collection request, but it should be noted that the log collection request is not necessarily sent directly by the client, but may also be a request sent by the client and passing through another device terminal. For example, if an adapter is configured in the SSE service connection, after the adapter receives a preset request instruction of the client, a log collection request forwarded by the adapter is received. The adapter mainly plays a role of request transfer, and can be used for converting the content, format and type of the log collection request. Because log collection requests sent by different clients may have different contents, formats and types, in order to improve the response efficiency of the server, the log collection requests may be processed by the adapter and then forwarded to the corresponding server. For example, one possible way to send log collection requests may be 1) a client sending ajax requests to an adapter to obtain log information output for a specified service. The url requested is similar as follows:
http:// ip port/api/showlofserviceid is s1, and s1 represents the service name of the service requested this time.
The specific content of the log collection request is not limited, and at least the attribute information of the log to be collected and the requester information should be included. The attribute information may contain the name or type of service requested, and the length of log time requested, etc., e.g., from one time to another. The service name may be identification information that specifically uniquely identifies the feature, such as a service ID. It should be noted that the log in this embodiment may be a history log, a real-time log, or both.
S102: calling a log acquisition component to respond to the log acquisition request to obtain log data;
the step aims to call the log collection component to respond to the log collection request, namely, execute the log collection request and collect corresponding log data. The present embodiment does not specifically limit how the log data is collected. On one hand, the log file in the disk can be directly read, but the operation generates more IO operations. As a preferred log collection process, the log collection component in this embodiment may define a channel FileChannel located in a kernel space, and then the log content reading operation is performed based on the FileChannel channel, so that IO operations required for reading a log file from a disk are reduced, and the log acquisition efficiency is improved.
The specific process can comprise the following steps:
calling a log acquisition component to analyze the log acquisition request and determining a service name corresponding to the log request;
and secondly, executing a preset log acquisition operation instruction of a kernel buffer area in the server, and acquiring log data corresponding to the service name through a preset channel of the kernel buffer area.
The log collection component can be provided with a listener for listening to the log collection request sent by the server. When a log acquisition request comes, the log acquisition component monitors a corresponding log file according to the service name in the log acquisition request, namely monitors log data corresponding to the service name through a preset channel of the kernel buffer area. When the log file is output, new log data can be collected through a self-developed log collection assembly, and the log data is fed back through SSE service connection.
S103: and feeding the log data back to the client through the SSE service connection.
After the log data is obtained, the log data can be fed back to the client through SSE service connection. Of course, in the process of feeding back to the client, the log data may be directly fed back to the client, or may be transferred to the client through a third-party device, and the third-party device may perform corresponding optimization processing on the log data during transfer, so that the client may directly display the log data.
According to the embodiment of the application, after the log collection request is received, the log collection assembly is directly called to collect corresponding log data, and the feedback is connected through the SSE service, the long connection from the server to the client can be realized without adopting a third-party service due to the SSE protocol, and the data type of short-line reconnection and custom sending is supported, so that the third-party service is not needed in the process of requesting the server log by the client, the log collection structure is simplified, the data type of the log data is expanded, and the log collection process is more flexible and convenient.
Based on the foregoing embodiment, as a preferred embodiment, when the log data is fed back to the client through the SSE service connection, if the log data is transferred to the client through the third-party device, the method may include the following steps:
s201: sending the log data to the adapter;
s202: the adapter judges whether the log data is a log of a single copy service; if yes, entering S203; if not, entering S204;
s203: feeding the log data back to the client;
s204: and after the log data are integrated or sequenced, feeding back the log data to the client.
In this embodiment, the adapter determines whether the log is a log of a single copy service. Since current servers are highly available, multiple redundant server nodes are typically configured such that the same service is deployed on different server nodes. When the log collection request includes such a service, the obtained log data includes the log data of each server node, and the log data provided by each server node is used as a copy log data. When the server is a multi-node server and the log acquisition request includes a service deployed by a plurality of server nodes, the adapter can judge whether the log data is a log of a single copy service, and if the log data is confirmed to be the log of the single copy service, the log data can be directly fed back to the client. Otherwise, the log data can be integrated or sorted and then fed back to the client.
Specifically, if the log data is integrated, each copy of the log data can be marked to obtain the first log data, and the first log data is fed back to the client. When the log data is displayed at the client, the log data can be displayed according to the marking sequence, and the display positions can also be determined sequentially according to the marking sequence.
If the log data are sequenced, each copy of the log data can be sequenced according to the timestamp, so that second log data comprising the copy sequence can be obtained and fed back to the client. The copy sequence is the presentation sequence of the log data at the client.
More specifically, when the log records of each copy in the log data are sorted according to the time stamps, the following process may be performed when the second log data is obtained:
s301: defining a preset set, and configuring a corresponding iterator for each copy in the preset set;
s301: traversing a preset set; determining a target copy containing a minimum timestamp in a current preset set in each traversal process, adding a log record corresponding to the minimum timestamp to intermediate log data, and moving an iterator corresponding to the target copy forwards;
s301: and finishing the traversal when iterators corresponding to all the copies in the preset set finish iteration, and taking the intermediate log data as second log data.
It is readily understood that there may be differences in the corresponding log records of different server nodes. For example, if copy a and copy B are included, and copy a includes log records at two times, nine and eleven, and copy B includes log records at ten points, then the resulting second log data should sort the log records in order of the timestamps of nine, ten, and eleven.
And in the preset set, determining the target copy with the current minimum timestamp in each traversal, adding the log record corresponding to the minimum timestamp in the target copy to the intermediate log data, and moving the iterator of the target copy forwards at the moment. It is clear that when all log records are added to the intermediate log data, the iterator does not move anymore, i.e. the iteration ends, since there is no minimum timestamp in the copies at this time. The intermediate log data is regarded as second log data at this time.
On the basis of the above embodiments, after the log data is fed back to the client through the SSE service connection, the client may receive a keyword query instruction sent by the user, so as to highlight a keyword corresponding to the keyword query instruction in the log data. In addition, for the log data display of the multi-copy service, the log data of the multiple copies can be displayed after being combined and sequenced according to the time sequence, and the log data of the multiple copies can be displayed in a split screen mode.
In the following, the acquisition system of the server log provided by the embodiment of the present application is introduced, and the acquisition system of the server log described below and the acquisition method of the server log described above may be referred to correspondingly.
Referring to fig. 2, fig. 2 is a schematic structural diagram of a system for collecting server logs according to an embodiment of the present application, where the system includes:
a request receiving module 10, configured to receive a log collection request from a client;
the log acquisition module 20 is used for calling a log acquisition component to respond to the log acquisition request to obtain log data;
and the log feedback module 30 is configured to feed the log data back to the client through the SSE service connection.
Based on the above embodiment, as a preferred embodiment, the log collection module 20 includes:
the determining module is used for calling a log collecting component to analyze the log collecting request and determining a service name corresponding to the log request;
and the acquisition module is used for executing a preset log acquisition operation instruction of a kernel buffer area in the server and acquiring log data corresponding to the service name through a preset channel of the kernel buffer area.
Based on the foregoing embodiment, as a preferred embodiment, if an adapter is configured in the SSE service connection, the request receiving module 10 includes:
the first receiving module is used for receiving the log collection request forwarded by the adapter after the adapter receives a preset request instruction of a client.
Based on the above embodiment, as a preferred embodiment, the log feedback module 30 includes:
the sending module is used for sending the log data to the adapter;
the judging module is used for judging whether the log data is a log of a single copy service or not by the adapter;
the first feedback module is used for feeding the log data back to the client when the judging module is yes;
and the second feedback module is used for integrating or sequencing the log data and feeding the log data back to the client when the judgment module is negative.
Based on the above embodiment, as a preferred embodiment, the log feedback module 30 includes:
the marking module is used for marking each copy of the log data respectively to obtain first log data if the log data are integrated, and feeding the first log data back to the client; the mark is used for recording the display position and the display sequence of the copy when the client performs split-screen display;
based on the above embodiment, as a preferred embodiment, the marking module includes:
the defining module is used for defining a preset set and configuring a corresponding iterator for each copy in the preset set;
the traversing module is used for traversing the preset set; determining a target copy containing a minimum timestamp in a current preset set in each traversal process, adding a log record corresponding to the minimum timestamp to intermediate log data, and moving an iterator corresponding to the target copy forwards;
and the log output module is used for finishing traversal when the iterators corresponding to all the copies in the preset set finish iteration and taking the intermediate log data as the second log data.
Based on the above embodiment, as a preferred embodiment, the method further includes:
the second receiving module is used for receiving a keyword query instruction;
and the display module is used for highlighting the keywords corresponding to the keyword query instruction in the log data.
The present application also provides a computer readable storage medium having stored thereon a computer program which, when executed, may implement the steps provided by the above-described embodiments. The storage medium may include: various media capable of storing program codes, such as a usb disk, a removable hard disk, a Read-Only Memory (ROM), a Random Access Memory (RAM), a magnetic disk, or an optical disk.
The application also provides a server, which may include a memory and a processor, where the memory stores a computer program, and the processor may implement the steps provided by the foregoing embodiments when calling the computer program in the memory. Of course, the server may also include various network interfaces, power supplies, and the like.
The embodiments are described in a progressive manner in the specification, each embodiment focuses on differences from other embodiments, and the same and similar parts among the embodiments are referred to each other. For the system provided by the embodiment, the description is relatively simple because the system corresponds to the method provided by the embodiment, and the relevant points can be referred to the method part for description.
The principles and embodiments of the present application are explained herein using specific examples, which are provided only to help understand the method and the core idea of the present application. It should be noted that, for those skilled in the art, it is possible to make several improvements and modifications to the present application without departing from the principle of the present application, and such improvements and modifications also fall within the scope of the claims of the present application.
It is further noted that, in the present specification, relational terms such as first and second, and the like are used solely to distinguish one entity or action from another entity or action without necessarily requiring or implying any actual such relationship or order between such entities or actions. Also, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other identical elements in a process, method, article, or apparatus that comprises the element.
Claims (10)
1. A method for collecting server logs is characterized in that a server and a client are provided with SSE service connection, and the method comprises the following steps:
receiving a log collection request from the client;
calling a log acquisition component to respond to the log acquisition request to obtain log data;
and feeding the log data back to the client through the SSE service connection.
2. The acquisition method of claim 1, wherein invoking a log acquisition component to respond to the log acquisition request to obtain log data comprises:
calling a log acquisition component to analyze the log acquisition request and determining a service name corresponding to the log request;
executing a preset log collection operation instruction of a kernel buffer area in the server, and acquiring log data corresponding to the service name through a preset channel of the kernel buffer area.
3. The acquisition method according to claim 1, wherein if an adapter is provided in the SSE service connection, receiving a log acquisition request from a client comprises:
and after the adapter receives a preset request instruction of a client, receiving a log collection request forwarded by the adapter.
4. The acquisition method as claimed in claim 3, wherein the log data is fed back to the client through the SSE service connection comprises:
sending the log data to the adapter;
the adapter judges whether the log data is a log of a single copy service;
if yes, feeding the log data back to the client;
and if not, the log data is integrated or sequenced and then fed back to the client.
5. The acquisition method according to claim 4, wherein the step of feeding back the log data to the client after the log data is integrated or sorted comprises:
if the log data are integrated, each copy of the log data is marked respectively to obtain first log data, and the first log data are fed back to the client; the mark is used for recording the display position and the display sequence of the copy when the client performs split-screen display;
if the log data are sequenced, sequencing the log records of all the copies in the log data according to the time stamps to obtain second log data, and feeding the second log data back to the client; the copy sequence is the display sequence of the log data at the client.
6. The acquisition method according to claim 5, wherein the sorting of the log records of the copies in the log data according to the time stamps to obtain second log data comprises:
defining a preset set, and configuring a corresponding iterator for each copy in the preset set;
traversing the preset set; determining a target copy containing a minimum timestamp in a current preset set in each traversal process, adding a log record corresponding to the minimum timestamp to intermediate log data, and moving an iterator corresponding to the target copy forwards;
and ending traversal when iterators corresponding to all the copies in the preset set finish iteration, and taking the intermediate log data as the second log data.
7. The acquisition method according to claim 1, wherein after feeding back the log data to the client via the SSE service connection, further comprising:
receiving a keyword query instruction;
and highlighting the keywords corresponding to the keyword query instruction in the log data.
8. The acquisition system of server log, its characterized in that, server and customer end are equipped with SSE service connection, include:
the request receiving module is used for receiving a log acquisition request from a client;
the log acquisition module is used for calling the log acquisition component to respond to the log acquisition request to obtain log data;
and the log feedback module is used for feeding the log data back to the client through the SSE service connection.
9. A computer-readable storage medium, on which a computer program is stored, which, when being executed by a processor, carries out the steps of the method for collecting server logs according to any one of claims 1 to 7.
10. A server, characterized by comprising a memory in which a computer program is stored and a processor which, when calling the computer program in the memory, implements the steps of the acquisition method of server logs according to any one of claims 1 to 7.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202110949589.XA CN113742172B (en) | 2021-08-18 | 2021-08-18 | Method, system and related device for collecting server logs |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202110949589.XA CN113742172B (en) | 2021-08-18 | 2021-08-18 | Method, system and related device for collecting server logs |
Publications (2)
Publication Number | Publication Date |
---|---|
CN113742172A true CN113742172A (en) | 2021-12-03 |
CN113742172B CN113742172B (en) | 2023-08-15 |
Family
ID=78731619
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN202110949589.XA Active CN113742172B (en) | 2021-08-18 | 2021-08-18 | Method, system and related device for collecting server logs |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN113742172B (en) |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN115442226A (en) * | 2022-08-01 | 2022-12-06 | 远光软件股份有限公司 | Log collection method, related device and storage medium |
Citations (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN110545296A (en) * | 2018-05-28 | 2019-12-06 | 阿里巴巴集团控股有限公司 | Log data acquisition method, device and equipment |
CN112732647A (en) * | 2021-03-30 | 2021-04-30 | 北京优特捷信息技术有限公司 | Log searching method, device, equipment and storage medium |
-
2021
- 2021-08-18 CN CN202110949589.XA patent/CN113742172B/en active Active
Patent Citations (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN110545296A (en) * | 2018-05-28 | 2019-12-06 | 阿里巴巴集团控股有限公司 | Log data acquisition method, device and equipment |
CN112732647A (en) * | 2021-03-30 | 2021-04-30 | 北京优特捷信息技术有限公司 | Log searching method, device, equipment and storage medium |
Cited By (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN115442226A (en) * | 2022-08-01 | 2022-12-06 | 远光软件股份有限公司 | Log collection method, related device and storage medium |
CN115442226B (en) * | 2022-08-01 | 2024-06-11 | 远光软件股份有限公司 | Log acquisition method, related device and storage medium |
Also Published As
Publication number | Publication date |
---|---|
CN113742172B (en) | 2023-08-15 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US10904080B2 (en) | Automatic generation of template for provisioning services in a hosted computing environment | |
CN107181675B (en) | Service calling method and device | |
US8069224B2 (en) | Method, equipment and system for resource acquisition | |
CN110928851B (en) | Method, device and equipment for processing log information and storage medium | |
CN112822298B (en) | Business service capacity expansion and reduction method, device, medium and electronic equipment | |
CN113032419B (en) | Multi-source data aggregation search method, device, equipment and storage medium | |
KR20210005043A (en) | Input and output schema mapping | |
CN101197700A (en) | Method and system for providing log service | |
CN113742172A (en) | Server log acquisition method, system and related device | |
US8230002B2 (en) | Method and system for automatic setup in web-based applications | |
CN112783842B (en) | Log collection method and device | |
JPH1125125A (en) | Network information retrieving device, its method and storage medium | |
CN115514759B (en) | File forwarding method, electronic device and storage medium | |
US9852031B2 (en) | Computer system and method of identifying a failure | |
JP2007200271A (en) | Retrieval method and system for retrieving multimedia content in content network | |
JP2007264921A (en) | Performance information extraction program and apparatus | |
CN110740046B (en) | Method and device for analyzing service contract | |
CN109684158B (en) | State monitoring method, device, equipment and storage medium of distributed coordination system | |
CN112783754B (en) | Method and device for testing page | |
CN112541143A (en) | Asynchronous picture acquisition method and system | |
JP2009122995A (en) | Management system and management method of related process record | |
CN115396343B (en) | Front-end page performance detection method and device, computer equipment and storage medium | |
CN118092729B (en) | Micro-front-end-based micro-service icon sharing method, device and medium | |
Medalla et al. | Adapting block-sized captures for faster network flow analysis on the Hadoop ecosystem | |
WO2024000444A1 (en) | Network traffic measurement and control system |
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 |