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
f7b4f331
Commit
f7b4f331
authored
Mar 27, 2015
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating docs
parent
c01efad9
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
29 deletions
+28
-29
docs/sources/reference/annotations.md
+17
-24
docs/sources/reference/singlestat.md
+6
-0
pkg/api/frontendsettings.go
+3
-3
src/css/less/variables.dark.less
+2
-2
No files found.
docs/sources/reference/annotations.md
View file @
f7b4f331
...
...
@@ -10,38 +10,31 @@ page_keywords: grafana, annotations, guide, documentation
Annotations provide a way to mark points on the graph with rich events. When you hover over an annotation
you can get title, tags, and text information for the event.
To
enable annotations open dashboard settings and the controls tab.
Under feature toggles you will find the checkbox for annotations
.
To
add an annotation query click dashboard settings icon in top menu and select
`Annotations`
from the
dropdown. This will open the
`Annotations`
edit view. Click the
`Add`
tab to add a new annotation query
.
When enabled they will appear in the sub menu controls area.
!
[
](/img/v1/annotations_submenu1.png)
### Graphite annotations
Click the cog wheel to open the dialog where you can add & edit annotations.
!
[
](/img/v1/annotations_dialog1.png)
Graphite supports two ways to query annotations.
## Datasource
s
Grafana supports many data sources for annotation.
-
A regular metric query, use the
`Graphite target expression`
text input for thi
s
-
Graphite events query, use the
`Graphite event tags`
text input, especify an tag or wildcard (leave empty should also work)
-
Graphite metrics
-
Graphite events
-
InfluxDB query
-
Elasticsearch query
## Elasticsearch annoations
!
[
](/img/v2/annotations_es.png)
Grafana can query any Elasticsearch index for annotation events. The index name can be the name of an alias or an index wildcard pattern.
You can leave the search query blank or specify a lucene query.
If your elasticsearch document has a timestamp field other than
`@timestamp`
you will need to specify that. As well
as the name for the fields that should be used for the annotation title, tags and text. Tags and text are optional.
> **Note** The annotation timestamp field in elasticsearch need to be in UTC format.
## InfluxDB Annotations
!
[
](/img/
influxdb/influxdb_annotation
.png)
!
[
](/img/
v2/annotations_influxdb
.png)
For InfluxDB you need to enter a query like in the above screenshot. You need to have the
```where $timeFilter```
part.
If you only select one column you will not need to enter anything in the column mapping fields.
If you have multiple columns you need to specify which column should be treated as title, tags and text column.
## Elasticsearch Annotations
!
[
](/img/v1/elasticsearch_annotations_edit.png)
You can use the same data source as you specified in config.js for storing grafana dashboards or you can specify another one.
The annotation definition contains an index name that will override the index name specified in config.js. The index name can
be the name of an alias or an index wildcard pattern. You can leave the search query blank or specify a lucene query.
If your elasticsearch document has a timestamp field other than
```@timestamp```
you will need to specify that. As well
as the name for the fields that should be used for the annotation title, tags and text. Tags and text are optional.
**The annotation timestamp field in elasticsearch need to be in UTC format**
docs/sources/reference/singlestat.md
View file @
f7b4f331
...
...
@@ -6,4 +6,10 @@ page_keywords: grafana, singlestat, panel, documentation
# Singlestat Panel
!
[
](/img/v1/singlestat_panel2.png)
The singlestat panel allows you to show the one main summery stat of a single series (like max, min, avg, sum). It also
provides thresholds to color that singlestat metric or the panel background.
## Options
-
TODO
pkg/api/frontendsettings.go
View file @
f7b4f331
package
api
import
(
"errors"
"fmt"
"strconv"
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/log"
"github.com/grafana/grafana/pkg/middleware"
m
"github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/plugins"
...
...
@@ -45,7 +44,8 @@ func getFrontendSettingsMap(c *middleware.Context) (map[string]interface{}, erro
meta
,
exists
:=
plugins
.
DataSources
[
ds
.
Type
]
if
!
exists
{
return
nil
,
errors
.
New
(
fmt
.
Sprintf
(
"Could not find plugin definition for data source: %v"
,
ds
.
Type
))
log
.
Error
(
3
,
"Could not find plugin definition for data source: %v"
,
ds
.
Type
)
continue
}
dsMap
[
"meta"
]
=
meta
...
...
src/css/less/variables.dark.less
View file @
f7b4f331
...
...
@@ -161,8 +161,8 @@
@dropdownLinkColorHover: @white;
@dropdownLinkColorActive: @white;
@dropdownLinkBackgroundActive: @blue;
@dropdownLinkBackgroundHover: @blue;
@dropdownLinkBackgroundActive: @blue
Dark
;
@dropdownLinkBackgroundHover: @blue
Dark
;
...
...
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