horizon.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <?php
  2. use Illuminate\Support\Str;
  3. return [
  4. /*
  5. |--------------------------------------------------------------------------
  6. | Horizon Domain
  7. |--------------------------------------------------------------------------
  8. |
  9. | This is the subdomain where Horizon will be accessible from. If this
  10. | setting is null, Horizon will reside under the same domain as the
  11. | application. Otherwise, this value will serve as the subdomain.
  12. |
  13. */
  14. 'domain' => null,
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Horizon Path
  18. |--------------------------------------------------------------------------
  19. |
  20. | This is the URI path where Horizon will be accessible from. Feel free
  21. | to change this path to anything you like. Note that the URI will not
  22. | affect the paths of its internal API that aren't exposed to users.
  23. |
  24. */
  25. 'path' => 'monitor',
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Horizon Redis Connection
  29. |--------------------------------------------------------------------------
  30. |
  31. | This is the name of the Redis connection where Horizon will store the
  32. | meta information required for it to function. It includes the list
  33. | of supervisors, failed jobs, job metrics, and other information.
  34. |
  35. */
  36. 'use' => 'default',
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Horizon Redis Prefix
  40. |--------------------------------------------------------------------------
  41. |
  42. | This prefix will be used when storing all Horizon data in Redis. You
  43. | may modify the prefix when you are running multiple installations
  44. | of Horizon on the same server so that they don't have problems.
  45. |
  46. */
  47. 'prefix' => env(
  48. 'HORIZON_PREFIX',
  49. Str::slug(env('APP_NAME', 'laravel'), '_').'_horizon:'
  50. ),
  51. /*
  52. |--------------------------------------------------------------------------
  53. | Horizon Route Middleware
  54. |--------------------------------------------------------------------------
  55. |
  56. | These middleware will get attached onto each Horizon route, giving you
  57. | the chance to add your own middleware to this list or change any of
  58. | the existing middleware. Or, you can simply stick with this list.
  59. |
  60. */
  61. 'middleware' => ['web', 'admin'],
  62. /*
  63. |--------------------------------------------------------------------------
  64. | Queue Wait Time Thresholds
  65. |--------------------------------------------------------------------------
  66. |
  67. | This option allows you to configure when the LongWaitDetected event
  68. | will be fired. Every connection / queue combination may have its
  69. | own, unique threshold (in seconds) before this event is fired.
  70. |
  71. */
  72. 'waits' => [
  73. 'redis:default' => 60,
  74. ],
  75. /*
  76. |--------------------------------------------------------------------------
  77. | Job Trimming Times
  78. |--------------------------------------------------------------------------
  79. |
  80. | Here you can configure for how long (in minutes) you desire Horizon to
  81. | persist the recent and failed jobs. Typically, recent jobs are kept
  82. | for one hour while all failed jobs are stored for an entire week.
  83. |
  84. */
  85. 'trim' => [
  86. 'recent' => 60,
  87. 'pending' => 60,
  88. 'completed' => 60,
  89. 'recent_failed' => 10080,
  90. 'failed' => 10080,
  91. 'monitored' => 10080,
  92. ],
  93. /*
  94. |--------------------------------------------------------------------------
  95. | Metrics
  96. |--------------------------------------------------------------------------
  97. |
  98. | Here you can configure how many snapshots should be kept to display in
  99. | the metrics graph. This will get used in combination with Horizon's
  100. | `horizon:snapshot` schedule to define how long to retain metrics.
  101. |
  102. */
  103. 'metrics' => [
  104. 'trim_snapshots' => [
  105. 'job' => 24,
  106. 'queue' => 24,
  107. ],
  108. ],
  109. /*
  110. |--------------------------------------------------------------------------
  111. | Fast Termination
  112. |--------------------------------------------------------------------------
  113. |
  114. | When this option is enabled, Horizon's "terminate" command will not
  115. | wait on all of the workers to terminate unless the --wait option
  116. | is provided. Fast termination can shorten deployment delay by
  117. | allowing a new instance of Horizon to start while the last
  118. | instance will continue to terminate each of its workers.
  119. |
  120. */
  121. 'fast_termination' => false,
  122. /*
  123. |--------------------------------------------------------------------------
  124. | Memory Limit (MB)
  125. |--------------------------------------------------------------------------
  126. |
  127. | This value describes the maximum amount of memory the Horizon worker
  128. | may consume before it is terminated and restarted. You should set
  129. | this value according to the resources available to your server.
  130. |
  131. */
  132. 'memory_limit' => 32,
  133. /*
  134. |--------------------------------------------------------------------------
  135. | Queue Worker Configuration
  136. |--------------------------------------------------------------------------
  137. |
  138. | Here you may define the queue worker settings used by your application
  139. | in all environments. These supervisors and settings handle all your
  140. | queued jobs and will be provisioned by Horizon during deployment.
  141. |
  142. */
  143. 'environments' => [
  144. 'local' => [
  145. 'V2board' => [
  146. 'connection' => 'redis',
  147. 'queue' => [
  148. 'traffic_fetch',
  149. 'server_log',
  150. 'send_email',
  151. 'send_telegram',
  152. 'stat_server',
  153. 'order_handle'
  154. ],
  155. 'balance' => 'auto',
  156. 'minProcesses' => 1,
  157. 'maxProcesses' => 64,
  158. 'tries' => 1,
  159. 'nice' => 0,
  160. ],
  161. ],
  162. ],
  163. ];