|
- ---
- salt: "PLACE_SALT"
-
- logger:
- dir: "logs/monapi"
- level: "WARNING"
- keepHours: 24
-
- http:
- secret: "PLACE_SECRET"
-
- # for ldap authorization
- ldap:
- host: "ldap.example.org"
- port: 389
- baseDn: "dc=example,dc=org"
- # AD: manange@example.org
- bindUser: "cn=manager,dc=example,dc=org"
- bindPass: "*******"
- # openldap: (&(uid=%s))
- # AD: (&(sAMAccountName=%s))
- authFilter: "(&(uid=%s))"
- attributes:
- dispname: "cn"
- email: "mail"
- phone: "mobile"
- im: ""
- coverAttributes: false
- autoRegist: false
- tls: false
- startTLS: false
-
- # notify support: voice, sms, mail, im
- # if we have all of notice channel
- # notify:
- # p1: ["voice", "sms", "mail", "im"]
- # p2: ["sms", "mail", "im"]
- # p3: ["mail", "im"]
-
- # if we only have mail channel
- notify:
- p1: ["mail"]
- p2: ["mail"]
- p3: ["mail"]
-
- # addresses accessible using browsers
- link:
- stra: http://n9e.example.com/#/monitor/strategy/%v
- event: http://n9e.example.com/#/monitor/history/his/%v
- claim: http://n9e.example.com/#/monitor/history/cur/%v
-
- # for alarm event and message queue
- redis:
- addr: "127.0.0.1:6379"
- db: 0
- pass: ""
- # in ms
- # timeout:
- # conn: 500
- # read: 3000
- # write: 3000
|