I have been using Neo4J version 3.5 community version and was able to use JMX to extract information on (in the DB):
- Number of nodes in use
- Number of properties in use
- Number of relationships in use
- Number of relationship types in use
On upgrading to v4.2 community edition, these are not being exported anymore. I do see in the
documentation
that these are still available but possibly their naming changed? I am applying a filter using jmx_exporter using this pattern:
- pattern: 'org\.neo4j<instance=(.+), name=Primitive count><>(.+):(.+)'
type: GAUGE
name: neo4j_server_primitive_count_$2
value: $3
Any pointers would be appreciated.
Thanks!