-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Redis Graph module (GRAPH.QUERY, GRAPH.SLOWLOG) #157
Conversation
Codecov Report
@@ Coverage Diff @@
## master #157 +/- ##
==========================================
+ Coverage 93.50% 93.89% +0.38%
==========================================
Files 32 33 +1
Lines 1293 1375 +82
Branches 67 67
==========================================
+ Hits 1209 1291 +82
Misses 74 74
Partials 10 10
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
Add support for Redis Graph commands:
Graph.Query
command should return 2 data frame with nodes and edges: https://grafana.com/docs/grafana/latest/panels/visualizations/node-graph/Command examples:
GRAPH.QUERY GOT_DEMO "MATCH (w:writer)-[wrote]->(b:book) return w,b"
GRAPH.QUERY MotoGP "MATCH (r:Rider)-[:rides]->(t:Team {name:'Ducati'}) RETURN r,t"
Redis Data Type 7.4 dashboard has Node Graph panel for
GOT_DEMO
key.