Skip to content

Commit

Permalink
[docs] Updated radius monitoring docs to include celerybeat schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
pandafy authored and nemesifier committed Dec 5, 2024
1 parent 11a259f commit a56b54e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/user/radius_monitoring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,16 @@ Django project's settings as following:
# In your_project/settings.py
INSTALLED_APPS.append("openwisp_radius.integrations.monitoring")
CELERY_BEAT_SCHEDULE.update(
{
"write_user_registration_metrics": {
"task": "openwisp_radius.integrations.monitoring.tasks.write_user_registration_metrics",
"schedule": timedelta(hours=1),
"args": None,
"relative": True,
}
}
)
.. note::

Expand Down

0 comments on commit a56b54e

Please sign in to comment.