[jira] [Closed] (PROTON-2786) Cannot cross-compile proton-c using the `zig c++` compiler

2023-12-22 Thread Jira


 [ 
https://issues.apache.org/jira/browse/PROTON-2786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jiri Daněk closed PROTON-2786.
--
Resolution: Fixed

> Cannot cross-compile proton-c using the `zig c++` compiler
> --
>
> Key: PROTON-2786
> URL: https://issues.apache.org/jira/browse/PROTON-2786
> Project: Qpid Proton
>  Issue Type: Bug
>  Components: build
>Affects Versions: proton-c-0.39.0
>Reporter: Jiri Daněk
>Assignee: Jiri Daněk
>Priority: Major
> Fix For: proton-c-0.40.0
>
>
> Cross-compiling with `zig cc`/`zig c++` is a very useful feature.
> Here are some references how it works and why it is so nice
> # 
> https://ziglang.org/learn/overview/#cross-compiling-is-a-first-class-use-case
> # 
> https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html
> # https://jakstys.lt/2022/how-uber-uses-zig/
> # 
> https://www.uber.com/en-CZ/blog/bootstrapping-ubers-infrastructure-on-arm64-with-zig/
> # https://www.youtube.com/watch?v=SCj2J3HcEfc
> What currently happens when compiling with CXX='zig c++' is the following
> {noformat}
> Building CXX object CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o
> /usr/local/bin/zig-o CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o 
> -c /build/proton/app/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
> info: Usage: zig [command] [options]
> {noformat}
> That is, it drops the `c++` part of the command line. This seems to happen 
> when compiling proton-c in the check for a working C++ compiler (to 
> optionally enable tests in C++)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (PROTON-2786) Cannot cross-compile proton-c using the `zig c++` compiler

2023-12-22 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/PROTON-2786?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17799884#comment-17799884
 ] 

ASF GitHub Bot commented on PROTON-2786:


jiridanek commented on PR #415:
URL: https://github.com/apache/qpid-proton/pull/415#issuecomment-1867892784

   Inspiration for the fix
   
   * 
https://github.com/root-project/root/blob/0199f080f16d6168660e5dbcc15362b1b20979e0/cmake/modules/CheckCompiler.cmake#L37-L49




> Cannot cross-compile proton-c using the `zig c++` compiler
> --
>
> Key: PROTON-2786
> URL: https://issues.apache.org/jira/browse/PROTON-2786
> Project: Qpid Proton
>  Issue Type: Bug
>  Components: build
>Affects Versions: proton-c-0.39.0
>Reporter: Jiri Daněk
>Assignee: Jiri Daněk
>Priority: Major
> Fix For: proton-c-0.40.0
>
>
> Cross-compiling with `zig cc`/`zig c++` is a very useful feature.
> Here are some references how it works and why it is so nice
> # 
> https://ziglang.org/learn/overview/#cross-compiling-is-a-first-class-use-case
> # 
> https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html
> # https://jakstys.lt/2022/how-uber-uses-zig/
> # 
> https://www.uber.com/en-CZ/blog/bootstrapping-ubers-infrastructure-on-arm64-with-zig/
> # https://www.youtube.com/watch?v=SCj2J3HcEfc
> What currently happens when compiling with CXX='zig c++' is the following
> {noformat}
> Building CXX object CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o
> /usr/local/bin/zig-o CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o 
> -c /build/proton/app/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
> info: Usage: zig [command] [options]
> {noformat}
> That is, it drops the `c++` part of the command line. This seems to happen 
> when compiling proton-c in the check for a working C++ compiler (to 
> optionally enable tests in C++)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (PROTON-2786) Cannot cross-compile proton-c using the `zig c++` compiler

2023-12-22 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/PROTON-2786?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17799885#comment-17799885
 ] 

ASF GitHub Bot commented on PROTON-2786:


jiridanek merged PR #415:
URL: https://github.com/apache/qpid-proton/pull/415




> Cannot cross-compile proton-c using the `zig c++` compiler
> --
>
> Key: PROTON-2786
> URL: https://issues.apache.org/jira/browse/PROTON-2786
> Project: Qpid Proton
>  Issue Type: Bug
>  Components: build
>Affects Versions: proton-c-0.39.0
>Reporter: Jiri Daněk
>Assignee: Jiri Daněk
>Priority: Major
> Fix For: proton-c-0.40.0
>
>
> Cross-compiling with `zig cc`/`zig c++` is a very useful feature.
> Here are some references how it works and why it is so nice
> # 
> https://ziglang.org/learn/overview/#cross-compiling-is-a-first-class-use-case
> # 
> https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html
> # https://jakstys.lt/2022/how-uber-uses-zig/
> # 
> https://www.uber.com/en-CZ/blog/bootstrapping-ubers-infrastructure-on-arm64-with-zig/
> # https://www.youtube.com/watch?v=SCj2J3HcEfc
> What currently happens when compiling with CXX='zig c++' is the following
> {noformat}
> Building CXX object CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o
> /usr/local/bin/zig-o CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o 
> -c /build/proton/app/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
> info: Usage: zig [command] [options]
> {noformat}
> That is, it drops the `c++` part of the command line. This seems to happen 
> when compiling proton-c in the check for a working C++ compiler (to 
> optionally enable tests in C++)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



Re: [PR] PROTON-2786: Don't reuse possibly incorrect `CMAKE_CXX_COMPILER` value determined by `check_language(CXX)` [qpid-proton]

2023-12-22 Thread via GitHub


jiridanek commented on PR #415:
URL: https://github.com/apache/qpid-proton/pull/415#issuecomment-1867892784

   Inspiration for the fix
   
   * 
https://github.com/root-project/root/blob/0199f080f16d6168660e5dbcc15362b1b20979e0/cmake/modules/CheckCompiler.cmake#L37-L49


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (PROTON-2786) Cannot cross-compile proton-c using the `zig c++` compiler

2023-12-22 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/PROTON-2786?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17799886#comment-17799886
 ] 

ASF subversion and git services commented on PROTON-2786:
-

Commit 001195c05a5fa1ec3d3b14a4963b82556450819f in qpid-proton's branch 
refs/heads/main from Jiri Daněk
[ https://gitbox.apache.org/repos/asf?p=qpid-proton.git;h=001195c05 ]

PROTON-2786: Don't reuse possibly incorrect `CMAKE_CXX_COMPILER` value 
determined by `check_language(CXX)` (#415)



> Cannot cross-compile proton-c using the `zig c++` compiler
> --
>
> Key: PROTON-2786
> URL: https://issues.apache.org/jira/browse/PROTON-2786
> Project: Qpid Proton
>  Issue Type: Bug
>  Components: build
>Affects Versions: proton-c-0.39.0
>Reporter: Jiri Daněk
>Assignee: Jiri Daněk
>Priority: Major
> Fix For: proton-c-0.40.0
>
>
> Cross-compiling with `zig cc`/`zig c++` is a very useful feature.
> Here are some references how it works and why it is so nice
> # 
> https://ziglang.org/learn/overview/#cross-compiling-is-a-first-class-use-case
> # 
> https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html
> # https://jakstys.lt/2022/how-uber-uses-zig/
> # 
> https://www.uber.com/en-CZ/blog/bootstrapping-ubers-infrastructure-on-arm64-with-zig/
> # https://www.youtube.com/watch?v=SCj2J3HcEfc
> What currently happens when compiling with CXX='zig c++' is the following
> {noformat}
> Building CXX object CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o
> /usr/local/bin/zig-o CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o 
> -c /build/proton/app/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
> info: Usage: zig [command] [options]
> {noformat}
> That is, it drops the `c++` part of the command line. This seems to happen 
> when compiling proton-c in the check for a working C++ compiler (to 
> optionally enable tests in C++)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



Re: [PR] PROTON-2786: Don't reuse possibly incorrect `CMAKE_CXX_COMPILER` value determined by `check_language(CXX)` [qpid-proton]

2023-12-22 Thread via GitHub


jiridanek merged PR #415:
URL: https://github.com/apache/qpid-proton/pull/415


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (PROTON-2786) Cannot cross-compile proton-c using the `zig c++` compiler

2023-12-22 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/PROTON-2786?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17799866#comment-17799866
 ] 

ASF GitHub Bot commented on PROTON-2786:


jiridanek opened a new pull request, #415:
URL: https://github.com/apache/qpid-proton/pull/415

   (no comment)




> Cannot cross-compile proton-c using the `zig c++` compiler
> --
>
> Key: PROTON-2786
> URL: https://issues.apache.org/jira/browse/PROTON-2786
> Project: Qpid Proton
>  Issue Type: Bug
>  Components: build
>Affects Versions: proton-c-0.39.0
>Reporter: Jiri Daněk
>Assignee: Jiri Daněk
>Priority: Major
> Fix For: proton-c-0.40.0
>
>
> Cross-compiling with `zig cc`/`zig c++` is a very useful feature.
> Here are some references how it works and why it is so nice
> # 
> https://ziglang.org/learn/overview/#cross-compiling-is-a-first-class-use-case
> # 
> https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html
> # https://jakstys.lt/2022/how-uber-uses-zig/
> # 
> https://www.uber.com/en-CZ/blog/bootstrapping-ubers-infrastructure-on-arm64-with-zig/
> # https://www.youtube.com/watch?v=SCj2J3HcEfc
> What currently happens when compiling with CXX='zig c++' is the following
> {noformat}
> Building CXX object CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o
> /usr/local/bin/zig-o CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o 
> -c /build/proton/app/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
> info: Usage: zig [command] [options]
> {noformat}
> That is, it drops the `c++` part of the command line. This seems to happen 
> when compiling proton-c in the check for a working C++ compiler (to 
> optionally enable tests in C++)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[PR] PROTON-2786: Don't reuse possibly incorrect `CMAKE_CXX_COMPILER` value determined by `check_language(CXX)` [qpid-proton]

2023-12-22 Thread via GitHub


jiridanek opened a new pull request, #415:
URL: https://github.com/apache/qpid-proton/pull/415

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Created] (PROTON-2786) Cannot cross-compile proton-c using the `zig c++` compiler

2023-12-22 Thread Jira
Jiri Daněk created PROTON-2786:
--

 Summary: Cannot cross-compile proton-c using the `zig c++` compiler
 Key: PROTON-2786
 URL: https://issues.apache.org/jira/browse/PROTON-2786
 Project: Qpid Proton
  Issue Type: Bug
  Components: build
Affects Versions: proton-c-0.39.0
Reporter: Jiri Daněk
 Fix For: proton-c-0.40.0


Cross-compiling with `zig cc`/`zig c++` is a very useful feature.

Here are some references how it works and why it is so nice

# https://ziglang.org/learn/overview/#cross-compiling-is-a-first-class-use-case
# 
https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html
# https://jakstys.lt/2022/how-uber-uses-zig/
# 
https://www.uber.com/en-CZ/blog/bootstrapping-ubers-infrastructure-on-arm64-with-zig/
# https://www.youtube.com/watch?v=SCj2J3HcEfc

What currently happens when compiling with CXX='zig c++' is the following

{noformat}
Building CXX object CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o
/usr/local/bin/zig-o CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o -c 
/build/proton/app/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
info: Usage: zig [command] [options]
{noformat}

That is, it drops the `c++` part of the command line. This seems to happen when 
compiling proton-c in the check for a working C++ compiler (to optionally 
enable tests in C++)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Assigned] (PROTON-2786) Cannot cross-compile proton-c using the `zig c++` compiler

2023-12-22 Thread Jira


 [ 
https://issues.apache.org/jira/browse/PROTON-2786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jiri Daněk reassigned PROTON-2786:
--

Assignee: Jiri Daněk

> Cannot cross-compile proton-c using the `zig c++` compiler
> --
>
> Key: PROTON-2786
> URL: https://issues.apache.org/jira/browse/PROTON-2786
> Project: Qpid Proton
>  Issue Type: Bug
>  Components: build
>Affects Versions: proton-c-0.39.0
>Reporter: Jiri Daněk
>Assignee: Jiri Daněk
>Priority: Major
> Fix For: proton-c-0.40.0
>
>
> Cross-compiling with `zig cc`/`zig c++` is a very useful feature.
> Here are some references how it works and why it is so nice
> # 
> https://ziglang.org/learn/overview/#cross-compiling-is-a-first-class-use-case
> # 
> https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html
> # https://jakstys.lt/2022/how-uber-uses-zig/
> # 
> https://www.uber.com/en-CZ/blog/bootstrapping-ubers-infrastructure-on-arm64-with-zig/
> # https://www.youtube.com/watch?v=SCj2J3HcEfc
> What currently happens when compiling with CXX='zig c++' is the following
> {noformat}
> Building CXX object CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o
> /usr/local/bin/zig-o CMakeFiles/cmTC_44138.dir/testCXXCompiler.cxx.o 
> -c /build/proton/app/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
> info: Usage: zig [command] [options]
> {noformat}
> That is, it drops the `c++` part of the command line. This seems to happen 
> when compiling proton-c in the check for a working C++ compiler (to 
> optionally enable tests in C++)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



Meet our keynote speakers and register to Community Over Code EU!

2023-12-22 Thread Ryan Skraba
[Note: You're receiving this email because you are subscribed to one or
more project dev@ mailing lists at the Apache Software Foundation.]











*
Merge
with the ASF EUniverse!The registration for Community Over Code Europe is
finally open! Get your tickets now and save your spot!
We are happy to announce that we
have confirmed the first featured speakers
!  - Asim Hussain, Executive
Director at Green Software Foundation- Dirk-Willem Van Gulik, VP of Public
Policy at The Apache Software Foundation- Ruth Ikega, Community Lead at
CHAOSS Africa Visit our website
 to learn more about this
amazing lineup.CFP is openWe are looking forward to hearing all you have to
share with the Apache Community. Please submit your talk proposal
 before January 12, 2024.Interested in
boosting your brand?Take a look at our prospectus

and find out the opportunities we have for you. Be one step ahead and book
your room at the hotel venueWe have a special rate for you at the Radisson
Blu Carlton, the hotel that will hold Community Over Code EU. Learn more
about the location and venue 
and book your accommodation. Should you have any questions, please do not
hesitate to contact us. We wish you Happy Holidays in the company of your
loved ones! See you in Bratislava next year!Community Over Code EU
Organizer Committee*


[jira] [Created] (PROTON-2785) [Go] Message of certain size fail to be marshalled by amqp module

2023-12-22 Thread Martin (Jira)
Martin created PROTON-2785:
--

 Summary: [Go] Message of certain size fail to be marshalled by 
amqp module
 Key: PROTON-2785
 URL: https://issues.apache.org/jira/browse/PROTON-2785
 Project: Qpid Proton
  Issue Type: Bug
Reporter: Martin
 Attachments: qpid-reproducer.go

We used to use golang bindings of qpid-proton of quite old version (v0.33.0) in 
our project. After upgrade to v0.39.0 message transfer fails on panics during 
message marshaling. Basically messages of certain size and higher (218 bytes in 
my lab environment) panics on second send. The first one always passes without 
an issue:
{code:java}
[stack@tripleo-standalone sensubility]$ go run reproducer.go --address 
amqp://127.0.0.1:5666
[0] Sending two messages of size 217 bytes.
[1] Sending two messages of size 220 bytes.
[0] Sent message ACKed.
[0] Sent message ACKed.
[1] Sent message ACKed.
panic: cannot marshal string: overflow: not enough space to encodegoroutine 35 
[running]:
github.com/apache/qpid-proton/go/pkg/amqp.marshal({0x53d080?, 0xc00019a030?}, 
0x7f5938001d20)
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/amqp/marshal.go:295
 +0x9e5
github.com/apache/qpid-proton/go/pkg/amqp.putData({0x53d080, 0xc00019a030}, 
0xc00012bd10?)
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/amqp/message.go:508
 +0x48
github.com/apache/qpid-proton/go/pkg/amqp.(*message).put(0xc00019c280, 
0xc00012bd48?)
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/amqp/message.go:560
 +0x2b8
github.com/apache/qpid-proton/go/pkg/amqp.(*MessageCodec).Encode(0x7f5934000c90?,
 {0x5a47b0?, 0xc00019c280?}, {0x0, 0x0, 0x0})
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/amqp/message.go:380
 +0x97
github.com/apache/qpid-proton/go/pkg/electron.(*sender).send(0xcbc000, 
0xc000194150)
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/electron/sender.go:197
 +0x11d
github.com/apache/qpid-proton/go/pkg/electron.(*sender).trySend(0xcbc000)
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/electron/sender.go:187
 +0x25
github.com/apache/qpid-proton/go/pkg/electron.(*sender).startSend(...)
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/electron/sender.go:179
github.com/apache/qpid-proton/go/pkg/electron.(*sender).SendAsyncTimeout.func1()
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/electron/sender.go:230
 +0xbb
github.com/apache/qpid-proton/go/pkg/proton.(*Engine).Run(0xc0001261b0)
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/proton/engine.go:376
 +0x134
github.com/apache/qpid-proton/go/pkg/electron.(*connection).run(0xc0001320f0)
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/electron/connection.go:241
 +0x3f
created by github.com/apache/qpid-proton/go/pkg/electron.NewConnection in 
goroutine 1
        
/home/stack/go/pkg/mod/github.com/apache/qpid-proton@v0.0.0-20231031074257-058dcaa83a7e/go/pkg/electron/connection.go:224
 +0x545
exit status 2{code}
 

We used to transfer much larger messages, so this is quite problematic for us. 
The AMQP components we use for message transfer is qdrouterd mesh, but it is 
reproducible on single qdr too.
{code:java}
[root@tripleo-standalone ~]# podman exec -it qdr qdstat -v
2023-12-22 10:26:29.995103 UTC
Standalone_n6PHE7MhBoAhzi8Router Statistics
  attr                             value
  =
  Version                          1.17.1
  Mode                             standalone
  Router Id                        Standalone_n6PHE7MhBoAhzi8
  Worker Threads                   4
  Uptime                           002:21:05:22
  VmSize                           332 MiB
  Area                             0
  Link Routes                      0
  Auto Links                       0
  Links                            2
  Nodes                            0
  Addresses                        4
  Connections                      1
  Presettled Count                 278
  Dropped Presettled Count         3
  Accepted Count                   1894
  Rejected Count                   0
  Released Count                   0
  Modified Count                   0
  Deliveries Delayed > 1sec        0
  Deliveries Delayed > 10sec       0
  Deliveries Stuck > 10sec         0
  Deliveries to Fallback           0
  Links Blocked                    0
  Ingress Count                    2173
  Egress Count                     2172
  Trans