CN101799751A - Method for building monitoring agent software of host machine - Google Patents

Method for building monitoring agent software of host machine Download PDF

Info

Publication number
CN101799751A
CN101799751A CN 200910231327 CN200910231327A CN101799751A CN 101799751 A CN101799751 A CN 101799751A CN 200910231327 CN200910231327 CN 200910231327 CN 200910231327 A CN200910231327 A CN 200910231327A CN 101799751 A CN101799751 A CN 101799751A
Authority
CN
China
Prior art keywords
data
agent software
agent
thread
socket
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
Application number
CN 200910231327
Other languages
Chinese (zh)
Other versions
CN101799751B (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.)
Inspur Software Co Ltd
Original Assignee
Langchao Qilu Software Industry 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 Langchao Qilu Software Industry Co Ltd filed Critical Langchao Qilu Software Industry Co Ltd
Priority to CN 200910231327 priority Critical patent/CN101799751B/en
Publication of CN101799751A publication Critical patent/CN101799751A/en
Application granted granted Critical
Publication of CN101799751B publication Critical patent/CN101799751B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Landscapes

  • Stored Programmes (AREA)
  • Debugging And Monitoring (AREA)

Abstract

The invention provides a method for building monitoring agent software of a host machine, which comprises the following steps: a Java language builds agent software for the host machine to collecting information, and the agent software communicates with a system of a J2EE frame. The agent software mainly consists of a controller module, a detecting procedure, an object container, a tread pool, a Socket connecting pool, a data capturing category and an agent configuration file. The agent software mainly completes the transmitting and the receiving of the data; offers the functions of agent registration, data cache and parameter management; and has four interfaces which are respectively and mutually communicated with a control subsystem, a management subsystem, a managed object and a remote server of an agent sever. Therefore, the method can easily achieve the aim of obtaining a monitor message of the host machine.

Description

A kind of method that makes up monitoring agent software of host machine
Technical field
The present invention relates to a kind of method that makes up monitoring agent software of host machine, specifically a kind of.
The present invention relates to webmaster field relevant knowledge, be applicable to enterprise's webmaster software systems that the J2EE framework makes up, is a kind of long-range implementation method of obtaining host monitor information.
Background technology
Traditional webmastering software adopts the CS pattern mostly, when network and equipment become increasingly complex, administers and maintains just to become a relatively thing of difficulty, particularly requires workflow management in ITIL O﹠M field, the clearly defining responsibilities people, and this pattern can not be satisfied the demand again; And manage and safeguard to be a kind of inevitable choice of enterprise by the browser mode by the BS pattern, enterprise's webmastering software by the exploitation of J2EE framework is popular, realizing that by Java agent software is undertaken alternately by agent software and webmastering software system, is the problem to be solved in the present invention.Below summary of the invention mainly describes is the implementation method of the monitoring agent software of host machine realized by Java.
Summary of the invention
The purpose of this invention is to provide a kind of method that makes up monitoring agent software of host machine.
The objective of the invention is to realize in the following manner, make up the agent software that is used for the host information collection by Java language, system by this agent software and J2EE framework communicates, agent software mainly contains controller module, trace routine, object container, thread pool, the Socket connection pool, the data acquisition class, several parts of agent configuration file are formed, agent software is mainly finished the transmission and the reception work of data, agency of trademark registration is provided simultaneously, metadata cache, the function of parameter management, by provide four kinds of interfaces respectively with the control subsystem of acting server, ADMINISTRATION SUBSYSTEM, managed object, remote server mutual, wherein:
Controller module
The function class of Agent is similar to application server, controller module just is equivalent to the controller layer in the usually said MVC pattern therein, controller module is the information in the loading configuration file in initialized process, obtains the threshold value of follow-up certain operations by configuration file;
Controller module is in agency's core position, be the inlet and the hinge of Agent running, the most important is to realize that mapping request is to specific implementation class function, the request that client sends has a lot, controller module finds corresponding concrete data acquisition process to realize class according to the request path that receives, from object container, obtain object instance, generate the data acquisition task, add in the work queue of thread pool, when being arranged, idle thread carries out the data acquisition operations, final data is gathered the class image data and is handled the back return results, has finished a request responding process;
Figure G2009102313279D00021
Trace routine
Agent software is as a common process, in operational process, may go wrong because of various reasons and monitor service can not normally be provided, therefore the running status that needs continuous monitoring agent software, the service that guarantees agent software can continue available, the purpose of trace routine is exactly the running status for monitoring agent software, trace routine is not moved always, is the timed task timer-triggered scheduler by operating system, its effect mainly contain following some:
1. check the state of agent software, guarantee agent controller,, just search the PID of agent process, kill old process and restart the agency according to condition code if detect agent software not operation or no longer response always in operation;
2. regularly go server to check latest edition, keep Agent up-to-date;
3. regularly from the up-to-date configuration information of downloaded, wherein mainly comprise:
1) server ip address;
2) Service-Port;
3) native system version number;
4) mapping URL is to the information of proxy class;
5) connect the time-out time setting;
6) other information;
Figure G2009102313279D00022
Object container
Objects all in Java all must be created earlier before use, otherwise can report unusual, but we needn't create object at every turn again now, pass through object container, initialized the time, enter all objects are pre-loaded, and when using at every turn, directly from object container, obtain its and directly use;
Figure G2009102313279D00023
Thread pool
Thread pool is exactly the object container that is used for depositing thread, and purpose is for maximum multiplexing thread resources, and agent software is handled in a large number the little tasks from the outside, and promptly individual task time of handling is very short and quantity request is a lot; A simple model that makes up agent software is normally: just create a new thread whenever a request arrives, be the request service then in new thread; By a plurality of tasks are reused thread, the expense of thread creation has been shared on a plurality of tasks, by suitably adjusting the number of threads in the thread pool, when the request outnumber the largest amount of thread pool the time, the request of newly arriving is subsequently just waited for always, till idle thread of acquisition is handled, thereby can prevent inadequate resource;
Figure G2009102313279D00024
The Socket connection pool
General socket is connected with following dual mode: the long connection with short is connected:
The long connection: the socket connection does not disconnect after data are sent completely, remain into unusual or till program withdraws from, the long connection needs regularly to server ping data, and be unimpeded to guarantee that socket connects always, when the obstructed server of ping, must open connection again;
The short connection: when a secondary data send finish after, initiatively disconnect and connecting, each transmission data all will once connect, opening operation, the advantage of this mode is: the resource occupation to server is smaller comparatively speaking, but owing to all will reconnect at every turn, also bigger on the speed expense, this mode for the sort of need be not often and more suitable under the situation of server interaction;
Realizing Socket connection pool function, is to safeguard in connection pool that a plurality of Socket are long to connect, and improves the reusability of Socket object by connection pool, promotes the communication performance of Socket to greatest extent;
Adopt the Socket connection pool, after setting up Socket connection and authentication, the socket connection is cached in the pond, connection pool is responsible for safeguarding the validity of socket, by sending the keepalive bag, and safeguard the life cycle that connects, and comprise regular reconstruction, what obtain when getting connection like this is exactly long connection of Socket of safeguarding in the connection pool;
Figure G2009102313279D00031
The data acquisition class
Gather class and use Java language to realize, realize unified interface, externally unify the call entry, gathering back return data form is the xml form, and convenient transmission and parsing provide self defined interface pattern and standard, support self-defined collection class;
Figure G2009102313279D00032
Agent configuration file
In controller module, start the multithread programs monitoring state of network, when detecting the network log-on data local record function of having no progeny in connecting, according to the data collection cycle that disposes in the configuration file, image data also records in the local file, comprise timestamp information in the data recording, the data file unification is to gather the form name of class name+system data+.xmls, the start time that the record network interrupts in a specific file, on treating to upload onto the server together again after network recovery normally, local data recording history file is regularly deleted, and only keeps the record of a period of time;
Adopt the agent software of java language compilation, agent software can be realized and the information interaction of long-range J2EE architecture system.
Agent software has from management function, checks availability of service voluntarily.
Agent software is gathered the main frame real-time information, realizes the purpose of B/S pattern monitoring distance host with monitoring server, and can improve data aggregation amount and reliability.
The invention has the beneficial effects as follows:
What 1) the present invention realized is the implementation method of B/S pattern webmaster ageng, and NM server can be carried out real-time, interactive with the agent software that is deployed on the equipment, thus collecting device information.
2) the present invention adopts the Java language exploitation, compares the traditional C mode software and how much adopts the C language to develop, and agent software of the present invention can carry out with the software systems of J2EE framework easily alternately.
3) agent software realized of the present invention can easily be deployed under the multiple environment, and unified interface mode mainly is that what to emphasize from Java itself is the characteristic of " once compiling, carry out everywhere ".
Description of drawings
Fig. 1 is the structural representation of monitoring agent software of host machine.
Embodiment
With reference to accompanying drawing method of the present invention is done following detailed explanation.
Agent software mainly contains controller module, thread pool, Socket connection pool, object container, data acquisition class, acts on behalf of several parts compositions such as trace routine, configuration file.Agent software is mainly finished the transmission and the reception work of data, provide functions such as agency of trademark registration, metadata cache, parameter management simultaneously, by four kinds of interfaces mutual with the control subsystem of acting server, ADMINISTRATION SUBSYSTEM, managed object, remote server respectively is provided.
Figure G2009102313279D00041
Controller
The function class of Agent is similar to application server, and controller just is equivalent to the controller layer in the usually said MVC pattern therein.Controller is the information in the loading configuration file in initialized process, obtains the threshold value of follow-up certain operations by configuration file.
Controller is in agency's core position, is the inlet and the hinge of Agent running.The most important is to realize that mapping request is to specific implementation class function.The request that client sends has a lot, controller finds corresponding concrete data acquisition process to realize class according to the request path that receives, from object container, obtain object instance, generate the data acquisition task, add in the work queue of thread pool, carry out the data acquisition operations when having waited idle thread.Final data is gathered the class image data and is handled the back return results.Finished a request responding process.
Figure G2009102313279D00042
Trace routine
The agency may go wrong in operational process because of various reasons as a common process, and monitor service can not normally be provided.Therefore the running status that needs continuous monitoring agent guarantees that agency's service can continue available.The purpose of trace routine is exactly the running status for the monitoring agent program.Trace routine is not moved always, is the timed task timer-triggered scheduler by operating system.Its effect mainly contain following some:
1. check agency's state, guarantee that agent controller is always in operation.If detect agency not operation or no longer response, just search the PID of agent process according to condition code, kill old process and restart the agency.
2. regularly go server to check latest edition, keep Agent up-to-date.
3. regularly from the up-to-date configuration information of downloaded.Wherein mainly comprise:
4. server ip address
5. Service-Port
6. native system version number
7. mapping URL is to the information (many) of proxy class
8. connect the time-out time setting
9. other information
For example: URL is mapped to proxy class
aix-overall=com.lc.monitor.host.aix.agent.overall.AIXOverAllAgentAction
Figure G2009102313279D00051
Object container
Objects all in Java all must be created earlier before use, otherwise can report unusual.But we can create object at every turn again now.By object container, can be initialized the time, enter all objects are pre-loaded.And when using at every turn, can directly from object container, obtain its and directly use.
By using object container, avoided a large amount of Object Creations and the expense of destroying operation, reduced the use of resource, alleviated the burden that JVM carries out the garbage reclamation operation, delayed to operate the influence of the STW effect of bringing because of garbage reclamation, improve the performance of obtaining object, promoted the response speed of Agent.
Thread pool
Thread pool is exactly the object container that is used for depositing thread, and purpose is for maximum multiplexing thread resources.Agent is handled in a large number the little tasks from the outside, and promptly individual task time of handling is very short and quantity request is a lot.
A simple model that makes up Agent is normally: just create a new thread whenever a request arrives, be the request service then in new thread.Usually, for prototyping this method work get fine, if but attempt to dispose by this way the Agent of operation, the defective of so this method is just clearly.One of deficiency of the corresponding thread of each request is: the expense of creating a new thread for each request is very big; The Agent of creating new thread for each request in the system resource of creating and destroying the time that spends on the thread and consumption than spend in that to handle time and resource that actual user asks more.
Except creating and destroy the expense of thread, movable thread is consume system resources also.Creating too many thread in a JVM may cause system to use up internal memory or " switching excessively " owing to consuming internal memory excessively.In order to prevent inadequate resource, Agent needs some ways to limit the manageable largest request number of any given time.
Thread pool provides solution for thread life cycle overhead issues and inadequate resource problem.By a plurality of tasks are reused thread, the expense of thread creation has been shared on a plurality of tasks.Its benefit is, because thread exists when request arrives, so also eliminated the delay that thread creation brought unintentionally.Like this, just can make application response faster immediately for the request service.And, by suitably adjusting the number of threads in the thread pool, when request outnumber the largest amount of thread pool the time, the request of newly arriving subsequently just waits for always, till obtaining an idle thread and handling, thereby can prevent inadequate resource.
The Socket connection pool
General socket is connected with following dual mode: the long connection with short is connected, wherein:
The long connection: socket connects and does not disconnect when data are sent completely after, remains into unusually or till program withdraws from always.The advantage of this mode is need not go to initiate to connect to disconnect at every turn, can be faster on speed than short connection, but comparatively speaking the resource pressure of server is also wanted big.The wide range of long connection usefulness, such as games system, qq or the like, the long connection generally needs timing to server ping data, and be unimpeded to guarantee that socket connects.When the obstructed server of ping, must open connection again.
The short connection: when a secondary data send finish after, initiatively disconnect and connecting, each transmission data all will once connect, opening operation, the advantage of this mode is: the resource occupation to server is smaller comparatively speaking, but owing to all will reconnect at every turn, also bigger on the speed expense, this mode for the sort of need be not often and more suitable under the situation of server interaction.
Realize Socket connection pool function, in connection pool, safeguard the long connection of a plurality of Socket.Purpose improves the reusability of Socket object by connection pool, promotes the communication performance of Socket to greatest extent.
Usually the expense of setting up the Socket connection is very big, if use short the connection, sets up when promptly needing, and disconnection immediately behind the complete operation can cause the agency to spend more a lot of resources on connecting, and response speed is slower.Analyze the back decision and adopt the Socket connection pool, set up that Socket connects and authentication after, socket connected be cached in the pond, connection pool is responsible for safeguarding the validity (by sending the keepalive bag) of socket, and safeguards the life cycle (regularly rebuilding) that connects.What obtain when getting connection like this is exactly long connection of Socket of safeguarding in the connection pool, and the effect of performance boost is got instant result.
Figure G2009102313279D00062
The data acquisition class
Gather class and use Java language to realize, realize unified interface, externally unified call entry.Gathering back return data form is the xml form, convenient transmission and parsing.Self defined interface pattern and standard are provided, support self-defined collection class.
Figure G2009102313279D00063
Agent configuration file
In controller, start the multithread programs monitoring state of network, the log-on data local record function of in detecting the network connection, having no progeny.According to the data collection cycle that disposes in the configuration file, image data also records in the local file.Comprise timestamp information in the data recording, the data file unification is to gather the form name of class name+system data+.xmls.The start time that the record network interrupts in a specific file is on treating to upload onto the server together after network recovery normally again.Local data recording history file is regularly deleted, and only keeps the record of a period of time.

Claims (4)

1. method that makes up monitoring agent software of host machine, it is characterized in that, make up the agent software that is used for the host information collection by Java language, system by this agent software and J2EE framework communicates, agent software mainly contains controller module, trace routine, object container, thread pool, the Socket connection pool, the data acquisition class, several parts of agent configuration file are formed, agent software is mainly finished the transmission and the reception work of data, agency of trademark registration is provided simultaneously, metadata cache, the function of parameter management, by provide four kinds of interfaces respectively with the control subsystem of acting server, ADMINISTRATION SUBSYSTEM, managed object, remote server mutual, wherein:
Figure F2009102313279C00011
Controller module
The function class of Agent is similar to application server, controller module just is equivalent to the controller layer in the usually said MVC pattern therein, controller module is the information in the loading configuration file in initialized process, obtains the threshold value of follow-up certain operations by configuration file;
Controller module is in agency's core position, be the inlet and the hinge of Agent running, the most important is to realize that mapping request is to specific implementation class function, the request that client sends has a lot, controller module finds corresponding concrete data acquisition process to realize class according to the request path that receives, from object container, obtain object instance, generate the data acquisition task, add in the work queue of thread pool, when being arranged, idle thread carries out the data acquisition operations, final data is gathered the class image data and is handled the back return results, has finished a request responding process;
Figure F2009102313279C00012
Trace routine
Agent software is as a common process, in operational process, may go wrong because of various reasons and monitor service can not normally be provided, therefore the running status that needs continuous monitoring agent software, the service that guarantees agent software can continue available, the purpose of trace routine is exactly the running status for monitoring agent software, trace routine is not moved always, is the timed task timer-triggered scheduler by operating system, its effect mainly contain following some:
1. check the state of agent software, guarantee agent controller,, just search the PID of agent process, kill old process and restart the agency according to condition code if detect agent software not operation or no longer response always in operation;
2. regularly go server to check latest edition, keep Agent up-to-date;
3. regularly from the up-to-date configuration information of downloaded, wherein mainly comprise:
1) server ip address;
2) Service-Port;
3) native system version number;
4) mapping URL is to the information of proxy class;
5) connect the time-out time setting;
6) other information;
Figure F2009102313279C00021
Object container
Objects all in Java all must be created earlier before use, otherwise can report unusual, but we needn't create object at every turn again now, pass through object container, initialized the time, enter all objects are pre-loaded, and when using at every turn, directly from object container, obtain its and directly use;
Figure F2009102313279C00022
Thread pool
Thread pool is exactly the object container that is used for depositing thread, and purpose is for maximum multiplexing thread resources, and agent software is handled in a large number the little tasks from the outside, and promptly individual task time of handling is very short and quantity request is a lot; A simple model that makes up agent software is normally: just create a new thread whenever a request arrives, be the request service then in new thread; By a plurality of tasks are reused thread, the expense of thread creation has been shared on a plurality of tasks, by suitably adjusting the number of threads in the thread pool, when the request outnumber the largest amount of thread pool the time, the request of newly arriving is subsequently just waited for always, till idle thread of acquisition is handled, thereby can prevent inadequate resource;
Figure F2009102313279C00023
The Socket connection pool
General socket is connected with following dual mode: the long connection with short is connected:
The long connection: the socket connection does not disconnect after data are sent completely, remain into unusual or till program withdraws from, the long connection needs regularly to server ping data, and be unimpeded to guarantee that socket connects always, when the obstructed server of ping, must open connection again;
The short connection: when a secondary data send finish after, initiatively disconnect and connecting, each transmission data all will once connect, opening operation, the advantage of this mode is: the resource occupation to server is smaller comparatively speaking, but owing to all will reconnect at every turn, also bigger on the speed expense, this mode for the sort of need be not often and more suitable under the situation of server interaction;
Realizing Socket connection pool function, is to safeguard in connection pool that a plurality of Socket are long to connect, and improves the reusability of Socket object by connection pool, promotes the communication performance of Socket to greatest extent;
Adopt the Socket connection pool, after setting up Socket connection and authentication, the socket connection is cached in the pond, connection pool is responsible for safeguarding the validity of socket, by sending the keepalive bag, and safeguard the life cycle that connects, and comprise regular reconstruction, what obtain when getting connection like this is exactly long connection of Socket of safeguarding in the connection pool;
Figure F2009102313279C00024
The data acquisition class
Gather class and use Java language to realize, realize unified interface, externally unify the call entry, gathering back return data form is the xml form, and convenient transmission and parsing provide self defined interface pattern and standard, support
Figure F2009102313279C00031
Agent configuration file
In controller module, start the multithread programs monitoring state of network, when detecting the network log-on data local record function of having no progeny in connecting, according to the data collection cycle that disposes in the configuration file, image data also records in the local file, comprise timestamp information in the data recording, the data file unification is to gather the form name of class name+system data+.xmls, the start time that the record network interrupts in a specific file, on treating to upload onto the server together again after network recovery normally, local data recording history file is regularly deleted, and only keeps the record of a period of time.
2. method according to claim 1 is characterized in that, adopts the agent software of java language compilation, and agent software can be realized and the information interaction of long-range J2EE architecture system.
3. method according to claim 1 is characterized in that agent software has from management function, checks availability of service voluntarily.
4. method according to claim 1 is characterized in that, agent software is gathered the main frame real-time information, realizes the purpose of B/S pattern monitoring distance host with monitoring server, and can improve data aggregation amount and reliability.
CN 200910231327 2009-12-02 2009-12-02 Method for building monitoring agent software of host machine Active CN101799751B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN 200910231327 CN101799751B (en) 2009-12-02 2009-12-02 Method for building monitoring agent software of host machine

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN 200910231327 CN101799751B (en) 2009-12-02 2009-12-02 Method for building monitoring agent software of host machine

Publications (2)

Publication Number Publication Date
CN101799751A true CN101799751A (en) 2010-08-11
CN101799751B CN101799751B (en) 2013-01-02

Family

ID=42595440

Family Applications (1)

Application Number Title Priority Date Filing Date
CN 200910231327 Active CN101799751B (en) 2009-12-02 2009-12-02 Method for building monitoring agent software of host machine

Country Status (1)

Country Link
CN (1) CN101799751B (en)

Cited By (37)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101938428A (en) * 2010-09-28 2011-01-05 杭州华三通信技术有限公司 Message transmission method and equipment
CN101950339A (en) * 2010-09-14 2011-01-19 上海置水软件技术有限公司 Security protection method and system of computer
CN102137032A (en) * 2011-03-24 2011-07-27 上海云高软件科技有限公司 Cloud message system and cloud message transmitting and receiving method
CN102412989A (en) * 2011-11-16 2012-04-11 山东浪潮齐鲁软件产业股份有限公司 Method for acquiring UNIX host performance data by applying Java two platform enterprise edition (J2EE)
CN102437935A (en) * 2011-12-16 2012-05-02 江西省电力公司信息通信中心 WEB application monitoring method and equipment
CN102467624A (en) * 2010-11-10 2012-05-23 金蝶软件(中国)有限公司 Method and system for software license recovery and automatic reapplication
CN102567383A (en) * 2010-12-16 2012-07-11 财团法人工业技术研究院 Object association system and method for information actuation and computer system
CN102591765A (en) * 2011-12-31 2012-07-18 珠海市君天电子科技有限公司 Progress automatic management system
CN102736970A (en) * 2012-06-29 2012-10-17 浪潮电子信息产业股份有限公司 Method for monitoring activity state of operating system
CN103067413A (en) * 2013-01-29 2013-04-24 江苏省电力公司淮安供电公司 Automatic registering method for coping with disconnection of desktop management system
CN103095476A (en) * 2011-11-02 2013-05-08 中国移动通信集团浙江有限公司 Network administration method and device based on webmaster agent
CN103595767A (en) * 2013-10-25 2014-02-19 北京华鑫杰瑞计算机系统工程有限公司 On-line and off-line supporting comprehensive state monitoring system
CN103634395A (en) * 2013-11-29 2014-03-12 国家电网公司 Method for realizing information system state monitoring in WEB manner
CN103777593A (en) * 2013-12-25 2014-05-07 中软信息系统工程有限公司 Automatic product control and production system and realizing method thereof
CN103795720A (en) * 2014-01-24 2014-05-14 北京仿真中心 Software framework implementing method supporting multi-interface protocol processing
CN104038439A (en) * 2014-06-18 2014-09-10 中国工商银行股份有限公司 Message flow control method and system
CN105204871A (en) * 2015-10-30 2015-12-30 亚信科技(南京)有限公司 Plug-in type development method and device
CN105281976A (en) * 2015-09-17 2016-01-27 国网北京市电力公司 Method and apparatus for monitoring transmission of proxy service data
CN103095476B (en) * 2011-11-02 2016-12-14 中国移动通信集团浙江有限公司 Network management based on OAMAgent and device
CN106537367A (en) * 2014-09-09 2017-03-22 英特尔公司 Technologies for proxy-based multi-threaded message passing communication
CN106980470A (en) * 2017-03-16 2017-07-25 武汉票据交易中心有限公司 A kind of startup method and system of Lightweight Container
CN107171888A (en) * 2017-05-26 2017-09-15 安徽四创电子股份有限公司 A kind of clustering performance monitoring method based on cAdvisor
CN107819858A (en) * 2017-11-14 2018-03-20 聚好看科技股份有限公司 A kind of method and device that cloud service is managed in cloud service dynamic retractility
CN108108238A (en) * 2017-12-29 2018-06-01 长威信息科技发展股份有限公司 A kind of method and electronic equipment that Autonomic Migration Framework is directed toward based on ITM monitoring agents
CN108604220A (en) * 2015-08-19 2018-09-28 斯特雷公司 Computer network modeling
CN109194744A (en) * 2018-09-05 2019-01-11 上海华测导航技术股份有限公司 A kind of data transmission method, device, storage medium and monitoring device
CN109922141A (en) * 2019-02-21 2019-06-21 北京宝兰德软件股份有限公司 The real time acquiring method and device of activity request list in Java application server
CN110225004A (en) * 2019-05-24 2019-09-10 武汉虹信技术服务有限责任公司 A kind of data collection system and method for community security protection weak electronic system
CN110806931A (en) * 2019-10-31 2020-02-18 上海依图网络科技有限公司 Method and device for realizing call link tracking of distributed service and electronic equipment
CN110865919A (en) * 2019-11-04 2020-03-06 苏宁云计算有限公司 Java process-based monitoring method and device and computer equipment
CN111324361A (en) * 2018-12-14 2020-06-23 中国移动通信集团北京有限公司 Application upgrading method and device
CN111917852A (en) * 2020-07-23 2020-11-10 上海珀立信息科技有限公司 Multi-person network synchronization system based on Unity and development method
CN112261038A (en) * 2020-10-20 2021-01-22 苏州莱锦机电自动化有限公司 Big data acquisition method and system, computer equipment and storage medium thereof
CN112272196A (en) * 2020-03-09 2021-01-26 上海曼恒数字技术股份有限公司 Method and system for removing server by system
CN112422681A (en) * 2020-11-18 2021-02-26 中盈优创资讯科技有限公司 Cross-platform distributed communication calling method and device
CN113760656A (en) * 2021-08-30 2021-12-07 深圳壹账通智能科技有限公司 Connection thread monitoring method, device, medium and equipment for connection pool
CN116886497A (en) * 2023-07-28 2023-10-13 中科驭数(北京)科技有限公司 Service grid business centralized proxy switching method and processing system based on DPU

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6487717B1 (en) * 1999-01-15 2002-11-26 Cummins, Inc. System and method for transmission of application software to an embedded vehicle computer
JP2003330756A (en) * 2002-05-14 2003-11-21 Mitsubishi Electric Corp Configuration management method for supervisory control software
KR100491541B1 (en) * 2003-08-01 2005-05-25 니트젠테크놀러지스 주식회사 A contents synchronization system in network environment and a method therefor

Cited By (51)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101950339A (en) * 2010-09-14 2011-01-19 上海置水软件技术有限公司 Security protection method and system of computer
CN101938428B (en) * 2010-09-28 2013-06-05 杭州华三通信技术有限公司 Message transmission method and equipment
CN101938428A (en) * 2010-09-28 2011-01-05 杭州华三通信技术有限公司 Message transmission method and equipment
CN102467624A (en) * 2010-11-10 2012-05-23 金蝶软件(中国)有限公司 Method and system for software license recovery and automatic reapplication
CN102467624B (en) * 2010-11-10 2014-04-02 金蝶软件(中国)有限公司 Method and system for software license recovery and automatic reapplication
CN102567383A (en) * 2010-12-16 2012-07-11 财团法人工业技术研究院 Object association system and method for information actuation and computer system
CN102137032A (en) * 2011-03-24 2011-07-27 上海云高软件科技有限公司 Cloud message system and cloud message transmitting and receiving method
CN102137032B (en) * 2011-03-24 2015-03-11 上海云高软件科技有限公司 Cloud message system and cloud message transmitting and receiving method
CN103095476A (en) * 2011-11-02 2013-05-08 中国移动通信集团浙江有限公司 Network administration method and device based on webmaster agent
CN103095476B (en) * 2011-11-02 2016-12-14 中国移动通信集团浙江有限公司 Network management based on OAMAgent and device
CN102412989A (en) * 2011-11-16 2012-04-11 山东浪潮齐鲁软件产业股份有限公司 Method for acquiring UNIX host performance data by applying Java two platform enterprise edition (J2EE)
CN102437935A (en) * 2011-12-16 2012-05-02 江西省电力公司信息通信中心 WEB application monitoring method and equipment
CN102437935B (en) * 2011-12-16 2015-01-14 江西省电力公司信息通信中心 WEB application monitoring method and equipment
CN102591765A (en) * 2011-12-31 2012-07-18 珠海市君天电子科技有限公司 Progress automatic management system
CN102736970A (en) * 2012-06-29 2012-10-17 浪潮电子信息产业股份有限公司 Method for monitoring activity state of operating system
CN103067413A (en) * 2013-01-29 2013-04-24 江苏省电力公司淮安供电公司 Automatic registering method for coping with disconnection of desktop management system
CN103595767A (en) * 2013-10-25 2014-02-19 北京华鑫杰瑞计算机系统工程有限公司 On-line and off-line supporting comprehensive state monitoring system
CN103634395A (en) * 2013-11-29 2014-03-12 国家电网公司 Method for realizing information system state monitoring in WEB manner
CN103777593B (en) * 2013-12-25 2016-10-05 中软信息系统工程有限公司 A kind of product automation manipulation production system and its implementation
CN103777593A (en) * 2013-12-25 2014-05-07 中软信息系统工程有限公司 Automatic product control and production system and realizing method thereof
CN103795720A (en) * 2014-01-24 2014-05-14 北京仿真中心 Software framework implementing method supporting multi-interface protocol processing
CN104038439B (en) * 2014-06-18 2017-05-24 中国工商银行股份有限公司 Message flow control method and system
CN104038439A (en) * 2014-06-18 2014-09-10 中国工商银行股份有限公司 Message flow control method and system
CN106537367A (en) * 2014-09-09 2017-03-22 英特尔公司 Technologies for proxy-based multi-threaded message passing communication
CN106537367B (en) * 2014-09-09 2020-10-23 英特尔公司 Techniques for proxy-based multi-threaded message passing communication
CN108604220A (en) * 2015-08-19 2018-09-28 斯特雷公司 Computer network modeling
CN105281976A (en) * 2015-09-17 2016-01-27 国网北京市电力公司 Method and apparatus for monitoring transmission of proxy service data
CN105204871A (en) * 2015-10-30 2015-12-30 亚信科技(南京)有限公司 Plug-in type development method and device
CN106980470A (en) * 2017-03-16 2017-07-25 武汉票据交易中心有限公司 A kind of startup method and system of Lightweight Container
CN107171888A (en) * 2017-05-26 2017-09-15 安徽四创电子股份有限公司 A kind of clustering performance monitoring method based on cAdvisor
CN107819858A (en) * 2017-11-14 2018-03-20 聚好看科技股份有限公司 A kind of method and device that cloud service is managed in cloud service dynamic retractility
CN107819858B (en) * 2017-11-14 2020-11-03 青岛聚看云科技有限公司 Method and device for managing cloud service during dynamic expansion and contraction of cloud service
CN108108238B (en) * 2017-12-29 2022-01-11 长威信息科技发展股份有限公司 ITM monitoring-based agent pointing automatic migration method and electronic equipment
CN108108238A (en) * 2017-12-29 2018-06-01 长威信息科技发展股份有限公司 A kind of method and electronic equipment that Autonomic Migration Framework is directed toward based on ITM monitoring agents
CN109194744A (en) * 2018-09-05 2019-01-11 上海华测导航技术股份有限公司 A kind of data transmission method, device, storage medium and monitoring device
CN109194744B (en) * 2018-09-05 2020-11-10 上海华测导航技术股份有限公司 Data transmission method and device, storage medium and monitoring equipment
CN111324361A (en) * 2018-12-14 2020-06-23 中国移动通信集团北京有限公司 Application upgrading method and device
CN109922141A (en) * 2019-02-21 2019-06-21 北京宝兰德软件股份有限公司 The real time acquiring method and device of activity request list in Java application server
CN110225004A (en) * 2019-05-24 2019-09-10 武汉虹信技术服务有限责任公司 A kind of data collection system and method for community security protection weak electronic system
CN110225004B (en) * 2019-05-24 2021-11-09 武汉虹信技术服务有限责任公司 Data acquisition system and method for community security weak current subsystem
CN110806931A (en) * 2019-10-31 2020-02-18 上海依图网络科技有限公司 Method and device for realizing call link tracking of distributed service and electronic equipment
CN110806931B (en) * 2019-10-31 2022-11-22 上海依图网络科技有限公司 Method and device for realizing call link tracking of distributed service and electronic equipment
CN110865919A (en) * 2019-11-04 2020-03-06 苏宁云计算有限公司 Java process-based monitoring method and device and computer equipment
CN110865919B (en) * 2019-11-04 2023-11-28 苏宁云计算有限公司 Monitoring method and device based on java process and computer equipment
CN112272196A (en) * 2020-03-09 2021-01-26 上海曼恒数字技术股份有限公司 Method and system for removing server by system
CN111917852A (en) * 2020-07-23 2020-11-10 上海珀立信息科技有限公司 Multi-person network synchronization system based on Unity and development method
CN112261038A (en) * 2020-10-20 2021-01-22 苏州莱锦机电自动化有限公司 Big data acquisition method and system, computer equipment and storage medium thereof
CN112422681A (en) * 2020-11-18 2021-02-26 中盈优创资讯科技有限公司 Cross-platform distributed communication calling method and device
CN113760656A (en) * 2021-08-30 2021-12-07 深圳壹账通智能科技有限公司 Connection thread monitoring method, device, medium and equipment for connection pool
CN116886497A (en) * 2023-07-28 2023-10-13 中科驭数(北京)科技有限公司 Service grid business centralized proxy switching method and processing system based on DPU
CN116886497B (en) * 2023-07-28 2024-06-07 中科驭数(北京)科技有限公司 Service grid business centralized proxy switching method and processing system based on DPU

Also Published As

Publication number Publication date
CN101799751B (en) 2013-01-02

Similar Documents

Publication Publication Date Title
CN101799751B (en) Method for building monitoring agent software of host machine
US11659020B2 (en) Method and system for real-time modeling of communication, virtualization and transaction execution related topological aspects of monitored software applications and hardware entities
CN110908879B (en) Reporting method, reporting device, reporting terminal and recording medium of buried point data
CN101605056B (en) J2EE server monitoring device and monitoring method employing same
US8539066B1 (en) System and method to monitor performance of different domains associated with a computer or network
EP2661014B1 (en) Polling sub-system and polling method for communication network system and communication apparatus
CN101707399B (en) Method and system for acquiring electric energy information
CN101860564B (en) Protocol-based service combination system and method
CN104639374A (en) Application program deployment management system
CN101651707A (en) Method for automatically acquiring user behavior log of network
CN102880503A (en) Data analysis system and data analysis method
CN112667362A (en) Method and system for deploying Kubernetes virtual machine cluster on Kubernetes
CN105357273A (en) Universal SOCKET communication and process management platform and method in asynchronous communication mode
US8849947B1 (en) IT discovery of virtualized environments by scanning VM files and images
CN105138398A (en) SOCKET communication and process management common platform and method under synchronous communication mode
CN107682460B (en) Distributed storage cluster data communication method and system
CN106899452B (en) Message circulation processing Internet of things terminal debugging method based on XM2M protocol
CN105490864A (en) Business module monitoring method based on OSGI
CN108399095B (en) Method, system, device and storage medium for supporting dynamic management of timed tasks
CN103475690B (en) Memcached node configuration method and device
CN115102877B (en) Virtual network card network detection method, device, equipment and medium
CN116016702A (en) Application observable data acquisition processing method, device and medium
CN107463490B (en) Cluster log centralized collection method applied to platform development
CN105045619B (en) Multi-level multinode version distributed method based on fixed-bandwidth in cloud computing environment
CN110457555A (en) Collecting method, device and computer equipment, storage medium based on Docker

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
C14 Grant of patent or utility model
GR01 Patent grant