agent

zabbix表达式

匿名 (未验证) 提交于 2019-12-03 00:19:01
http://www.cnblogs.com/jiangxu67/p/3990372.html https://item.jd.com/12015986.html 1)Zabbix触发器的语法如下: { < server > : < key > . < function > ( < parameter > )} < operator > < constant > 1 用Template App Zabbix Agent模板中的主机ping监控的触发器来进行说明: {Template App Zabbix Agent:agent.ping.nodata(5m)}=1 < server > Template App Zabbix Agent 即监控模板 < key > agent.ping 即监控模板里的项目Items < function > nodata() 及项目所使用的方法 < parameter > 5m 及方法所使用的参数 < operator >   运算符,选填 < constant >   常量,选填 1 2 3 4 5 6 7 8 文章来源: zabbix表达式

Zabbix主动模式与被动模式的区别——最简单的解释

我怕爱的太早我们不能终老 提交于 2019-12-02 19:02:19
  一直搞不清楚Zabbix的主动模式和被动模式的差别,网上看到别人博客里的解释都是云里雾里的,完全搞不清。知道偶然看到了以下这个解释。就基本上明白了。     Zabbix的主动模式和被动模式都是相对agent来说的。一般情况下默认使用的是zabbix的被动模式,即zabbix server根据监控项定义的时间主动去收集zabbix agent上的数据,优点是能使用更多的模板,更具有灵活性,缺点是当zabbix agent节点过多的时候会增加zabbix server的负荷。主动模式就是zabbix agent将消息推送给zabbix server,优点是减轻了zabbix server的压力,缺点是所有的模板要修改为主动模式——转自百度百科 来源: https://www.cnblogs.com/biaopei/p/11759059.html

Cycle through a list of agents gives an error

六眼飞鱼酱① 提交于 2019-12-02 17:28:12
问题 I have this code on an action button that should just run through the Agents and disable all of the scheduled agents: var agentList:Array = database.getAgents(); 3: for (var n=0 ; n < agentList.length; ++n ){ 4: var name:string = agentList[n]; 5: dBar.info(name,"Agent Name "); 6: var ag:NotesAgent = database.getAgent(name); 7: dBar.info(ag.getName()); 8: if (ag.isEnabled()){ 9: dBar.info(ag.getName(),"Is Enabled "); 10: ag.isEnabled() = false; 11: } 12: } The problem is that when I run it I

Design patterns for Agent / Actor based concurrent design [closed]

橙三吉。 提交于 2019-12-02 15:55:14
Recently i have been getting into alternative languages that support an actor/agent/shared nothing architecture - ie. scala, clojure etc (clojure also supports shared state). So far most of the documentation that I have read focus around the intro level. What I am looking for is more advanced documentation along the gang of four but instead shared nothing based. Why ? It helps to grok the change in design thinking. Simple examples are easy, but in a real world java application (single threaded) you can have object graphs with 1000's of members with complex relationships. But with agent based

How can I a SQL Server Agent job if a file exists in a server folder?

夙愿已清 提交于 2019-12-02 15:35:45
问题 I need to import a flat file daily. The file changes its name every day. After the file is processed, it needs to be moved to another folder. I noticed I can schedule jobs in the SQL Server Agent, and that I can tell it to run every hour or so and that I am able to add CMD commands to it. The solution I found was to run a script to check if the file exists, since the folder should be empty or have at least one file. If the file exists, the script renames the file to one used in the SSIS

Cycle through a list of agents gives an error

青春壹個敷衍的年華 提交于 2019-12-02 10:56:45
I have this code on an action button that should just run through the Agents and disable all of the scheduled agents: var agentList:Array = database.getAgents(); 3: for (var n=0 ; n < agentList.length; ++n ){ 4: var name:string = agentList[n]; 5: dBar.info(name,"Agent Name "); 6: var ag:NotesAgent = database.getAgent(name); 7: dBar.info(ag.getName()); 8: if (ag.isEnabled()){ 9: dBar.info(ag.getName(),"Is Enabled "); 10: ag.isEnabled() = false; 11: } 12: } The problem is that when I run it I get this error: Error while executing JavaScript action expression Script interpreter error, line=6, col

Non-resolvable parent POM: Could not find artifact

泪湿孤枕 提交于 2019-12-01 15:51:28
I have recently looked into Gorilla Logic's open source testing tool and need to make some changes in order to be able to log something to the console. I have checked out the code out of source control for the "Android Agent" and now I am looking to build a new .jar agent file. I need to use the mvn clean install to build the .jar file. When I try to build it the command line is giving this error Non-resolvable parent POM: Could not find artifact com.gorillalogic.monkeytalk:monkeytalk:pom:1.0.12-SNAPSHOT and 'parent.relativePath' points at wrong local POM @ line 6, column 10 -> [Help 2] Can

Non-resolvable parent POM: Could not find artifact

北城余情 提交于 2019-12-01 14:44:04
问题 I have recently looked into Gorilla Logic's open source testing tool and need to make some changes in order to be able to log something to the console. I have checked out the code out of source control for the "Android Agent" and now I am looking to build a new .jar agent file. I need to use the mvn clean install to build the .jar file. When I try to build it the command line is giving this error Non-resolvable parent POM: Could not find artifact com.gorillalogic.monkeytalk:monkeytalk:pom:1.0

TFS 2015:No agent could be found with the following capabilities: msbuild, visualstudio, vstest

这一生的挚爱 提交于 2019-12-01 06:22:11
We have recently upgraded to TFS 2015 Update 4. When I tried to do a build, I am getting the following error: There are issues with the request or definition that may prevent the build from running:No agent could be found with the following capabilities: msbuild, visualstudio, vstest Queue the build anyway? I tried the workaround mentioned in this link , but still couldn't figure out. I have installed VS 2017 Enterprise in the Build Machine. Note, that since this is a POC I have installed Build Agent on the TFS Server itself. Should anything extra be need to be installed? Please help. TIA You

TFS 2015:No agent could be found with the following capabilities: msbuild, visualstudio, vstest

两盒软妹~` 提交于 2019-12-01 04:15:45
问题 We have recently upgraded to TFS 2015 Update 4. When I tried to do a build, I am getting the following error: There are issues with the request or definition that may prevent the build from running:No agent could be found with the following capabilities: msbuild, visualstudio, vstest Queue the build anyway? I tried the workaround mentioned in this link, but still couldn't figure out. I have installed VS 2017 Enterprise in the Build Machine. Note, that since this is a POC I have installed