This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Trend clean
#15
This will log all daily values with their respective offsets. If the whole list does not fit, you can change line 17 and add an extra offset. Just make sure that this extra offset is divisible by 8.
Code:
infile = '/tmp/trends/t1.trend'
values = {}

ffi = require('ffi')

function stringtodouble(chunk)
  local dbl = ffi.new('double[1]')
  ffi.copy(dbl, chunk, 8)
  return dbl[ 0 ]
end

info = require('rrd').info(infile)

data = io.readfile(infile)
offset = info.header_size + (info['rra[0].rows'] + info['rra[1].rows']) * 8

offset = offset + 0 * 8

while true do
  chunk = data:sub(offset + 1, offset + 8)

  if #chunk == 8 then
    value = stringtodouble(chunk)

    -- skip NaN (empty/undefined value)
    if value == value then
      values[ #values + 1 ] = string.format('%d %.1f', offset, value)
    end
  else
    break
  end

  offset = offset + 8
end

text = table.concat(values, '\n')
log(text)
Reply


Messages In This Thread
Trend clean - by domotiqa - 22.11.2023, 07:12
RE: Trend clean - by Daniel - 22.11.2023, 08:42
RE: Trend clean - by domotiqa - 22.11.2023, 08:51
RE: Trend clean - by Daniel - 22.11.2023, 08:54
RE: Trend clean - by domotiqa - 22.11.2023, 08:59
RE: Trend clean - by admin - 22.11.2023, 09:01
RE: Trend clean - by domotiqa - 22.11.2023, 09:25
RE: Trend clean - by domotiqa - 15.12.2023, 07:44
RE: Trend clean - by admin - 15.12.2023, 10:47
RE: Trend clean - by jmir - 31.05.2024, 05:58
RE: Trend clean - by domotiqa - 19.12.2023, 08:23
RE: Trend clean - by domotiqa - 19.12.2023, 16:39
RE: Trend clean - by admin - 31.05.2024, 06:51
RE: Trend clean - by jmir - 31.05.2024, 07:06
RE: Trend clean - by admin - 31.05.2024, 07:15
RE: Trend clean - by jmir - 31.05.2024, 14:17
RE: Trend clean - by domotiqa - 18.09.2024, 17:16
RE: Trend clean - by admin - 19.09.2024, 10:43
RE: Trend clean - by domotiqa - 20.09.2024, 10:12

Forum Jump: