We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8a1694 + 67fe14a commit a67bf46Copy full SHA for a67bf46
2 files changed
README.md
@@ -380,8 +380,6 @@ return an empty list.
380
381
## Multiprocess Mode (Gunicorn)
382
383
-**Experimental: This feature is new and has rough edges.**
384
-
385
Prometheus client libaries presume a threaded model, where metrics are shared
386
across workers. This doesn't work so well for languages such as Python where
387
it's common to have processes rather than threads to handle large workloads.
@@ -393,7 +391,7 @@ This comes with a number of limitations:
393
391
- Custom collectors do not work (e.g. cpu and memory metrics)
394
392
- The pushgateway cannot be used
395
- Gauges cannot use the `pid` label
396
-- Gunicron's `preload_app` feature is not supported
+- Gunicron's `preload_app` feature are equivilents are not supported
397
398
There's several steps to getting this working:
399
setup.py
@@ -12,7 +12,7 @@
12
keywords = "prometheus monitoring instrumentation client",
13
url = "https://github.com/prometheus/client_python",
14
packages=['prometheus_client', 'prometheus_client.bridge', 'prometheus_client.twisted', 'prometheus_client.handlers'],
15
- extras_requires={
+ extras_require={
16
'twisted': ['twisted'],
17
},
18
test_suite="tests",
0 commit comments