Works for me. Try running script from my previous post and see what you get in Logs.
Your script is also missing trend_type variable. It should be either 'C', 'D' or 'G' (counter, counter with negative delta or absolute value respectively).
(07.12.2016, 20:15)Pawel Wrote: Thanks Erwin, those scripts save me a lot of time. I made a small change and all objects with specific tag will have own trend:
-- Batch adding trends - Created by Erwin van der Zwart - Schneider Electric Netherlands ------------- For spaceLYnk FW 1.2.1 or higher and homeLYnk FW 1.5.1 or higher ---------------------------------- Refresh browser after creation to show the trends ---------------------------------------------------------------------------------------- Start Parameters ------------------------------------------- Create trend to object with this tag tag_name = "make_trend"-- Set username and password for access to HLusername = 'admin'password = 'admin'-- Select trend type to create (or multiple types on same object)create_trendtype_counter = truecreate_trendtype_counter_with_negative_delta = truecreate_trendtype_absolute_value = true-- Set trend precicion (!Important! Can only be these values: 0 to 8)trendprecision = 0-- Set trend resolution (!Important! Can only be these values: 5 / 10 / 15 / 20 / 30 / 60 minutes))trendresolution = 15-- Set trend count resolution (!Important! Can only be these values: '30' = 30 days, '180' = 180 days, '365' = 1 year, '730' = 2 years, '1825' = 5 yearstrendcountresolution = 365-- Set trend count days (!Important! Can only be these values: '1' = 1 year / '2' = 2 years / '5' = 5 years / '10' = 10 years)trendcountdaily = 10-- Set show always 0 base line trendshowzero = 0-- 0 = disabled 1 = enabled------------------------------------------ End Parameters ------------------------------------------------------------------------ DON'T CHANGE ANYTHING UNDER THIS LINE --------------------------------- Load modulesrequire('json')
require('socket.url')
require('socket.http')
-- Set HL ip address as localhostip = '127.0.0.1'-- Create url for trend creationurl = 'http://' .. username .. ':' .. password .. '@' .. ip .. '/scada-main/trends/save'-- Function to send request to create trendfunctionurl_send(trend_object, trend_name, trend_type, trend_resolution, trend_precision, trend_count_resolution, trend_count_daily, trend_show_zero, trend_id)
localtrend = {
object = trend_object,
name = trend_name,
type = trend_type,
resolution = trend_resolution,
precision = trend_precision,
count_resolution = trend_count_resolution * 12 * 24, -- nr of days * nr of points in a hour at min resolution (60/5 = 12) * hours per daycount_daily = trend_count_daily * 365, -- nr of days * 365 days a yearshow_zero = trend_show_zero,
id = trend_id,
}
data = json.encode(trend)
form_data = 'data=' .. socket.url.escape(data)
socket.http.TIMEOUT = 15localres, code, response_header = socket.http.request(url, form_data)
returnres, code, response_headerend-- Set counters for creation lognumber_of_trends = 0number_failed = 0objectwithtag = grp.tag(tag_name)
-- Loop for each group adress with specific tag forkey, valueinpairs(objectwithtag) do-- Get current group address from loop current_GA = knxlib.decodega(value.id)
-- Get current object infoobjectinfo = grp.find(current_GA)
-- Check if object excistsifobjectinfo ~= nilthen-- Set parameters for requesttrendobject = objectinfo.idtrendname = objectinfo.nametrendid = ''-- Check if trend type 'Counter' should be createdifcreate_trendtype_counter == truethen-- Call function to send create requestresult, code, response_header = url_send(trendobject, trendname, 'C', trendresolution, trendprecision, trendcountresolution, trendcountdaily, trendshowzero, trendid)
-- Calculate results for creation results logifresult == '{"success":true}'thennumber_of_trends = number_of_trends + 1elsenumber_failed = number_failed + 1endend-- Check if trend type 'Counter with negative delta' should be createdifcreate_trendtype_counter_with_negative_delta == truethen-- Call function to send create requestresult, code, response_header = url_send(trendobject, trendname, 'D', trendresolution, trendprecision, trendcountresolution, trendcountdaily, trendshowzero, trendid)
-- Calculate results for creation results logifresult == '{"success":true}'thennumber_of_trends = number_of_trends + 1elsenumber_failed = number_failed + 1endend-- Check if trend type 'Absolute value' should be createdifcreate_trendtype_absolute_value == truethen-- Call function to send create requestresult, code, response_header = url_send(trendobject, trendname, 'G', trendresolution, trendprecision, trendcountresolution, trendcountdaily, trendshowzero, trendid)
-- Calculate results for creation results logifresult == '{"success":true}'thennumber_of_trends = number_of_trends + 1elsenumber_failed = number_failed + 1endendendendifnumber_failed == 0thenlog ("Created " .. number_of_trends .. " trends succesfully")
elselog ("Created " .. number_of_trends .. " trends succesfully and creation of " .. number_failed .. " trends failed")
end-- Disable script when done automaticlyscript.disable(_SCRIPTNAME)
Hi Pawel,
in this case don't you create .csv file?
Thanks.
Hello,
I have just carried out a test with this script which seems clear and complete to me. But it doesn't work for me?! I linked the Tag to three variables for the test and the log return is as follows: * string: Created 0 trends successfully and creation of 4 trends failed. Do you have any possible solutions?
-- Batch adding trends v1.3 - Created by Erwin van der Zwart - Schneider Electric Netherlands --------------------- For spaceLYnk FW 3.0.0 or higher and Wiser for KNX FW 3.0.0 or higher ------------------------------------------ Make sure that "Block unsafe functions in scripts" is disbled in General Configuration-- Refresh browser after creation to show the trends ----------------------------------------------------------------------------------------------------------- Start Parameters -------------------------------------------------- Start address of objectsstart_objectaddress = '3/0/0'-- Trends for all objects between these range are created-- End address of objectsend_objectaddress = '3/0/2'-- Select trend type to create (or multiple types on same object)create_trendtype_counter = falsecreate_trendtype_counter_with_negative_delta = falsecreate_trendtype_absolute_value = true-- Select aggregate function (!Important! Can only be these values: AVERAGE / MIN / MAX / LAST))trendaggregatefunction = 'AVERAGE'-- Set trend resolution (!Important! Can only be these values: 5 / 10 / 15 / 20 / 30 / 60 minutes))trendresolution = 5-- Set trend precicion (!Important! Can only be these values: 0 to 8) decimal placestrendprecision = 2-- Set trend count resolution (!Important! Can only be these values: '30' = 30 days, '180' = 180 days, '365' = 1 year, '730' = 2 years, '1825' = 5 yearstrendcountresolution = 365-- Set trend count days (!Important! Can only be these values: '1' = 1 year / '2' = 2 years / '5' = 5 years / '10' = 10 years)trendcountdaily = 10-- Set show always 0 base line trendshowzero = 0-- 0 = disabled 1 = enabled------------------------------------------------ End Parameters ------------------------------------------------------------------------------------- DON'T CHANGE ANYTHING UNDER THIS LINE ---------------------------------------- Calculate start address to DB formatstart_objectaddress = knxlib.encodega(start_objectaddress)
-- Calculate end address to DB formatend_objectaddress = knxlib.encodega(end_objectaddress)
-- Function to send request (in this case to create a trend)functionwebrequest(mod, act, vars, data)
require('json')
require('dbenv')
localpathvars = varsor {}
functiongetvar(v)
returnvars[ v ]
endjson.data = function()
returndataor {}
endifmod == 'plugin'thenpath = 'plugins/' .. act .. '/web.lua'elsepath = 'web/' .. mod .. '/' .. act .. '.lua'endresult = dofile('/lib/genohm-scada/' .. path)
-- Calculate results for creation results logifresult.success == truethennumber_of_trends = number_of_trends + 1elsenumber_failed = number_failed + 1endend-- Function to create varsfunctioncreatevars(trend_object, trend_name, trend_type, trend_aggregate_function, trend_resolution, trend_precision, trend_count_resolution, trend_count_daily, trend_show_zero, trend_id)
localvars = {
object = trend_object,
name = trend_name,
type = trend_type,
aggregation = trend_aggregate_function,
resolution = trend_resolution,
precision = trend_precision,
count_resolution = trend_count_resolution * 12 * 24, -- nr of days * nr of points in a hour at min resolution (60/5 = 12) * hours per daycount_daily = trend_count_daily * 365, -- nr of days * 365 days a yearshow_zero = trend_show_zero,
id = trend_id,
}
returnvarsend-- Set counters for creation lognumber_of_trends = 0number_failed = 0-- Loop from startadres to end address to create trendsfori = start_objectaddress, end_objectaddress, 1do-- Get current group address from loop current_GA = knxlib.decodega(i)
-- Get current object infoobjectinfo = grp.find(current_GA)
-- Check if object excistsifobjectinfo ~= nilthen-- Set parameters for requesttrendobject = objectinfo.idtrendname = objectinfo.nametrendid = ''-- Check if trend type 'Counter' should be createdifcreate_trendtype_counter == truethen-- Call function to create varsrequestdata = createvars(trendobject, trendname, 'C', trendaggregatefunction, trendresolution, trendprecision, trendcountresolution, trendcountdaily, trendshowzero, trendid)
webrequest('trends', 'save', {request = 'save'}, requestdata)
end-- Check if trend type 'Counter with negative delta' should be createdifcreate_trendtype_counter_with_negative_delta == truethen-- Call function to send create varsrequestdata = createvars(trendobject, trendname, 'D', trendaggregatefunction, trendresolution, trendprecision, trendcountresolution, trendcountdaily, trendshowzero, trendid)
webrequest('trends', 'save', {request = 'save'}, requestdata)
end-- Check if trend type 'Absolute value' should be createdifcreate_trendtype_absolute_value == truethen-- Call function to send create varsrequestdata = createvars(trendobject, trendname, 'G', trendaggregatefunction, trendresolution, trendprecision, trendcountresolution, trendcountdaily, trendshowzero, trendid)
webrequest('trends', 'save', {request = 'save'}, requestdata)
endendendifnumber_failed == 0thenlog ("Created " .. number_of_trends .. " trends succesfully")
elselog ("Created " .. number_of_trends .. " trends succesfully and creation of " .. number_failed .. " trends failed")
end-- Disable script when done automaticlyscript.disable(_SCRIPTNAME)
(19.12.2024, 14:57)Erwin van der Zwart Wrote: Can you try this version, it uses webrequests instead of URL with basic authentication that is not supported anymore in FW 3.0.0
-- Batch adding trends v1.3 - Created by Erwin van der Zwart - Schneider Electric Netherlands --------------------- For spaceLYnk FW 3.0.0 or higher and Wiser for KNX FW 3.0.0 or higher ------------------------------------------ Make sure that "Block unsafe functions in scripts" is disbled in General Configuration-- Refresh browser after creation to show the trends ----------------------------------------------------------------------------------------------------------- Start Parameters -------------------------------------------------- Start address of objectsstart_objectaddress = '3/0/0'-- Trends for all objects between these range are created-- End address of objectsend_objectaddress = '3/0/2'-- Select trend type to create (or multiple types on same object)create_trendtype_counter = falsecreate_trendtype_counter_with_negative_delta = falsecreate_trendtype_absolute_value = true-- Select aggregate function (!Important! Can only be these values: AVERAGE / MIN / MAX / LAST))trendaggregatefunction = 'AVERAGE'-- Set trend resolution (!Important! Can only be these values: 5 / 10 / 15 / 20 / 30 / 60 minutes))trendresolution = 5-- Set trend precicion (!Important! Can only be these values: 0 to 8) decimal placestrendprecision = 2-- Set trend count resolution (!Important! Can only be these values: '30' = 30 days, '180' = 180 days, '365' = 1 year, '730' = 2 years, '1825' = 5 yearstrendcountresolution = 365-- Set trend count days (!Important! Can only be these values: '1' = 1 year / '2' = 2 years / '5' = 5 years / '10' = 10 years)trendcountdaily = 10-- Set show always 0 base line trendshowzero = 0-- 0 = disabled 1 = enabled------------------------------------------------ End Parameters ------------------------------------------------------------------------------------- DON'T CHANGE ANYTHING UNDER THIS LINE ---------------------------------------- Calculate start address to DB formatstart_objectaddress = knxlib.encodega(start_objectaddress)
-- Calculate end address to DB formatend_objectaddress = knxlib.encodega(end_objectaddress)
-- Function to send request (in this case to create a trend)functionwebrequest(mod, act, vars, data)
require('json')
require('dbenv')
localpathvars = varsor {}
functiongetvar(v)
returnvars[ v ]
endjson.data = function()
returndataor {}
endifmod == 'plugin'thenpath = 'plugins/' .. act .. '/web.lua'elsepath = 'web/' .. mod .. '/' .. act .. '.lua'endresult = dofile('/lib/genohm-scada/' .. path)
-- Calculate results for creation results logifresult.success == truethennumber_of_trends = number_of_trends + 1elsenumber_failed = number_failed + 1endend-- Function to create varsfunctioncreatevars(trend_object, trend_name, trend_type, trend_aggregate_function, trend_resolution, trend_precision, trend_count_resolution, trend_count_daily, trend_show_zero, trend_id)
localvars = {
object = trend_object,
name = trend_name,
type = trend_type,
aggregation = trend_aggregate_function,
resolution = trend_resolution,
precision = trend_precision,
count_resolution = trend_count_resolution * 12 * 24, -- nr of days * nr of points in a hour at min resolution (60/5 = 12) * hours per daycount_daily = trend_count_daily * 365, -- nr of days * 365 days a yearshow_zero = trend_show_zero,
id = trend_id,
}
returnvarsend-- Set counters for creation lognumber_of_trends = 0number_failed = 0-- Loop from startadres to end address to create trendsfori = start_objectaddress, end_objectaddress, 1do-- Get current group address from loop current_GA = knxlib.decodega(i)
-- Get current object infoobjectinfo = grp.find(current_GA)
-- Check if object excistsifobjectinfo ~= nilthen-- Set parameters for requesttrendobject = objectinfo.idtrendname = objectinfo.nametrendid = ''-- Check if trend type 'Counter' should be createdifcreate_trendtype_counter == truethen-- Call function to create varsrequestdata = createvars(trendobject, trendname, 'C', trendaggregatefunction, trendresolution, trendprecision, trendcountresolution, trendcountdaily, trendshowzero, trendid)
webrequest('trends', 'save', {request = 'save'}, requestdata)
end-- Check if trend type 'Counter with negative delta' should be createdifcreate_trendtype_counter_with_negative_delta == truethen-- Call function to send create varsrequestdata = createvars(trendobject, trendname, 'D', trendaggregatefunction, trendresolution, trendprecision, trendcountresolution, trendcountdaily, trendshowzero, trendid)
webrequest('trends', 'save', {request = 'save'}, requestdata)
end-- Check if trend type 'Absolute value' should be createdifcreate_trendtype_absolute_value == truethen-- Call function to send create varsrequestdata = createvars(trendobject, trendname, 'G', trendaggregatefunction, trendresolution, trendprecision, trendcountresolution, trendcountdaily, trendshowzero, trendid)
webrequest('trends', 'save', {request = 'save'}, requestdata)
endendendifnumber_failed == 0thenlog ("Created " .. number_of_trends .. " trends succesfully")
elselog ("Created " .. number_of_trends .. " trends succesfully and creation of " .. number_failed .. " trends failed")
end-- Disable script when done automaticlyscript.disable(_SCRIPTNAME)
It works perfectly! thank you very much for the time saved on creating the graphics