-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add labels to main left navigation * node -> member legacy renaming * add advisor rules for #132 * basics of memory feed statistics for cluster members * add utilization stats into diagnostic package * basic OOM warning detection * human data sizes * first commit of alerting infrastructure * successful manager commands trigger alerts * clean up "About" panel per Hugo's feedback * update toast dependency * put Halin version in the header proper * add query for listing indexes * toast look & feel updates * fixed bug where certain system commands were over-applied * do not return promises because they hang modal opening * add port to member label when it is non-standard * 90% heap utilization is the trigger * testrig: neo4j 4.0.2 * v0.13.0 release notes
- Loading branch information
moxious
authored
Mar 20, 2020
1 parent
d086c5d
commit 3a77b9b
Showing
39 changed files
with
472 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import HalinQuery from '../HalinQuery'; | ||
|
||
export default new HalinQuery({ | ||
description: 'Lists database indexes', | ||
query: ` | ||
CALL db.indexes() | ||
YIELD id, name, state, populationPercent, uniqueness, type, | ||
entityType, labelsOrTypes, properties, provider | ||
RETURN id, name, state, populationPercent, uniqueness, type, | ||
entityType, labelsOrTypes, properties, provider | ||
ORDER BY name asc; | ||
`, | ||
columns: [ | ||
{ Header: 'ID', accessor: 'id' }, | ||
{ Header: 'Name', accessor: 'name', }, | ||
{ Header: 'State', accessor: 'state' }, | ||
{ Header: 'Population', accessor: 'populationPercent' }, | ||
{ Header: 'Uniqueness', accessor: 'uniqueness' }, | ||
{ Header: 'Type', accessor: 'type' }, | ||
{ Header: 'Entity', accessor: 'entityType' }, | ||
{ Header: 'Labels/Types', accessor: 'labelsOrTypes' }, | ||
{ Header: 'Properties', accessor: 'properties' }, | ||
{ Header: 'Provider', accessor: 'provider' }, | ||
], | ||
exampleResult: [ | ||
{ | ||
id: 1, | ||
name: 'index_70bffdb', | ||
state: 'ONLINE', | ||
populationPercent: 100.0, | ||
uniqueness: 'NONUNIQUE', | ||
type: 'BTREE', | ||
entityType: 'NODE', | ||
labelsOrTypes: ['Label'], | ||
properties: ['name'], | ||
provider: 'native-btree-1.0', | ||
}, | ||
], | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.