You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

queue_monitor_alert_email_template_en-US.html 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6. font-family: 'Arial', sans-serif;
  7. line-height: 16pt;
  8. color: #101828;
  9. background-color: #e9ebf0;
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .container {
  14. width: 600px;
  15. min-height: 605px;
  16. margin: 40px auto;
  17. padding: 36px 48px;
  18. background-color: #fcfcfd;
  19. border-radius: 16px;
  20. border: 1px solid #ffffff;
  21. box-shadow: 0 2px 4px -2px rgba(9, 9, 11, 0.08);
  22. }
  23. .header {
  24. margin-bottom: 24px;
  25. }
  26. .header img {
  27. max-width: 100px;
  28. height: auto;
  29. }
  30. .title {
  31. font-weight: 600;
  32. font-size: 24px;
  33. line-height: 28.8px;
  34. }
  35. .description {
  36. font-size: 13px;
  37. line-height: 16px;
  38. color: #676f83;
  39. margin-top: 12px;
  40. }
  41. .alert-content {
  42. padding: 16px 32px;
  43. text-align: center;
  44. border-radius: 16px;
  45. background-color: #fef0f0;
  46. margin: 16px auto;
  47. border: 1px solid #fda29b;
  48. }
  49. .alert-title {
  50. line-height: 24px;
  51. font-weight: 700;
  52. font-size: 18px;
  53. color: #d92d20;
  54. }
  55. .alert-detail {
  56. line-height: 20px;
  57. font-size: 14px;
  58. margin-top: 8px;
  59. }
  60. .typography {
  61. letter-spacing: -0.07px;
  62. font-weight: 400;
  63. font-style: normal;
  64. font-size: 14px;
  65. line-height: 20px;
  66. color: #354052;
  67. margin-top: 12px;
  68. margin-bottom: 12px;
  69. }
  70. .typography p{
  71. margin: 0 auto;
  72. }
  73. .typography-title {
  74. color: #101828;
  75. font-size: 14px;
  76. font-style: normal;
  77. font-weight: 600;
  78. line-height: 20px;
  79. margin-top: 12px;
  80. margin-bottom: 4px;
  81. }
  82. .tip-list{
  83. margin: 0;
  84. padding-left: 10px;
  85. }
  86. </style>
  87. </head>
  88. <body>
  89. <div class="container">
  90. <div class="header">
  91. <img src="https://assets.dify.ai/images/logo.png" alt="Dify Logo" />
  92. </div>
  93. <p class="title">Queue Monitoring Alert</p>
  94. <p class="typography">Our system has detected an abnormal queue status that requires your attention:</p>
  95. <div class="alert-content">
  96. <div class="alert-title">Queue Task Alert</div>
  97. <div class="alert-detail">
  98. Queue "{{queue_name}}" has {{queue_length}} pending tasks (Threshold: {{threshold}})
  99. </div>
  100. </div>
  101. <div class="typography">
  102. <p style="margin-bottom:4px">Recommended actions:</p>
  103. <p>1. Check the queue processing status in the system dashboard</p>
  104. <p>2. Verify if there are any processing bottlenecks</p>
  105. <p>3. Consider scaling up workers if needed</p>
  106. </div>
  107. <p class="typography-title">Additional Information:</p>
  108. <ul class="typography tip-list">
  109. <li>Alert triggered at: {{alert_time}}</li>
  110. </ul>
  111. </div>
  112. </body>
  113. </html>