blob: 32de24bac683b7ca760e6b575213ee667e6b859d [file] [log] [blame] [view]
# How to disable some plugins?
**You can find the plugin name in the [list](../Plugins.md)
and disable one or more plugins by following methods.**
```python
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](../Configuration.md) for an explanation.