summaryrefslogtreecommitdiff
path: root/esm.config.json
diff options
context:
space:
mode:
authorShevAbam <shevabam@gmail.com>2014-06-18 10:15:18 +0200
committerShevAbam <shevabam@gmail.com>2014-06-18 10:15:18 +0200
commit3f6a49bae3ec616469f21dfbbbaff052055b0c0e (patch)
treec59f35c5a6b84b05a2bacd61e4c9655cfb554688 /esm.config.json
parent20705a550df5b13a544dc0865c6aef16e64c99d9 (diff)
- System : fix to get the distro name
- Services : fix on service names with accent - Services : ability to specify a host for each service - Network usage : fix to retrieve the name of the network interfaces - Memory : the cached and buffers memory are added to free memory now - Load Average : taking into account the number of cores - Disk usage : new option to hide tmpfs mountpoints - General : remove all PHP short tags
Diffstat (limited to 'esm.config.json')
-rw-r--r--esm.config.json9
1 files changed, 8 insertions, 1 deletions
diff --git a/esm.config.json b/esm.config.json
index f5812fe..e0a6ebd 100644
--- a/esm.config.json
+++ b/esm.config.json
@@ -1,8 +1,11 @@
{
"esm": {
- "version": "2.0",
+ "version": "2.1",
"website": "http://www.ezservermonitor.com"
},
+ "disk": {
+ "show_tmpfs": false
+ },
"ping": {
"hosts": [
"free.fr",
@@ -16,18 +19,22 @@
"services": [
{
"name": "Web Server (Apache)",
+ "host": "localhost",
"port": 80
},
{
"name": "FTP Server (ProFTPd)",
+ "host": "localhost",
"port": 21
},
{
"name": "Databases (MySQL)",
+ "host": "localhost",
"port": 3306
},
{
"name": "SSH",
+ "host": "localhost",
"port": 22
}
]