弹性 apm、django 集成、用户 ID
elatic apm, django integration, user id
https://www.elastic.co/guide/en/apm/agent/python/current/django-support.html
有没有办法在 apm 消息中包含用户 ID?
我们想知道有多少唯一身份用户遇到了错误。
好的!您可以使用 elasticapm.set_custom_context()
or elasticapm.label()
将这种背景添加到您的活动中。
请记住,标签已编入索引,这对性能有影响,而上下文未编入索引但在 Elasticsearch 中存在并可查看。更多信息 here.
https://www.elastic.co/guide/en/apm/agent/python/current/django-support.html
有没有办法在 apm 消息中包含用户 ID?
我们想知道有多少唯一身份用户遇到了错误。
好的!您可以使用 elasticapm.set_custom_context()
or elasticapm.label()
将这种背景添加到您的活动中。
请记住,标签已编入索引,这对性能有影响,而上下文未编入索引但在 Elasticsearch 中存在并可查看。更多信息 here.