You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -210,6 +214,7 @@ Containers are configured using parameters passed at runtime (such as those abov
210
214
| :----: | --- |
211
215
|`80:80`| Port for web frontend |
212
216
|`443:443`| Port for web frontend |
217
+
|`9394:9394`| Port for Prometheus metrics |
213
218
214
219
### Environment Variables (`-e`)
215
220
@@ -255,6 +260,7 @@ Containers are configured using parameters passed at runtime (such as those abov
255
260
|`SIDEKIQ_THREADS=5`| The number of threads for sidekiq to use. See [notes](https://docs.joinmastodon.org/admin/scaling/#sidekiq-threads). |
256
261
|`DB_POOL=5`| The size of the DB connection pool, must be *at least* the same as `SIDEKIQ_THREADS`. See [notes](https://docs.joinmastodon.org/admin/scaling/#sidekiq-threads). |
257
262
|`NO_CHOWN=`| Set to `true` to skip chown of /config on init. *READ THE APPLICATION NOTES BEFORE SETTING THIS*. |
263
+
|`MASTODON_PROMETHEUS_EXPORTER_ENABLED=`| If set to `true`, Mastodon’s Ruby processes (web & Sidekiq) will enable the Prometheus instrumentation. |
258
264
259
265
### Volume Mappings (`-v`)
260
266
@@ -480,6 +486,8 @@ To help with development, we generate this dependency graph.
480
486
svc-nginx -> legacy-services
481
487
init-services -> svc-php-fpm
482
488
svc-php-fpm -> legacy-services
489
+
init-services -> svc-prom
490
+
svc-prom -> legacy-services
483
491
init-services -> svc-sidekiq
484
492
svc-sidekiq -> legacy-services
485
493
init-services -> svc-streaming
@@ -493,6 +501,7 @@ To help with development, we generate this dependency graph.
493
501
494
502
## Versions
495
503
504
+
***21.10.25:** - Add prometheus exporter support.
496
505
***20.10.25:** - Add vips-heif.
497
506
***08.07.25:** - Rebase to Alpine 3.22.
498
507
***06.06.25:** - Rebase to Alpine 3.21, replace deprecated imagemagick with vips.
0 commit comments