Add monitoring service and database schema
- Implement monitoring service with heartbeat, lease tasks, resume tasks, and task result handling. - Create monitoring time utilities for business date calculations. - Add unit tests for date window resolution and business day handling. - Define database schema for monitoring-related tables including quotas, daily reports, and task management. - Establish migration scripts for creating and dropping monitoring tables.
This commit is contained in:
@@ -109,13 +109,23 @@ const router = createRouter({
|
||||
{
|
||||
path: "tracking",
|
||||
name: "tracking",
|
||||
component: () => import("@/views/FeatureStubView.vue"),
|
||||
component: () => import("@/views/TrackingView.vue"),
|
||||
meta: {
|
||||
titleKey: "route.tracking.title",
|
||||
descriptionKey: "route.tracking.description",
|
||||
navKey: "/tracking",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "tracking/questions/:brandId/:questionId",
|
||||
name: "tracking-question-detail",
|
||||
component: () => import("@/views/TrackingQuestionDetailView.vue"),
|
||||
meta: {
|
||||
titleKey: "route.trackingQuestion.title",
|
||||
descriptionKey: "route.trackingQuestion.description",
|
||||
navKey: "/tracking",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "knowledge",
|
||||
name: "knowledge",
|
||||
|
||||
Reference in New Issue
Block a user