Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
dc607b8e
Commit
dc607b8e
authored
Jun 02, 2015
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dashboard search now supports filtering by multiple dashboard tags, Closes #2095
parent
1a71da41
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
74 additions
and
47 deletions
+74
-47
CHANGELOG.md
+1
-0
pkg/api/search.go
+2
-2
pkg/search/handlers.go
+35
-6
pkg/search/handlers_test.go
+12
-0
pkg/search/json_index.go
+0
-7
pkg/search/json_index_test.go
+3
-3
pkg/search/models.go
+1
-2
pkg/services/sqlstore/dashboard.go
+1
-6
pkg/services/sqlstore/dashboard_test.go
+0
-12
public/app/controllers/search.js
+11
-4
public/app/partials/search.html
+8
-5
No files found.
CHANGELOG.md
View file @
dc607b8e
...
...
@@ -12,6 +12,7 @@
-
[
Issue #2088
](
https://github.com/grafana/grafana/issues/2088
)
. Roles: New user role
`Read Only Editor`
that replaces the old
`Viewer`
role behavior
**Backend**
-
[
Issue #2095
](
https://github.com/grafana/grafana/issues/2095
)
. Search: Search now supports filtering by multiple dashboard tags
-
[
Issue #1905
](
https://github.com/grafana/grafana/issues/1905
)
. Github OAuth: You can now configure a Github team membership requirement, thx @dewski
-
[
Issue #2052
](
https://github.com/grafana/grafana/issues/2052
)
. Github OAuth: You can now configure a Github organization requirement, thx @indrekj
-
[
Issue #1891
](
https://github.com/grafana/grafana/issues/1891
)
. Security: New config option to disable the use of gravatar for profile images
...
...
pkg/api/search.go
View file @
dc607b8e
...
...
@@ -8,7 +8,7 @@ import (
func
Search
(
c
*
middleware
.
Context
)
{
query
:=
c
.
Query
(
"query"
)
tag
:=
c
.
Query
(
"tag"
)
tag
s
:=
c
.
QueryStrings
(
"tag"
)
starred
:=
c
.
Query
(
"starred"
)
limit
:=
c
.
QueryInt
(
"limit"
)
...
...
@@ -18,7 +18,7 @@ func Search(c *middleware.Context) {
searchQuery
:=
search
.
Query
{
Title
:
query
,
Tag
:
tag
,
Tag
s
:
tags
,
UserId
:
c
.
UserId
,
Limit
:
limit
,
IsStarred
:
starred
==
"true"
,
...
...
pkg/search/handlers.go
View file @
dc607b8e
...
...
@@ -33,7 +33,6 @@ func searchHandler(query *Query) error {
dashQuery
:=
FindPersistedDashboardsQuery
{
Title
:
query
.
Title
,
Tag
:
query
.
Tag
,
UserId
:
query
.
UserId
,
Limit
:
query
.
Limit
,
IsStarred
:
query
.
IsStarred
,
...
...
@@ -55,6 +54,22 @@ func searchHandler(query *Query) error {
hits
=
append
(
hits
,
jsonHits
...
)
}
// filter out results with tag filter
if
len
(
query
.
Tags
)
>
0
{
filtered
:=
HitList
{}
for
_
,
hit
:=
range
hits
{
if
hasRequiredTags
(
query
.
Tags
,
hit
.
Tags
)
{
filtered
=
append
(
filtered
,
hit
)
}
}
hits
=
filtered
}
// sort tags
for
_
,
hit
:=
range
hits
{
sort
.
Strings
(
hit
.
Tags
)
}
// add isStarred info
if
err
:=
setIsStarredFlagOnSearchResults
(
query
.
UserId
,
hits
);
err
!=
nil
{
return
err
...
...
@@ -63,15 +78,29 @@ func searchHandler(query *Query) error {
// sort main result array
sort
.
Sort
(
hits
)
// sort tags
for
_
,
hit
:=
range
hits
{
sort
.
Strings
(
hit
.
Tags
)
}
query
.
Result
=
hits
return
nil
}
func
stringInSlice
(
a
string
,
list
[]
string
)
bool
{
for
_
,
b
:=
range
list
{
if
b
==
a
{
return
true
}
}
return
false
}
func
hasRequiredTags
(
queryTags
,
hitTags
[]
string
)
bool
{
for
_
,
queryTag
:=
range
queryTags
{
if
!
stringInSlice
(
queryTag
,
hitTags
)
{
return
false
}
}
return
true
}
func
setIsStarredFlagOnSearchResults
(
userId
int64
,
hits
[]
*
Hit
)
error
{
query
:=
m
.
GetUserStarsQuery
{
UserId
:
userId
}
if
err
:=
bus
.
Dispatch
(
&
query
);
err
!=
nil
{
...
...
pkg/search/handlers_test.go
View file @
dc607b8e
...
...
@@ -45,5 +45,17 @@ func TestSearch(t *testing.T) {
})
})
Convey
(
"That filters by tag"
,
func
()
{
query
.
Tags
=
[]
string
{
"BB"
,
"AA"
}
err
:=
searchHandler
(
&
query
)
So
(
err
,
ShouldBeNil
)
Convey
(
"should return correct results"
,
func
()
{
So
(
len
(
query
.
Result
),
ShouldEqual
,
2
)
So
(
query
.
Result
[
0
]
.
Title
,
ShouldEqual
,
"BBAA"
)
So
(
query
.
Result
[
1
]
.
Title
,
ShouldEqual
,
"CCAA"
)
})
})
})
}
pkg/search/json_index.go
View file @
dc607b8e
...
...
@@ -56,13 +56,6 @@ func (index *JsonDashIndex) Search(query *Query) ([]*Hit, error) {
break
}
// filter out results with tag filter
if
query
.
Tag
!=
""
{
if
!
strings
.
Contains
(
item
.
TagsCsv
,
query
.
Tag
)
{
continue
}
}
// add results with matchig title filter
if
strings
.
Contains
(
item
.
TitleLower
,
query
.
Title
)
{
results
=
append
(
results
,
&
Hit
{
...
...
pkg/search/json_index_test.go
View file @
dc607b8e
...
...
@@ -17,14 +17,14 @@ func TestJsonDashIndex(t *testing.T) {
})
Convey
(
"Should be able to search index"
,
func
()
{
res
,
err
:=
index
.
Search
(
&
Query
{
Title
:
""
,
Tag
:
""
,
Limit
:
20
})
res
,
err
:=
index
.
Search
(
&
Query
{
Title
:
""
,
Limit
:
20
})
So
(
err
,
ShouldBeNil
)
So
(
len
(
res
),
ShouldEqual
,
3
)
})
Convey
(
"Should be able to search index by title"
,
func
()
{
res
,
err
:=
index
.
Search
(
&
Query
{
Title
:
"home"
,
Tag
:
""
,
Limit
:
20
})
res
,
err
:=
index
.
Search
(
&
Query
{
Title
:
"home"
,
Limit
:
20
})
So
(
err
,
ShouldBeNil
)
So
(
len
(
res
),
ShouldEqual
,
1
)
...
...
@@ -32,7 +32,7 @@ func TestJsonDashIndex(t *testing.T) {
})
Convey
(
"Should not return when starred is filtered"
,
func
()
{
res
,
err
:=
index
.
Search
(
&
Query
{
Title
:
""
,
Tag
:
""
,
IsStarred
:
true
})
res
,
err
:=
index
.
Search
(
&
Query
{
Title
:
""
,
IsStarred
:
true
})
So
(
err
,
ShouldBeNil
)
So
(
len
(
res
),
ShouldEqual
,
0
)
...
...
pkg/search/models.go
View file @
dc607b8e
...
...
@@ -26,7 +26,7 @@ func (s HitList) Less(i, j int) bool { return s[i].Title < s[j].Title }
type
Query
struct
{
Title
string
Tag
string
Tag
s
[]
string
OrgId
int64
UserId
int64
Limit
int
...
...
@@ -37,7 +37,6 @@ type Query struct {
type
FindPersistedDashboardsQuery
struct
{
Title
string
Tag
string
OrgId
int64
UserId
int64
Limit
int
...
...
pkg/services/sqlstore/dashboard.go
View file @
dc607b8e
...
...
@@ -150,13 +150,8 @@ func SearchDashboards(query *search.FindPersistedDashboardsQuery) error {
params
=
append
(
params
,
"%"
+
query
.
Title
+
"%"
)
}
if
len
(
query
.
Tag
)
>
0
{
sql
.
WriteString
(
" AND dashboard_tag.term=?"
)
params
=
append
(
params
,
query
.
Tag
)
}
if
query
.
Limit
==
0
||
query
.
Limit
>
10000
{
query
.
Limit
=
3
00
query
.
Limit
=
10
00
}
sql
.
WriteString
(
fmt
.
Sprintf
(
" ORDER BY dashboard.title ASC LIMIT %d"
,
query
.
Limit
))
...
...
pkg/services/sqlstore/dashboard_test.go
View file @
dc607b8e
...
...
@@ -99,18 +99,6 @@ func TestDashboardDataAccess(t *testing.T) {
So
(
len
(
hit
.
Tags
),
ShouldEqual
,
2
)
})
Convey
(
"Should be able to search for dashboards using tags"
,
func
()
{
query1
:=
search
.
FindPersistedDashboardsQuery
{
Tag
:
"webapp"
,
OrgId
:
1
}
query2
:=
search
.
FindPersistedDashboardsQuery
{
Tag
:
"tagdoesnotexist"
,
OrgId
:
1
}
err
:=
SearchDashboards
(
&
query1
)
err
=
SearchDashboards
(
&
query2
)
So
(
err
,
ShouldBeNil
)
So
(
len
(
query1
.
Result
),
ShouldEqual
,
1
)
So
(
len
(
query2
.
Result
),
ShouldEqual
,
0
)
})
Convey
(
"Should not be able to save dashboard with same name"
,
func
()
{
cmd
:=
m
.
SaveDashboardCommand
{
OrgId
:
1
,
...
...
public/app/controllers/search.js
View file @
dc607b8e
...
...
@@ -14,7 +14,7 @@ function (angular, _, config) {
$scope
.
giveSearchFocus
=
0
;
$scope
.
selectedIndex
=
-
1
;
$scope
.
results
=
[];
$scope
.
query
=
{
query
:
''
,
tag
:
''
,
starred
:
false
};
$scope
.
query
=
{
query
:
''
,
tag
:
[]
,
starred
:
false
};
$scope
.
currentSearchId
=
0
;
if
(
$scope
.
dashboardViewState
.
fullscreen
)
{
...
...
@@ -82,12 +82,11 @@ function (angular, _, config) {
$scope
.
queryHasNoFilters
=
function
()
{
var
query
=
$scope
.
query
;
return
query
.
query
===
''
&&
query
.
starred
===
false
&&
query
.
tag
===
''
;
return
query
.
query
===
''
&&
query
.
starred
===
false
&&
query
.
tag
.
length
===
0
;
};
$scope
.
filterByTag
=
function
(
tag
,
evt
)
{
$scope
.
query
.
tag
=
tag
;
$scope
.
query
.
tagcloud
=
false
;
$scope
.
query
.
tag
.
push
(
tag
);
$scope
.
search
();
$scope
.
giveSearchFocus
=
$scope
.
giveSearchFocus
+
1
;
if
(
evt
)
{
...
...
@@ -96,6 +95,14 @@ function (angular, _, config) {
}
};
$scope
.
removeTag
=
function
(
tag
,
evt
)
{
$scope
.
query
.
tag
=
_
.
without
(
$scope
.
query
.
tag
,
tag
);
$scope
.
search
();
$scope
.
giveSearchFocus
=
$scope
.
giveSearchFocus
+
1
;
evt
.
stopPropagation
();
evt
.
preventDefault
();
};
$scope
.
getTags
=
function
()
{
return
backendSrv
.
get
(
'/api/dashboards/tags'
).
then
(
function
(
results
)
{
$scope
.
tagsMode
=
true
;
...
...
public/app/partials/search.html
View file @
dc607b8e
...
...
@@ -15,11 +15,14 @@
<i
class=
"fa fa-remove"
ng-show=
"tagsMode"
></i>
tags
</a>
<span
ng-show=
"query.tag"
>
|
<a
ng-click=
"filterByTag('')"
tag-color-from-name=
"query.tag"
class=
"label label-tag"
ng-if=
"query.tag"
>
<i
class=
"fa fa-remove"
></i>
{{query.tag}}
</a>
<span
ng-if=
"query.tag.length"
>
|
<span
ng-repeat=
"tagName in query.tag"
>
<a
ng-click=
"removeTag(tagName, $event)"
tag-color-from-name=
"tagName"
class=
"label label-tag"
>
<i
class=
"fa fa-remove"
></i>
{{tagName}}
</a>
</span>
</span>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment