-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from FalkorDB/GRAPH.INFO
fix #68 add Graph.INFO
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
title: "GRAPH.INFO" | ||
description: > | ||
Returns information and statistics about the current executing commands | ||
parent: "Commands" | ||
--- | ||
|
||
# GRAPH.INFO [Section [Section ...]] | ||
|
||
Returns information and statistics about the current executing commands. | ||
|
||
```sh | ||
127.0.0.1:6379> GRAPH.INFO | ||
1) "# Running queries" | ||
2) (empty array) | ||
3) "# Waiting queries" | ||
4) (empty array) | ||
|
||
127.0.0.1:6379> GRAPH.INFO RunningQueries | ||
1) "# Running queries" | ||
2) (empty array) | ||
|
||
127.0.0.1:6379> GRAPH.INFO WaitingQueries | ||
1) "# Waiting queries" | ||
2) (empty array) | ||
``` |