mirror of
https://github.com/amidaware/tacticalrmm.git
synced 2026-04-26 15:05:57 +03:00
[PR #243] [MERGED] Move Check Runs from Audit to its own table #3526
Labels
No labels
In Process
bug
bug
dev-triage
documentation
duplicate
enhancement
fixed
good first issue
help wanted
integration
invalid
pull-request
question
requires agent update
security
ui tweak
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tacticalrmm#3526
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/amidaware/tacticalrmm/pull/243
Author: @sadnub
Created: 1/10/2021
Status: ✅ Merged
Merged: 1/11/2021
Merged by: @wh1te909
Base:
develop← Head:develop📝 Commits (8)
69583cadocker dev fixes8fef184add check history graph for cpu, memory, and diskspace4a649a6blackc9d6fe9allow returning all check data7e3ea20add some tests and bug fixesb6449d2black6812e72fix process sorting1bfe9accomplete other pending actions with same task if task is deleted📊 Changes
26 files changed (+617 additions, -24 deletions)
View changed files
📝
.devcontainer/entrypoint.sh(+2 -2)📝
api/tacticalrmm/agents/tasks.py(+4 -0)📝
api/tacticalrmm/apiv3/views.py(+0 -10)📝
api/tacticalrmm/autotasks/tasks.py(+6 -0)📝
api/tacticalrmm/checks/admin.py(+2 -1)➕
api/tacticalrmm/checks/migrations/0011_check_run_history.py(+30 -0)➕
api/tacticalrmm/checks/migrations/0011_checkhistory.py(+39 -0)➕
api/tacticalrmm/checks/migrations/0012_auto_20210110_0503.py(+18 -0)➕
api/tacticalrmm/checks/migrations/0013_auto_20210110_0505.py(+18 -0)➕
api/tacticalrmm/checks/migrations/0014_merge_20210110_1808.py(+13 -0)➕
api/tacticalrmm/checks/migrations/0015_auto_20210110_1808.py(+27 -0)📝
api/tacticalrmm/checks/models.py(+26 -1)📝
api/tacticalrmm/checks/serializers.py(+14 -2)📝
api/tacticalrmm/checks/tasks.py(+12 -2)📝
api/tacticalrmm/checks/tests.py(+69 -0)📝
api/tacticalrmm/checks/urls.py(+1 -0)📝
api/tacticalrmm/checks/views.py(+28 -1)➕
api/tacticalrmm/core/migrations/0012_coresettings_check_history_prune_days.py(+18 -0)📝
api/tacticalrmm/core/models.py(+2 -0)📝
api/tacticalrmm/core/tasks.py(+6 -0)...and 6 more files
📄 Description
-Created a graph that shows check history for cpuload, memory, and diskspace.
-Removed creating check_run audit logs
-Added Core Settings option for check history retention
-Added to the core maintenance task to remove old check history data
Also fixes #234
Fixes an instance where pending actions never get completed
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.