User Tools
development:applications:alarmcache:configuration
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| development:applications:alarmcache:configuration [2017/07/18 12:48] – created bcoffey | development:applications:alarmcache:configuration [2021/06/25 10:09] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ======Alarm Cache Configuration File====== | ||
| + | The config file is located at / | ||
| + | =====RabbitMQ Configuration===== | ||
| + | < | ||
| + | rabbitmq { | ||
| + | enabled = true | ||
| + | credentials { | ||
| + | username = ' | ||
| + | password = '# | ||
| + | host = ' | ||
| + | virtualHost = ' | ||
| + | } | ||
| + | queues { | ||
| + | //Incoming Message | ||
| + | alarmCacheQueue = ' | ||
| + | //Outgoing Message | ||
| + | } | ||
| + | exchanges { | ||
| + | //Incoming Message | ||
| + | snmpAuditEventExchange = ' | ||
| + | |||
| + | //Outgoing Message | ||
| + | alarmCacheOutboundExchange = ' | ||
| + | } | ||
| + | tags { | ||
| + | snmpAuditEventTag1 = ' | ||
| + | snmpAuditEventTag2 = ' | ||
| + | snmpAuditEventTag3 = ' | ||
| + | snmpAuditEventTag4 = ' | ||
| + | snmpAuditEventTag6 = ' | ||
| + | snmpAuditEventTag5 = ' | ||
| + | snmpAuditEventTag7 = ' | ||
| + | snmpAuditEventTag8 = ' | ||
| + | snmpAuditEventTag9 = ' | ||
| + | } | ||
| + | bindings { | ||
| + | //In the Form " | ||
| + | //Incoming Message | ||
| + | auditEventBinding1 = " | ||
| + | auditEventBinding2 = " | ||
| + | auditEventBinding3 = " | ||
| + | auditEventBinding4 = " | ||
| + | auditEventBinding5 = " | ||
| + | auditEventBinding6 = " | ||
| + | auditEventBinding7 = " | ||
| + | auditEventBinding8 = " | ||
| + | auditEventBinding9 = " | ||
| + | } | ||
| + | consumer { | ||
| + | name = ' | ||
| + | } | ||
| + | numberOfTriesBeforeFail = 1 | ||
| + | numberOfSecondsBetweeTries = 1 | ||
| + | numberOfSecondsToWaitForRabbitReconnect = 5 | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | =====Spring Security Configuration===== | ||
| + | < | ||
| + | grails.plugin.springsecurity.securityConfigType = " | ||
| + | grails.plugin.springsecurity.roleHierarchy = ''' | ||
| + | | ||
| + | ''' | ||
| + | grails.plugin.springsecurity.interceptUrlMap = [ | ||
| + | [pattern: '/', | ||
| + | [pattern: '/ | ||
| + | [pattern: '/ | ||
| + | [pattern: '/ | ||
| + | ] | ||
| + | </ | ||
| + | |||
| + | =====Thread Management Configuration===== | ||
| + | < | ||
| + | threadmanager { | ||
| + | nameOfInboundMessageThreads = ' | ||
| + | numberOfSecondsToWaitBeforeTimeoutForInbound = 20 | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | =====Datasource Configuration===== | ||
| + | < | ||
| + | dataSource.pooled = true | ||
| + | dataSource.driverClassName = " | ||
| + | dataSource.dialect = " | ||
| + | dataSource.properties.defaultTransactionIsolation=4 | ||
| + | dataSource.url = " | ||
| + | dataSource.username = " | ||
| + | dataSource.password = " | ||
| + | </ | ||
| + | |||
| + | =====Overall Config File===== | ||
| + | < | ||
| + | rabbitmq { | ||
| + | enabled = true | ||
| + | credentials { | ||
| + | username = ' | ||
| + | password = '# | ||
| + | host = ' | ||
| + | virtualHost = ' | ||
| + | } | ||
| + | queues { | ||
| + | //Incoming Message | ||
| + | alarmCacheQueue = ' | ||
| + | //Outgoing Message | ||
| + | } | ||
| + | exchanges { | ||
| + | //Incoming Message | ||
| + | snmpAuditEventExchange = ' | ||
| + | |||
| + | //Outgoing Message | ||
| + | alarmCacheOutboundExchange = ' | ||
| + | } | ||
| + | tags { | ||
| + | snmpAuditEventTag1 = ' | ||
| + | snmpAuditEventTag2 = ' | ||
| + | snmpAuditEventTag3 = ' | ||
| + | snmpAuditEventTag4 = ' | ||
| + | snmpAuditEventTag6 = ' | ||
| + | snmpAuditEventTag5 = ' | ||
| + | snmpAuditEventTag7 = ' | ||
| + | snmpAuditEventTag8 = ' | ||
| + | snmpAuditEventTag9 = ' | ||
| + | } | ||
| + | bindings { | ||
| + | //In the Form " | ||
| + | //Incoming Message | ||
| + | auditEventBinding1 = " | ||
| + | auditEventBinding2 = " | ||
| + | auditEventBinding3 = " | ||
| + | auditEventBinding4 = " | ||
| + | auditEventBinding5 = " | ||
| + | auditEventBinding6 = " | ||
| + | auditEventBinding7 = " | ||
| + | auditEventBinding8 = " | ||
| + | auditEventBinding9 = " | ||
| + | |||
| + | //Outgoing Message | ||
| + | // | ||
| + | } | ||
| + | consumer { | ||
| + | name = ' | ||
| + | } | ||
| + | numberOfTriesBeforeFail = 1 | ||
| + | numberOfSecondsBetweeTries = 1 | ||
| + | numberOfSecondsToWaitForRabbitReconnect = 5 | ||
| + | } | ||
| + | |||
| + | threadmanager { | ||
| + | nameOfInboundMessageThreads = ' | ||
| + | numberOfSecondsToWaitBeforeTimeoutForInbound = 20 | ||
| + | } | ||
| + | |||
| + | dataSource.pooled = true | ||
| + | dataSource.driverClassName = " | ||
| + | dataSource.dialect = " | ||
| + | dataSource.properties.defaultTransactionIsolation=4 | ||
| + | dataSource.url = " | ||
| + | dataSource.username = " | ||
| + | dataSource.password = " | ||
| + | |||
| + | |||
| + | |||
| + | grails.plugin.springsecurity.securityConfigType = " | ||
| + | grails.plugin.springsecurity.roleHierarchy = ''' | ||
| + | | ||
| + | ''' | ||
| + | grails.plugin.springsecurity.interceptUrlMap = [ | ||
| + | [pattern: '/', | ||
| + | [pattern: '/ | ||
| + | [pattern: '/ | ||
| + | [pattern: '/ | ||
| + | ] | ||
| + | </ | ||