diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-09-19 16:13:55 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-09-26 23:49:38 +0200 |
commit | 8fa40905cc8afa06f384ed455e06871126804751 (patch) | |
tree | b3bc5deab119ce93cc9be327ad7a59e6bb42243d /server/sonar-web/src/main/js/api/system.ts | |
parent | 9c2a9a75fff56e56799273e4a61364ed51870b7e (diff) | |
download | sonarqube-8fa40905cc8afa06f384ed455e06871126804751.tar.gz sonarqube-8fa40905cc8afa06f384ed455e06871126804751.zip |
SONAR-9802 add information to System Info page
Diffstat (limited to 'server/sonar-web/src/main/js/api/system.ts')
-rw-r--r-- | server/sonar-web/src/main/js/api/system.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/api/system.ts b/server/sonar-web/src/main/js/api/system.ts index 1b4fd125a97..df9da694e40 100644 --- a/server/sonar-web/src/main/js/api/system.ts +++ b/server/sonar-web/src/main/js/api/system.ts @@ -44,14 +44,13 @@ export interface NodeInfo extends SysValueObject { Name: string; Health: HealthType; 'Health Causes': HealthCause[]; + 'Logs Level': string; } export interface SysInfo extends SysValueObject { Cluster: boolean; Health: HealthType; 'Health Causes': HealthCause[]; - 'Application Nodes': NodeInfo[]; - 'Search Nodes': NodeInfo[]; } export function setLogLevel(level: string): Promise<void | Response> { |