diff options
| author | Michael Klishin <michael@clojurewerkz.org> | 2019-04-13 00:19:27 +0400 |
|---|---|---|
| committer | Michael Klishin <michael@clojurewerkz.org> | 2019-04-13 00:19:27 +0400 |
| commit | b5c62a5a56843c5c651fe7fc532c4f4ba6764aa0 (patch) | |
| tree | cae70f3447a83a23268af4a4b186d8f2c9ab021b /src/rabbit.erl | |
| parent | 0500f4237ac9c55834293049065949f2836803e0 (diff) | |
| download | rabbitmq-server-git-b5c62a5a56843c5c651fe7fc532c4f4ba6764aa0.tar.gz | |
rabbit:status/0: add config file, log file and enabled plugin info
Part of rabbitmq/rabbitmq-cli#340
Diffstat (limited to 'src/rabbit.erl')
| -rw-r--r-- | src/rabbit.erl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl index 4f61988d54..59feef6376 100644 --- a/src/rabbit.erl +++ b/src/rabbit.erl @@ -847,7 +847,11 @@ status() -> T div 1000 end}, {kernel, {net_ticktime, net_kernel:get_net_ticktime()}}], - S1 ++ S2 ++ S3 ++ S4. + S5 = [{active_plugins, rabbit_plugins:active()}, + {enabled_plugin_file, rabbit_plugins:enabled_plugins_file()}], + S6 = [{config_files, config_files()}, + {log_files, log_locations()}], + S1 ++ S2 ++ S3 ++ S4 ++ S5 ++ S6. alarms() -> Alarms = rabbit_misc:with_exit_handler(rabbit_misc:const([]), |
