mirror of
https://github.com/timberjoegithub/grafana-statusmap.git
synced 2026-07-21 23:42:03 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
012bcac0ef | ||
|
|
f037ad082e | ||
|
|
9a2e4a394e | ||
|
|
4bd3ecbcf2 |
@@ -184,7 +184,7 @@ __Rows sort__ can be used to sort labels on Y axis. Metrics — sort y labels a
|
||||
|
||||
#### Pagination
|
||||
|
||||

|
||||

|
||||
|
||||
__Enable pagination__ toggles pagination controls on graph.
|
||||
|
||||
@@ -192,7 +192,7 @@ __Rows per page__ a number of rows to display on graph.
|
||||
|
||||
#### Tooltip
|
||||
|
||||

|
||||

|
||||
|
||||
__Show tooltip__ toggles tooltip display on mouse over buckets.
|
||||
|
||||
@@ -204,7 +204,7 @@ __Items__ is a list of definitions to display URLs in tooltip.
|
||||
|
||||
Each URL has a template, icon, label and formating options: lowercase and date format for variables.
|
||||
|
||||

|
||||

|
||||
|
||||
## Development
|
||||
|
||||
@@ -215,7 +215,7 @@ the directory containing Statusmap plugin):
|
||||
docker run --rm -it -v $PWD:/var/lib/grafana/plugins/flant-statusmap-panel \
|
||||
-p 3000:3000 --name grafana.docker \
|
||||
--env=GF_USERS_DEFAULT_THEME=light \
|
||||
grafana/grafana:5.1.3
|
||||
grafana/grafana:7.1.3
|
||||
```
|
||||
|
||||
This will expose local plugin from your machine to Grafana container. Now run `grunt` to compile
|
||||
|
||||
Vendored
+4
-4
@@ -184,7 +184,7 @@ __Rows sort__ can be used to sort labels on Y axis. Metrics — sort y labels a
|
||||
|
||||
#### Pagination
|
||||
|
||||

|
||||

|
||||
|
||||
__Enable pagination__ toggles pagination controls on graph.
|
||||
|
||||
@@ -192,7 +192,7 @@ __Rows per page__ a number of rows to display on graph.
|
||||
|
||||
#### Tooltip
|
||||
|
||||

|
||||

|
||||
|
||||
__Show tooltip__ toggles tooltip display on mouse over buckets.
|
||||
|
||||
@@ -204,7 +204,7 @@ __Items__ is a list of definitions to display URLs in tooltip.
|
||||
|
||||
Each URL has a template, icon, label and formating options: lowercase and date format for variables.
|
||||
|
||||

|
||||

|
||||
|
||||
## Development
|
||||
|
||||
@@ -215,7 +215,7 @@ the directory containing Statusmap plugin):
|
||||
docker run --rm -it -v $PWD:/var/lib/grafana/plugins/flant-statusmap-panel \
|
||||
-p 3000:3000 --name grafana.docker \
|
||||
--env=GF_USERS_DEFAULT_THEME=light \
|
||||
grafana/grafana:5.1.3
|
||||
grafana/grafana:7.1.3
|
||||
```
|
||||
|
||||
This will expose local plugin from your machine to Grafana container. Now run `grunt` to compile
|
||||
|
||||
Vendored
+2
-3
@@ -157,8 +157,7 @@ System.register(["lodash", "./color_legend", "./options_editor", "./tooltip_edit
|
||||
|
||||
_export("renderComplete", renderComplete = {
|
||||
name: 'statusmap-render-complete'
|
||||
}); // eventFactory('statusmap-render-complete');
|
||||
|
||||
});
|
||||
|
||||
_export("PanelCtrl", _export("StatusHeatmapCtrl", StatusHeatmapCtrl =
|
||||
/*#__PURE__*/
|
||||
@@ -267,7 +266,7 @@ System.register(["lodash", "./color_legend", "./options_editor", "./tooltip_edit
|
||||
CoreEvents.fallbackToStringEvents();
|
||||
PanelEvents.fallbackToStringEvents();
|
||||
|
||||
_export("renderComplete", renderComplete = renderComplete.name);
|
||||
_export("renderComplete", renderComplete = 'statusmap-render-complete');
|
||||
}
|
||||
|
||||
migratePanelConfig(_this.panel);
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+3
-2
@@ -24,11 +24,12 @@
|
||||
{"name": "Color mapping", "path": "img/color-mapping.png"},
|
||||
{"name": "Queries example", "path": "img/queries-example.png"}
|
||||
],
|
||||
"version": "0.3.1",
|
||||
"updated": "2020-07-21"
|
||||
"version": "0.3.2",
|
||||
"updated": "2020-08-13"
|
||||
},
|
||||
|
||||
"dependencies": {
|
||||
"grafanaDependency": ">=5.4.3",
|
||||
"grafanaVersion": "5.4.x",
|
||||
"plugins": [ ]
|
||||
}
|
||||
|
||||
+2
-2
@@ -63,7 +63,7 @@ loadPluginCss({
|
||||
light: 'plugins/flant-statusmap-panel/css/statusmap.light.css'
|
||||
});
|
||||
|
||||
export var renderComplete:any = {name:'statusmap-render-complete'}; // eventFactory('statusmap-render-complete');
|
||||
export var renderComplete:any = {name:'statusmap-render-complete'};
|
||||
|
||||
class StatusHeatmapCtrl extends MetricsPanelCtrl {
|
||||
static templateUrl = 'module.html';
|
||||
@@ -150,7 +150,7 @@ class StatusHeatmapCtrl extends MetricsPanelCtrl {
|
||||
if(!Polygrafill.hasAppEventCompatibleEmitter(this.events)){
|
||||
CoreEvents.fallbackToStringEvents();
|
||||
PanelEvents.fallbackToStringEvents();
|
||||
renderComplete = renderComplete.name;
|
||||
renderComplete = 'statusmap-render-complete';
|
||||
}
|
||||
|
||||
migratePanelConfig(this.panel);
|
||||
|
||||
+3
-2
@@ -24,11 +24,12 @@
|
||||
{"name": "Color mapping", "path": "img/color-mapping.png"},
|
||||
{"name": "Queries example", "path": "img/queries-example.png"}
|
||||
],
|
||||
"version": "0.3.1",
|
||||
"updated": "2020-07-21"
|
||||
"version": "0.3.2",
|
||||
"updated": "2020-08-13"
|
||||
},
|
||||
|
||||
"dependencies": {
|
||||
"grafanaDependency": ">=5.4.3",
|
||||
"grafanaVersion": "5.4.x",
|
||||
"plugins": [ ]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user