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 feec761 commit 11b6307Copy full SHA for 11b6307
_appmap/importer.py
@@ -132,7 +132,7 @@ def is_member_func(m):
132
if key.startswith("__"):
133
continue
134
static_value = inspect.getattr_static(cls, key)
135
- if isinstance(static_value, property):
+ if Importer.instrument_properties and isinstance(static_value, property):
136
properties[key] = (
137
static_value,
138
{
@@ -164,6 +164,9 @@ def initialize(cls):
164
cls.filter_stack = []
165
cls.filter_chain = []
166
cls._skip_instrumenting = ("appmap", "_appmap")
167
+ cls.instrument_properties = (
168
+ Env.current.get("APPMAP_INSTRUMENT_PROPERTIES", "true").lower() == "true"
169
+ )
170
171
@classmethod
172
def use_filter(cls, filter_class):
0 commit comments