diff options
| author | alexvru <[email protected]> | 2023-01-17 21:45:10 +0300 |
|---|---|---|
| committer | alexvru <[email protected]> | 2023-01-17 21:45:10 +0300 |
| commit | 6efc847340941a8a32f22ed3cb076a39794b94b7 (patch) | |
| tree | a8da57ac268b74f2d265d40b91e676546e0f6c8a /library/cpp/actors/interconnect/interconnect_mon.cpp | |
| parent | c4c2cdbbda0d92a4adfb40515374132e1180a725 (diff) | |
Introduce ExternalDataChannel setting
Diffstat (limited to 'library/cpp/actors/interconnect/interconnect_mon.cpp')
| -rw-r--r-- | library/cpp/actors/interconnect/interconnect_mon.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/cpp/actors/interconnect/interconnect_mon.cpp b/library/cpp/actors/interconnect/interconnect_mon.cpp index cf924ccbf9d..6be0b894b87 100644 --- a/library/cpp/actors/interconnect/interconnect_mon.cpp +++ b/library/cpp/actors/interconnect/interconnect_mon.cpp @@ -93,6 +93,7 @@ namespace NInterconnect { TABLEH() { str << "LastSessionDieTime"; } TABLEH() { str << "TotalOutputQueueSize"; } TABLEH() { str << "Connected"; } + TABLEH() { str << "XDC"; } TABLEH() { str << "Host"; } TABLEH() { str << "Port"; } TABLEH() { str << "LastErrorTimestamp"; } @@ -129,6 +130,7 @@ namespace NInterconnect { } TABLED() { str << kv.second.TotalOutputQueueSize; } TABLED() { str << (kv.second.Connected ? "yes" : "<strong>no</strong>"); } + TABLED() { str << (kv.second.ExternalDataChannel ? "yes" : "no"); } TABLED() { str << kv.second.Host; } TABLED() { str << kv.second.Port; } TABLED() { @@ -164,6 +166,7 @@ namespace NInterconnect { JSON(LastSessionDieTime, toString) JSON(TotalOutputQueueSize, id) JSON(Connected, id) + JSON(ExternalDataChannel, id) JSON(Host, id) JSON(Port, id) JSON(LastErrorTimestamp, toString) |
