MySQL Router Release Notes
        MySQL Shell AdminAPI
        
The mysqlrouter_plugin_info utility is a debugging tool that inspects a MySQL Router plugin for potential conflicts and general problems.
Usage information:
$> mysqlrouter_plugin_info --help
Usage: mysqlrouter_plugin_info <mysqlrouter_plugin_file> <plugin_name>
# Examples
Print plugin information:
    mysqlrouter_plugin_info /usr/lib/mysqlrouter/routing.so routing
# Options
  -V, --version
      Display version information and exit.
  -?, --help
      Display this help and exit.
$> mysqlrouter_plugin_info --version
MySQL Router  Ver 8.0.37 for Linux on x86_64 (MySQL Community - GPL)Example usage:
$> mysqlrouter_plugin_info /usr/lib64/mysqlrouter/routing.so routing
{
    "abi-version": "2.0",
    "arch-descriptor": "x86_64/Linux/GNU-14.0.1/*",
    "brief": "Routing MySQL connections between MySQL clients/connectors and servers",
    "plugin-version": "0.0.1",
    "requires": [
        "logger",
        "router_protobuf",
        "router_openssl",
        "io",
        "connection_pool",
        "destination_status"
    ],
    "conflicts": []
}