2017-12-01 09:44:28 +00:00
|
|
|
package probe
|
|
|
|
|
|
|
|
const (
|
|
|
|
ConfigFileName = "config.json"
|
2017-12-17 10:24:19 +00:00
|
|
|
|
|
|
|
PathBin = "bin"
|
|
|
|
PathPID = "pid"
|
|
|
|
PathConfig = "config"
|
2017-12-18 08:33:07 +00:00
|
|
|
PathJRE = "jre"
|
2018-03-26 06:08:28 +00:00
|
|
|
PathLogs = "logs"
|
2017-12-18 08:22:30 +00:00
|
|
|
|
2018-03-20 15:12:19 +00:00
|
|
|
ContainerGeneralName = "general"
|
|
|
|
ContainerGeneralFileName = "overflow_probe_container_general.jar"
|
|
|
|
ContainerGeneralLogConfigFileName = "overflow_probe_container_general.logging.json"
|
2017-12-18 08:22:30 +00:00
|
|
|
|
2018-03-20 15:12:19 +00:00
|
|
|
ContainerNetworkName = "network"
|
|
|
|
ContainerNetworkFileName = "overflow_probe_container_network"
|
|
|
|
ContainerNetworkLogConfigFileName = "overflow_probe_container_network.logging.json"
|
2017-12-18 08:22:30 +00:00
|
|
|
|
2018-03-20 15:12:19 +00:00
|
|
|
ContainerDiscoveryName = "discovery"
|
|
|
|
ContainerDiscoveryFileName = "overflow_probe_container_discovery"
|
|
|
|
ContainerDiscoveryLogConfigFileName = "overflow_probe_container_discovery.logging.json"
|
2017-12-04 10:42:13 +00:00
|
|
|
)
|