-
Notifications
You must be signed in to change notification settings - Fork 657
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add API for obtaining request ID (#1530)
Request ID is a combination of the id of the underlying connection and the serial number of the request received on that connection. Use the request ID in the logs when wire logger is enabled (transition from LoggingHandler to ReactorNettyLoggingHandler)
- Loading branch information
Showing
21 changed files
with
667 additions
and
58 deletions.
There are no files selected for viewing
74 changes: 74 additions & 0 deletions
74
reactor-netty-core/src/main/java/reactor/netty/ChannelOperationsId.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* Copyright (c) 2011-Present VMware, Inc. or its affiliates, All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package reactor.netty; | ||
|
||
/** | ||
* Provides short/long string representation of the channel. | ||
* | ||
* @author Violeta Georgieva | ||
* @since 1.0.5 | ||
*/ | ||
public interface ChannelOperationsId { | ||
|
||
/** | ||
* The short string is a combination of the id of the underlying connection | ||
* and in case of HTTP, the serial number of the request received on that connection. | ||
* <p>Format of the short string: | ||
* {@code <CONNECTION_ID>-<REQUEST_NUMBER>} | ||
* </p> | ||
* <p> | ||
* Example: | ||
* {@code | ||
* <CONNECTION_ID>: 329c6ffd | ||
* <REQUEST_NUMBER>: 5 | ||
* | ||
* Result: 329c6ffd-5 | ||
* } | ||
* </p> | ||
*/ | ||
String asShortText(); | ||
|
||
/** | ||
* The long string is a combination of the id of the underlying connection, local and remote addresses, | ||
* and in case of HTTP, the serial number of the request received on that connection. | ||
* <p>Format of the short string: | ||
* {@code [id: 0x<CONNECTION_ID>-<REQUEST_NUMBER>, <LOCAL_ADDRESS> <CONNECTION_OPENED_CLOSED> <REMOTE_ADDRESS>]} | ||
* </p> | ||
* <p> | ||
* Example: | ||
* {@code | ||
* Opened connection | ||
* <CONNECTION_ID>: 329c6ffd | ||
* <REQUEST_NUMBER>: 5 | ||
* <LOCAL_ADDRESS>: L:/0:0:0:0:0:0:0:1:64286 | ||
* <CONNECTION_OPENED_CLOSED>: - (opened) | ||
* <REMOTE_ADDRESS>: R:/0:0:0:0:0:0:0:1:64284 | ||
* | ||
* Result: [id: 0x329c6ffd-5, L:/0:0:0:0:0:0:0:1:64286 - R:/0:0:0:0:0:0:0:1:64284] | ||
* | ||
* Closed connection | ||
* <CONNECTION_ID>: 329c6ffd | ||
* <REQUEST_NUMBER>: 5 | ||
* <LOCAL_ADDRESS>: L:/0:0:0:0:0:0:0:1:64286 | ||
* <CONNECTION_OPENED_CLOSED>: ! (closed) | ||
* <REMOTE_ADDRESS>: R:/0:0:0:0:0:0:0:1:64284 | ||
* | ||
* Result: [id: 0x329c6ffd-5, L:/0:0:0:0:0:0:0:1:64286 ! R:/0:0:0:0:0:0:0:1:64284] | ||
* } | ||
* </p> | ||
*/ | ||
String asLongText(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.