Announcement

Collapse
No announcement yet.

plugin causing issues with events firing.

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    plugin causing issues with events firing.

    When I have this plugin enabled, my events (recurring or triggered) are delayed by various times. So if I have an event that is triggered by a received x10, I can see the x10 received but the event is delayed in running anywhere from 5 seconds to almost a minute. If I disable this plugin, everything returns to normal and works fine.

    With this plugin, I run an event every 2 minutes that records the temps of 8 different areas. Then every 5 minutes I run another event that records the high and low of each zone.

    Is anyone else seeing anything like this?

    #2
    If the high and low are via the min() and max(), your problem may be that you are growing the CSV file immensely quickly. It can take a very long time to load and parse a large CSV file. Ideally you would calculate the values on a daily or so basis and then auto-truncate the file. (which right now I don't think I've provided for.)

    Try truncating the CSV file and see if your event times return to normal.

    Comment

    Working...
    X