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
2ade0881
Commit
2ade0881
authored
Mar 21, 2018
by
Alexander Zobnin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor refactor of dashboard version cleanup
parent
3f85fcce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
pkg/services/sqlstore/dashboard_version.go
+3
-5
No files found.
pkg/services/sqlstore/dashboard_version.go
View file @
2ade0881
package
sqlstore
import
(
"fmt"
"strings"
"github.com/grafana/grafana/pkg/bus"
...
...
@@ -81,18 +80,17 @@ func DeleteExpiredVersions(cmd *m.DeleteExpiredVersionsCommand) error {
// min_version_to_keep = min_version + (versions_count - versions_to_keep)
// where version stats is processed for each dashboard. This guarantees that we keep at least versions_to_keep
// versions, but in some cases (when versions are sparse) this number may be more.
versionIdsToDeleteSubquery
Template
:=
`SELECT id
versionIdsToDeleteSubquery
:=
`SELECT id
FROM dashboard_version, (
SELECT dashboard_id, count(version) as count, min(version) as min
FROM dashboard_version
GROUP BY dashboard_id
) AS vtd
WHERE dashboard_version.dashboard_id=vtd.dashboard_id
AND version < vtd.min + vtd.count -
%v
`
AND version < vtd.min + vtd.count -
?
`
versionIdsToDeleteSubquery
:=
fmt
.
Sprintf
(
versionIdsToDeleteSubqueryTemplate
,
versionsToKeep
)
var
versionIdsToDelete
[]
interface
{}
err
:=
sess
.
SQL
(
versionIdsToDeleteSubquery
)
.
Find
(
&
versionIdsToDelete
)
err
:=
sess
.
SQL
(
versionIdsToDeleteSubquery
,
versionsToKeep
)
.
Find
(
&
versionIdsToDelete
)
if
err
!=
nil
{
return
err
}
...
...
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