How to disable some plugins?

You can find the plugin name in the list and disable one or more plugins by following methods.

from skywalking import config

config.agent_disable_plugins = ['sw_http_server',
                                'sw_urllib_request']  # can be also CSV format, i.e. 'sw_http_server,sw_urllib_request'

You can also disable the plugins via environment variables SW_AGENT_DISABLE_PLUGINS, please check the Environment Variables List for an explanation.