Skip to content

Commit 0d33bc3

Browse files
committed
feat: show node name in system pane
1 parent a5a3582 commit 0d33bc3

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Visualize Erlang/Elixir Nodes On The Command Line base on [recon](https://github
2727
%% rebar.config
2828
{deps, [observer_cli]}
2929
%% erlang.mk
30-
dep_observer_cli = hex 1.8.0
30+
dep_observer_cli = hex 1.8.1
3131
```
3232

3333
**Elixir**
@@ -255,6 +255,9 @@ Support F/B to page up/down.
255255
---
256256

257257
### Changelog
258+
- 1.8.1
259+
- Show node name in system pane.
260+
258261
- 1.8.0
259262
- Support `<Pid` to jump to specific pid.
260263
- Show process's label if it's set with [proc_lib:set_label(Label)](https://www.erlang.org/doc/apps/stdlib/proc_lib.html#set_label/1)

mix.exs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ defmodule ObserverCli.MixProject do
44
def project do
55
[
66
app: :observer_cli,
7-
version: "1.8.0",
7+
version: "1.8.1",
88
language: :erlang,
99
description: "observer in shell",
1010
deps: [
11-
{:recon, "~> 2.5.6"},
11+
{:recon, "~> 2.5.6"}
1212
]
1313
]
1414
end
15-
1615
end

src/observer_cli.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, observer_cli, [
22
{description, "Visualize Erlang Nodes On The Command Line"},
3-
{vsn, "1.8.0"},
3+
{vsn, "1.8.1"},
44
{modules, [
55
observer_cli
66
]},

src/observer_cli.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ get_stable_system_info() ->
813813
{
814814
[
815815
OtpRelease,
816-
SysVersion,
816+
SysVersion ++ " " ++ atom_to_list(erlang:node()),
817817
erlang:system_info(process_limit),
818818
erlang:system_info(port_limit),
819819
erlang:system_info(ets_limit)

0 commit comments

Comments
 (0)