Adds long host names in dashboard views

This commit is contained in:
Simone Mainardi 2017-07-21 15:33:34 +02:00
parent fcd007a5e9
commit 12d96b9d6a
2 changed files with 17 additions and 1 deletions

View file

@ -15,6 +15,7 @@ perPage = _GET["perPage"]
sortColumn = _GET["sortColumn"]
sortOrder = _GET["sortOrder"]
protocol = _GET["protocol"]
long_names = _GET["long_names"]
criteria = _GET["criteria"]
-- Host comparison parameters
@ -46,6 +47,16 @@ end
-- Get from redis the throughput type bps or pps
throughput_type = getThroughputType()
if(long_names == nil) then
long_names = false
else
if(long_names == "1") then
long_names = true
else
long_names = false
end
end
criteria_key = nil
sortPrefs = "hosts"
if(criteria ~= nil) then
@ -249,7 +260,11 @@ for _key, _value in pairsByKeys(vals, funct) do
value["name"] = key
end
print(shortHostName(value["name"]))
if(long_names) then
print(value["name"])
else
print(shortHostName(value["name"]))
end
if(value["ip"] ~= nil) then
label = getHostAltName(value["ip"])