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.
1 parent 666159c commit 4916ffaCopy full SHA for 4916ffa
2 files changed
README.md
@@ -409,7 +409,7 @@ This comes with a number of limitations:
409
- Custom collectors do not work (e.g. cpu and memory metrics)
410
- The pushgateway cannot be used
411
- Gauges cannot use the `pid` label
412
-- Gunicron's `preload_app` feature are equivilents are not supported
+- Gunicorn's `preload_app` feature and equivalents are not supported
413
414
There's several steps to getting this working:
415
prometheus_client/core.py
@@ -336,7 +336,7 @@ def __init__(self, filename):
336
self._positions[key] = pos
337
338
def _init_value(self, key):
339
- """Initilize a value. Lock must be held by caller."""
+ """Initialize a value. Lock must be held by caller."""
340
encoded = key.encode('utf-8')
341
# Pad to be 8-byte aligned.
342
padded = encoded + (b' ' * (8 - (len(encoded) + 4) % 8))
0 commit comments