Я тестирую Hystrix Dashboard со своими приложениями, и я хотел бы иметь отдельные разделы для каждого ключа группы команд. Это особенность приборной панели? Я не смог найти документацию о такой функции ...
Так я создаю свои команды, используя разные константы для каждой группы команд (у меня есть 3 или 4 отдельные группы для команд различного типа ...)
public CustomCommand() {
// Call the HystrixCommand constructor using a Setter to establish the command
// configuration. See https://github.com/Netflix/Hystrix/wiki/Configuration
super(Setter.withGroupKey(HystrixCommandGroupKey.Factory.asKey(HYSTRIX_COMMAND_GROUP_KEY))
// The command key sets which of this command instances will share configuration
.andCommandKey(HystrixCommandKey.Factory.asKey(command.getConfigKey()))
.andThreadPoolPropertiesDefaults(HystrixThreadPoolProperties.Setter()
// Allow up to 100 simultaneous executions
.withMaximumSize(MAX_THREADPOOL_SIZE)
.withAllowMaximumSizeToDivergeFromCoreSize(true))
.andCommandPropertiesDefaults(HystrixCommandProperties.Setter()
...
}