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
f6d53df2
Commit
f6d53df2
authored
Apr 13, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:grafana/grafana
parents
e4374b1d
7302ddab
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
38 deletions
+16
-38
CHANGELOG.md
+7
-1
docs/sources/http_api/data_source.md
+0
-29
karma.conf.js
+3
-2
pkg/api/api.go
+3
-3
public/app/features/templating/templateValuesSrv.js
+1
-0
public/app/plugins/panel/pluginlist/module.html
+1
-1
public/sass/pages/_login.scss
+1
-2
No files found.
CHANGELOG.md
View file @
f6d53df2
# 3.0.0-beta3 (unreleased)
# 3.0.0-beta4 (unreleased)
### Bug fixes
*
**Home dashboard**
: Fixed issue with permission denied error on home dashboard, fixes
[
#4686
](
https://github.com/grafana/grafana/issues/4686
)
*
**Templating**
: Fixed issue templating variables that use regex extraction, fixes
[
#4672
](
https://github.com/grafana/grafana/issues/4672
)
# 3.0.0-beta3 (2016-04-12)
### Enhancements
*
**InfluxDB**
: Changed multi query encoding to work with InfluxDB 0.11 & 0.12, closes
[
#4533
](
https://github.com/grafana/grafana/issues/4533
)
...
...
docs/sources/http_api/data_source.md
View file @
f6d53df2
...
...
@@ -207,35 +207,6 @@ page_keywords: grafana, admin, http, api, documentation, datasource
{"message":"Data source deleted"}
## Available data source types
`GET /api/datasources/plugins`
**Example Request**
:
GET /api/datasources/plugins HTTP/1.1
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
**Example Response**
:
HTTP/1.1 200
Content-Type: application/json
{
"grafana":{
"metrics":true,"module":"plugins/datasource/grafana/datasource",
"name":"Grafana (for testing)",
"partials":{
"query":"app/plugins/datasource/grafana/partials/query.editor.html"
},
"pluginType":"datasource",
"serviceName":"GrafanaDatasource",
"type":"grafana"
}
}
## Data source proxy calls
`GET /api/datasources/proxy/:datasourceId/*`
...
...
karma.conf.js
View file @
f6d53df2
...
...
@@ -24,9 +24,10 @@ module.exports = function(config) {
logLevel
:
config
.
LOG_INFO
,
autoWatch
:
true
,
browsers
:
[
'PhantomJS'
],
captureTimeout
:
2000
,
captureTimeout
:
2000
0
,
singleRun
:
true
,
autoWatchBatchDelay
:
1000
,
autoWatchBatchDelay
:
10000
,
browserNoActivityTimeout
:
60000
,
});
...
...
pkg/api/api.go
View file @
f6d53df2
...
...
@@ -191,12 +191,12 @@ func Register(r *macaron.Macaron) {
r
.
Get
(
"/datasources/id/:name"
,
wrap
(
GetDataSourceIdByName
),
reqSignedIn
)
r
.
G
roup
(
"/plugins"
,
func
()
{
r
.
Get
(
"/"
,
wrap
(
GetPluginList
))
r
.
G
et
(
"/plugins"
,
wrap
(
GetPluginList
))
r
.
Get
(
"/plugins/:pluginId/settings"
,
wrap
(
GetPluginSettingById
))
r
.
Group
(
"/plugins"
,
func
()
{
r
.
Get
(
"/:pluginId/readme"
,
wrap
(
GetPluginReadme
))
r
.
Get
(
"/:pluginId/dashboards/"
,
wrap
(
GetPluginDashboards
))
r
.
Get
(
"/:pluginId/settings"
,
wrap
(
GetPluginSettingById
))
r
.
Post
(
"/:pluginId/settings"
,
bind
(
m
.
UpdatePluginSettingCmd
{}),
wrap
(
UpdatePluginSetting
))
},
reqOrgAdmin
)
...
...
public/app/features/templating/templateValuesSrv.js
View file @
f6d53df2
...
...
@@ -281,6 +281,7 @@ function (angular, _, kbn) {
if
(
!
matches
)
{
continue
;
}
if
(
matches
.
length
>
1
)
{
value
=
matches
[
1
];
text
=
value
;
}
}
...
...
public/app/plugins/panel/pluginlist/module.html
View file @
f6d53df2
...
...
@@ -22,7 +22,7 @@
</div>
</div>
<div
class=
"pluginlist-item"
ng-show=
"category.list.length === 0"
>
<a
class=
"pluginlist-link pluginlist-link-{{plugin.state}}"
href=
"http://grafana
/
net/plugins/"
>
<a
class=
"pluginlist-link pluginlist-link-{{plugin.state}}"
href=
"http://grafana
.
net/plugins/"
>
<span
class=
"pluginlist-none-installed"
>
No additional panels installed.
<span
class=
"pluginlist-emphasis"
>
Browse Grafana.net
</span></span>
</a>
</div>
...
...
public/sass/pages/_login.scss
View file @
f6d53df2
...
...
@@ -134,7 +134,7 @@
border-bottom
:
1px
solid
$gray-1
;
.login-divider-text
{
background-color
:
$
dark-3
;
background-color
:
$
panel-bg
;
color
:
$gray-2
;
padding
:
0
10px
;
}
...
...
@@ -192,4 +192,3 @@
}
}
}
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