docs/en/status.md
/status shows primary statistics of services inside the server. The data sources are same with /vars, but stats are grouped differently.
Meanings of the fields above:
Users may customize descriptions on /status by letting the service implement brpc::Describable.
class MyService : public XXXService, public brpc::Describable {
public:
...
void Describe(std::ostream& os, const brpc::DescribeOptions& options) const {
os << "my_status: blahblah";
}
};
For example: