Skip to content

Commit

Permalink
feat: show node name in system pane
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongwencool committed Dec 17, 2024
1 parent a5a3582 commit 0d33bc3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Visualize Erlang/Elixir Nodes On The Command Line base on [recon](https://github
%% rebar.config
{deps, [observer_cli]}
%% erlang.mk
dep_observer_cli = hex 1.8.0
dep_observer_cli = hex 1.8.1
```

**Elixir**
Expand Down Expand Up @@ -255,6 +255,9 @@ Support F/B to page up/down.
---

### Changelog
- 1.8.1
- Show node name in system pane.

- 1.8.0
- Support `<Pid` to jump to specific pid.
- 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)
Expand Down
5 changes: 2 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ defmodule ObserverCli.MixProject do
def project do
[
app: :observer_cli,
version: "1.8.0",
version: "1.8.1",
language: :erlang,
description: "observer in shell",
deps: [
{:recon, "~> 2.5.6"},
{:recon, "~> 2.5.6"}
]
]
end

end
2 changes: 1 addition & 1 deletion src/observer_cli.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, observer_cli, [
{description, "Visualize Erlang Nodes On The Command Line"},
{vsn, "1.8.0"},
{vsn, "1.8.1"},
{modules, [
observer_cli
]},
Expand Down
2 changes: 1 addition & 1 deletion src/observer_cli.erl
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ get_stable_system_info() ->
{
[
OtpRelease,
SysVersion,
SysVersion ++ " " ++ atom_to_list(erlang:node()),
erlang:system_info(process_limit),
erlang:system_info(port_limit),
erlang:system_info(ets_limit)
Expand Down

0 comments on commit 0d33bc3

Please sign in to comment.