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
f3698cd6
Commit
f3698cd6
authored
Jun 06, 2014
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup of config.sample.js, removed graphiteUrl setting, it will still work for next release
parent
0ad4f3b8
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
64 deletions
+48
-64
CHANGELOG.md
+2
-0
src/app/components/settings.js
+6
-1
src/app/services/dashboard.js
+1
-6
src/config.sample.js
+39
-57
No files found.
CHANGELOG.md
View file @
f3698cd6
...
...
@@ -21,6 +21,8 @@
-
Add panel icon and Row edit button is replaced by the Row edit menu (Issue #475)
-
New graphs now have a default empty query
-
Add Row button now creates a row with default height of 250px (no longer opens dashboard settings modal)
-
Clean up of config.sample.js, graphiteUrl removed (still works, but depricated, removed in future)
Use datasources config instead. panel_names removed from config.js. Use plugins.panels to add custom panels
#### Fixes
-
Filter option loading when having muliple nested filters now works better.
...
...
src/app/components/settings.js
View file @
f3698cd6
...
...
@@ -20,7 +20,8 @@ function (_, crypto) {
default
:
true
}
},
panel_names
:
[],
panels
:
[
'graph'
,
'text'
],
plugins
:
{},
default_route
:
'/dashboard/file/default.json'
,
grafana_index
:
'grafana-dash'
,
elasticsearch_all_disabled
:
false
,
...
...
@@ -76,6 +77,10 @@ function (_, crypto) {
settings
.
elasticsearchBasicAuth
=
elasticParsed
.
basicAuth
;
settings
.
elasticsearch
=
elasticParsed
.
url
;
if
(
settings
.
plugins
.
panels
)
{
settings
.
panels
=
_
.
union
(
settings
.
panels
,
settings
.
plugins
.
panels
);
}
return
settings
;
};
});
src/app/services/dashboard.js
View file @
f3698cd6
...
...
@@ -167,12 +167,7 @@ function (angular, $, kbn, _, config, moment, Modernizr) {
self
.
set_interval
(
dashboard
.
refresh
);
}
// Set the available panels for the "Add Panel" drop down
self
.
availablePanels
=
_
.
difference
(
config
.
panel_names
,
_
.
pluck
(
_
.
union
(
self
.
current
.
nav
,
self
.
current
.
pulldowns
),
'type'
));
// Take out any that we're not allowed to add from the gui.
self
.
availablePanels
=
_
.
difference
(
self
.
availablePanels
,
config
.
hidden_panels
);
self
.
availablePanels
=
config
.
panels
;
$rootScope
.
$emit
(
'dashboard-loaded'
,
self
.
current
);
...
...
src/config.sample.js
View file @
f3698cd6
/
**
@scratch /configuration/config.js/1
*
== Configuration
*
config.js is where you will find the core Grafana configuration. This file contains parameter that
*
must be set before Grafana is run for the first time.
*
/
/
////
@scratch /configuration/config.js/1
//
== Configuration
//
config.js is where you will find the core Grafana configuration. This file contains parameter that
//
must be set before Grafana is run for the first time.
//
/
define
([
'settings'
],
function
(
Settings
)
{
"use strict"
;
return
new
Settings
({
/**
* elasticsearch url:
* For Basic authentication use: http://username:password@domain.com:9200
*/
elasticsearch
:
"http://"
+
window
.
location
.
hostname
+
":9200"
,
/**
* graphite-web url:
* For Basic authentication use: http://username:password@domain.com
* Basic authentication requires special HTTP headers to be configured
* in nginx or apache for cross origin domain sharing to work (CORS).
* Check install documentation on github
*/
graphiteUrl
:
"http://"
+
window
.
location
.
hostname
+
":8080"
,
/**
* Multiple graphite servers? Comment out graphiteUrl and replace with something like this:
// datasources, you can add multiple
datasources
:
{
data_center_us
: {
graphite
:
{
type
:
'graphite'
,
url: 'http://<graphite_url>'
,
url
:
"http://my.graphite.server.com:8080"
,
default
:
true
},
data_center_eu: {
type: 'graphite',
url: 'http://<graphite_url>',
render_method: 'GET' // optional, use this to change render calls from POST to GET
}
influxdb
:
{
type
:
'influxdb'
,
url
:
"http://my_influxdb_server:8080/db/database_name"
,
user
:
'admin'
,
password
:
'admin'
},
},
*/
// elasticsearch url
// used for storing and loading dashboards, optional
// For Basic authentication use: http://username:password@domain.com:9200
elasticsearch
:
"http://"
+
window
.
location
.
hostname
+
":9200"
,
// default start dashboard
default_route
:
'/dashboard/file/default.json'
,
/**
* If you experiance problems with zoom, it is probably caused by timezone diff between
* your browser and the graphite-web application. timezoneOffset setting can be used to have Grafana
* translate absolute time ranges to the graphite-web timezone.
* Example:
* If TIME_ZONE in graphite-web config file local_settings.py is set to America/New_York, then set
* timezoneOffset to "-0500" (for UTC - 5 hours)
* Example:
* If TIME_ZONE is set to UTC, set this to "0000"
*/
// timezoneOFfset:
// If you experiance problems with zoom, it is probably caused by timezone diff between
// your browser and the graphite-web application. timezoneOffset setting can be used to have Grafana
// translate absolute time ranges to the graphite-web timezone.
// Example:
// If TIME_ZONE in graphite-web config file local_settings.py is set to America/New_York, then set
// timezoneOffset to "-0500" (for UTC - 5 hours)
// Example:
// If TIME_ZONE is set to UTC, set this to "0000"
//
timezoneOffset
:
null
,
/**
* Elasticsearch index for storing dashboards
*
*/
// Elasticsearch index for storing dashboards
grafana_index
:
"grafana-dash"
,
/**
* set to false to disable unsaved changes warning
*/
// set to false to disable unsaved changes warning
unsaved_changes_warning
:
true
,
/**
* set the default timespan for the playlist feature
* Example: "1m", "1h"
*/
// set the default timespan for the playlist feature
// Example: "1m", "1h"
playlist_timespan
:
"1m"
,
panel_names
:
[
'text'
,
'graph'
]
// Add your own custom pannels
plugins
:
{
panels
:
[]
}
});
});
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