Skip to content
Closed
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
4 changes: 3 additions & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ message PingResponse {
string message = 1; // The response message
string service_name = 2; // The service name that handled the request
int64 timestamp = 3; // Timestamp of when the ping was received
string hostname = 4; // The hostname of the server that handled the request
}
```

Expand All @@ -213,7 +214,8 @@ Expected response:
{
"message": "echo: test",
"service_name": "gateway",
"timestamp": 1705234567
"timestamp": 1705234567,
"hostname": "gateway-host-01"
}
```

Expand Down