application = App_Name # if this is not present then Application is set to absolute path of script name
#release = # should be set to a git hash of current release commit
mode = OnEvent # can be "Continuous", "OnEvent" or "Off" (case insensitive) (if mode is off then can not be enabled from remote server and just acts like normal Python).
host = 127.0.0.1 # RevDeBug server address
apm = 1 # 0 or 1, whether APM functionalyty is enabled or not
#force_tls = 0 # 0 or 1, whether the RevDeBug server uses a secure connection
#exc_rec_http_in = 403, 404 # http status codes to be excluded from auto exception recordings for servers (span will still be recorded)
#exc_rec_http_out = 403, 404 # http status codes to be excluded from auto exception recordings for clients (span will still be recorded)
#version = Version_String # Human readable version string, e.g. "1.0", etc...)
#record = Record:paths # ':' delimited list of absolute or relative (to .cfg) paths or files to enable or disable recording (using '+' or '-' prefix, no prefix is same as '+').
#conn_timeout = 4 # connection timeout in seconds
#reconn_wait = 60 # maximum wait before reconnect attempt (reached with exponential backoff)
#auth = # authentication token for server access
#reprlevel = 0 # 0 .. 2, 0 = fastest least detail, 1 = fast know type stringifiers and repr for others, 2 = same as 1 but known mutable objects are shown with repr if Mutable flag not set (keep in mind values recorded may not be fully correct)
#mutable = 1 # 0 or 1, if set then tuples, lists, dicts, sets and bytearrays will be stringified immediately on record to be able to display the correct value at point of record
#sw_agent_name = App_Name # name of the service for APM topology and traces
#sw_agent_disable_plugins = sw_django # APM tracing support to disable
#sw_ignore_suffix = .jpeg,.jpg
#sw_trace_ignore_path = /metrics
# You can control what parts of your application sources you would like to have RevDeBug to record when error happens
#record = +/this/path/will/be/recorded/even/if/it/is/in/a/system/library/
#record = ../this/relative/path/from/.cfg/file/as/well
#record = -this/file/will/not/be.py
#record = -/neither/will/this.py:-or/this/path:/but/this/file/will/be