I am counting number of lines in a log file that contain the string "TPMS". I have two items:
logrt.count[/tmp/rtl433.json,TPMS,,,skip] with an interval of 1s
and
logrt.count[/tmp/rtl433.jso.,TPMS,,,skip] with an interval of 60s
I just added the latter version of the item, my thinking behind this is that I do not need such granular data here, a count over the past minute would be adequate for my not-statistically-rigorous analysis of traffic in the neighbourhood.
Graphing them together and looking at the hits:

I don't understand why my 1s interval item seems to graph so much smaller than my 60s interval item. These are the relevant log entries:
Can anybody explain this to me?
logrt.count[/tmp/rtl433.json,TPMS,,,skip] with an interval of 1s
and
I just added the latter version of the item, my thinking behind this is that I do not need such granular data here, a count over the past minute would be adequate for my not-statistically-rigorous analysis of traffic in the neighbourhood.
Graphing them together and looking at the hits:
I don't understand why my 1s interval item seems to graph so much smaller than my 60s interval item. These are the relevant log entries:
Code:
{"time" : "2020-12-25 22:00:44", "model" : "Abarth 124 Spider", "type" : "TPMS", "id" : "0cb55cd4", "flags" : "05", "pressure_kPa" : 238.740, "temperature_C" : 14.000, "status" : 80, "mic" : "CHECKSUM"}
{"time" : "2020-12-25 22:00:44", "model" : "Abarth 124 Spider", "type" : "TPMS", "id" : "0cb55cd4", "flags" : "05", "pressure_kPa" : 238.740, "temperature_C" : 14.000, "status" : 80, "mic" : "CHECKSUM"}
{"time" : "2020-12-25 22:00:44", "model" : "Abarth 124 Spider", "type" : "TPMS", "id" : "0cb55cd4", "flags" : "05", "pressure_kPa" : 238.740, "temperature_C" : 14.000, "status" : 80, "mic" : "CHECKSUM"}
{"time" : "2020-12-25 22:33:38", "model" : "Ford", "type" : "TPMS", "id" : "66a6f7bb", "code" : "7c024b", "mic" : "CHECKSUM"}
{"time" : "2020-12-25 22:33:42", "model" : "Ford", "type" : "TPMS", "id" : "66a5fb2e", "code" : "78bd4b", "mic" : "CHECKSUM"}
{"time" : "2020-12-25 22:33:42", "model" : "Ford", "type" : "TPMS", "id" : "66a5fb2e", "code" : "78be4b", "mic" : "CHECKSUM"}
{"time" : "2020-12-25 22:33:42", "model" : "Ford", "type" : "TPMS", "id" : "66a5fb2e", "code" : "78bf4b", "mic" : "CHECKSUM"}
{"time" : "2020-12-25 22:33:42", "model" : "Ford", "type" : "TPMS", "id" : "66a5fb2e", "code" : "78cb4b", "mic" : "CHECKSUM"}
Comment