influxdb3-plugin-sdk 0.5.0

Author-side packaging library for InfluxDB 3 plugins.
Documentation
1
2
3
4
5
6
"""Plugin entry point for the `process_scheduled_call` trigger."""


def process_scheduled_call(influxdb3_local, schedule_time, args):
    """Called on each scheduled fire. `schedule_time` is a naive UTC datetime."""
    influxdb3_local.info(f"scheduled call at {schedule_time}")