···11+---
22+title: Monitor Tags
33+description: Easily categorize your monitors with tags.
44+image: /assets/changelog/monitor-tags.png
55+publishedAt: 2024-03-20
66+---
77+88+You can now create tags for your monitors to easily categorize them. Tags can be
99+used to filter monitors on the dashboard and in the monitor list.
1010+1111+Create, update or delete a tag via your monitor settings.
+2
packages/api/src/edge.ts
···33import { integrationRouter } from "./router/integration";
44import { invitationRouter } from "./router/invitation";
55import { monitorRouter } from "./router/monitor";
66+import { monitorTagRouter } from "./router/monitorTag";
67import { notificationRouter } from "./router/notification";
78import { pageRouter } from "./router/page";
89import { pageSubscriberRouter } from "./router/pageSubscriber";
···2627 incident: incidentRouter,
2728 pageSubscriber: pageSubscriberRouter,
2829 tinybird: tinybirdRouter,
3030+ monitorTag: monitorTagRouter,
2931});