mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-16 16:23:30 +00:00
fix operation and namespace for older MongoDB versions
This commit is contained in:
@@ -17,29 +17,34 @@ var (
|
|||||||
DEFAULT_KEY_FILTERS = []string{"^shardVersion$"}
|
DEFAULT_KEY_FILTERS = []string{"^shardVersion$"}
|
||||||
)
|
)
|
||||||
|
|
||||||
type Fingerprinter interface {
|
type Fingerprint struct {
|
||||||
Fingerprint(doc proto.SystemProfile) (string, error)
|
Namespace string
|
||||||
|
Operation string
|
||||||
|
Collection string
|
||||||
|
Database string
|
||||||
|
Keys string
|
||||||
|
Fingerprint string
|
||||||
}
|
}
|
||||||
|
|
||||||
type Fingerprint struct {
|
type Fingerprinter struct {
|
||||||
keyFilters []string
|
keyFilters []string
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewFingerprinter(keyFilters []string) *Fingerprint {
|
func NewFingerprinter(keyFilters []string) *Fingerprinter {
|
||||||
return &Fingerprint{
|
return &Fingerprinter{
|
||||||
keyFilters: keyFilters,
|
keyFilters: keyFilters,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Fingerprint) Fingerprint(doc proto.SystemProfile) (string, error) {
|
func (f *Fingerprinter) Fingerprint(doc proto.SystemProfile) (Fingerprint, error) {
|
||||||
realQuery, err := util.GetQueryField(doc)
|
realQuery, err := util.GetQueryField(doc)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// Try to encode doc.Query as json for prettiness
|
// Try to encode doc.Query as json for prettiness
|
||||||
if buf, err := json.Marshal(realQuery); err == nil {
|
if buf, err := json.Marshal(realQuery); err == nil {
|
||||||
return "", fmt.Errorf("%v for query %s", err, string(buf))
|
return Fingerprint{}, fmt.Errorf("%v for query %s", err, string(buf))
|
||||||
}
|
}
|
||||||
// If we cannot encode as json, return just the error message without the query
|
// If we cannot encode as json, return just the error message without the query
|
||||||
return "", err
|
return Fingerprint{}, err
|
||||||
}
|
}
|
||||||
retKeys := keys(realQuery, f.keyFilters)
|
retKeys := keys(realQuery, f.keyFilters)
|
||||||
|
|
||||||
@@ -61,22 +66,22 @@ func (f *Fingerprint) Fingerprint(doc proto.SystemProfile) (string, error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Extract collection name and operation
|
// Extract operation, collection, database and namespace
|
||||||
op := ""
|
op := ""
|
||||||
collection := ""
|
collection := ""
|
||||||
|
database := ""
|
||||||
|
ns := strings.SplitN(doc.Ns, ".", 2)
|
||||||
|
if len(ns) > 0 {
|
||||||
|
database = ns[0]
|
||||||
|
}
|
||||||
|
if len(ns) == 2 {
|
||||||
|
collection = ns[1]
|
||||||
|
}
|
||||||
switch doc.Op {
|
switch doc.Op {
|
||||||
case "remove", "update":
|
case "remove", "update":
|
||||||
op = doc.Op
|
op = doc.Op
|
||||||
ns := strings.SplitN(doc.Ns, ".", 2)
|
|
||||||
if len(ns) == 2 {
|
|
||||||
collection = ns[1]
|
|
||||||
}
|
|
||||||
case "insert":
|
case "insert":
|
||||||
op = doc.Op
|
op = doc.Op
|
||||||
ns := strings.SplitN(doc.Ns, ".", 2)
|
|
||||||
if len(ns) == 2 {
|
|
||||||
collection = ns[1]
|
|
||||||
}
|
|
||||||
retKeys = []string{}
|
retKeys = []string{}
|
||||||
case "query":
|
case "query":
|
||||||
// EXPLAIN MongoDB 2.6:
|
// EXPLAIN MongoDB 2.6:
|
||||||
@@ -88,13 +93,11 @@ func (f *Fingerprint) Fingerprint(doc proto.SystemProfile) (string, error) {
|
|||||||
// },
|
// },
|
||||||
if _, ok := doc.Query.Map()["$explain"]; ok {
|
if _, ok := doc.Query.Map()["$explain"]; ok {
|
||||||
op = "explain"
|
op = "explain"
|
||||||
|
database = ""
|
||||||
|
collection = ""
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
op = "find"
|
op = "find"
|
||||||
ns := strings.SplitN(doc.Ns, ".", 2)
|
|
||||||
if len(ns) == 2 {
|
|
||||||
collection = ns[1]
|
|
||||||
}
|
|
||||||
default:
|
default:
|
||||||
if query.Len() == 0 {
|
if query.Len() == 0 {
|
||||||
break
|
break
|
||||||
@@ -138,6 +141,8 @@ func (f *Fingerprint) Fingerprint(doc proto.SystemProfile) (string, error) {
|
|||||||
case "geoNear":
|
case "geoNear":
|
||||||
retKeys = []string{}
|
retKeys = []string{}
|
||||||
case "explain":
|
case "explain":
|
||||||
|
database = ""
|
||||||
|
collection = ""
|
||||||
retKeys = []string{}
|
retKeys = []string{}
|
||||||
case "$eval":
|
case "$eval":
|
||||||
op = "eval"
|
op = "eval"
|
||||||
@@ -162,7 +167,23 @@ func (f *Fingerprint) Fingerprint(doc proto.SystemProfile) (string, error) {
|
|||||||
parts = append(parts, keys)
|
parts = append(parts, keys)
|
||||||
}
|
}
|
||||||
|
|
||||||
return strings.Join(parts, " "), nil
|
ns = []string{}
|
||||||
|
if database != "" {
|
||||||
|
ns = append(ns, database)
|
||||||
|
}
|
||||||
|
if collection != "" {
|
||||||
|
ns = append(ns, collection)
|
||||||
|
}
|
||||||
|
fp := Fingerprint{
|
||||||
|
Operation: op,
|
||||||
|
Namespace: strings.Join(ns, "."),
|
||||||
|
Database: database,
|
||||||
|
Collection: collection,
|
||||||
|
Keys: keys,
|
||||||
|
Fingerprint: strings.Join(parts, " "),
|
||||||
|
}
|
||||||
|
|
||||||
|
return fp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func keys(query interface{}, keyFilters []string) []string {
|
func keys(query interface{}, keyFilters []string) []string {
|
||||||
|
@@ -44,7 +44,7 @@ func ExampleFingerprint() {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
fmt.Println(got)
|
fmt.Println(got.Fingerprint)
|
||||||
// Output: FIND sbtest3 c,k,pad
|
// Output: FIND sbtest3 c,k,pad
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -68,7 +68,7 @@ func TestFingerprint(t *testing.T) {
|
|||||||
t.Error("Error in fingerprint")
|
t.Error("Error in fingerprint")
|
||||||
}
|
}
|
||||||
|
|
||||||
if got != want {
|
if got.Fingerprint != want {
|
||||||
t.Errorf("Invalid fingerprint. Got: %q, want %q", got, want)
|
t.Errorf("Invalid fingerprint. Got: %q, want %q", got, want)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -183,8 +183,8 @@ func TestFingerprints(t *testing.T) {
|
|||||||
t.Errorf("cannot create fingerprint: %s", err)
|
t.Errorf("cannot create fingerprint: %s", err)
|
||||||
}
|
}
|
||||||
expect := expects[file.Name()]
|
expect := expects[file.Name()]
|
||||||
if !reflect.DeepEqual(got, expect) {
|
if !reflect.DeepEqual(got.Fingerprint, expect) {
|
||||||
t.Errorf("fp.Fingerprint(doc) = %s, want %s", got, expect)
|
t.Errorf("fp.Fingerprint(doc) = %s, want %s", got.Fingerprint, expect)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@@ -70,9 +70,9 @@ func TestRegularIterator(t *testing.T) {
|
|||||||
lastSeen, _ := time.Parse(time.RFC3339Nano, "2017-04-01T23:01:20.214+00:00")
|
lastSeen, _ := time.Parse(time.RFC3339Nano, "2017-04-01T23:01:20.214+00:00")
|
||||||
want := stats.Queries{
|
want := stats.Queries{
|
||||||
{
|
{
|
||||||
ID: "16196765fb4c14edb91efdbe4f5c5973",
|
ID: "95575e896c2830043dc333cb8ee61339",
|
||||||
Namespace: "samples.col1",
|
Namespace: "samples.col1",
|
||||||
Operation: "query",
|
Operation: "FIND",
|
||||||
Query: "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
Query: "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
||||||
Fingerprint: "FIND col1 find",
|
Fingerprint: "FIND col1 find",
|
||||||
FirstSeen: firstSeen,
|
FirstSeen: firstSeen,
|
||||||
@@ -128,9 +128,9 @@ func TestIteratorTimeout(t *testing.T) {
|
|||||||
lastSeen, _ := time.Parse(time.RFC3339Nano, "2017-04-01T23:01:19.914+00:00")
|
lastSeen, _ := time.Parse(time.RFC3339Nano, "2017-04-01T23:01:19.914+00:00")
|
||||||
want := stats.Queries{
|
want := stats.Queries{
|
||||||
{
|
{
|
||||||
ID: "16196765fb4c14edb91efdbe4f5c5973",
|
ID: "95575e896c2830043dc333cb8ee61339",
|
||||||
Namespace: "samples.col1",
|
Namespace: "samples.col1",
|
||||||
Operation: "query",
|
Operation: "FIND",
|
||||||
Query: "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
Query: "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
||||||
Fingerprint: "FIND col1 find",
|
Fingerprint: "FIND col1 find",
|
||||||
FirstSeen: firstSeen,
|
FirstSeen: firstSeen,
|
||||||
@@ -208,9 +208,9 @@ func TestTailIterator(t *testing.T) {
|
|||||||
|
|
||||||
want := stats.Queries{
|
want := stats.Queries{
|
||||||
{
|
{
|
||||||
ID: "16196765fb4c14edb91efdbe4f5c5973",
|
ID: "95575e896c2830043dc333cb8ee61339",
|
||||||
Namespace: "samples.col1",
|
Namespace: "samples.col1",
|
||||||
Operation: "query",
|
Operation: "FIND",
|
||||||
Query: "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
Query: "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
||||||
Fingerprint: "FIND col1 find",
|
Fingerprint: "FIND col1 find",
|
||||||
FirstSeen: parseDate("2017-04-01T23:01:20.214+00:00"),
|
FirstSeen: parseDate("2017-04-01T23:01:20.214+00:00"),
|
||||||
@@ -223,9 +223,9 @@ func TestTailIterator(t *testing.T) {
|
|||||||
ResponseLength: []float64{1.06123e+06},
|
ResponseLength: []float64{1.06123e+06},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ID: "16196765fb4c14edb91efdbe4f5c5973",
|
ID: "95575e896c2830043dc333cb8ee61339",
|
||||||
Namespace: "samples.col1",
|
Namespace: "samples.col1",
|
||||||
Operation: "query",
|
Operation: "FIND",
|
||||||
Query: "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
Query: "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
||||||
Fingerprint: "FIND col1 find",
|
Fingerprint: "FIND col1 find",
|
||||||
FirstSeen: parseDate("2017-04-01T23:01:19.914+00:00"),
|
FirstSeen: parseDate("2017-04-01T23:01:19.914+00:00"),
|
||||||
|
10
src/go/mongolib/stats/fingerprinter.go
Normal file
10
src/go/mongolib/stats/fingerprinter.go
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
package stats
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/percona/percona-toolkit/src/go/mongolib/fingerprinter"
|
||||||
|
"github.com/percona/percona-toolkit/src/go/mongolib/proto"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Fingerprinter interface {
|
||||||
|
Fingerprint(doc proto.SystemProfile) (fingerprinter.Fingerprint, error)
|
||||||
|
}
|
@@ -8,7 +8,6 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/montanaflynn/stats"
|
"github.com/montanaflynn/stats"
|
||||||
"github.com/percona/percona-toolkit/src/go/mongolib/fingerprinter"
|
|
||||||
"github.com/percona/percona-toolkit/src/go/mongolib/proto"
|
"github.com/percona/percona-toolkit/src/go/mongolib/proto"
|
||||||
"gopkg.in/mgo.v2/bson"
|
"gopkg.in/mgo.v2/bson"
|
||||||
)
|
)
|
||||||
@@ -31,8 +30,8 @@ func (e *StatsError) Parent() error {
|
|||||||
|
|
||||||
type StatsFingerprintError StatsError
|
type StatsFingerprintError StatsError
|
||||||
|
|
||||||
// New creates new instance of stats with given fingerprinter
|
// New creates new instance of stats with given Fingerprinter
|
||||||
func New(fingerprinter fingerprinter.Fingerprinter) *Stats {
|
func New(fingerprinter Fingerprinter) *Stats {
|
||||||
s := &Stats{
|
s := &Stats{
|
||||||
fingerprinter: fingerprinter,
|
fingerprinter: fingerprinter,
|
||||||
}
|
}
|
||||||
@@ -44,7 +43,7 @@ func New(fingerprinter fingerprinter.Fingerprinter) *Stats {
|
|||||||
// Stats is a collection of MongoDB statistics
|
// Stats is a collection of MongoDB statistics
|
||||||
type Stats struct {
|
type Stats struct {
|
||||||
// dependencies
|
// dependencies
|
||||||
fingerprinter fingerprinter.Fingerprinter
|
fingerprinter Fingerprinter
|
||||||
|
|
||||||
// internal
|
// internal
|
||||||
queryInfoAndCounters map[GroupKey]*QueryInfoAndCounters
|
queryInfoAndCounters map[GroupKey]*QueryInfoAndCounters
|
||||||
@@ -69,9 +68,9 @@ func (s *Stats) Add(doc proto.SystemProfile) error {
|
|||||||
var ok bool
|
var ok bool
|
||||||
|
|
||||||
key := GroupKey{
|
key := GroupKey{
|
||||||
Operation: doc.Op,
|
Operation: fp.Operation,
|
||||||
Fingerprint: fp,
|
Fingerprint: fp.Fingerprint,
|
||||||
Namespace: doc.Ns,
|
Namespace: fp.Namespace,
|
||||||
}
|
}
|
||||||
if qiac, ok = s.getQueryInfoAndCounters(key); !ok {
|
if qiac, ok = s.getQueryInfoAndCounters(key); !ok {
|
||||||
query := proto.NewExampleQuery(doc)
|
query := proto.NewExampleQuery(doc)
|
||||||
@@ -81,9 +80,9 @@ func (s *Stats) Add(doc proto.SystemProfile) error {
|
|||||||
}
|
}
|
||||||
qiac = &QueryInfoAndCounters{
|
qiac = &QueryInfoAndCounters{
|
||||||
ID: fmt.Sprintf("%x", md5.Sum([]byte(fmt.Sprintf("%s", key)))),
|
ID: fmt.Sprintf("%x", md5.Sum([]byte(fmt.Sprintf("%s", key)))),
|
||||||
Operation: doc.Op,
|
Operation: fp.Operation,
|
||||||
Fingerprint: fp,
|
Fingerprint: fp.Fingerprint,
|
||||||
Namespace: doc.Ns,
|
Namespace: fp.Namespace,
|
||||||
TableScan: false,
|
TableScan: false,
|
||||||
Query: string(queryBson),
|
Query: string(queryBson),
|
||||||
}
|
}
|
||||||
|
@@ -145,9 +145,9 @@ func TestStats(t *testing.T) {
|
|||||||
t.Errorf("Error processing doc: %s\n", err.Error())
|
t.Errorf("Error processing doc: %s\n", err.Error())
|
||||||
}
|
}
|
||||||
statsVal := QueryInfoAndCounters{
|
statsVal := QueryInfoAndCounters{
|
||||||
ID: "4e4774ad26f934a193757002a991ebb8",
|
ID: "d7088d6b50551d1f2f5f34b006c0140d",
|
||||||
Namespace: "samples.col1",
|
Namespace: "samples.col1",
|
||||||
Operation: "query",
|
Operation: "FIND",
|
||||||
Query: "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"filter\":{\"s2\":{\"$gte\":\"41991\",\"$lt\":\"33754\"}},\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
Query: "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"filter\":{\"s2\":{\"$gte\":\"41991\",\"$lt\":\"33754\"}},\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
||||||
Fingerprint: "FIND col1 s2",
|
Fingerprint: "FIND col1 s2",
|
||||||
FirstSeen: parseDate("2017-04-10T13:15:53.532-03:00"),
|
FirstSeen: parseDate("2017-04-10T13:15:53.532-03:00"),
|
||||||
|
@@ -301,107 +301,107 @@ Skipping profiled queries on these collections: \[system\.profile\]
|
|||||||
|
|
||||||
queries := []stats.QueryStats{
|
queries := []stats.QueryStats{
|
||||||
{
|
{
|
||||||
ID: "a7ce8dee16beadb767484112e6b29af3",
|
ID: "e357abe482dcc0cd03ab742741bf1c86",
|
||||||
Namespace: "test.coll",
|
Namespace: "test.coll",
|
||||||
Operation: "insert",
|
Operation: "INSERT",
|
||||||
Fingerprint: "INSERT coll",
|
Fingerprint: "INSERT coll",
|
||||||
Query: `{"ns":"test.coll","op":"insert","query":{"insert":"coll","documents":\[{"_id":{"\$oid":".*"},"a":9}\],"ordered":true}}`,
|
Query: `{"ns":"test.coll","op":"insert","query":{"insert":"coll","documents":\[{"_id":{"\$oid":".*"},"a":9}\],"ordered":true}}`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ID: "7e6e9af8a1754a065b323acdddbee4b5",
|
ID: "c9b40ce564762834d12b0390a292645c",
|
||||||
Namespace: "test.coll",
|
Namespace: "test.coll",
|
||||||
Operation: "command",
|
Operation: "DROP",
|
||||||
Fingerprint: "DROP coll drop",
|
Fingerprint: "DROP coll drop",
|
||||||
Query: `{"ns":"test.coll","op":"command","command":{"drop":"coll"}}`,
|
Query: `{"ns":"test.coll","op":"command","command":{"drop":"coll"}}`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ID: "bab52c8aa977c96ecd148c015ae07c42",
|
ID: "e72ad41302045bd6c2bcad76511f915a",
|
||||||
Namespace: "test.coll",
|
Namespace: "test.coll",
|
||||||
Operation: "remove",
|
Operation: "REMOVE",
|
||||||
Fingerprint: "REMOVE coll a,b",
|
Fingerprint: "REMOVE coll a,b",
|
||||||
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"remove","query":{"a":{"$gte":2},"b":{"$gte":2}}}`),
|
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"remove","query":{"a":{"$gte":2},"b":{"$gte":2}}}`),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ID: "11e1b6f695d43b1b5a2f7e6de2ad8305",
|
ID: "30dbfbc89efd8cfd40774dff0266a28f",
|
||||||
Namespace: "test.coll",
|
Namespace: "test.coll",
|
||||||
Operation: "command",
|
Operation: "AGGREGATE",
|
||||||
Fingerprint: "AGGREGATE coll a",
|
Fingerprint: "AGGREGATE coll a",
|
||||||
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"aggregate":"coll","pipeline":[{"$match":{"a":{"$gte":2}}}],"cursor":{}}}`),
|
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"aggregate":"coll","pipeline":[{"$match":{"a":{"$gte":2}}}],"cursor":{}}}`),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ID: "a4be6ed97c946182af7e30cf818afdac",
|
ID: "e4122a58c99ab0a4020ce7d195c5a8cb",
|
||||||
Namespace: "test.coll",
|
Namespace: "test.coll",
|
||||||
Operation: "command",
|
Operation: "DISTINCT",
|
||||||
Fingerprint: "DISTINCT coll a,b",
|
Fingerprint: "DISTINCT coll a,b",
|
||||||
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"distinct":"coll","key":"a","query":{"b":{"$gte":5}}}}`),
|
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"distinct":"coll","key":"a","query":{"b":{"$gte":5}}}}`),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ID: "e2f53c6824c5cbe454e33e128b350d1e",
|
ID: "a6782ae38ef891d5506341a4b0ab2747",
|
||||||
Namespace: "test.coll",
|
|
||||||
Operation: "command",
|
|
||||||
Fingerprint: "EXPLAIN",
|
|
||||||
Query: `{"ns":"test.coll","op":"command","command":{"explain":{"find":"coll","filter":{}},"verbosity":"queryPlanner"}}`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
ID: "9423eaa90c222686d092c04f001fb369",
|
|
||||||
Namespace: "test.coll",
|
|
||||||
Operation: "command",
|
|
||||||
Fingerprint: "FINDANDMODIFY coll a",
|
|
||||||
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"findandmodify":"coll","query":{"a":2},"update":{"$inc":{"b":1}}},"updateobj":{"$inc":{"b":1}}}`),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
ID: "dd20c739baef5a3fd9352c350c7e69f1",
|
|
||||||
Namespace: "test.coll",
|
|
||||||
Operation: "command",
|
|
||||||
Fingerprint: "GEONEAR coll",
|
|
||||||
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"geoNear":"coll","near":{"type":"Point","coordinates":[1,1]},"spherical":true}}`),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
ID: "018a055f724d418b80e66b98bfdb25a5",
|
|
||||||
Namespace: "test.coll",
|
|
||||||
Operation: "command",
|
|
||||||
Fingerprint: "GROUP coll a,b",
|
|
||||||
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"group":{"key":{"a":1,"b":1},"cond":{"b":3},"initial":{},"ns":"coll","$reduce":{"Code":"function () {}","Scope":null}}}}`),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
ID: "130827f5b7afe1369f619ccd5cd61ec4",
|
|
||||||
Namespace: "test.coll",
|
|
||||||
Operation: "command",
|
|
||||||
Fingerprint: "MAPREDUCE coll a",
|
|
||||||
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"mapreduce":"coll","map":{"Code":"function () {\n emit(this.a, this.b);\n}","Scope":null},"reduce":{"Code":"function (a, b) {\n return Array.sum(b);\n}","Scope":null},"query":{"a":{"$gte":0}},"out":{"inline":1}}}`),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
ID: "71b3d6aa44d34aaa02cd65bad3e25f49",
|
|
||||||
Namespace: "test",
|
Namespace: "test",
|
||||||
Operation: "command",
|
Operation: "EVAL",
|
||||||
Fingerprint: "EVAL",
|
Fingerprint: "EVAL",
|
||||||
Query: regexp.QuoteMeta(`{"ns":"test","op":"command","command":{"$eval":"db"}}`),
|
Query: regexp.QuoteMeta(`{"ns":"test","op":"command","command":{"$eval":"db"}}`),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ID: "2300d7f2d372205544f249b010e9b8ad",
|
ID: "76d7662df07b44135ac3e07e44a6eb39",
|
||||||
Namespace: "test.coll",
|
Namespace: "",
|
||||||
Operation: "command",
|
Operation: "EXPLAIN",
|
||||||
Fingerprint: "COUNT coll a",
|
Fingerprint: "EXPLAIN",
|
||||||
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"count":"coll","query":{"a":{"$gt":5}},"fields":{}}}`),
|
Query: `{"ns":"test.coll","op":"command","command":{"explain":{"find":"coll","filter":{}},"verbosity":"queryPlanner"}}`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ID: "ffd83008fd6affc7c07053f583dea3e0",
|
ID: "e8a3f05a4bd3f0bfa7d38eb2372258b1",
|
||||||
|
Namespace: "test.coll",
|
||||||
|
Operation: "FINDANDMODIFY",
|
||||||
|
Fingerprint: "FINDANDMODIFY coll a",
|
||||||
|
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"findandmodify":"coll","query":{"a":2},"update":{"$inc":{"b":1}}},"updateobj":{"$inc":{"b":1}}}`),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ID: "67c5f1bafcb8cd4b3af9f008f496f74b",
|
||||||
Namespace: "test.system.js",
|
Namespace: "test.system.js",
|
||||||
Operation: "query",
|
Operation: "FIND",
|
||||||
Fingerprint: "FIND system.js find",
|
Fingerprint: "FIND system.js find",
|
||||||
Query: `{"ns":"test.system.js","op":"query","query":{"find":"system.js"}}`,
|
Query: `{"ns":"test.system.js","op":"query","query":{"find":"system.js"}}`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ID: "29701e3d37e0adb35ebd70b7ef2b3f3d",
|
ID: "c70403cbd55ffbb07f08c0cb77a24b19",
|
||||||
Namespace: "test.coll",
|
Namespace: "test.coll",
|
||||||
Operation: "command",
|
Operation: "GEONEAR",
|
||||||
|
Fingerprint: "GEONEAR coll",
|
||||||
|
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"geoNear":"coll","near":{"type":"Point","coordinates":[1,1]},"spherical":true}}`),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ID: "ca8bb19386488570447f5753741fb494",
|
||||||
|
Namespace: "test.coll",
|
||||||
|
Operation: "GROUP",
|
||||||
|
Fingerprint: "GROUP coll a,b",
|
||||||
|
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"group":{"key":{"a":1,"b":1},"cond":{"b":3},"initial":{},"ns":"coll","$reduce":{"Code":"function () {}","Scope":null}}}}`),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ID: "10b8f47b366fbfd1fb01f8d17d75b1a2",
|
||||||
|
Namespace: "test.coll",
|
||||||
|
Operation: "COUNT",
|
||||||
|
Fingerprint: "COUNT coll a",
|
||||||
|
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"count":"coll","query":{"a":{"$gt":5}},"fields":{}}}`),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ID: "cc3cb3824eea4094eb042f5ca76bd385",
|
||||||
|
Namespace: "test.coll",
|
||||||
|
Operation: "MAPREDUCE",
|
||||||
|
Fingerprint: "MAPREDUCE coll a",
|
||||||
|
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"command","command":{"mapreduce":"coll","map":{"Code":"function () {\n emit(this.a, this.b);\n}","Scope":null},"reduce":{"Code":"function (a, b) {\n return Array.sum(b);\n}","Scope":null},"query":{"a":{"$gte":0}},"out":{"inline":1}}}`),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ID: "cba2dff0740762c6e5769f0e300df676",
|
||||||
|
Namespace: "test.coll",
|
||||||
|
Operation: "COUNT",
|
||||||
Fingerprint: "COUNT coll",
|
Fingerprint: "COUNT coll",
|
||||||
Query: `{"ns":"test.coll","op":"command","command":{"count":"coll","query":{},"fields":{}}}`,
|
Query: `{"ns":"test.coll","op":"command","command":{"count":"coll","query":{},"fields":{}}}`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ID: "27cb39e62745b1ff4121b4bf6f21fb12",
|
ID: "f74a5120ac22d02120ccbf6d478b0dbc",
|
||||||
Namespace: "test.coll",
|
Namespace: "test.coll",
|
||||||
Operation: "update",
|
Operation: "UPDATE",
|
||||||
Fingerprint: "UPDATE coll a",
|
Fingerprint: "UPDATE coll a",
|
||||||
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"update","query":{"a":{"$gte":2}},"updateobj":{"$set":{"c":1},"$inc":{"a":-10}}}`),
|
Query: regexp.QuoteMeta(`{"ns":"test.coll","op":"update","query":{"a":{"$gte":2}},"updateobj":{"$set":{"c":1},"$inc":{"a":-10}}}`),
|
||||||
},
|
},
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "59899eb380b4e48c345fb6f997d06bfa",
|
"ID": "30dbfbc89efd8cfd40774dff0266a28f",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "AGGREGATE",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"aggregate\":\"coll\",\"pipeline\":[{\"$match\":{\"a\":{\"$gte\":2}}}],\"cursor\":{}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"aggregate\":\"coll\",\"pipeline\":[{\"$match\":{\"a\":{\"$gte\":2}}}],\"cursor\":{}}}\n",
|
||||||
"Fingerprint": "AGGREGATE coll a",
|
"Fingerprint": "AGGREGATE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:14.658Z",
|
"FirstSeen": "2017-08-20T15:39:14.658Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "59899eb380b4e48c345fb6f997d06bfa",
|
"ID": "30dbfbc89efd8cfd40774dff0266a28f",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "AGGREGATE",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"aggregate\":\"coll\",\"pipeline\":[{\"$match\":{\"a\":{\"$gte\":2}}}],\"cursor\":{}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"aggregate\":\"coll\",\"pipeline\":[{\"$match\":{\"a\":{\"$gte\":2}}}],\"cursor\":{}}}\n",
|
||||||
"Fingerprint": "AGGREGATE coll a",
|
"Fingerprint": "AGGREGATE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:20.858Z",
|
"FirstSeen": "2017-08-20T15:39:20.858Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "11e1b6f695d43b1b5a2f7e6de2ad8305",
|
"ID": "30dbfbc89efd8cfd40774dff0266a28f",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "AGGREGATE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"aggregate\":\"coll\",\"pipeline\":[{\"$match\":{\"a\":{\"$gte\":2}}}],\"cursor\":{}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"aggregate\":\"coll\",\"pipeline\":[{\"$match\":{\"a\":{\"$gte\":2}}}],\"cursor\":{}}}\n",
|
||||||
"Fingerprint": "AGGREGATE coll a",
|
"Fingerprint": "AGGREGATE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:29.915Z",
|
"FirstSeen": "2017-08-20T15:39:29.915Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "11e1b6f695d43b1b5a2f7e6de2ad8305",
|
"ID": "30dbfbc89efd8cfd40774dff0266a28f",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "AGGREGATE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"aggregate\":\"coll\",\"pipeline\":[{\"$match\":{\"a\":{\"$gte\":2}}}],\"cursor\":{}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"aggregate\":\"coll\",\"pipeline\":[{\"$match\":{\"a\":{\"$gte\":2}}}],\"cursor\":{}}}\n",
|
||||||
"Fingerprint": "AGGREGATE coll a",
|
"Fingerprint": "AGGREGATE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:36.711Z",
|
"FirstSeen": "2017-08-20T15:39:36.711Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "11e1b6f695d43b1b5a2f7e6de2ad8305",
|
"ID": "30dbfbc89efd8cfd40774dff0266a28f",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "AGGREGATE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"aggregate\":\"coll\",\"pipeline\":[{\"$match\":{\"a\":{\"$gte\":2}}}],\"cursor\":{},\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"aggregate\":\"coll\",\"pipeline\":[{\"$match\":{\"a\":{\"$gte\":2}}}],\"cursor\":{},\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "AGGREGATE coll a",
|
"Fingerprint": "AGGREGATE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:47.203Z",
|
"FirstSeen": "2017-08-20T15:39:47.203Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "020d9f1058f3bf08e3b1afb1ef883d44",
|
"ID": "cba2dff0740762c6e5769f0e300df676",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "COUNT",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{},\"fields\":{}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{},\"fields\":{}}}\n",
|
||||||
"Fingerprint": "COUNT coll",
|
"Fingerprint": "COUNT coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:14.823Z",
|
"FirstSeen": "2017-08-20T15:39:14.823Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "020d9f1058f3bf08e3b1afb1ef883d44",
|
"ID": "cba2dff0740762c6e5769f0e300df676",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "COUNT",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{},\"fields\":{}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{},\"fields\":{}}}\n",
|
||||||
"Fingerprint": "COUNT coll",
|
"Fingerprint": "COUNT coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:20.982Z",
|
"FirstSeen": "2017-08-20T15:39:20.982Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "29701e3d37e0adb35ebd70b7ef2b3f3d",
|
"ID": "cba2dff0740762c6e5769f0e300df676",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "COUNT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{},\"fields\":{}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{},\"fields\":{}}}\n",
|
||||||
"Fingerprint": "COUNT coll",
|
"Fingerprint": "COUNT coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:30.094Z",
|
"FirstSeen": "2017-08-20T15:39:30.094Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "29701e3d37e0adb35ebd70b7ef2b3f3d",
|
"ID": "cba2dff0740762c6e5769f0e300df676",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "COUNT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{},\"fields\":{}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{},\"fields\":{}}}\n",
|
||||||
"Fingerprint": "COUNT coll",
|
"Fingerprint": "COUNT coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:36.897Z",
|
"FirstSeen": "2017-08-20T15:39:36.897Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "29701e3d37e0adb35ebd70b7ef2b3f3d",
|
"ID": "cba2dff0740762c6e5769f0e300df676",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "COUNT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{},\"fields\":{},\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{},\"fields\":{},\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "COUNT coll",
|
"Fingerprint": "COUNT coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:47.396Z",
|
"FirstSeen": "2017-08-20T15:39:47.396Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "5eee3fe927f2234d7655f4fcc7fead0a",
|
"ID": "10b8f47b366fbfd1fb01f8d17d75b1a2",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "COUNT",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{\"a\":{\"$gt\":5}},\"fields\":{}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{\"a\":{\"$gt\":5}},\"fields\":{}}}\n",
|
||||||
"Fingerprint": "COUNT coll a",
|
"Fingerprint": "COUNT coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:14.971Z",
|
"FirstSeen": "2017-08-20T15:39:14.971Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "5eee3fe927f2234d7655f4fcc7fead0a",
|
"ID": "10b8f47b366fbfd1fb01f8d17d75b1a2",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "COUNT",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{\"a\":{\"$gt\":5}},\"fields\":{}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{\"a\":{\"$gt\":5}},\"fields\":{}}}\n",
|
||||||
"Fingerprint": "COUNT coll a",
|
"Fingerprint": "COUNT coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:21.124Z",
|
"FirstSeen": "2017-08-20T15:39:21.124Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "2300d7f2d372205544f249b010e9b8ad",
|
"ID": "10b8f47b366fbfd1fb01f8d17d75b1a2",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "COUNT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{\"a\":{\"$gt\":5}},\"fields\":{}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{\"a\":{\"$gt\":5}},\"fields\":{}}}\n",
|
||||||
"Fingerprint": "COUNT coll a",
|
"Fingerprint": "COUNT coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:30.251Z",
|
"FirstSeen": "2017-08-20T15:39:30.251Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "2300d7f2d372205544f249b010e9b8ad",
|
"ID": "10b8f47b366fbfd1fb01f8d17d75b1a2",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "COUNT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{\"a\":{\"$gt\":5}},\"fields\":{}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{\"a\":{\"$gt\":5}},\"fields\":{}}}\n",
|
||||||
"Fingerprint": "COUNT coll a",
|
"Fingerprint": "COUNT coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:37.077Z",
|
"FirstSeen": "2017-08-20T15:39:37.077Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "2300d7f2d372205544f249b010e9b8ad",
|
"ID": "10b8f47b366fbfd1fb01f8d17d75b1a2",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "COUNT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{\"a\":{\"$gt\":5}},\"fields\":{},\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"count\":\"coll\",\"query\":{\"a\":{\"$gt\":5}},\"fields\":{},\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "COUNT coll a",
|
"Fingerprint": "COUNT coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:47.573Z",
|
"FirstSeen": "2017-08-20T15:39:47.573Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "bab52c8aa977c96ecd148c015ae07c42",
|
"ID": "e72ad41302045bd6c2bcad76511f915a",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "remove",
|
"Operation": "REMOVE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
||||||
"Fingerprint": "REMOVE coll a,b",
|
"Fingerprint": "REMOVE coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:15.126Z",
|
"FirstSeen": "2017-08-20T15:39:15.126Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "bab52c8aa977c96ecd148c015ae07c42",
|
"ID": "e72ad41302045bd6c2bcad76511f915a",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "remove",
|
"Operation": "REMOVE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
||||||
"Fingerprint": "REMOVE coll a,b",
|
"Fingerprint": "REMOVE coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:21.265Z",
|
"FirstSeen": "2017-08-20T15:39:21.265Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "bab52c8aa977c96ecd148c015ae07c42",
|
"ID": "e72ad41302045bd6c2bcad76511f915a",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "remove",
|
"Operation": "REMOVE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
||||||
"Fingerprint": "REMOVE coll a,b",
|
"Fingerprint": "REMOVE coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:30.543Z",
|
"FirstSeen": "2017-08-20T15:39:30.543Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "bab52c8aa977c96ecd148c015ae07c42",
|
"ID": "e72ad41302045bd6c2bcad76511f915a",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "remove",
|
"Operation": "REMOVE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
||||||
"Fingerprint": "REMOVE coll a,b",
|
"Fingerprint": "REMOVE coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:37.279Z",
|
"FirstSeen": "2017-08-20T15:39:37.279Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "bab52c8aa977c96ecd148c015ae07c42",
|
"ID": "e72ad41302045bd6c2bcad76511f915a",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "remove",
|
"Operation": "REMOVE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"command\":{\"q\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}},\"limit\":1}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"command\":{\"q\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}},\"limit\":1}}\n",
|
||||||
"Fingerprint": "REMOVE coll a,b",
|
"Fingerprint": "REMOVE coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:47.745Z",
|
"FirstSeen": "2017-08-20T15:39:47.745Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "bab52c8aa977c96ecd148c015ae07c42",
|
"ID": "e72ad41302045bd6c2bcad76511f915a",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "remove",
|
"Operation": "REMOVE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
||||||
"Fingerprint": "REMOVE coll a,b",
|
"Fingerprint": "REMOVE coll a,b",
|
||||||
"FirstSeen": "2017-08-30T10:54:45.348Z",
|
"FirstSeen": "2017-08-30T10:54:45.348Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "bab52c8aa977c96ecd148c015ae07c42",
|
"ID": "e72ad41302045bd6c2bcad76511f915a",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "remove",
|
"Operation": "REMOVE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
||||||
"Fingerprint": "REMOVE coll a,b",
|
"Fingerprint": "REMOVE coll a,b",
|
||||||
"FirstSeen": "2017-08-30T10:54:52.821Z",
|
"FirstSeen": "2017-08-30T10:54:52.821Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "bab52c8aa977c96ecd148c015ae07c42",
|
"ID": "e72ad41302045bd6c2bcad76511f915a",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "remove",
|
"Operation": "REMOVE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
||||||
"Fingerprint": "REMOVE coll a,b",
|
"Fingerprint": "REMOVE coll a,b",
|
||||||
"FirstSeen": "2017-08-30T10:55:02.238Z",
|
"FirstSeen": "2017-08-30T10:55:02.238Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "bab52c8aa977c96ecd148c015ae07c42",
|
"ID": "e72ad41302045bd6c2bcad76511f915a",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "remove",
|
"Operation": "REMOVE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"query\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}}}\n",
|
||||||
"Fingerprint": "REMOVE coll a,b",
|
"Fingerprint": "REMOVE coll a,b",
|
||||||
"FirstSeen": "2017-08-30T10:55:09.833Z",
|
"FirstSeen": "2017-08-30T10:55:09.833Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "bab52c8aa977c96ecd148c015ae07c42",
|
"ID": "e72ad41302045bd6c2bcad76511f915a",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "remove",
|
"Operation": "REMOVE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"command\":{\"q\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}},\"limit\":0}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"remove\",\"command\":{\"q\":{\"a\":{\"$gte\":2},\"b\":{\"$gte\":2}},\"limit\":0}}\n",
|
||||||
"Fingerprint": "REMOVE coll a,b",
|
"Fingerprint": "REMOVE coll a,b",
|
||||||
"FirstSeen": "2017-08-30T10:55:19.142Z",
|
"FirstSeen": "2017-08-30T10:55:19.142Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "24acf4277fabf2a382f266bb4e6e8e3e",
|
"ID": "e4122a58c99ab0a4020ce7d195c5a8cb",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "DISTINCT",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"distinct\":\"coll\",\"key\":\"a\",\"query\":{\"b\":{\"$gte\":5}}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"distinct\":\"coll\",\"key\":\"a\",\"query\":{\"b\":{\"$gte\":5}}}}\n",
|
||||||
"Fingerprint": "DISTINCT coll a,b",
|
"Fingerprint": "DISTINCT coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:15.323Z",
|
"FirstSeen": "2017-08-20T15:39:15.323Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "24acf4277fabf2a382f266bb4e6e8e3e",
|
"ID": "e4122a58c99ab0a4020ce7d195c5a8cb",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "DISTINCT",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"distinct\":\"coll\",\"key\":\"a\",\"query\":{\"b\":{\"$gte\":5}}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"distinct\":\"coll\",\"key\":\"a\",\"query\":{\"b\":{\"$gte\":5}}}}\n",
|
||||||
"Fingerprint": "DISTINCT coll a,b",
|
"Fingerprint": "DISTINCT coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:21.392Z",
|
"FirstSeen": "2017-08-20T15:39:21.392Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "a4be6ed97c946182af7e30cf818afdac",
|
"ID": "e4122a58c99ab0a4020ce7d195c5a8cb",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "DISTINCT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"distinct\":\"coll\",\"key\":\"a\",\"query\":{\"b\":{\"$gte\":5}}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"distinct\":\"coll\",\"key\":\"a\",\"query\":{\"b\":{\"$gte\":5}}}}\n",
|
||||||
"Fingerprint": "DISTINCT coll a,b",
|
"Fingerprint": "DISTINCT coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:30.748Z",
|
"FirstSeen": "2017-08-20T15:39:30.748Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "a4be6ed97c946182af7e30cf818afdac",
|
"ID": "e4122a58c99ab0a4020ce7d195c5a8cb",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "DISTINCT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"distinct\":\"coll\",\"key\":\"a\",\"query\":{\"b\":{\"$gte\":5}}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"distinct\":\"coll\",\"key\":\"a\",\"query\":{\"b\":{\"$gte\":5}}}}\n",
|
||||||
"Fingerprint": "DISTINCT coll a,b",
|
"Fingerprint": "DISTINCT coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:37.511Z",
|
"FirstSeen": "2017-08-20T15:39:37.511Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "a4be6ed97c946182af7e30cf818afdac",
|
"ID": "e4122a58c99ab0a4020ce7d195c5a8cb",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "DISTINCT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"distinct\":\"coll\",\"key\":\"a\",\"query\":{\"b\":{\"$gte\":5}},\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"distinct\":\"coll\",\"key\":\"a\",\"query\":{\"b\":{\"$gte\":5}},\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "DISTINCT coll a,b",
|
"Fingerprint": "DISTINCT coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:47.927Z",
|
"FirstSeen": "2017-08-20T15:39:47.927Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "3335908aa111fe5eedf75479d9b1eb72",
|
"ID": "a6782ae38ef891d5506341a4b0ab2747",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test",
|
||||||
"Operation": "command",
|
"Operation": "EVAL",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"$eval\":\"db\"}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"$eval\":\"db\"}}\n",
|
||||||
"Fingerprint": "EVAL",
|
"Fingerprint": "EVAL",
|
||||||
"FirstSeen": "2017-09-05T19:39:24.522Z",
|
"FirstSeen": "2017-09-05T19:39:24.522Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "3335908aa111fe5eedf75479d9b1eb72",
|
"ID": "a6782ae38ef891d5506341a4b0ab2747",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test",
|
||||||
"Operation": "command",
|
"Operation": "EVAL",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"$eval\":\"db\"}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"$eval\":\"db\"}}\n",
|
||||||
"Fingerprint": "EVAL",
|
"Fingerprint": "EVAL",
|
||||||
"FirstSeen": "2017-09-05T19:39:32.054Z",
|
"FirstSeen": "2017-09-05T19:39:32.054Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "71b3d6aa44d34aaa02cd65bad3e25f49",
|
"ID": "a6782ae38ef891d5506341a4b0ab2747",
|
||||||
"Namespace": "test",
|
"Namespace": "test",
|
||||||
"Operation": "command",
|
"Operation": "EVAL",
|
||||||
"Query": "{\"ns\":\"test\",\"op\":\"command\",\"command\":{\"$eval\":\"db\"}}\n",
|
"Query": "{\"ns\":\"test\",\"op\":\"command\",\"command\":{\"$eval\":\"db\"}}\n",
|
||||||
"Fingerprint": "EVAL",
|
"Fingerprint": "EVAL",
|
||||||
"FirstSeen": "2017-09-05T19:39:41.581Z",
|
"FirstSeen": "2017-09-05T19:39:41.581Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "71b3d6aa44d34aaa02cd65bad3e25f49",
|
"ID": "a6782ae38ef891d5506341a4b0ab2747",
|
||||||
"Namespace": "test",
|
"Namespace": "test",
|
||||||
"Operation": "command",
|
"Operation": "EVAL",
|
||||||
"Query": "{\"ns\":\"test\",\"op\":\"command\",\"command\":{\"$eval\":\"db\"}}\n",
|
"Query": "{\"ns\":\"test\",\"op\":\"command\",\"command\":{\"$eval\":\"db\"}}\n",
|
||||||
"Fingerprint": "EVAL",
|
"Fingerprint": "EVAL",
|
||||||
"FirstSeen": "2017-09-05T19:39:48.888Z",
|
"FirstSeen": "2017-09-05T19:39:48.888Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "71b3d6aa44d34aaa02cd65bad3e25f49",
|
"ID": "a6782ae38ef891d5506341a4b0ab2747",
|
||||||
"Namespace": "test",
|
"Namespace": "test",
|
||||||
"Operation": "command",
|
"Operation": "EVAL",
|
||||||
"Query": "{\"ns\":\"test\",\"op\":\"command\",\"command\":{\"$eval\":\"db\",\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test\",\"op\":\"command\",\"command\":{\"$eval\":\"db\",\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "EVAL",
|
"Fingerprint": "EVAL",
|
||||||
"FirstSeen": "2017-09-05T19:40:00.171Z",
|
"FirstSeen": "2017-09-05T19:40:00.171Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "4c06ec043313864d76669ddc2a1be353",
|
"ID": "76d7662df07b44135ac3e07e44a6eb39",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "",
|
||||||
"Operation": "query",
|
"Operation": "EXPLAIN",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"query\":{},\"$explain\":true}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"query\":{},\"$explain\":true}}\n",
|
||||||
"Fingerprint": "EXPLAIN",
|
"Fingerprint": "EXPLAIN",
|
||||||
"FirstSeen": "2017-09-05T19:39:24.666Z",
|
"FirstSeen": "2017-09-05T19:39:24.666Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "ada85b4f1473b9a1fb37158a8481e20e",
|
"ID": "76d7662df07b44135ac3e07e44a6eb39",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "",
|
||||||
"Operation": "command",
|
"Operation": "EXPLAIN",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"explain\":{\"find\":\"coll\",\"filter\":{},\"options\":{}},\"verbosity\":\"queryPlanner\"}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"explain\":{\"find\":\"coll\",\"filter\":{},\"options\":{}},\"verbosity\":\"queryPlanner\"}}\n",
|
||||||
"Fingerprint": "EXPLAIN",
|
"Fingerprint": "EXPLAIN",
|
||||||
"FirstSeen": "2017-09-05T19:39:32.21Z",
|
"FirstSeen": "2017-09-05T19:39:32.21Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "e2f53c6824c5cbe454e33e128b350d1e",
|
"ID": "76d7662df07b44135ac3e07e44a6eb39",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "",
|
||||||
"Operation": "command",
|
"Operation": "EXPLAIN",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"explain\":{\"find\":\"coll\",\"filter\":{}},\"verbosity\":\"queryPlanner\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"explain\":{\"find\":\"coll\",\"filter\":{}},\"verbosity\":\"queryPlanner\"}}\n",
|
||||||
"Fingerprint": "EXPLAIN",
|
"Fingerprint": "EXPLAIN",
|
||||||
"FirstSeen": "2017-09-05T19:39:41.753Z",
|
"FirstSeen": "2017-09-05T19:39:41.753Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "e2f53c6824c5cbe454e33e128b350d1e",
|
"ID": "76d7662df07b44135ac3e07e44a6eb39",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "",
|
||||||
"Operation": "command",
|
"Operation": "EXPLAIN",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"explain\":{\"find\":\"coll\",\"filter\":{}},\"verbosity\":\"queryPlanner\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"explain\":{\"find\":\"coll\",\"filter\":{}},\"verbosity\":\"queryPlanner\"}}\n",
|
||||||
"Fingerprint": "EXPLAIN",
|
"Fingerprint": "EXPLAIN",
|
||||||
"FirstSeen": "2017-09-05T19:39:49.065Z",
|
"FirstSeen": "2017-09-05T19:39:49.065Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "e2f53c6824c5cbe454e33e128b350d1e",
|
"ID": "76d7662df07b44135ac3e07e44a6eb39",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "",
|
||||||
"Operation": "command",
|
"Operation": "EXPLAIN",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"explain\":{\"find\":\"coll\",\"filter\":{}},\"verbosity\":\"queryPlanner\",\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"explain\":{\"find\":\"coll\",\"filter\":{}},\"verbosity\":\"queryPlanner\",\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "EXPLAIN",
|
"Fingerprint": "EXPLAIN",
|
||||||
"FirstSeen": "2017-09-05T19:40:00.433Z",
|
"FirstSeen": "2017-09-05T19:40:00.433Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "4e9241090af6f4a49545baf7c015fb5c",
|
"ID": "fe0bf975a044fe47fd32b835ceba612d",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"a\":1}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"a\":1}}\n",
|
||||||
"Fingerprint": "FIND coll a",
|
"Fingerprint": "FIND coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:15.457Z",
|
"FirstSeen": "2017-08-20T15:39:15.457Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "4e9241090af6f4a49545baf7c015fb5c",
|
"ID": "fe0bf975a044fe47fd32b835ceba612d",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"a\":1}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"a\":1}}\n",
|
||||||
"Fingerprint": "FIND coll a",
|
"Fingerprint": "FIND coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:21.515Z",
|
"FirstSeen": "2017-08-20T15:39:21.515Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "4e9241090af6f4a49545baf7c015fb5c",
|
"ID": "fe0bf975a044fe47fd32b835ceba612d",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{\"a\":1}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{\"a\":1}}}\n",
|
||||||
"Fingerprint": "FIND coll a",
|
"Fingerprint": "FIND coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:30.913Z",
|
"FirstSeen": "2017-08-20T15:39:30.913Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "4e9241090af6f4a49545baf7c015fb5c",
|
"ID": "fe0bf975a044fe47fd32b835ceba612d",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{\"a\":1}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{\"a\":1}}}\n",
|
||||||
"Fingerprint": "FIND coll a",
|
"Fingerprint": "FIND coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:37.66Z",
|
"FirstSeen": "2017-08-20T15:39:37.66Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "4e9241090af6f4a49545baf7c015fb5c",
|
"ID": "fe0bf975a044fe47fd32b835ceba612d",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"command\":{\"find\":\"coll\",\"filter\":{\"a\":1},\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"command\":{\"find\":\"coll\",\"filter\":{\"a\":1},\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "FIND coll a",
|
"Fingerprint": "FIND coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:48.107Z",
|
"FirstSeen": "2017-08-20T15:39:48.107Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "dddda7545e797b073966c514f9b6fe49",
|
"ID": "02104210d67fe680273784d833f86831",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"query\":{\"$and\":[{\"k\":{\"$gt\":1}},{\"k\":{\"$lt\":2}},{\"$or\":[{\"c\":{\"$in\":[\"/^0/\",\"/^2/\",\"/^4/\",\"/^6/\"]}},{\"pad\":{\"$in\":[\"/9$/\",\"/7$/\",\"/5$/\",\"/3$/\"]}}]}]},\"orderby\":{\"k\":-1}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"query\":{\"$and\":[{\"k\":{\"$gt\":1}},{\"k\":{\"$lt\":2}},{\"$or\":[{\"c\":{\"$in\":[\"/^0/\",\"/^2/\",\"/^4/\",\"/^6/\"]}},{\"pad\":{\"$in\":[\"/9$/\",\"/7$/\",\"/5$/\",\"/3$/\"]}}]}]},\"orderby\":{\"k\":-1}}}\n",
|
||||||
"Fingerprint": "FIND coll c,k,pad",
|
"Fingerprint": "FIND coll c,k,pad",
|
||||||
"FirstSeen": "2017-08-20T15:39:15.616Z",
|
"FirstSeen": "2017-08-20T15:39:15.616Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "dddda7545e797b073966c514f9b6fe49",
|
"ID": "02104210d67fe680273784d833f86831",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"query\":{\"$and\":[{\"k\":{\"$gt\":1}},{\"k\":{\"$lt\":2}},{\"$or\":[{\"c\":{\"$in\":[\"/^0/\",\"/^2/\",\"/^4/\",\"/^6/\"]}},{\"pad\":{\"$in\":[\"/9$/\",\"/7$/\",\"/5$/\",\"/3$/\"]}}]}]},\"orderby\":{\"k\":-1}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"query\":{\"$and\":[{\"k\":{\"$gt\":1}},{\"k\":{\"$lt\":2}},{\"$or\":[{\"c\":{\"$in\":[\"/^0/\",\"/^2/\",\"/^4/\",\"/^6/\"]}},{\"pad\":{\"$in\":[\"/9$/\",\"/7$/\",\"/5$/\",\"/3$/\"]}}]}]},\"orderby\":{\"k\":-1}}}\n",
|
||||||
"Fingerprint": "FIND coll c,k,pad",
|
"Fingerprint": "FIND coll c,k,pad",
|
||||||
"FirstSeen": "2017-08-20T15:39:21.656Z",
|
"FirstSeen": "2017-08-20T15:39:21.656Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "dddda7545e797b073966c514f9b6fe49",
|
"ID": "02104210d67fe680273784d833f86831",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{\"$and\":[{\"k\":{\"$gt\":1}},{\"k\":{\"$lt\":2}},{\"$or\":[{\"c\":{\"$in\":[\"/^0/\",\"/^2/\",\"/^4/\",\"/^6/\"]}},{\"pad\":{\"$in\":[\"/9$/\",\"/7$/\",\"/5$/\",\"/3$/\"]}}]}]},\"limit\":100,\"singleBatch\":false,\"sort\":{\"k\":-1}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{\"$and\":[{\"k\":{\"$gt\":1}},{\"k\":{\"$lt\":2}},{\"$or\":[{\"c\":{\"$in\":[\"/^0/\",\"/^2/\",\"/^4/\",\"/^6/\"]}},{\"pad\":{\"$in\":[\"/9$/\",\"/7$/\",\"/5$/\",\"/3$/\"]}}]}]},\"limit\":100,\"singleBatch\":false,\"sort\":{\"k\":-1}}}\n",
|
||||||
"Fingerprint": "FIND coll c,k,pad",
|
"Fingerprint": "FIND coll c,k,pad",
|
||||||
"FirstSeen": "2017-08-20T15:39:31.085Z",
|
"FirstSeen": "2017-08-20T15:39:31.085Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "dddda7545e797b073966c514f9b6fe49",
|
"ID": "02104210d67fe680273784d833f86831",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{\"$and\":[{\"k\":{\"$gt\":1}},{\"k\":{\"$lt\":2}},{\"$or\":[{\"c\":{\"$in\":[\"/^0/\",\"/^2/\",\"/^4/\",\"/^6/\"]}},{\"pad\":{\"$in\":[\"/9$/\",\"/7$/\",\"/5$/\",\"/3$/\"]}}]}]},\"limit\":100,\"singleBatch\":false,\"sort\":{\"k\":-1}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{\"$and\":[{\"k\":{\"$gt\":1}},{\"k\":{\"$lt\":2}},{\"$or\":[{\"c\":{\"$in\":[\"/^0/\",\"/^2/\",\"/^4/\",\"/^6/\"]}},{\"pad\":{\"$in\":[\"/9$/\",\"/7$/\",\"/5$/\",\"/3$/\"]}}]}]},\"limit\":100,\"singleBatch\":false,\"sort\":{\"k\":-1}}}\n",
|
||||||
"Fingerprint": "FIND coll c,k,pad",
|
"Fingerprint": "FIND coll c,k,pad",
|
||||||
"FirstSeen": "2017-08-20T15:39:37.823Z",
|
"FirstSeen": "2017-08-20T15:39:37.823Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "dddda7545e797b073966c514f9b6fe49",
|
"ID": "02104210d67fe680273784d833f86831",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"command\":{\"find\":\"coll\",\"filter\":{\"$and\":[{\"k\":{\"$gt\":1}},{\"k\":{\"$lt\":2}},{\"$or\":[{\"c\":{\"$in\":[\"/^0/\",\"/^2/\",\"/^4/\",\"/^6/\"]}},{\"pad\":{\"$in\":[\"/9$/\",\"/7$/\",\"/5$/\",\"/3$/\"]}}]}]},\"limit\":100,\"singleBatch\":false,\"sort\":{\"k\":-1},\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"command\":{\"find\":\"coll\",\"filter\":{\"$and\":[{\"k\":{\"$gt\":1}},{\"k\":{\"$lt\":2}},{\"$or\":[{\"c\":{\"$in\":[\"/^0/\",\"/^2/\",\"/^4/\",\"/^6/\"]}},{\"pad\":{\"$in\":[\"/9$/\",\"/7$/\",\"/5$/\",\"/3$/\"]}}]}]},\"limit\":100,\"singleBatch\":false,\"sort\":{\"k\":-1},\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "FIND coll c,k,pad",
|
"Fingerprint": "FIND coll c,k,pad",
|
||||||
"FirstSeen": "2017-08-20T15:39:48.277Z",
|
"FirstSeen": "2017-08-20T15:39:48.277Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "b9a4b74ac8b3747f44951490e6279b96",
|
"ID": "2a639e77efe3e68399ef9482575b3421",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\"}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\"}\n",
|
||||||
"Fingerprint": "FIND coll",
|
"Fingerprint": "FIND coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:15.75Z",
|
"FirstSeen": "2017-08-20T15:39:15.75Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "b9a4b74ac8b3747f44951490e6279b96",
|
"ID": "2a639e77efe3e68399ef9482575b3421",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\"}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\"}\n",
|
||||||
"Fingerprint": "FIND coll",
|
"Fingerprint": "FIND coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:21.769Z",
|
"FirstSeen": "2017-08-20T15:39:21.769Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "b9a4b74ac8b3747f44951490e6279b96",
|
"ID": "2a639e77efe3e68399ef9482575b3421",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{}}}\n",
|
||||||
"Fingerprint": "FIND coll",
|
"Fingerprint": "FIND coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:31.294Z",
|
"FirstSeen": "2017-08-20T15:39:31.294Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "b9a4b74ac8b3747f44951490e6279b96",
|
"ID": "2a639e77efe3e68399ef9482575b3421",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"query\":{\"find\":\"coll\",\"filter\":{}}}\n",
|
||||||
"Fingerprint": "FIND coll",
|
"Fingerprint": "FIND coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:37.964Z",
|
"FirstSeen": "2017-08-20T15:39:37.964Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "b9a4b74ac8b3747f44951490e6279b96",
|
"ID": "2a639e77efe3e68399ef9482575b3421",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"command\":{\"find\":\"coll\",\"filter\":{},\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"query\",\"command\":{\"find\":\"coll\",\"filter\":{},\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "FIND coll",
|
"Fingerprint": "FIND coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:48.429Z",
|
"FirstSeen": "2017-08-20T15:39:48.429Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "3d52ee232b8c4e1068dd90741632614a",
|
"ID": "e8a3f05a4bd3f0bfa7d38eb2372258b1",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "FINDANDMODIFY",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"findandmodify\":\"coll\",\"query\":{\"a\":2},\"update\":{\"$inc\":{\"b\":1}}},\"updateobj\":{\"$inc\":{\"b\":1}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"findandmodify\":\"coll\",\"query\":{\"a\":2},\"update\":{\"$inc\":{\"b\":1}}},\"updateobj\":{\"$inc\":{\"b\":1}}}\n",
|
||||||
"Fingerprint": "FINDANDMODIFY coll a",
|
"Fingerprint": "FINDANDMODIFY coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:15.903Z",
|
"FirstSeen": "2017-08-20T15:39:15.903Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "3d52ee232b8c4e1068dd90741632614a",
|
"ID": "e8a3f05a4bd3f0bfa7d38eb2372258b1",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "FINDANDMODIFY",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"findandmodify\":\"coll\",\"query\":{\"a\":2},\"update\":{\"$inc\":{\"b\":1}}},\"updateobj\":{\"$inc\":{\"b\":1}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"findandmodify\":\"coll\",\"query\":{\"a\":2},\"update\":{\"$inc\":{\"b\":1}}},\"updateobj\":{\"$inc\":{\"b\":1}}}\n",
|
||||||
"Fingerprint": "FINDANDMODIFY coll a",
|
"Fingerprint": "FINDANDMODIFY coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:21.902Z",
|
"FirstSeen": "2017-08-20T15:39:21.902Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "9423eaa90c222686d092c04f001fb369",
|
"ID": "e8a3f05a4bd3f0bfa7d38eb2372258b1",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "FINDANDMODIFY",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"findandmodify\":\"coll\",\"query\":{\"a\":2},\"update\":{\"$inc\":{\"b\":1}}},\"updateobj\":{\"$inc\":{\"b\":1}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"findandmodify\":\"coll\",\"query\":{\"a\":2},\"update\":{\"$inc\":{\"b\":1}}},\"updateobj\":{\"$inc\":{\"b\":1}}}\n",
|
||||||
"Fingerprint": "FINDANDMODIFY coll a",
|
"Fingerprint": "FINDANDMODIFY coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:31.548Z",
|
"FirstSeen": "2017-08-20T15:39:31.548Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "9423eaa90c222686d092c04f001fb369",
|
"ID": "e8a3f05a4bd3f0bfa7d38eb2372258b1",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "FINDANDMODIFY",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"findandmodify\":\"coll\",\"query\":{\"a\":2},\"update\":{\"$inc\":{\"b\":1}}},\"updateobj\":{\"$inc\":{\"b\":1}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"findandmodify\":\"coll\",\"query\":{\"a\":2},\"update\":{\"$inc\":{\"b\":1}}},\"updateobj\":{\"$inc\":{\"b\":1}}}\n",
|
||||||
"Fingerprint": "FINDANDMODIFY coll a",
|
"Fingerprint": "FINDANDMODIFY coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:38.196Z",
|
"FirstSeen": "2017-08-20T15:39:38.196Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "9423eaa90c222686d092c04f001fb369",
|
"ID": "e8a3f05a4bd3f0bfa7d38eb2372258b1",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "FINDANDMODIFY",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"findandmodify\":\"coll\",\"query\":{\"a\":2},\"update\":{\"$inc\":{\"b\":1}},\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"findandmodify\":\"coll\",\"query\":{\"a\":2},\"update\":{\"$inc\":{\"b\":1}},\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "FINDANDMODIFY coll a",
|
"Fingerprint": "FINDANDMODIFY coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:48.636Z",
|
"FirstSeen": "2017-08-20T15:39:48.636Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "eb3d8174e05f442cc5c3269eb50667d6",
|
"ID": "c70403cbd55ffbb07f08c0cb77a24b19",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "GEONEAR",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"geoNear\":\"coll\",\"near\":{\"type\":\"Point\",\"coordinates\":[1,1]},\"spherical\":true}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"geoNear\":\"coll\",\"near\":{\"type\":\"Point\",\"coordinates\":[1,1]},\"spherical\":true}}\n",
|
||||||
"Fingerprint": "GEONEAR coll",
|
"Fingerprint": "GEONEAR coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:16.061Z",
|
"FirstSeen": "2017-08-20T15:39:16.061Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "eb3d8174e05f442cc5c3269eb50667d6",
|
"ID": "c70403cbd55ffbb07f08c0cb77a24b19",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "GEONEAR",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"geoNear\":\"coll\",\"near\":{\"type\":\"Point\",\"coordinates\":[1,1]},\"spherical\":true}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"geoNear\":\"coll\",\"near\":{\"type\":\"Point\",\"coordinates\":[1,1]},\"spherical\":true}}\n",
|
||||||
"Fingerprint": "GEONEAR coll",
|
"Fingerprint": "GEONEAR coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:22.055Z",
|
"FirstSeen": "2017-08-20T15:39:22.055Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "dd20c739baef5a3fd9352c350c7e69f1",
|
"ID": "c70403cbd55ffbb07f08c0cb77a24b19",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "GEONEAR",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"geoNear\":\"coll\",\"near\":{\"type\":\"Point\",\"coordinates\":[1,1]},\"spherical\":true}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"geoNear\":\"coll\",\"near\":{\"type\":\"Point\",\"coordinates\":[1,1]},\"spherical\":true}}\n",
|
||||||
"Fingerprint": "GEONEAR coll",
|
"Fingerprint": "GEONEAR coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:31.797Z",
|
"FirstSeen": "2017-08-20T15:39:31.797Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "dd20c739baef5a3fd9352c350c7e69f1",
|
"ID": "c70403cbd55ffbb07f08c0cb77a24b19",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "GEONEAR",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"geoNear\":\"coll\",\"near\":{\"type\":\"Point\",\"coordinates\":[1,1]},\"spherical\":true}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"geoNear\":\"coll\",\"near\":{\"type\":\"Point\",\"coordinates\":[1,1]},\"spherical\":true}}\n",
|
||||||
"Fingerprint": "GEONEAR coll",
|
"Fingerprint": "GEONEAR coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:38.432Z",
|
"FirstSeen": "2017-08-20T15:39:38.432Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "dd20c739baef5a3fd9352c350c7e69f1",
|
"ID": "c70403cbd55ffbb07f08c0cb77a24b19",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "GEONEAR",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"geoNear\":\"coll\",\"near\":{\"type\":\"Point\",\"coordinates\":[1,1]},\"spherical\":true,\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"geoNear\":\"coll\",\"near\":{\"type\":\"Point\",\"coordinates\":[1,1]},\"spherical\":true,\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "GEONEAR coll",
|
"Fingerprint": "GEONEAR coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:48.842Z",
|
"FirstSeen": "2017-08-20T15:39:48.842Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "225e5819de843c1779f1118f2f01b77e",
|
"ID": "ca8bb19386488570447f5753741fb494",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "GROUP",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"group\":{\"key\":{\"a\":1,\"b\":1},\"cond\":{\"b\":3},\"initial\":{},\"ns\":\"coll\",\"$reduce\":\"\"}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"group\":{\"key\":{\"a\":1,\"b\":1},\"cond\":{\"b\":3},\"initial\":{},\"ns\":\"coll\",\"$reduce\":\"\"}}}\n",
|
||||||
"Fingerprint": "GROUP coll a,b",
|
"Fingerprint": "GROUP coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:16.325Z",
|
"FirstSeen": "2017-08-20T15:39:16.325Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "225e5819de843c1779f1118f2f01b77e",
|
"ID": "ca8bb19386488570447f5753741fb494",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "GROUP",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"group\":{\"key\":{\"a\":1,\"b\":1},\"cond\":{\"b\":3},\"initial\":{},\"ns\":\"coll\",\"$reduce\":\"\"}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"group\":{\"key\":{\"a\":1,\"b\":1},\"cond\":{\"b\":3},\"initial\":{},\"ns\":\"coll\",\"$reduce\":\"\"}}}\n",
|
||||||
"Fingerprint": "GROUP coll a,b",
|
"Fingerprint": "GROUP coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:22.271Z",
|
"FirstSeen": "2017-08-20T15:39:22.271Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "018a055f724d418b80e66b98bfdb25a5",
|
"ID": "ca8bb19386488570447f5753741fb494",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "GROUP",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"group\":{\"key\":{\"a\":1,\"b\":1},\"cond\":{\"b\":3},\"initial\":{},\"ns\":\"coll\",\"$reduce\":\"\"}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"group\":{\"key\":{\"a\":1,\"b\":1},\"cond\":{\"b\":3},\"initial\":{},\"ns\":\"coll\",\"$reduce\":\"\"}}}\n",
|
||||||
"Fingerprint": "GROUP coll a,b",
|
"Fingerprint": "GROUP coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:32.101Z",
|
"FirstSeen": "2017-08-20T15:39:32.101Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "018a055f724d418b80e66b98bfdb25a5",
|
"ID": "ca8bb19386488570447f5753741fb494",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "GROUP",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"group\":{\"key\":{\"a\":1,\"b\":1},\"cond\":{\"b\":3},\"initial\":{},\"ns\":\"coll\",\"$reduce\":{\"code\":\"function () {}\"}}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"group\":{\"key\":{\"a\":1,\"b\":1},\"cond\":{\"b\":3},\"initial\":{},\"ns\":\"coll\",\"$reduce\":{\"code\":\"function () {}\"}}}}\n",
|
||||||
"Fingerprint": "GROUP coll a,b",
|
"Fingerprint": "GROUP coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:38.886Z",
|
"FirstSeen": "2017-08-20T15:39:38.886Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "018a055f724d418b80e66b98bfdb25a5",
|
"ID": "ca8bb19386488570447f5753741fb494",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "GROUP",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"group\":{\"key\":{\"a\":1,\"b\":1},\"cond\":{\"b\":3},\"initial\":{},\"ns\":\"coll\",\"$reduce\":{\"code\":\"function () {}\"}},\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"group\":{\"key\":{\"a\":1,\"b\":1},\"cond\":{\"b\":3},\"initial\":{},\"ns\":\"coll\",\"$reduce\":{\"code\":\"function () {}\"}},\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "GROUP coll a,b",
|
"Fingerprint": "GROUP coll a,b",
|
||||||
"FirstSeen": "2017-08-20T15:39:49.276Z",
|
"FirstSeen": "2017-08-20T15:39:49.276Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "a7ce8dee16beadb767484112e6b29af3",
|
"ID": "e357abe482dcc0cd03ab742741bf1c86",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "insert",
|
"Operation": "INSERT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"insert\",\"query\":{\"_id\":1}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"insert\",\"query\":{\"_id\":1}}\n",
|
||||||
"Fingerprint": "INSERT coll",
|
"Fingerprint": "INSERT coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:16.473Z",
|
"FirstSeen": "2017-08-20T15:39:16.473Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "a7ce8dee16beadb767484112e6b29af3",
|
"ID": "e357abe482dcc0cd03ab742741bf1c86",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "insert",
|
"Operation": "INSERT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"insert\",\"query\":{\"_id\":1}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"insert\",\"query\":{\"_id\":1}}\n",
|
||||||
"Fingerprint": "INSERT coll",
|
"Fingerprint": "INSERT coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:22.409Z",
|
"FirstSeen": "2017-08-20T15:39:22.409Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "a7ce8dee16beadb767484112e6b29af3",
|
"ID": "e357abe482dcc0cd03ab742741bf1c86",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "insert",
|
"Operation": "INSERT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"insert\",\"query\":{\"insert\":\"coll\",\"documents\":[{\"_id\":1}],\"ordered\":true}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"insert\",\"query\":{\"insert\":\"coll\",\"documents\":[{\"_id\":1}],\"ordered\":true}}\n",
|
||||||
"Fingerprint": "INSERT coll",
|
"Fingerprint": "INSERT coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:32.303Z",
|
"FirstSeen": "2017-08-20T15:39:32.303Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "a7ce8dee16beadb767484112e6b29af3",
|
"ID": "e357abe482dcc0cd03ab742741bf1c86",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "insert",
|
"Operation": "INSERT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"insert\",\"query\":{\"insert\":\"coll\",\"documents\":[{\"_id\":1}],\"ordered\":true}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"insert\",\"query\":{\"insert\":\"coll\",\"documents\":[{\"_id\":1}],\"ordered\":true}}\n",
|
||||||
"Fingerprint": "INSERT coll",
|
"Fingerprint": "INSERT coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:39.023Z",
|
"FirstSeen": "2017-08-20T15:39:39.023Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "a7ce8dee16beadb767484112e6b29af3",
|
"ID": "e357abe482dcc0cd03ab742741bf1c86",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "insert",
|
"Operation": "INSERT",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"insert\",\"command\":{\"insert\":\"coll\",\"ordered\":true,\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"insert\",\"command\":{\"insert\":\"coll\",\"ordered\":true,\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "INSERT coll",
|
"Fingerprint": "INSERT coll",
|
||||||
"FirstSeen": "2017-08-20T15:39:49.44Z",
|
"FirstSeen": "2017-08-20T15:39:49.44Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "23ca094f285d0cd9538fb1b1f6ef0f4f",
|
"ID": "cc3cb3824eea4094eb042f5ca76bd385",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "MAPREDUCE",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"mapreduce\":\"coll\",\"map\":\"\",\"reduce\":\"\",\"query\":{\"a\":{\"$gte\":0}},\"out\":{\"inline\":1}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"mapreduce\":\"coll\",\"map\":\"\",\"reduce\":\"\",\"query\":{\"a\":{\"$gte\":0}},\"out\":{\"inline\":1}}}\n",
|
||||||
"Fingerprint": "MAPREDUCE coll a",
|
"Fingerprint": "MAPREDUCE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:16.701Z",
|
"FirstSeen": "2017-08-20T15:39:16.701Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "23ca094f285d0cd9538fb1b1f6ef0f4f",
|
"ID": "cc3cb3824eea4094eb042f5ca76bd385",
|
||||||
"Namespace": "test.$cmd",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "MAPREDUCE",
|
||||||
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"mapreduce\":\"coll\",\"map\":\"\",\"reduce\":\"\",\"query\":{\"a\":{\"$gte\":0}},\"out\":{\"inline\":1}}}\n",
|
"Query": "{\"ns\":\"test.$cmd\",\"op\":\"command\",\"command\":{\"mapreduce\":\"coll\",\"map\":\"\",\"reduce\":\"\",\"query\":{\"a\":{\"$gte\":0}},\"out\":{\"inline\":1}}}\n",
|
||||||
"Fingerprint": "MAPREDUCE coll a",
|
"Fingerprint": "MAPREDUCE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:22.582Z",
|
"FirstSeen": "2017-08-20T15:39:22.582Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "130827f5b7afe1369f619ccd5cd61ec4",
|
"ID": "cc3cb3824eea4094eb042f5ca76bd385",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "MAPREDUCE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"mapreduce\":\"coll\",\"map\":\"\",\"reduce\":\"\",\"query\":{\"a\":{\"$gte\":0}},\"out\":{\"inline\":1}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"mapreduce\":\"coll\",\"map\":\"\",\"reduce\":\"\",\"query\":{\"a\":{\"$gte\":0}},\"out\":{\"inline\":1}}}\n",
|
||||||
"Fingerprint": "MAPREDUCE coll a",
|
"Fingerprint": "MAPREDUCE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:32.572Z",
|
"FirstSeen": "2017-08-20T15:39:32.572Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "130827f5b7afe1369f619ccd5cd61ec4",
|
"ID": "cc3cb3824eea4094eb042f5ca76bd385",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "MAPREDUCE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"mapreduce\":\"coll\",\"map\":{\"code\":\"function () {\\n emit(this.a, this.b);\\n}\"},\"reduce\":{\"code\":\"function (a, b) {\\n return Array.sum(b);\\n}\"},\"query\":{\"a\":{\"$gte\":0}},\"out\":{\"inline\":1}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"mapreduce\":\"coll\",\"map\":{\"code\":\"function () {\\n emit(this.a, this.b);\\n}\"},\"reduce\":{\"code\":\"function (a, b) {\\n return Array.sum(b);\\n}\"},\"query\":{\"a\":{\"$gte\":0}},\"out\":{\"inline\":1}}}\n",
|
||||||
"Fingerprint": "MAPREDUCE coll a",
|
"Fingerprint": "MAPREDUCE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:39.249Z",
|
"FirstSeen": "2017-08-20T15:39:39.249Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "130827f5b7afe1369f619ccd5cd61ec4",
|
"ID": "cc3cb3824eea4094eb042f5ca76bd385",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "command",
|
"Operation": "MAPREDUCE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"mapreduce\":\"coll\",\"map\":{\"code\":\"function () {\\n emit(this.a, this.b);\\n}\"},\"reduce\":{\"code\":\"function (a, b) {\\n return Array.sum(b);\\n}\"},\"query\":{\"a\":{\"$gte\":0}},\"out\":{\"inline\":1},\"$db\":\"test\"}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"command\",\"command\":{\"mapreduce\":\"coll\",\"map\":{\"code\":\"function () {\\n emit(this.a, this.b);\\n}\"},\"reduce\":{\"code\":\"function (a, b) {\\n return Array.sum(b);\\n}\"},\"query\":{\"a\":{\"$gte\":0}},\"out\":{\"inline\":1},\"$db\":\"test\"}}\n",
|
||||||
"Fingerprint": "MAPREDUCE coll a",
|
"Fingerprint": "MAPREDUCE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:49.68Z",
|
"FirstSeen": "2017-08-20T15:39:49.68Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "27cb39e62745b1ff4121b4bf6f21fb12",
|
"ID": "f74a5120ac22d02120ccbf6d478b0dbc",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "update",
|
"Operation": "UPDATE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"update\",\"query\":{\"a\":{\"$gte\":2}},\"updateobj\":{\"$set\":{\"c\":1},\"$inc\":{\"a\":-10}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"update\",\"query\":{\"a\":{\"$gte\":2}},\"updateobj\":{\"$set\":{\"c\":1},\"$inc\":{\"a\":-10}}}\n",
|
||||||
"Fingerprint": "UPDATE coll a",
|
"Fingerprint": "UPDATE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:16.921Z",
|
"FirstSeen": "2017-08-20T15:39:16.921Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "27cb39e62745b1ff4121b4bf6f21fb12",
|
"ID": "f74a5120ac22d02120ccbf6d478b0dbc",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "update",
|
"Operation": "UPDATE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"update\",\"query\":{\"a\":{\"$gte\":2}},\"updateobj\":{\"$set\":{\"c\":1},\"$inc\":{\"a\":-10}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"update\",\"query\":{\"a\":{\"$gte\":2}},\"updateobj\":{\"$set\":{\"c\":1},\"$inc\":{\"a\":-10}}}\n",
|
||||||
"Fingerprint": "UPDATE coll a",
|
"Fingerprint": "UPDATE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:22.788Z",
|
"FirstSeen": "2017-08-20T15:39:22.788Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "27cb39e62745b1ff4121b4bf6f21fb12",
|
"ID": "f74a5120ac22d02120ccbf6d478b0dbc",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "update",
|
"Operation": "UPDATE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"update\",\"query\":{\"a\":{\"$gte\":2}},\"updateobj\":{\"$set\":{\"c\":1},\"$inc\":{\"a\":-10}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"update\",\"query\":{\"a\":{\"$gte\":2}},\"updateobj\":{\"$set\":{\"c\":1},\"$inc\":{\"a\":-10}}}\n",
|
||||||
"Fingerprint": "UPDATE coll a",
|
"Fingerprint": "UPDATE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:32.737Z",
|
"FirstSeen": "2017-08-20T15:39:32.737Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "27cb39e62745b1ff4121b4bf6f21fb12",
|
"ID": "f74a5120ac22d02120ccbf6d478b0dbc",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "update",
|
"Operation": "UPDATE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"update\",\"query\":{\"a\":{\"$gte\":2}},\"updateobj\":{\"$set\":{\"c\":1},\"$inc\":{\"a\":-10}}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"update\",\"query\":{\"a\":{\"$gte\":2}},\"updateobj\":{\"$set\":{\"c\":1},\"$inc\":{\"a\":-10}}}\n",
|
||||||
"Fingerprint": "UPDATE coll a",
|
"Fingerprint": "UPDATE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:39.434Z",
|
"FirstSeen": "2017-08-20T15:39:39.434Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "27cb39e62745b1ff4121b4bf6f21fb12",
|
"ID": "f74a5120ac22d02120ccbf6d478b0dbc",
|
||||||
"Namespace": "test.coll",
|
"Namespace": "test.coll",
|
||||||
"Operation": "update",
|
"Operation": "UPDATE",
|
||||||
"Query": "{\"ns\":\"test.coll\",\"op\":\"update\",\"command\":{\"q\":{\"a\":{\"$gte\":2}},\"u\":{\"$set\":{\"c\":1},\"$inc\":{\"a\":-10}},\"multi\":false,\"upsert\":false}}\n",
|
"Query": "{\"ns\":\"test.coll\",\"op\":\"update\",\"command\":{\"q\":{\"a\":{\"$gte\":2}},\"u\":{\"$set\":{\"c\":1},\"$inc\":{\"a\":-10}},\"multi\":false,\"upsert\":false}}\n",
|
||||||
"Fingerprint": "UPDATE coll a",
|
"Fingerprint": "UPDATE coll a",
|
||||||
"FirstSeen": "2017-08-20T15:39:49.855Z",
|
"FirstSeen": "2017-08-20T15:39:49.855Z",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"ID": "16196765fb4c14edb91efdbe4f5c5973",
|
"ID": "95575e896c2830043dc333cb8ee61339",
|
||||||
"Namespace": "samples.col1",
|
"Namespace": "samples.col1",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
"Query": "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
||||||
"Fingerprint": "FIND col1 find",
|
"Fingerprint": "FIND col1 find",
|
||||||
"FirstSeen": "2017-04-10T13:16:23.29-03:00",
|
"FirstSeen": "2017-04-10T13:16:23.29-03:00",
|
||||||
@@ -53,9 +53,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "4e4774ad26f934a193757002a991ebb8",
|
"ID": "d7088d6b50551d1f2f5f34b006c0140d",
|
||||||
"Namespace": "samples.col1",
|
"Namespace": "samples.col1",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"filter\":{\"s2\":{\"$gte\":\"41991\",\"$lt\":\"33754\"}},\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
"Query": "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"filter\":{\"s2\":{\"$gte\":\"41991\",\"$lt\":\"33754\"}},\"shardVersion\":[0,\"000000000000000000000000\"]}}\n",
|
||||||
"Fingerprint": "FIND col1 s2",
|
"Fingerprint": "FIND col1 s2",
|
||||||
"FirstSeen": "2017-04-10T13:15:53.532-03:00",
|
"FirstSeen": "2017-04-10T13:15:53.532-03:00",
|
||||||
@@ -106,9 +106,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "8cb8666ace7e54767b4d3c4f61860cf9",
|
"ID": "b4b7a063b3afbcbdf042a0f0f9e48a9d",
|
||||||
"Namespace": "samples.col1",
|
"Namespace": "samples.col1",
|
||||||
"Operation": "query",
|
"Operation": "FIND",
|
||||||
"Query": "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"filter\":{\"user_id\":{\"$gte\":3.384024924e+09,\"$lt\":1.95092007e+08}},\"projection\":{\"$sortKey\":{\"$meta\":\"sortKey\"}},\"shardVersion\":[0,\"000000000000000000000000\"],\"sort\":{\"user_id\":1}}}\n",
|
"Query": "{\"ns\":\"samples.col1\",\"op\":\"query\",\"query\":{\"find\":\"col1\",\"filter\":{\"user_id\":{\"$gte\":3.384024924e+09,\"$lt\":1.95092007e+08}},\"projection\":{\"$sortKey\":{\"$meta\":\"sortKey\"}},\"shardVersion\":[0,\"000000000000000000000000\"],\"sort\":{\"user_id\":1}}}\n",
|
||||||
"Fingerprint": "FIND col1 user_id",
|
"Fingerprint": "FIND col1 user_id",
|
||||||
"FirstSeen": "2017-04-10T13:15:53.524-03:00",
|
"FirstSeen": "2017-04-10T13:15:53.524-03:00",
|
||||||
|
Reference in New Issue
Block a user