0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-23 21:18:20 +02:00

Ensure that exceptions while rendering individual metrics don't stop others from being rendered anyway - especially useful for CallbackMetric

This commit is contained in:
Paul "LeoNerd" Evans 2015-03-04 17:13:09 +00:00
parent 59c448f074
commit e02cc249da

View file

@ -13,9 +13,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from .metric import CounterMetric, CallbackMetric, CacheCounterMetric
logger = logging.getLogger(__name__)
# We'll keep all the available metrics in a single toplevel dict, one shared
# for the entire process. We don't currently support per-HomeServer instances
# of metrics, because in practice any one python VM will host only one
@ -82,6 +87,10 @@ def render_all():
strs = []
for name in sorted(all_metrics.keys()):
strs += all_metrics[name].render()
try:
strs += all_metrics[name].render()
except Exception as e:
strs += ["# FAILED to render %s" % name]
logger.exception("Failed to render %s metric", name)
return "\n".join(strs)