12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #quartz配置线程池
- org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPool
- org.quartz.threadPool.threadCount=100
- #quartz配置线程优先级(1-9)
- org.quartz.threadPool.threadPriority=5
- org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread=true
- #JobStore配置
- org.quartz.jobStore.class=org.quartz.simpl.RAMJobStore
- #quartz配置任务执行超时
- org.quartz.jobStore.misfireThreshold=120000
- #Skip Check Update
- #update:true
- #not update:false
- org.quartz.scheduler.skipUpdateCheck=true
- #配置trigger执行历史日志
- org.quartz.plugin.triggHistory.class=org.quartz.plugins.history.LoggingTriggerHistoryPlugin
- org.quartz.plugin.triggHistory.triggerFiredMessage=Trigger {1}.{0} fired job {6}.{5} at: {4, date, HH:mm:ss MM/dd/yyyy}
- org.quartz.plugin.triggHistory.triggerCompleteMessage=Trigger {1}.{0} completed firing job {6}.{5} at {4, date, HH:mm:ss MM/dd/yyyy} with resulting trigger instruction code: {9}
- #ShutdownHookPlugin插件的配置样例
- org.quartz.plugin.shutdownhook.class=org.quartz.plugins.management.ShutdownHookPlugin
- org.quartz.plugin.shutdownhook.cleanShutdown=true
- #quartz配置守护任务触发器延时
- org.quartz.defendTrigger.delay=30000
- #quartz配置守护任务触发器时间规则,秒-分-时 天-月-周-年
- #org.quartz.defendTrigger.cron=0 0/10 23 * * ? *
- org.quartz.defendTrigger.cron=0 0/10 * * * ? *
- #配置HttpClient连接超时8s
- automation.server.httpclient.connectTimeout=240000
- #配置HttpClient读取超时4s
- automation.server.httpclient.socketTimeout=120000
- #配置HttpClient连接池获取连接实例的超时4s
- automation.server.httpclient.connectRequestTimeout=60000
- #配置HttpClient最大重连数,默认5次
- automation.server.httpclient.maxRedirects=5
- #配置HttpClient连接池大小
- automation.server.httpclient.poolSize=40
- #配置HttpClient字符集
- automation.server.httpclient.charset=UTF-8
- #登陆url
- automation.server.loginURL=http://10.128.151.139:443/services/system/security/login
- #登陆名
- automation.server.loginName=admin
- #登陆密码
- automation.server.password=123456
- #配置prometheus监控URL
- automation.server.prometheus.url=http://10.110.200.178:9090/api/v1/query_range
- #配置prometheus受监控主机实例名
- automation.server.prometheus.name=container
- #配置prometheus受监控主机端口
- automation.server.prometheus.port=9100
- #配置prometheus受监控主机网速监控device规则(en开头)
- automation.server.prometheus.device=en.%2B
- #配置prometheus网络监控时长(默认监控device驱动,输出时长45s)
- automation.server.prometheus.times=45
|