CN110795322A - Service monitoring method and device, computer equipment and storage medium - Google Patents

Service monitoring method and device, computer equipment and storage medium Download PDF

Info

Publication number
CN110795322A
CN110795322A CN201911033328.2A CN201911033328A CN110795322A CN 110795322 A CN110795322 A CN 110795322A CN 201911033328 A CN201911033328 A CN 201911033328A CN 110795322 A CN110795322 A CN 110795322A
Authority
CN
China
Prior art keywords
service
monitoring
service information
event
class
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
CN201911033328.2A
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.)
Shenzhen Qianhai Huanlianyi Information Technology Service Co Ltd
Shenzhen Qianhai Huanrong Lianyi Information Technology Service Co Ltd
Original Assignee
Shenzhen Qianhai Huanlianyi Information Technology Service 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 Shenzhen Qianhai Huanlianyi Information Technology Service Co Ltd filed Critical Shenzhen Qianhai Huanlianyi Information Technology Service Co Ltd
Priority to CN201911033328.2A priority Critical patent/CN110795322A/en
Publication of CN110795322A publication Critical patent/CN110795322A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/30Monitoring
    • G06F11/34Recording 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/3466Performance evaluation by tracing or monitoring
    • G06F11/3476Data logging
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/30Monitoring
    • G06F11/3003Monitoring arrangements specially adapted to the computing system or computing system component being monitored
    • G06F11/3041Monitoring arrangements specially adapted to the computing system or computing system component being monitored where the computing system component is an input/output interface

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • Quality & Reliability (AREA)
  • General Physics & Mathematics (AREA)
  • Computing Systems (AREA)
  • Computer Hardware Design (AREA)
  • Mathematical Physics (AREA)
  • Debugging And Monitoring (AREA)

Abstract

The invention provides a service monitoring method, a service monitoring device, computer equipment and a storage medium, wherein the service monitoring method comprises the following steps: sending the service information of the server to the monitoring terminal in an http request mode through an event-driven model provided by Spring; receiving service information sent from a server through a unique monitoring interface preset in a monitoring end, and printing the service information in a status. Log files are collected from service information at regular time, and the service information is sent to a storage system for storage; the service information in the storage system is inquired at regular time by calling an inquiry interface; if the service information exists, the service is normal, otherwise, the service is abnormal. The invention has the beneficial effects that: the monitoring information is actively pushed to the monitoring end through the server end, the monitoring end only needs to receive the information and then store the information in the storage system, the realization complexity of the monitoring end can be greatly reduced, and meanwhile the monitoring efficiency of service monitoring is improved.

Description

Service monitoring method and device, computer equipment and storage medium
Technical Field
The present invention relates to a monitoring method, an apparatus, a computer device and a storage medium, and more particularly, to a service monitoring method, an apparatus, a computer device and a storage medium.
Background
Currently, the method for monitoring the service survival generally provides a monitoring interface for the service, monitors the monitoring interface for implementing the code side maintenance service, and requests the monitoring interface according to the frequency (such as 30 seconds), and if 200 is returned, the service is proved to be normal. However, if we have hundreds of services, there are many monitoring interfaces that we need to maintain, and the monitoring end needs to continuously initiate requests of so many interfaces in a short time, which increases the cost and implementation complexity of maintaining the monitoring interfaces by the monitoring end.
Disclosure of Invention
The technical problem to be solved by the invention is as follows: a service monitoring method, device, computer equipment and storage medium are provided, aiming at reducing the complexity of service monitoring.
In order to solve the technical problems, the invention adopts the technical scheme that: a service monitoring method, the service monitoring method comprising:
sending the service information of the server to the monitoring terminal in an http request mode through an event-driven model provided by Spring;
receiving service information sent from a server through a unique monitoring interface preset in a monitoring end, and printing the service information in a status.
Log files are collected from service information at regular time, and the service information is sent to a storage system for storage;
the service information in the storage system is inquired at regular time by calling an inquiry interface; if the service information exists, the service is normal, otherwise, the service is abnormal.
Further, the sending the service information of the service end to the monitoring end in the http request mode through the event driven model provided by Spring specifically includes,
an event RunnerEvent class is defined by inheriting an applicationEvent class provided by Spring;
issuing a RunnerEvent event when the source code is started through a custom event issuing class RunnerEventPublic;
the monitor RunnerListener is realized through an applicationListener < T > interface provided by Spring;
monitoring a RunnerEvent event through a RunnerListener class;
and after the RunnerListener class monitors the RunnerEvent event, the service information is set into a request body and is sent to the monitoring end in an http request mode.
Further, the service information includes: ip address, starting time, operating system name and service name of the server.
The invention also provides a service monitoring device, which is applied to a service monitoring system, wherein the service monitoring system comprises a service end and a monitoring end; the service monitoring apparatus includes:
the service information monitoring module is used for sending the service information of the service end to the monitoring end in an http request mode through an event driven model provided by Spring;
the service information receiving module is used for receiving the service information sent from the server through a unique monitoring interface preset at the monitoring end and printing the service information in a status.
The service information storage module is used for collecting service information from status log files at regular time and sending the service information to the storage system for storage;
the service information query module is used for regularly querying the service information in the storage system by calling the query interface; if the service information exists, the service is normal, otherwise, the service is abnormal.
Further, the service information monitoring module is specifically configured to,
an event RunnerEvent class is defined by inheriting an applicationEvent class provided by Spring;
issuing a RunnerEvent event when the source code is started through a custom event issuing class RunnerEventPublic;
the monitor RunnerListener is realized through an applicationListener < T > interface provided by Spring;
monitoring a RunnerEvent event through a RunnerListener class;
and after the RunnerListener class monitors the RunnerEvent event, the service information is set into a request body and is sent to the monitoring end in an http request mode.
Further, the service information includes: ip address, starting time, operating system name and service name of the server.
The invention also provides a computer device, which comprises a memory and a processor, wherein the memory is stored with a computer program, and the processor executes the computer program to realize the service monitoring method.
The present invention also provides a storage medium storing a computer program which, when executed by a processor, may implement the service monitoring method as described above.
The invention has the beneficial effects that: sending the service information of the server to the monitoring terminal in an http request mode through an event-driven model provided by Spring; the monitoring information is actively pushed to the monitoring end through the server end, the monitoring end only needs to receive the information and then store the information in the storage system, the realization complexity of the monitoring end can be greatly reduced, and meanwhile the monitoring efficiency of service monitoring is improved.
Drawings
The following detailed description of the invention refers to the accompanying drawings.
FIG. 1 is a flow chart of a service monitoring method according to an embodiment of the present invention;
FIG. 2 is a block diagram of a service monitor according to an embodiment of the present invention;
FIG. 3 is a schematic block diagram of a computer device in accordance with one embodiment of the present invention.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are some, not all, embodiments of the present invention. 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 invention.
It will be understood that the terms "comprises" and/or "comprising," when used in this specification and the appended claims, specify the presence of stated features, integers, steps, operations, elements, and/or components, but do not preclude the presence or addition of one or more other features, integers, steps, operations, elements, components, and/or groups thereof.
It is also to be understood that the terminology used in the description of the invention herein is for the purpose of describing particular embodiments only and is not intended to be limiting of the invention. As used in the specification of the present invention and the appended claims, the singular forms "a," "an," and "the" are intended to include the plural forms as well, unless the context clearly indicates otherwise.
It should be further understood that the term "and/or" as used in this specification and the appended claims refers to and includes any and all possible combinations of one or more of the associated listed items.
Referring to fig. 1, the first embodiment of the present invention is: a service monitoring method, the service monitoring method comprising:
s10, sending the service information of the server to the monitoring terminal in an http request mode through an event driven model provided by Spring;
s20, receiving the service information sent from the server through a unique monitoring interface preset at the monitoring end, and printing the service information in a status log file;
s30, collecting service information from status log files at regular time, and sending the service information to a storage system for storage;
s40, by calling the query interface, the service information in the storage system is queried regularly; if the service information exists, the service is normal, otherwise, the service is abnormal.
Further, the sending the service information of the service end to the monitoring end in the http request mode through the event driven model provided by Spring specifically includes,
an event RunnerEvent class is defined by inheriting an applicationEvent class provided by Spring;
issuing a RunnerEvent event when the source code is started through a custom event issuing class RunnerEventPublic;
the monitor RunnerListener is realized through an applicationListener < T > interface provided by Spring;
monitoring a RunnerEvent event through a RunnerListener class;
and after the RunnerListener class monitors the RunnerEvent event, the service information is set into a request body and is sent to the monitoring end in an http request mode.
Further, the service information includes: ip address, starting time, operating system name and service name of the server.
In this embodiment, after the service is started, an event for pushing a message is initiated through an event-driven model provided by a Spring framework (hereinafter, referred to as Spring), and the event sends service information (including local IP, start time, operating system name, and service name) to a service of a monitoring end in an http request manner every 1 hour; after receiving the http request, the service of the monitoring end prints the service information in a status log file; log collector will collect service information of status.log at regular time and send the information to storage system; and the data display layer queries the service information in the storage system once every half hour by calling the query interface. If the service exists, the service is normal; otherwise, the service is abnormal. The implementation method can greatly reduce the realization complexity of the monitoring end, improve the monitoring efficiency of service monitoring and reduce the maintenance cost.
Referring to fig. 2, a second embodiment of the present invention is a service monitoring apparatus, including:
the service information monitoring module 51 is configured to send service information of the service end to the monitoring end in an http request manner through an event driven model provided by Spring;
the service information monitoring module 51 is a status-client module, and implements sending and monitoring of events through an event-driven model provided by Spring.
A service information receiving module 52, configured to receive service information sent from a server through a unique monitoring interface preset in a monitoring terminal, and print the service information in a status.log file;
the service information receiving module 52 is a status-service module, which provides a Restful interface lls/check for receiving a request from a status-client module. lls/check receives the request from status-client, analyzes the request body, writes the service information in the request body into the status.
A service information storage module 53 that collects service information from status log files at regular time and sends the service information to a storage system for storage;
the service information storage module 53 is a filecut module, which is an open-source log collector and monitors log files periodically and incrementally, and then synchronizes data in the log files to the storage system elastic search.
A service information query module 54, configured to query the service information in the storage system at regular time by calling the query interface; if the service information exists, the service is normal, otherwise, the service is abnormal.
The query interface is provided by the elasticsearch module, which is an open source, Lucene-based search server. It saves the service information sent from filebox and provides the Restful interface to the kibana call.
The service information query module 54 is a kibana module, and kibana is an open-source data visualization and data mining tool, which can be used for log data query and analysis.
In this embodiment, the Status-client module actively pushes the monitoring message to the monitoring terminal through the server terminal, and the monitoring terminal only needs to receive the message and then store the message in the storage system, so that the complexity of implementing the monitoring terminal can be greatly reduced, and the monitoring efficiency of service monitoring can be improved.
Further, the service information monitoring module is specifically configured to,
an event RunnerEvent class is defined by inheriting an applicationEvent class provided by Spring;
issuing a RunnerEvent event when the source code is started through a custom event issuing class RunnerEventPublic;
the monitor RunnerListener is realized through an applicationListener < T > interface provided by Spring;
monitoring a RunnerEvent event through a RunnerListener class;
and after the RunnerListener class monitors the RunnerEvent event, the service information is set into a request body and is sent to the monitoring end in an http request mode.
Further, the service information includes: ip address, starting time, operating system name and service name of the server.
It should be noted that, as can be clearly understood by those skilled in the art, the specific implementation process of the service monitoring method may refer to the corresponding description in the foregoing method embodiment, and for convenience and brevity of description, no further description is provided herein.
The service monitoring method described above may be implemented in the form of a computer program that can be run on a computer device as shown in fig. 3.
Referring to fig. 3, fig. 3 is a schematic block diagram of a computer device according to an embodiment of the present application. The computer device 500 may be a terminal or a server, where the terminal may be an electronic device with a communication function, such as a smart phone, a tablet computer, a notebook computer, a desktop computer, a personal digital assistant, and a wearable device. The server may be an independent server or a server cluster composed of a plurality of servers.
Referring to fig. 3, the computer device 500 includes a processor 502, memory, and a network interface 505 connected by a system bus 501, where the memory may include a non-volatile storage medium 503 and an internal memory 504.
The non-volatile storage medium 503 may store an operating system 5031 and a computer program 5032. The computer programs 5032 include program instructions that, when executed, cause the processor 502 to perform a service monitoring method.
The processor 502 is used to provide computing and control capabilities to support the operation of the overall computer device 500.
The internal memory 504 provides an environment for the execution of the computer program 5032 in the non-volatile storage medium 503, and when the computer program 5032 is executed by the processor 502, the processor 502 may be caused to perform a service monitoring method.
The network interface 505 is used for network communication with other devices. Those skilled in the art will appreciate that the configuration shown in fig. 3 is a block diagram of only a portion of the configuration associated with the present application and does not constitute a limitation of the computer device 500 to which the present application may be applied, and that a particular computer device 500 may include more or less components than those shown, or may combine certain components, or have a different arrangement of components.
It should be understood that, in the embodiment of the present application, the processor 502 may be a Central Processing Unit (CPU), and the processor 502 may also be other general-purpose processors, Digital Signal Processors (DSPs), Application Specific Integrated Circuits (ASICs), Field-programmable gate arrays (FPGAs) or other programmable logic devices, discrete gate or transistor logic devices, discrete hardware components, and the like. Wherein a general purpose processor may be a microprocessor or the processor may be any conventional processor or the like.
It will be understood by those skilled in the art that all or part of the flow of the method implementing the above embodiments may be implemented by a computer program instructing associated hardware. The computer program includes program instructions, and the computer program may be stored in a storage medium, which is a computer-readable storage medium. The program instructions are executed by at least one processor in the computer system to implement the flow steps of the embodiments of the method described above.
Accordingly, the present invention also provides a storage medium. The storage medium may be a computer-readable storage medium. The storage medium stores a computer program, wherein the computer program comprises program instructions. The program instructions, when executed by the processor, cause the processor to perform the service monitoring method described above.
The storage medium may be a usb disk, a removable hard disk, a Read-only memory (ROM), a magnetic disk or an optical disk, and various computer readable storage media that can store program codes.
Those of ordinary skill in the art will appreciate that the elements and algorithm steps of the examples described in connection with the embodiments disclosed herein may be embodied in electronic hardware, computer software, or combinations of both, and that the components and steps of the examples have been described in a functional general in the foregoing description for the purpose of illustrating clearly the interchangeability of hardware and software. Whether such functionality is implemented as hardware or software depends upon the particular application and design constraints imposed on the implementation. Skilled artisans may implement the described functionality in varying ways for each particular application, but such implementation decisions should not be interpreted as causing a departure from the scope of the present invention.
In the embodiments provided in the present invention, it should be understood that the disclosed apparatus and method may be implemented in other ways. For example, the above-described apparatus embodiments are merely illustrative. For example, the division of each unit is only one logic function division, and there may be another division manner in actual implementation. For example, various elements or components may be combined or may be integrated into another system, or some features may be omitted, or not implemented.
The steps in the method of the embodiment of the invention can be sequentially adjusted, combined and deleted according to actual needs. The units in the device of the embodiment of the invention can be merged, divided and deleted according to actual needs. In addition, functional units in the embodiments of the present invention may be integrated into one processing unit, or each unit may exist alone physically, or two or more units are integrated into one unit.
The integrated unit, if implemented in the form of a software functional unit and sold or used as a stand-alone product, may be stored in a storage medium. Based on such understanding, the technical solution of the present invention essentially or partially contributes to the prior art, or all or part of the technical solution can be embodied in the form of a software product, which is stored in a storage medium and includes instructions for causing a computer device (which may be a personal computer, a terminal, or a network device) to execute all or part of the steps of the method according to the embodiments of the present invention.
While the invention has been described with reference to specific embodiments, the invention is not limited thereto, and various equivalent modifications and substitutions can be easily made by those skilled in the art within the technical scope of the invention. Therefore, the protection scope of the present invention shall be subject to the protection scope of the claims.

Claims (8)

1. A method of service monitoring, characterized by: the service monitoring method comprises the steps of,
sending the service information of the server to the monitoring terminal in an http request mode through an event-driven model provided by Spring;
receiving service information sent from a server through a unique monitoring interface preset in a monitoring end, and printing the service information in a status.
Log files are collected from service information at regular time, and the service information is sent to a storage system for storage;
the service information in the storage system is inquired at regular time by calling an inquiry interface; if the service information exists, the service is normal, otherwise, the service is abnormal.
2. The service monitoring method of claim 1, wherein: the sending of the service information of the server to the monitoring terminal in the http request mode through the event driven model provided by Spring specifically includes,
an event RunnerEvent class is defined by inheriting an applicationEvent class provided by Spring;
issuing a RunnerEvent event when the source code is started through a custom event issuing class RunnerEventPublic;
the monitor RunnerListener is realized through an applicationListener < T > interface provided by Spring;
monitoring a RunnerEvent event through a RunnerListener class;
and after the RunnerListener class monitors the RunnerEvent event, the service information is set into a request body and is sent to the monitoring end in an http request mode.
3. The service monitoring method of claim 2, wherein: the service information comprises an ip address, starting time, an operating system name and a service name of the service end.
4. A service monitoring device, characterized by: the service monitoring device comprises a service monitoring device and a service monitoring device,
the service information monitoring module is used for sending the service information of the service end to the monitoring end in an http request mode through an event driven model provided by Spring;
the service information receiving module is used for receiving the service information sent from the server through a unique monitoring interface preset at the monitoring end and printing the service information in a status.
The service information storage module is used for collecting service information from status log files at regular time and sending the service information to the storage system for storage;
the service information query module is used for regularly querying the service information in the storage system by calling the query interface; if the service information exists, the service is normal, otherwise, the service is abnormal.
5. The service monitoring device of claim 4, wherein: the service information monitoring module is specifically configured to,
an event RunnerEvent class is defined by inheriting an applicationEvent class provided by Spring;
issuing a RunnerEvent event when the source code is started through a custom event issuing class RunnerEventPublic;
the monitor RunnerListener is realized through an applicationListener < T > interface provided by Spring;
monitoring a RunnerEvent event through a RunnerListener class;
and after the RunnerListener class monitors the RunnerEvent event, the service information is set into a request body and is sent to the monitoring end in an http request mode.
6. The service monitoring device of claim 5, wherein: the service information comprises an ip address, starting time, an operating system name and a service name of the service end.
7. A computer device; the method is characterized in that: the computer device comprises a memory having stored thereon a computer program and a processor implementing the service monitoring method according to any of claims 1 to 3 when executing the computer program.
8. A storage medium, characterized by: the storage medium stores a computer program which, when executed by a processor, implements the service monitoring method of any one of claims 1 to 3.
CN201911033328.2A 2019-10-28 2019-10-28 Service monitoring method and device, computer equipment and storage medium Pending CN110795322A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911033328.2A CN110795322A (en) 2019-10-28 2019-10-28 Service monitoring method and device, computer equipment and storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911033328.2A CN110795322A (en) 2019-10-28 2019-10-28 Service monitoring method and device, computer equipment and storage medium

Publications (1)

Publication Number Publication Date
CN110795322A true CN110795322A (en) 2020-02-14

Family

ID=69441628

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911033328.2A Pending CN110795322A (en) 2019-10-28 2019-10-28 Service monitoring method and device, computer equipment and storage medium

Country Status (1)

Country Link
CN (1) CN110795322A (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112650728A (en) * 2020-12-15 2021-04-13 中国联合网络通信集团有限公司 Interface information storage method and device, server and distributed service system
CN113553235A (en) * 2021-07-19 2021-10-26 猪八戒股份有限公司 Business scene monitoring method and device, electronic equipment and storage medium
CN113760658A (en) * 2021-09-02 2021-12-07 山东派盟网络科技有限公司 Monitoring method, device and equipment

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020143819A1 (en) * 2000-05-31 2002-10-03 Cheng Han Web service syndication system
CN101247431A (en) * 2008-03-14 2008-08-20 中兴通讯股份有限公司 Method and system for implementing IP multimedia subsystem monitoring
US20080301175A1 (en) * 2007-05-31 2008-12-04 Michael Applebaum Distributed system for monitoring information events
CN101651707A (en) * 2009-09-22 2010-02-17 西安交通大学 Method for automatically acquiring user behavior log of network
CN107463490A (en) * 2017-08-15 2017-12-12 四川长虹电器股份有限公司 A kind of cluster daily record centralized collection method being applied in platform development
CN108365985A (en) * 2018-02-07 2018-08-03 深圳壹账通智能科技有限公司 A kind of cluster management method, device, terminal device and storage medium
CN110245060A (en) * 2019-05-20 2019-09-17 北京奇艺世纪科技有限公司 Service monitoring method and equipment, service monitoring device and medium

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020143819A1 (en) * 2000-05-31 2002-10-03 Cheng Han Web service syndication system
US20080301175A1 (en) * 2007-05-31 2008-12-04 Michael Applebaum Distributed system for monitoring information events
CN101247431A (en) * 2008-03-14 2008-08-20 中兴通讯股份有限公司 Method and system for implementing IP multimedia subsystem monitoring
CN101651707A (en) * 2009-09-22 2010-02-17 西安交通大学 Method for automatically acquiring user behavior log of network
CN107463490A (en) * 2017-08-15 2017-12-12 四川长虹电器股份有限公司 A kind of cluster daily record centralized collection method being applied in platform development
CN108365985A (en) * 2018-02-07 2018-08-03 深圳壹账通智能科技有限公司 A kind of cluster management method, device, terminal device and storage medium
CN110245060A (en) * 2019-05-20 2019-09-17 北京奇艺世纪科技有限公司 Service monitoring method and equipment, service monitoring device and medium

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
梁高永;杨正华;: "Web Socket的远程实时监控系统设计", no. 06 *
达摩院扫地僧: "Spring常用的Listener", 《HTTPS://BLOG.CSDN.NET/ YOUGOU_SULLY/ARTICLE/DETAILS/6187375/》, pages 1 - 4 *
进击~: "Spring事件机制", 《HTTPS://BLOG.CSDN.NET/YZC11111111/ARTICLE/ DETAILS/80518838/》, pages 1 - 5 *

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112650728A (en) * 2020-12-15 2021-04-13 中国联合网络通信集团有限公司 Interface information storage method and device, server and distributed service system
CN113553235A (en) * 2021-07-19 2021-10-26 猪八戒股份有限公司 Business scene monitoring method and device, electronic equipment and storage medium
CN113760658A (en) * 2021-09-02 2021-12-07 山东派盟网络科技有限公司 Monitoring method, device and equipment

Similar Documents

Publication Publication Date Title
CN108566290B (en) Service configuration management method, system, storage medium and server
KR101835303B1 (en) Systems and methods for collecting, tracking, and storing system performance and event data for computing devices
CN110795322A (en) Service monitoring method and device, computer equipment and storage medium
CN108388479A (en) Postpone information push method, device, computer equipment and storage medium
CN111274052A (en) Data distribution method, server, and computer-readable storage medium
CN109783512A (en) Data processing method, device, computer equipment and storage medium
CN109388657B (en) Data processing method, device, computer equipment and storage medium
CN107924345B (en) Data store for aggregated measurements of metrics
US20170147661A1 (en) Data load system with distributed data facility technology
CN110995539A (en) Business system monitoring method and device and computer equipment
CN111222089B (en) Data processing method, data processing device, computer equipment and storage medium
CN110895488B (en) Task scheduling method and device
JP2006260056A (en) Integrated operation management server, extraction method of message for integrative operation management, and program
US20190278691A1 (en) Automated recovery of flighted features based on service requests
CN110753084A (en) Uplink data reading method, cache server and computer readable storage medium
CN112328448A (en) Zookeeper-based monitoring method, monitoring device, equipment and storage medium
CN112732793A (en) Service data processing method and device, storage medium and electronic device
CN109710679B (en) Data extraction method and device
WO2020232892A1 (en) Method and apparatus for key management for blockchain, device, and storage medium
WO2017157111A1 (en) Method, device and system for preventing memory data loss
CN115658745A (en) Data processing method, data processing device, computer equipment and computer readable storage medium
CN114860782B (en) Data query method, device, equipment and medium
CN116634011A (en) Data pushing method and device, storage medium and electronic equipment
CN110011845A (en) Log collection method and system
CN114328156B (en) Health detection method, device and equipment of protocol port and readable storage medium

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