|
|
@ -134,7 +134,7 @@ func (cfg M3dbSection) queryMetricsOptions(input dataobj.EndpointsRecv) (index.Q
|
|
|
|
)},
|
|
|
|
)},
|
|
|
|
index.AggregationOptions{
|
|
|
|
index.AggregationOptions{
|
|
|
|
QueryOptions: index.QueryOptions{
|
|
|
|
QueryOptions: index.QueryOptions{
|
|
|
|
StartInclusive: time.Time{},
|
|
|
|
StartInclusive: indexStartTime(),
|
|
|
|
EndExclusive: time.Now(),
|
|
|
|
EndExclusive: time.Now(),
|
|
|
|
SeriesLimit: cfg.SeriesLimit,
|
|
|
|
SeriesLimit: cfg.SeriesLimit,
|
|
|
|
DocsLimit: cfg.DocsLimit,
|
|
|
|
DocsLimit: cfg.DocsLimit,
|
|
|
@ -153,7 +153,7 @@ func (cfg M3dbSection) queryTagPairsOptions(input dataobj.EndpointMetricRecv) (i
|
|
|
|
return index.Query{idx.NewConjunctionQuery(q1, q2)},
|
|
|
|
return index.Query{idx.NewConjunctionQuery(q1, q2)},
|
|
|
|
index.AggregationOptions{
|
|
|
|
index.AggregationOptions{
|
|
|
|
QueryOptions: index.QueryOptions{
|
|
|
|
QueryOptions: index.QueryOptions{
|
|
|
|
StartInclusive: time.Time{},
|
|
|
|
StartInclusive: indexStartTime(),
|
|
|
|
EndExclusive: time.Now(),
|
|
|
|
EndExclusive: time.Now(),
|
|
|
|
SeriesLimit: cfg.SeriesLimit,
|
|
|
|
SeriesLimit: cfg.SeriesLimit,
|
|
|
|
DocsLimit: cfg.DocsLimit,
|
|
|
|
DocsLimit: cfg.DocsLimit,
|
|
|
@ -188,7 +188,7 @@ func (cfg M3dbSection) queryIndexByCludeOptions(input dataobj.CludeRecv) (index.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return query, index.QueryOptions{
|
|
|
|
return query, index.QueryOptions{
|
|
|
|
StartInclusive: time.Time{},
|
|
|
|
StartInclusive: indexStartTime(),
|
|
|
|
EndExclusive: time.Now(),
|
|
|
|
EndExclusive: time.Now(),
|
|
|
|
SeriesLimit: cfg.SeriesLimit,
|
|
|
|
SeriesLimit: cfg.SeriesLimit,
|
|
|
|
DocsLimit: cfg.DocsLimit,
|
|
|
|
DocsLimit: cfg.DocsLimit,
|
|
|
@ -218,7 +218,7 @@ func (cfg M3dbSection) queryIndexByFullTagsOptions(input dataobj.IndexByFullTags
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return query, index.QueryOptions{
|
|
|
|
return query, index.QueryOptions{
|
|
|
|
StartInclusive: time.Time{},
|
|
|
|
StartInclusive: indexStartTime(),
|
|
|
|
EndExclusive: time.Now(),
|
|
|
|
EndExclusive: time.Now(),
|
|
|
|
SeriesLimit: cfg.SeriesLimit,
|
|
|
|
SeriesLimit: cfg.SeriesLimit,
|
|
|
|
DocsLimit: cfg.DocsLimit,
|
|
|
|
DocsLimit: cfg.DocsLimit,
|
|
|
|