mirror of https://github.com/Icinga/icinga2.git
Converted example config files.
This commit is contained in:
parent
c44d8d5912
commit
16d2a02e04
|
@ -1,9 +1,7 @@
|
||||||
{
|
local object application "icinga" {
|
||||||
"icinga": {
|
|
||||||
"icinga": {
|
}
|
||||||
}
|
|
||||||
},
|
local object component "demo" {
|
||||||
"component": {
|
|
||||||
"demo": { }
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -1,34 +1,29 @@
|
||||||
{
|
local object application "icinga" {
|
||||||
"icinga": {
|
privkey = "icinga-c2.key",
|
||||||
"icinga": {
|
pubkey = "icinga-c2.crt",
|
||||||
"replicate": "0",
|
|
||||||
"privkey": "icinga-c2.key",
|
cakey = "ca.crt",
|
||||||
"pubkey": "icinga-c2.crt",
|
node = "10.0.10.3",
|
||||||
"cakey": "ca.crt",
|
service = 8888
|
||||||
"node": "10.0.10.3",
|
}
|
||||||
"service": "8888"
|
|
||||||
}
|
local object component "configrpc" {
|
||||||
},
|
}
|
||||||
"component": {
|
|
||||||
"configrpc": { "replicate": "0" },
|
local object component "demo" {
|
||||||
"demo": { "replicate": "0" },
|
}
|
||||||
"discovery": { "replicate": "0", "broker": "0" }
|
|
||||||
},
|
local object component "discovery" {
|
||||||
"endpoint": {
|
broker = 0
|
||||||
"icinga-c1": {
|
}
|
||||||
"replicate": "0",
|
|
||||||
"node": "10.0.10.14",
|
local object endpoint "icinga-c1" {
|
||||||
"service": "7777",
|
node = "10.0.10.14",
|
||||||
"roles": [ "broker", "demo" ]
|
service = 7777,
|
||||||
}
|
|
||||||
},
|
roles = { "broker" }
|
||||||
"role": {
|
}
|
||||||
"broker": {
|
|
||||||
"publications": [ "discovery::NewComponent" ]
|
local object role "broker" {
|
||||||
},
|
publications = { "discovery::NewComponent" }
|
||||||
"demo": {
|
|
||||||
"publications": [ "demo::*" ],
|
|
||||||
"subscriptions": [ "demo::*" ]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -1,34 +1,29 @@
|
||||||
{
|
local object application "icinga" {
|
||||||
"icinga": {
|
privkey = "icinga-c3".key",
|
||||||
"icinga": {
|
pubkey = "icinga-c3.crt",
|
||||||
"replicate": "0",
|
cakey = "ca.crt",
|
||||||
"privkey": "icinga-c3.key",
|
|
||||||
"pubkey": "icinga-c3.crt",
|
node = "10.0.10.14",
|
||||||
"cakey": "ca.crt",
|
service = 9999
|
||||||
"node": "10.0.10.14",
|
}
|
||||||
"service": "9999"
|
|
||||||
}
|
local object component "configrpc" {
|
||||||
},
|
}
|
||||||
"component": {
|
|
||||||
"configrpc": { "replicate": "0" },
|
local object component "demo" {
|
||||||
"demo": { "replicate": "0" },
|
}
|
||||||
"discovery": { "replicate": "0", "broker": "0" }
|
|
||||||
},
|
local object component "discovery" {
|
||||||
"endpoint": {
|
broker = 0
|
||||||
"icinga-c1": {
|
}
|
||||||
"replicate": "0",
|
|
||||||
"node": "10.0.10.14",
|
local object endpoint "icinga-c1" {
|
||||||
"service": "7777",
|
node = "10.0.10.14",
|
||||||
"roles": [ "broker", "demo" ]
|
service = 7777,
|
||||||
}
|
|
||||||
},
|
roles = { "broker" }
|
||||||
"role": {
|
}
|
||||||
"broker": {
|
|
||||||
"publications": [ "discovery::NewComponent" ]
|
local object role "broker" {
|
||||||
},
|
publications = "discovery::NewComponent"
|
||||||
"demo": {
|
|
||||||
"publications": [ "demo::*" ],
|
|
||||||
"subscriptions": [ "demo::*" ]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue