mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-13 04:51:28 +08:00

* feat: added ui changes to support clickhouse queries in alert builder * chore: minor fix to alert rules ui * feat: alert form changes: ch query support, alert type selection * chore: resolved review comments * chore: added list for alert type selection instead * chore: removed hard coded color and added antd/colors * fix: resolved some issues found during testing alerts * fix: moved alert defaults and added default queries for logs and traces * feat: added default queries for logs and traces to reflect ts vars * chore: fixed px to rem Co-authored-by: Palash Gupta <palashgdev@gmail.com> Co-authored-by: Pranay Prateek <pranay@signoz.io>
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
import CreateAlertRule from 'container/CreateAlertRule';
|
|
import React from 'react';
|
|
|
|
function CreateAlertPage(): JSX.Element {
|
|
return <CreateAlertRule />;
|
|
}
|
|
|
|
export default CreateAlertPage;
|