wenzhuo4657 commented on PR #732:
URL: https://github.com/apache/rocketmq-site/pull/732#issuecomment-2986425405
```
public enum MetricsExporterType {
DISABLE(0),
OTLP_GRPC(1),
PROM(2),
LOG(3);
public static MetricsExporterType valueOf(int value) {
switch (value) {
case 1:
return OTLP_GRPC;
case 2:
return PROM;
case 3:
return LOG;
default:
return DISABLE;
}
}
}
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]