Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove zeroed sockets_used/sockets_total #339

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -988,8 +988,6 @@ namespace EasyNetQ.Management.Client.Model
long MemCode,
long FdUsed,
long FdTotal,
long SocketsUsed,
long SocketsTotal,
long MemUsed,
long MemLimit,
bool MemAlarm,
Expand Down Expand Up @@ -1031,8 +1029,6 @@ namespace EasyNetQ.Management.Client.Model
public long Processors { get; init; }
public long RunQueue { get; init; }
public bool Running { get; init; }
public long SocketsTotal { get; init; }
public long SocketsUsed { get; init; }
public string Type { get; init; }
public long Uptime { get; init; }
}
Expand Down
2 changes: 0 additions & 2 deletions Source/EasyNetQ.Management.Client.Tests/Json/Nodes.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
"mem_code": 18006918,
"fd_used": 42,
"fd_total": 1024,
"sockets_used": 2,
"sockets_total": 829,
"mem_used": 37360256,
"mem_limit": 3405386547,
"mem_alarm": false,
Expand Down
2 changes: 0 additions & 2 deletions Source/EasyNetQ.Management.Client/Model/Node.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ public record Node(
long MemCode,
long FdUsed,
long FdTotal,
long SocketsUsed,
long SocketsTotal,
long MemUsed,
long MemLimit,
bool MemAlarm,
Expand Down
Loading