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
13fa3a83
Unverified
Commit
13fa3a83
authored
Jul 27, 2018
by
Marcus Efraimsson
Committed by
GitHub
Jul 27, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12734 from grafana/12731_fix_index_pattern
elasticsearch: fix index patterns
parents
7699451d
ab8fa0de
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
2 deletions
+46
-2
pkg/tsdb/elasticsearch/client/index_pattern.go
+20
-1
pkg/tsdb/elasticsearch/client/index_pattern_test.go
+26
-1
No files found.
pkg/tsdb/elasticsearch/client/index_pattern.go
View file @
13fa3a83
...
...
@@ -248,14 +248,29 @@ var datePatternReplacements = map[string]string{
func
formatDate
(
t
time
.
Time
,
pattern
string
)
string
{
var
datePattern
string
base
:=
""
ltr
:=
false
if
strings
.
HasPrefix
(
pattern
,
"["
)
{
parts
:=
strings
.
Split
(
strings
.
TrimLeft
(
pattern
,
"["
),
"]"
)
base
:
=
parts
[
0
]
base
=
parts
[
0
]
if
len
(
parts
)
==
2
{
datePattern
=
parts
[
1
]
}
else
{
datePattern
=
base
base
=
""
}
ltr
=
true
}
else
if
strings
.
HasSuffix
(
pattern
,
"]"
)
{
parts
:=
strings
.
Split
(
strings
.
TrimRight
(
pattern
,
"]"
),
"["
)
datePattern
=
parts
[
0
]
if
len
(
parts
)
==
2
{
base
=
parts
[
1
]
}
else
{
base
=
""
}
ltr
=
false
}
formatted
:=
t
.
Format
(
patternToLayout
(
datePattern
))
...
...
@@ -293,7 +308,11 @@ func formatDate(t time.Time, pattern string) string {
formatted
=
strings
.
Replace
(
formatted
,
"<stdHourNoZero>"
,
fmt
.
Sprintf
(
"%d"
,
t
.
Hour
()),
-
1
)
}
if
ltr
{
return
base
+
formatted
}
return
formatted
+
base
}
func
patternToLayout
(
pattern
string
)
string
{
...
...
pkg/tsdb/elasticsearch/client/index_pattern_test.go
View file @
13fa3a83
...
...
@@ -28,29 +28,54 @@ func TestIndexPattern(t *testing.T) {
to
:=
fmt
.
Sprintf
(
"%d"
,
time
.
Date
(
2018
,
5
,
15
,
17
,
55
,
0
,
0
,
time
.
UTC
)
.
UnixNano
()
/
int64
(
time
.
Millisecond
))
indexPatternScenario
(
intervalHourly
,
"[data-]YYYY.MM.DD.HH"
,
tsdb
.
NewTimeRange
(
from
,
to
),
func
(
indices
[]
string
)
{
//
So(indices, ShouldHaveLength, 1)
So
(
indices
,
ShouldHaveLength
,
1
)
So
(
indices
[
0
],
ShouldEqual
,
"data-2018.05.15.17"
)
})
indexPatternScenario
(
intervalHourly
,
"YYYY.MM.DD.HH[-data]"
,
tsdb
.
NewTimeRange
(
from
,
to
),
func
(
indices
[]
string
)
{
So
(
indices
,
ShouldHaveLength
,
1
)
So
(
indices
[
0
],
ShouldEqual
,
"2018.05.15.17-data"
)
})
indexPatternScenario
(
intervalDaily
,
"[data-]YYYY.MM.DD"
,
tsdb
.
NewTimeRange
(
from
,
to
),
func
(
indices
[]
string
)
{
So
(
indices
,
ShouldHaveLength
,
1
)
So
(
indices
[
0
],
ShouldEqual
,
"data-2018.05.15"
)
})
indexPatternScenario
(
intervalDaily
,
"YYYY.MM.DD[-data]"
,
tsdb
.
NewTimeRange
(
from
,
to
),
func
(
indices
[]
string
)
{
So
(
indices
,
ShouldHaveLength
,
1
)
So
(
indices
[
0
],
ShouldEqual
,
"2018.05.15-data"
)
})
indexPatternScenario
(
intervalWeekly
,
"[data-]GGGG.WW"
,
tsdb
.
NewTimeRange
(
from
,
to
),
func
(
indices
[]
string
)
{
So
(
indices
,
ShouldHaveLength
,
1
)
So
(
indices
[
0
],
ShouldEqual
,
"data-2018.20"
)
})
indexPatternScenario
(
intervalWeekly
,
"GGGG.WW[-data]"
,
tsdb
.
NewTimeRange
(
from
,
to
),
func
(
indices
[]
string
)
{
So
(
indices
,
ShouldHaveLength
,
1
)
So
(
indices
[
0
],
ShouldEqual
,
"2018.20-data"
)
})
indexPatternScenario
(
intervalMonthly
,
"[data-]YYYY.MM"
,
tsdb
.
NewTimeRange
(
from
,
to
),
func
(
indices
[]
string
)
{
So
(
indices
,
ShouldHaveLength
,
1
)
So
(
indices
[
0
],
ShouldEqual
,
"data-2018.05"
)
})
indexPatternScenario
(
intervalMonthly
,
"YYYY.MM[-data]"
,
tsdb
.
NewTimeRange
(
from
,
to
),
func
(
indices
[]
string
)
{
So
(
indices
,
ShouldHaveLength
,
1
)
So
(
indices
[
0
],
ShouldEqual
,
"2018.05-data"
)
})
indexPatternScenario
(
intervalYearly
,
"[data-]YYYY"
,
tsdb
.
NewTimeRange
(
from
,
to
),
func
(
indices
[]
string
)
{
So
(
indices
,
ShouldHaveLength
,
1
)
So
(
indices
[
0
],
ShouldEqual
,
"data-2018"
)
})
indexPatternScenario
(
intervalYearly
,
"YYYY[-data]"
,
tsdb
.
NewTimeRange
(
from
,
to
),
func
(
indices
[]
string
)
{
So
(
indices
,
ShouldHaveLength
,
1
)
So
(
indices
[
0
],
ShouldEqual
,
"2018-data"
)
})
})
Convey
(
"Hourly interval"
,
t
,
func
()
{
...
...
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