├── .gitignore ├── LICENSE ├── README.md ├── audit ├── __init__.py ├── init.py └── methods.py ├── check ├── __init__.py ├── gtid.py ├── init.py ├── other.py ├── queries.py ├── schema.py ├── trx.py └── workld.py ├── collations ├── __init__.py ├── check.py ├── init.py └── outoforder.py ├── config ├── __init__.py └── init.py ├── demo ├── __init__.py ├── init.py └── oracle8ball.py ├── group_replication ├── README.md ├── gr.py └── init.py ├── heatwave_utils ├── comm.py ├── init.py └── reports.py ├── innodb ├── __init__.py ├── autoinc.py ├── bufferpool.py ├── checkpoint.py ├── fragmented.py ├── init.py └── progress.py ├── innodb_cluster ├── __init__.py ├── init.py ├── logs.py └── secondary.py ├── legacy_connect ├── __init__.py ├── init.py └── mycnf.py ├── locks ├── __init__.py ├── init.py ├── locks.py └── locks_tree.py ├── logs ├── __init__.py ├── error.py ├── init.py └── slow.py ├── maintenance ├── __init__.py ├── init.py └── shutdown.py ├── mysqlsh_plugins_common.py ├── profiling ├── __init__.py └── init.py ├── proxysql ├── __init__.py ├── init.py └── proxysql.py ├── qep ├── __init__.py ├── common.py └── init.py ├── replication ├── __init__.py └── init.py ├── router ├── __init__.py ├── init.py └── myrouter.py ├── sandboxes ├── __init__.py └── init.py ├── scan ├── __init__.py └── init.py ├── schema ├── csv.py ├── dates.py ├── defaults.py ├── init.py ├── procedures.py ├── routines.py └── utils.py ├── security ├── __init__.py ├── authmethod.py ├── expire.py └── init.py ├── support ├── collect.py ├── collections │ ├── __init__.py │ ├── common.py │ ├── host_summary.py │ ├── info.py │ ├── innodb_redo.py │ ├── innodb_status.py │ ├── mds_healthchecker.py │ ├── metrics.py │ ├── processlist.py │ ├── queries.py │ ├── replication.py │ └── status.py ├── fetch.py ├── init.py └── sections │ ├── __init__.py │ ├── disks.py │ ├── hosts.py │ ├── innodb.py │ ├── keywords.py │ ├── memory.py │ ├── mysql.py │ ├── replication.py │ └── util.py └── user ├── clone.py ├── copy.py ├── grants.py ├── init.py └── mds.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/README.md -------------------------------------------------------------------------------- /audit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /audit/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/audit/init.py -------------------------------------------------------------------------------- /audit/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/audit/methods.py -------------------------------------------------------------------------------- /check/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check/gtid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/check/gtid.py -------------------------------------------------------------------------------- /check/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/check/init.py -------------------------------------------------------------------------------- /check/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/check/other.py -------------------------------------------------------------------------------- /check/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/check/queries.py -------------------------------------------------------------------------------- /check/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/check/schema.py -------------------------------------------------------------------------------- /check/trx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/check/trx.py -------------------------------------------------------------------------------- /check/workld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/check/workld.py -------------------------------------------------------------------------------- /collations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/collations/check.py -------------------------------------------------------------------------------- /collations/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/collations/init.py -------------------------------------------------------------------------------- /collations/outoforder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/collations/outoforder.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/config/init.py -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/demo/init.py -------------------------------------------------------------------------------- /demo/oracle8ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/demo/oracle8ball.py -------------------------------------------------------------------------------- /group_replication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/group_replication/README.md -------------------------------------------------------------------------------- /group_replication/gr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/group_replication/gr.py -------------------------------------------------------------------------------- /group_replication/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/group_replication/init.py -------------------------------------------------------------------------------- /heatwave_utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/heatwave_utils/comm.py -------------------------------------------------------------------------------- /heatwave_utils/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/heatwave_utils/init.py -------------------------------------------------------------------------------- /heatwave_utils/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/heatwave_utils/reports.py -------------------------------------------------------------------------------- /innodb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /innodb/autoinc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/innodb/autoinc.py -------------------------------------------------------------------------------- /innodb/bufferpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/innodb/bufferpool.py -------------------------------------------------------------------------------- /innodb/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/innodb/checkpoint.py -------------------------------------------------------------------------------- /innodb/fragmented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/innodb/fragmented.py -------------------------------------------------------------------------------- /innodb/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/innodb/init.py -------------------------------------------------------------------------------- /innodb/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/innodb/progress.py -------------------------------------------------------------------------------- /innodb_cluster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /innodb_cluster/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/innodb_cluster/init.py -------------------------------------------------------------------------------- /innodb_cluster/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/innodb_cluster/logs.py -------------------------------------------------------------------------------- /innodb_cluster/secondary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/innodb_cluster/secondary.py -------------------------------------------------------------------------------- /legacy_connect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy_connect/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/legacy_connect/init.py -------------------------------------------------------------------------------- /legacy_connect/mycnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/legacy_connect/mycnf.py -------------------------------------------------------------------------------- /locks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locks/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/locks/init.py -------------------------------------------------------------------------------- /locks/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/locks/locks.py -------------------------------------------------------------------------------- /locks/locks_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/locks/locks_tree.py -------------------------------------------------------------------------------- /logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/logs/error.py -------------------------------------------------------------------------------- /logs/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/logs/init.py -------------------------------------------------------------------------------- /logs/slow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/logs/slow.py -------------------------------------------------------------------------------- /maintenance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maintenance/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/maintenance/init.py -------------------------------------------------------------------------------- /maintenance/shutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/maintenance/shutdown.py -------------------------------------------------------------------------------- /mysqlsh_plugins_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/mysqlsh_plugins_common.py -------------------------------------------------------------------------------- /profiling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiling/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/profiling/init.py -------------------------------------------------------------------------------- /proxysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proxysql/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/proxysql/init.py -------------------------------------------------------------------------------- /proxysql/proxysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/proxysql/proxysql.py -------------------------------------------------------------------------------- /qep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qep/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/qep/common.py -------------------------------------------------------------------------------- /qep/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/qep/init.py -------------------------------------------------------------------------------- /replication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /replication/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/replication/init.py -------------------------------------------------------------------------------- /router/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /router/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/router/init.py -------------------------------------------------------------------------------- /router/myrouter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/router/myrouter.py -------------------------------------------------------------------------------- /sandboxes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandboxes/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/sandboxes/init.py -------------------------------------------------------------------------------- /scan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scan/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/scan/init.py -------------------------------------------------------------------------------- /schema/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/schema/csv.py -------------------------------------------------------------------------------- /schema/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/schema/dates.py -------------------------------------------------------------------------------- /schema/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/schema/defaults.py -------------------------------------------------------------------------------- /schema/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/schema/init.py -------------------------------------------------------------------------------- /schema/procedures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/schema/procedures.py -------------------------------------------------------------------------------- /schema/routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/schema/routines.py -------------------------------------------------------------------------------- /schema/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/schema/utils.py -------------------------------------------------------------------------------- /security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /security/authmethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/security/authmethod.py -------------------------------------------------------------------------------- /security/expire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/security/expire.py -------------------------------------------------------------------------------- /security/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/security/init.py -------------------------------------------------------------------------------- /support/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collect.py -------------------------------------------------------------------------------- /support/collections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/__init__.py -------------------------------------------------------------------------------- /support/collections/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/common.py -------------------------------------------------------------------------------- /support/collections/host_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/host_summary.py -------------------------------------------------------------------------------- /support/collections/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/info.py -------------------------------------------------------------------------------- /support/collections/innodb_redo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/innodb_redo.py -------------------------------------------------------------------------------- /support/collections/innodb_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/innodb_status.py -------------------------------------------------------------------------------- /support/collections/mds_healthchecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/mds_healthchecker.py -------------------------------------------------------------------------------- /support/collections/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/metrics.py -------------------------------------------------------------------------------- /support/collections/processlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/processlist.py -------------------------------------------------------------------------------- /support/collections/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/queries.py -------------------------------------------------------------------------------- /support/collections/replication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/replication.py -------------------------------------------------------------------------------- /support/collections/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/collections/status.py -------------------------------------------------------------------------------- /support/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/fetch.py -------------------------------------------------------------------------------- /support/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/init.py -------------------------------------------------------------------------------- /support/sections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/sections/__init__.py -------------------------------------------------------------------------------- /support/sections/disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/sections/disks.py -------------------------------------------------------------------------------- /support/sections/hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/sections/hosts.py -------------------------------------------------------------------------------- /support/sections/innodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/sections/innodb.py -------------------------------------------------------------------------------- /support/sections/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/sections/keywords.py -------------------------------------------------------------------------------- /support/sections/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/sections/memory.py -------------------------------------------------------------------------------- /support/sections/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/sections/mysql.py -------------------------------------------------------------------------------- /support/sections/replication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/sections/replication.py -------------------------------------------------------------------------------- /support/sections/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/support/sections/util.py -------------------------------------------------------------------------------- /user/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/user/clone.py -------------------------------------------------------------------------------- /user/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/user/copy.py -------------------------------------------------------------------------------- /user/grants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/user/grants.py -------------------------------------------------------------------------------- /user/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/user/init.py -------------------------------------------------------------------------------- /user/mds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefred/mysqlshell-plugins/HEAD/user/mds.py --------------------------------------------------------------------------------