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
8950f570
Commit
8950f570
authored
Sep 28, 2017
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:grafana/grafana
parents
9bfda72a
4dea9479
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
18 additions
and
8 deletions
+18
-8
CHANGELOG.md
+4
-0
README.md
+1
-1
appveyor.yml
+1
-1
circle.yml
+1
-1
docs/sources/project/building_from_source.md
+1
-1
pkg/api/app_routes.go
+1
-0
pkg/api/grafana_com_proxy.go
+1
-0
pkg/cmd/grafana-cli/services/services.go
+1
-0
pkg/components/imguploader/webdavuploader.go
+1
-0
pkg/models/datasource_cache.go
+1
-0
pkg/services/notifications/webhook.go
+1
-0
pkg/tracing/tracing.go
+1
-1
scripts/build/Dockerfile
+3
-3
No files found.
CHANGELOG.md
View file @
8950f570
...
...
@@ -21,6 +21,10 @@
## Minor
*
**SMTP**
: Make it possible to set specific EHLO for smtp client.
[
#9319
](
https://github.com/grafana/grafana/issues/9319
)
*
**Dataproxy**
: Allow grafan to renegotiate tls connection
[
#9250
](
https://github.com/grafana/grafana/issues/9250
)
*
**HTTP**
: set net.Dialer.DualStack to true for all http clients
[
#9367
](
https://github.com/grafana/grafana/pull/9367
)
## Tech
*
**Go**
: Grafana is now built using golang 1.9
# 4.5.2 (2017-09-22)
...
...
README.md
View file @
8950f570
...
...
@@ -24,7 +24,7 @@ the latest master builds [here](https://grafana.com/grafana/download)
### Dependencies
-
Go 1.
8.1
-
Go 1.
9
-
NodeJS LTS
### Building the backend
...
...
appveyor.yml
View file @
8950f570
...
...
@@ -7,7 +7,7 @@ clone_folder: c:\gopath\src\github.com\grafana\grafana
environment
:
nodejs_version
:
"
6"
GOPATH
:
c:\gopath
GOVERSION
:
1.
8
GOVERSION
:
1.
9
install
:
-
rmdir c:\go /s /q
...
...
circle.yml
View file @
8950f570
...
...
@@ -9,7 +9,7 @@ machine:
GOPATH
:
"
/home/ubuntu/.go_workspace"
ORG_PATH
:
"
github.com/grafana"
REPO_PATH
:
"
${ORG_PATH}/grafana"
GODIST
:
"
go1.
8
.linux-amd64.tar.gz"
GODIST
:
"
go1.
9
.linux-amd64.tar.gz"
post
:
-
mkdir -p ~/download
-
mkdir -p ~/docker
...
...
docs/sources/project/building_from_source.md
View file @
8950f570
...
...
@@ -13,7 +13,7 @@ dev environment. Grafana ships with its own required backend server; also comple
## Dependencies
-
[
Go 1.
8.1
](
https://golang.org/dl/
)
-
[
Go 1.
9
](
https://golang.org/dl/
)
-
[
NodeJS LTS
](
https://nodejs.org/download/
)
-
[
Git
](
https://git-scm.com/downloads
)
...
...
pkg/api/app_routes.go
View file @
8950f570
...
...
@@ -25,6 +25,7 @@ var pluginProxyTransport = &http.Transport{
Dial
:
(
&
net
.
Dialer
{
Timeout
:
30
*
time
.
Second
,
KeepAlive
:
30
*
time
.
Second
,
DualStack
:
true
,
})
.
Dial
,
TLSHandshakeTimeout
:
10
*
time
.
Second
,
}
...
...
pkg/api/grafana_com_proxy.go
View file @
8950f570
...
...
@@ -19,6 +19,7 @@ var grafanaComProxyTransport = &http.Transport{
Dial
:
(
&
net
.
Dialer
{
Timeout
:
30
*
time
.
Second
,
KeepAlive
:
30
*
time
.
Second
,
DualStack
:
true
,
})
.
Dial
,
TLSHandshakeTimeout
:
10
*
time
.
Second
,
}
...
...
pkg/cmd/grafana-cli/services/services.go
View file @
8950f570
...
...
@@ -30,6 +30,7 @@ func Init(version string) {
DialContext
:
(
&
net
.
Dialer
{
Timeout
:
30
*
time
.
Second
,
KeepAlive
:
30
*
time
.
Second
,
DualStack
:
true
,
})
.
DialContext
,
MaxIdleConns
:
100
,
IdleConnTimeout
:
90
*
time
.
Second
,
...
...
pkg/components/imguploader/webdavuploader.go
View file @
8950f570
...
...
@@ -25,6 +25,7 @@ var netTransport = &http.Transport{
Proxy
:
http
.
ProxyFromEnvironment
,
Dial
:
(
&
net
.
Dialer
{
Timeout
:
60
*
time
.
Second
,
DualStack
:
true
,
})
.
Dial
,
TLSHandshakeTimeout
:
5
*
time
.
Second
,
}
...
...
pkg/models/datasource_cache.go
View file @
8950f570
...
...
@@ -54,6 +54,7 @@ func (ds *DataSource) GetHttpTransport() (*http.Transport, error) {
Dial
:
(
&
net
.
Dialer
{
Timeout
:
30
*
time
.
Second
,
KeepAlive
:
30
*
time
.
Second
,
DualStack
:
true
,
})
.
Dial
,
TLSHandshakeTimeout
:
10
*
time
.
Second
,
ExpectContinueTimeout
:
1
*
time
.
Second
,
...
...
pkg/services/notifications/webhook.go
View file @
8950f570
...
...
@@ -28,6 +28,7 @@ var netTransport = &http.Transport{
Proxy
:
http
.
ProxyFromEnvironment
,
Dial
:
(
&
net
.
Dialer
{
Timeout
:
30
*
time
.
Second
,
DualStack
:
true
,
})
.
Dial
,
TLSHandshakeTimeout
:
5
*
time
.
Second
,
}
...
...
pkg/tracing/tracing.go
View file @
8950f570
...
...
@@ -80,8 +80,8 @@ func internalInit(settings *TracingSettings) (io.Closer, error) {
return
nil
,
err
}
logger
.
Info
(
"Initialized jaeger tracer"
,
"address"
,
settings
.
Address
)
opentracing
.
InitGlobalTracer
(
tracer
)
logger
.
Info
(
"Initializing Jaeger tracer"
,
"address"
,
settings
.
Address
)
return
closer
,
nil
}
...
...
scripts/build/Dockerfile
View file @
8950f570
...
...
@@ -23,10 +23,10 @@ RUN curl --silent --location https://rpm.nodesource.com/setup_6.x | bash - && \
RUN
wget https://dl.yarnpkg.com/rpm/yarn.repo
-O
/etc/yum.repos.d/yarn.repo
&&
\
yum install
-y
yarn
--nogpgcheck
&&
\
wget https://storage.googleapis.com/golang/go1.
8
.linux-amd64.tar.gz
&&
\
tar
-C
/usr/local
-xzf
go1.
8
.linux-amd64.tar.gz
wget https://storage.googleapis.com/golang/go1.
9
.linux-amd64.tar.gz
&&
\
tar
-C
/usr/local
-xzf
go1.
9
.linux-amd64.tar.gz
ENV
GOLANG_VERSION 1.
8
ENV
GOLANG_VERSION 1.
9
ENV
PATH /usr/local/go/bin:$PATH
RUN
mkdir
-p
/go/src /go/bin
&&
chmod
-R
777 /go
...
...
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