CN113961271B - Log service starting method, device, equipment and readable storage medium - Google Patents

Log service starting method, device, equipment and readable storage medium Download PDF

Info

Publication number
CN113961271B
CN113961271B CN202111398813.7A CN202111398813A CN113961271B CN 113961271 B CN113961271 B CN 113961271B CN 202111398813 A CN202111398813 A CN 202111398813A CN 113961271 B CN113961271 B CN 113961271B
Authority
CN
China
Prior art keywords
log service
target
type
service object
log
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
CN202111398813.7A
Other languages
Chinese (zh)
Other versions
CN113961271A (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.)
DBAPPSecurity Co Ltd
Original Assignee
DBAPPSecurity 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 DBAPPSecurity Co Ltd filed Critical DBAPPSecurity Co Ltd
Priority to CN202111398813.7A priority Critical patent/CN113961271B/en
Publication of CN113961271A publication Critical patent/CN113961271A/en
Application granted granted Critical
Publication of CN113961271B publication Critical patent/CN113961271B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/445Program loading or initiating
    • G06F9/44505Configuring for program initiating, e.g. using registry, configuration files
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/48Program initiating; Program switching, e.g. by interrupt
    • G06F9/4806Task transfer initiation or dispatching
    • G06F9/4843Task transfer initiation or dispatching by program, e.g. task dispatcher, supervisor, operating system
    • G06F9/4881Scheduling strategies for dispatcher, e.g. round robin, multi-level priority queues
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L41/00Arrangements for maintenance, administration or management of data switching networks, e.g. of packet switching networks
    • H04L41/06Management of faults, events, alarms or notifications
    • H04L41/069Management of faults, events, alarms or notifications using logs of notifications; Post-processing of notifications

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Debugging And Monitoring (AREA)

Abstract

The invention discloses a log service starting method, which comprises the following steps: analyzing the received log service starting request to obtain a target Internet Protocol (IP) and a target port corresponding to a target server of the log service to be started; creating a log service configuration object according to the target internet access IP and the target port; calling a type object acquisition function to determine a target log service object type corresponding to the log service configuration object; calling a log service object acquisition function to acquire a log service object corresponding to the target log service object type; and calling a log service object initialization function to initialize the log service object so as to finish the log service starting of the target server. The invention realizes that a plurality of log service objects are created on the appointed internet access IP and the port according to the requirement, thereby being capable of starting the plurality of log service objects and meeting the service requirement. The invention also discloses a log service starting device, equipment and a storage medium, which have corresponding technical effects.

Description

Log service starting method, device, equipment and readable storage medium
Technical Field
The present invention relates to the field of computer applications, and in particular, to a method, an apparatus, a device, and a computer readable storage medium for starting a log service.
Background
In the industrial safety control platform, the firewall is used as a system log (syslog) sending end, log data needs to be sent to a receiving end of the industrial safety control platform, and the industrial safety control platform needs to receive data from different network card IP (Internet Protocol ) and store the data locally.
The existing log service starting method mainly directly uses an API (Application Programming Interface ) provided by syslog4j of a JAVA open source class library for realizing a syslog protocol, and only a single log receiving end can be established at an IP of a single network card and a default port to receive data. The log service object (SyslogServerIF) object is managed by a container in which only two log service objects of tcp type and udp type have been created in advance. Only one of the two objects can be acquired, and the acquired log service object is utilized to start the log service, so that the data sending and receiving functions are realized. But the log service initiation method can only obtain one of the log service objects of the udp (user datagram protocol, user packet protocol) type or tcp (transmission control protocol ) type. In the multiple network ports IP, the multiple ports start the business scene of multiple log services, if the log service object of the udp type or the tcp type can only acquire one log service object, the business requirement can not be met obviously.
In summary, how to effectively solve the problem that the existing log service starting method can only obtain one of the udp type or tcp type log service objects, cannot meet the service scenario requirements of a plurality of network ports IP, and a plurality of ports start a plurality of log services is a urgent need of those skilled in the art.
Disclosure of Invention
The invention aims to provide a log service starting method, which realizes that a plurality of log service objects are created on a specified internet access IP and a port according to requirements, so that the plurality of log service objects can be started to meet service requirements; another object of the present invention is to provide a log service starting apparatus, device, and computer-readable storage medium.
In order to solve the technical problems, the invention provides the following technical scheme:
a log service initiation method, comprising:
Analyzing the received log service starting request to obtain a target Internet Protocol (IP) and a target port corresponding to a target server of the log service to be started;
creating a log service configuration object according to the target internet access IP and the target port;
Calling a type object acquisition function to determine a target log service object type corresponding to the log service configuration object;
calling a log service object acquisition function to acquire a log service object corresponding to the target log service object type;
and calling a log service object initialization function to initialize the log service object so as to finish the log service starting of the target server.
In a specific embodiment of the present invention, the calling the log service object obtaining function to obtain the log service object corresponding to the target log service object type includes:
and acquiring the log service object corresponding to the target log service object type by using a JAVA reflection mechanism.
In a specific embodiment of the present invention, the calling the log service object obtaining function to obtain the log service object corresponding to the target log service object type includes:
and when the target log service object type is the udp type, calling the log service object acquisition function to acquire the log service object of the udp type.
In a specific embodiment of the present invention, the calling the log service object obtaining function to obtain the log service object corresponding to the target log service object type includes:
and when the target log service object type is a tcp type, calling the log service object acquisition function to acquire the log service object of the tcp type.
A log service initiation apparatus comprising:
The request analysis module is used for analyzing the received log service starting request to obtain a target Internet Protocol (IP) and a target port corresponding to a target server of the log service to be started;
The configuration object creation module is used for creating a log service configuration object according to the target internet access IP and the target port;
The object type determining module is used for calling a type object obtaining function to determine the type of the target log service object corresponding to the log service configuration object;
the object acquisition module is used for calling a log service object acquisition function to acquire a log service object corresponding to the target log service object type;
And the service starting module is used for calling a log service object initializing function to initialize the log service object so as to finish the log service starting of the target server.
In a specific embodiment of the present invention, the object obtaining module is specifically a module for obtaining a log service object corresponding to the target log service object type by using a JAVA reflection mechanism.
In a specific embodiment of the present invention, the object obtaining module is specifically a module that, when the target log service object type is a udp type, invokes the log service object obtaining function to obtain the log service object of the udp type.
In one embodiment of the present invention, the object obtaining module is specifically a module that, when the target log service object type is a tcp type, invokes the log service object obtaining function to obtain the log service object of the tcp type.
A log service initiation device, comprising:
A memory for storing a computer program;
and the processor is used for realizing the steps of the log service starting method when executing the computer program.
A computer readable storage medium having stored thereon a computer program which when executed by a processor implements the steps of the log service initiation method as described above.
According to the log service starting method provided by the invention, the received log service starting request is analyzed to obtain the target internet access IP and the target port corresponding to the target server of the log service to be started; creating a log service configuration object according to the target internet access IP and the target port; calling a type object acquisition function to determine a target log service object type corresponding to the log service configuration object; calling a log service object acquisition function to acquire a log service object corresponding to the target log service object type; and calling a log service object initialization function to initialize the log service object so as to finish the log service starting of the target server.
According to the technical scheme, after the target internet access IP and the target port corresponding to the target server of the log service to be started are obtained through analysis, the log service configuration object is created according to the target internet access IP and the target port, the type of the target log service object corresponding to the log service configuration object is determined through the type object acquisition function, the preset log service object acquisition function is called to acquire the log service object corresponding to the target log service object type, and the log service object is initialized to finish the log service starting of the target server. The invention realizes that a plurality of log service objects are created on the appointed internet access IP and the port according to the requirement, thereby being capable of starting the plurality of log service objects and meeting the service requirement.
Correspondingly, the invention also provides a log service starting device, equipment and a computer readable storage medium corresponding to the log service starting method, which have the technical effects and are not repeated herein.
Drawings
In order to more clearly illustrate the embodiments of the invention or the technical solutions in the prior art, the drawings that are required in the embodiments or the description of the prior art will be briefly described, it being obvious that the drawings in the following description are only some embodiments of the invention, and that other drawings may be obtained according to these drawings without inventive effort for a person skilled in the art.
FIG. 1 is a flowchart of a method for initiating a log service according to an embodiment of the present invention;
FIG. 2 is a flowchart of another embodiment of a method for initiating a log service according to the present invention;
FIG. 3 is a block diagram illustrating a log service starting apparatus according to an embodiment of the present invention;
FIG. 4 is a block diagram of a log service initiation device according to an embodiment of the present invention;
Fig. 5 is a schematic diagram of a specific structure of a log service starting device according to this embodiment.
Detailed Description
In order to better understand the aspects of the present invention, the present invention will be described in further detail with reference to the accompanying drawings and detailed description. It will be apparent that the described embodiments are only some, but not all, embodiments of the invention. All other embodiments, which can be made by those skilled in the art based on the embodiments of the invention without making any inventive effort, are intended to be within the scope of the invention.
Referring to fig. 1, fig. 1 is a flowchart of a method for starting a log service according to an embodiment of the present invention, where the method may include:
S101: and analyzing the received log service starting request to obtain a target Internet Protocol (IP) and a target port corresponding to a target server of the log service to be started.
When a certain server needs to be started with the log service, a log service starting request is generated, and the log service starting request is sent to a log service management center, wherein the log service starting request comprises a target internet access IP and a target port corresponding to a target server of the log service to be started. The log service management center receives the log service starting request and analyzes the received log service starting request to obtain a target Internet Protocol (IP) and a target port corresponding to a target server of the log service to be started.
S102: and creating a log service configuration object according to the target internet access IP and the target port.
After the target internet access IP and the target port corresponding to the target server of the log service to be started are obtained through analysis, a log service configuration (SyslogServerConfigIF) object is created according to the target internet access IP and the target port.
S103: and calling a type object acquisition function to determine the type of the target log service object corresponding to the log service configuration object.
The log service configuration object comprises a target log service object type, a type object acquisition function (getSyslogServerClass) is deployed in advance, and after the log service configuration object is created according to the target internet access IP and the target port, the type object acquisition function is called to determine the target log service object type corresponding to the log service configuration object. If the log service configuration object is created, the path attribute related to the current log service start can be determined according to the target internet portal IP and the target port corresponding to the target server of the log service to be started, the log service configuration object containing the corresponding log service object type is created according to the path attribute, and the log service configuration object is analyzed by calling the type object acquisition function to obtain the target log service object type.
S104: and calling a log service object acquisition function to acquire the log service object corresponding to the target log service object type.
And presetting a log service object acquisition function (NEWINSTANCE), and after the calling type object acquisition function determines the target log service object type corresponding to the log service configuration object, calling the log service object acquisition function to acquire the log service object corresponding to the target log service object type. The target log service object type may be udp type, tcp type.
S105: and calling a log service object initialization function to initialize the log service object so as to finish the log service starting of the target server.
After the log service object obtaining function is called to obtain the log service object corresponding to the target log service object type, the log service object initializing function is called to initialize the log service object, for example, the log service object is initialized by inputting the required target log service object type (udp or tcp) and the log service configuration object which is created in advance, so that the log service starting of the target server is completed. When the log service object is created, the method is not limited by the set number in the container, and is more flexible. The method and the system realize the creation of a plurality of log service objects at the appointed internet access IP and the ports according to the requirements, so that the plurality of log service objects can be started to meet the service requirements.
According to the technical scheme, after the target internet access IP and the target port corresponding to the target server of the log service to be started are obtained through analysis, the log service configuration object is created according to the target internet access IP and the target port, the type of the target log service object corresponding to the log service configuration object is determined through the type object acquisition function, the preset log service object acquisition function is called to acquire the log service object corresponding to the target log service object type, and the log service object is initialized to finish the log service starting of the target server. The invention realizes that a plurality of log service objects are created on the appointed internet access IP and the port according to the requirement, thereby being capable of starting the plurality of log service objects and meeting the service requirement.
It should be noted that, based on the above embodiments, the embodiments of the present invention further provide corresponding improvements. The following embodiments relate to the same steps as those in the above embodiments or the steps corresponding to the steps may be referred to each other, and the corresponding beneficial effects may also be referred to each other, which will not be described in detail in the following modified embodiments.
In one embodiment of the present invention, step S104 may include the steps of:
and when the target log service object type is the udp type, calling a log service object acquisition function to acquire the log service object of the udp type.
The log service object type comprises a udp type, and when the target log service object type is determined to be the udp type, a log service object acquisition function is called to acquire the log service object of the udp type. Thereby realizing the pair of udp types
In one embodiment of the present invention, step S104 may include the steps of:
and when the target log service object type is a tcp type, calling a log service object acquisition function to acquire the log service object of the tcp type.
Referring to fig. 2, fig. 2 is a flowchart illustrating another implementation of a method for starting a log service according to an embodiment of the present invention, the method may include the following steps:
s201: and analyzing the received log service starting request to obtain a target Internet Protocol (IP) and a target port corresponding to a target server of the log service to be started.
S202: and creating a log service configuration object according to the target internet access IP and the target port.
S203: and calling a type object acquisition function to determine the type of the target log service object corresponding to the log service configuration object.
S204: and acquiring the log service object corresponding to the target log service object type by utilizing a JAVA reflection mechanism.
And a JAVA reflection (reflection) mechanism is deployed in advance, and after a type object acquisition function is called to determine a target log service object type corresponding to the log service configuration object, the JAVA reflection mechanism is utilized to acquire the log service object corresponding to the target log service object type. The advantage that the Java reflection mechanism can construct any class of object in the running state of the program is fully utilized, and the acquisition efficiency and accuracy of the log service object are improved.
S205: and calling a log service object initialization function to initialize the log service object so as to finish the log service starting of the target server.
Corresponding to the above method embodiment, the present invention further provides a log service starting device, where the log service starting device described below and the log service starting method described above can be referred to correspondingly.
Referring to fig. 3, fig. 3 is a block diagram of a log service starting device according to an embodiment of the present invention, where the device may include:
The request analysis module 31 is configured to analyze the received log service starting request to obtain a target Internet Protocol (IP) and a target port corresponding to a target server of the log service to be started;
A configuration object creation module 32 for creating a log service configuration object according to the target portal IP and the target port;
An object type determining module 33, configured to invoke a type object obtaining function to determine a target log service object type corresponding to the log service configuration object;
The object obtaining module 34 is configured to call a log service object obtaining function to obtain a log service object corresponding to the target log service object type;
The service starting module 35 is configured to call a log service object initializing function to initialize the log service object, so as to complete the log service starting of the target server.
According to the technical scheme, after the target internet access IP and the target port corresponding to the target server of the log service to be started are obtained through analysis, the log service configuration object is created according to the target internet access IP and the target port, the type of the target log service object corresponding to the log service configuration object is determined through the type object acquisition function, the preset log service object acquisition function is called to acquire the log service object corresponding to the target log service object type, and the log service object is initialized to finish the log service starting of the target server. The invention realizes that a plurality of log service objects are created on the appointed internet access IP and the port according to the requirement, thereby being capable of starting the plurality of log service objects and meeting the service requirement.
In one embodiment of the present invention, the object obtaining module 34 is specifically a module for obtaining a log service object corresponding to the target log service object type by using a JAVA reflection mechanism.
In one embodiment of the present invention, the object obtaining module 34 is specifically a module that calls a log service object obtaining function to obtain a log service object of the udp type when the target log service object type is the udp type.
In one embodiment of the present invention, the object obtaining module 34 is specifically a module that calls a log service object obtaining function to obtain a log service object of a tcp type when the target log service object type is the tcp type.
Corresponding to the above method embodiment, referring to fig. 4, fig. 4 is a schematic diagram of a log service starting device provided by the present invention, where the device may include:
a memory 332 for storing a computer program;
a processor 322, configured to implement the steps of the log service initiation method of the above-described method embodiment when executing the computer program.
Specifically, referring to fig. 5, fig. 5 is a schematic diagram of a specific structure of a log service starting device according to the present embodiment, where the log service starting device may have a relatively large difference due to different configurations or performances, and may include a processor (central processing units, CPU) 322 (e.g., one or more processors) and a memory 332, where the memory 332 stores one or more computer applications 342 or data 344. Wherein the memory 332 may be transient storage or persistent storage. The program stored in memory 332 may include one or more modules (not shown), each of which may include a series of instruction operations in the data processing apparatus. Still further, the processor 322 may be configured to communicate with the memory 332 to execute a series of instruction operations in the memory 332 on the log service initiation device 301.
The log service initiation device 301 may also include one or more power supplies 326, one or more wired or wireless network interfaces 350, one or more input output interfaces 358, and/or one or more operating systems 341.
The steps in the log service initiation method described above may be implemented by the structure of the log service initiation device.
Corresponding to the above method embodiments, the present invention also provides a computer readable storage medium having a computer program stored thereon, which when executed by a processor, performs the steps of:
Analyzing the received log service starting request to obtain a target Internet Protocol (IP) and a target port corresponding to a target server of the log service to be started; creating a log service configuration object according to the target internet access IP and the target port; calling a type object acquisition function to determine a target log service object type corresponding to the log service configuration object; calling a log service object acquisition function to acquire a log service object corresponding to the target log service object type; and calling a log service object initialization function to initialize the log service object so as to finish the log service starting of the target server.
The computer readable storage medium may include: a U-disk, a removable hard disk, a Read-Only Memory (ROM), a random access Memory (Random Access Memory, RAM), a magnetic disk, or an optical disk, or other various media capable of storing program codes.
For the description of the computer-readable storage medium provided by the present invention, refer to the above method embodiments, and the disclosure is not repeated here.
In this specification, each embodiment is described in a progressive manner, and each embodiment is mainly described in a different point from other embodiments, so that the same or similar parts between the embodiments are referred to each other. The apparatus, device and computer readable storage medium of the embodiments are described more simply because they correspond to the methods of the embodiments, and the description thereof will be given with reference to the method section.
The principles and embodiments of the present invention have been described herein with reference to specific examples, but the description of the examples above is only for aiding in understanding the technical solution of the present invention and its core ideas. It should be noted that it will be apparent to those skilled in the art that various modifications and adaptations of the invention can be made without departing from the principles of the invention and these modifications and adaptations are intended to be within the scope of the invention as defined in the following claims.

Claims (10)

1. A log service initiation method, comprising:
Analyzing the received log service starting request to obtain a target Internet Protocol (IP) and a target port corresponding to a target server of the log service to be started;
creating a log service configuration object according to the target internet access IP and the target port;
Calling a type object acquisition function to determine a target log service object type corresponding to the log service configuration object;
calling a log service object acquisition function to acquire a log service object corresponding to the target log service object type;
and calling a log service object initialization function to initialize the log service object so as to finish the log service starting of the target server.
2. The method for starting up a log service according to claim 1, wherein calling a log service object obtaining function to obtain a log service object corresponding to the target log service object type comprises:
and acquiring the log service object corresponding to the target log service object type by using a JAVA reflection mechanism.
3. The method according to claim 1 or 2, wherein invoking a log service object acquisition function to acquire a log service object corresponding to the target log service object type comprises:
and when the target log service object type is the udp type, calling the log service object acquisition function to acquire the log service object of the udp type.
4. The method according to claim 1 or 2, wherein invoking a log service object acquisition function to acquire a log service object corresponding to the target log service object type comprises:
and when the target log service object type is a tcp type, calling the log service object acquisition function to acquire the log service object of the tcp type.
5. A log service initiation apparatus, comprising:
The request analysis module is used for analyzing the received log service starting request to obtain a target Internet Protocol (IP) and a target port corresponding to a target server of the log service to be started;
The configuration object creation module is used for creating a log service configuration object according to the target internet access IP and the target port;
The object type determining module is used for calling a type object obtaining function to determine the type of the target log service object corresponding to the log service configuration object;
the object acquisition module is used for calling a log service object acquisition function to acquire a log service object corresponding to the target log service object type;
And the service starting module is used for calling a log service object initializing function to initialize the log service object so as to finish the log service starting of the target server.
6. The log service starting apparatus according to claim 5, wherein the object obtaining module is specifically a module for obtaining a log service object corresponding to the target log service object type by using a JAVA reflection mechanism.
7. The log service activation apparatus according to claim 5 or 6, wherein the object acquisition module is specifically a module that, when the target log service object type is a udp type, invokes the log service object acquisition function to acquire the udp type log service object.
8. The log service activation apparatus according to claim 5 or 6, wherein the object acquisition module is specifically a module that, when the target log service object type is a tcp type, invokes the log service object acquisition function to acquire the log service object of the tcp type.
9. A log service initiation apparatus, comprising:
A memory for storing a computer program;
A processor for implementing the steps of the log service activation method according to any one of claims 1 to 4 when executing the computer program.
10. A computer readable storage medium, characterized in that the computer readable storage medium has stored thereon a computer program which, when executed by a processor, implements the steps of the log service activation method according to any of claims 1 to 4.
CN202111398813.7A 2021-11-19 2021-11-19 Log service starting method, device, equipment and readable storage medium Active CN113961271B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202111398813.7A CN113961271B (en) 2021-11-19 2021-11-19 Log service starting method, device, equipment and readable storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202111398813.7A CN113961271B (en) 2021-11-19 2021-11-19 Log service starting method, device, equipment and readable storage medium

Publications (2)

Publication Number Publication Date
CN113961271A CN113961271A (en) 2022-01-21
CN113961271B true CN113961271B (en) 2024-05-10

Family

ID=79471839

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202111398813.7A Active CN113961271B (en) 2021-11-19 2021-11-19 Log service starting method, device, equipment and readable storage medium

Country Status (1)

Country Link
CN (1) CN113961271B (en)

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103870560A (en) * 2014-03-06 2014-06-18 上海爱数软件有限公司 Log managing method for cluster
CN109039787A (en) * 2018-09-28 2018-12-18 新华三大数据技术有限公司 log processing method, device and big data cluster
CN113141403A (en) * 2021-04-21 2021-07-20 北京天空卫士网络安全技术有限公司 Log transmission method and device

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103870560A (en) * 2014-03-06 2014-06-18 上海爱数软件有限公司 Log managing method for cluster
CN109039787A (en) * 2018-09-28 2018-12-18 新华三大数据技术有限公司 log processing method, device and big data cluster
CN113141403A (en) * 2021-04-21 2021-07-20 北京天空卫士网络安全技术有限公司 Log transmission method and device

Also Published As

Publication number Publication date
CN113961271A (en) 2022-01-21

Similar Documents

Publication Publication Date Title
CN109871289B (en) Remote Procedure Call (RPC) service generation method and device
CN112565443A (en) Internet of things data analysis method, device, equipment and storage medium
CN108628729B (en) Software testing method and software testing client
CN112583797B (en) Multi-protocol data processing method, device, equipment and computer readable storage medium
CN111984561B (en) IPMI command processing method, system, device and medium for BMC
CN107402782A (en) A kind of method and device for being used to load plug-in unit in live software
CN112261094A (en) Message processing method and proxy server
CN114124929A (en) Cross-network data processing method and device
CN103701867A (en) Method, system and central server for processing call requests
CN115329170A (en) Webpage crawling method, device, equipment and storage medium
CN114500633A (en) Data forwarding method, related device, program product and data transmission system
CN113961271B (en) Log service starting method, device, equipment and readable storage medium
CN115550354A (en) Data processing method and device and computer readable storage medium
CN110162250B (en) Screenshot method, system and storage medium
CN104821939B (en) It is a kind of to be used to implement computer and the method and apparatus of mobile equipment room asynchronous communication
CN116932147A (en) Streaming job processing method and device, electronic equipment and medium
US10447821B1 (en) Method and apparatus of providing thin client functionality
CN113612643B (en) Network configuration method, device and equipment of cloud mobile phone and storage medium
US7568194B2 (en) Method and system for availability checking on distributed objects
CN114640610A (en) Service management method and device based on cloud protogenesis and storage medium
CN110781001B (en) Kubernetes-based container environment variable checking method
CN114265866A (en) Streaming data processing method, rule plug-in, streaming data processing module and system
CN111294221B (en) Network isolation configuration method and device based on haproxy
CA3176864A1 (en) General-purpose processing method and apparatus for data exchange
CN113709264A (en) Address acquisition method, equipment, system and 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
GR01 Patent grant
GR01 Patent grant