In order not to commit binaries, I created an own Dockerfile with the required dependencies and used it.
13
README.md
|
@ -35,7 +35,7 @@ cd iot-backend
|
||||||
### Launch Docker Containers
|
### Launch Docker Containers
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker-compose up -d
|
docker-compose --file software/container/docker-compose.yml up --force-recreate --build
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
@ -59,13 +59,11 @@ It provides a browser-based editor that makes it easy to wire together flows usi
|
||||||
|
|
||||||
NodeRed is also running in Docker: http://localhost:1880/
|
NodeRed is also running in Docker: http://localhost:1880/
|
||||||
|
|
||||||
A simple introduction to Node-RED can be found - along with the nodes / the code - in [this repository, please have a look](./docs/flow/README.md)!
|
|
||||||
|
|
||||||
### InfluxDB
|
### InfluxDB
|
||||||
|
|
||||||
[InfluxDB](https://www.influxdata.com) is a database for any time series data with a single. It runs in Docker and is exposed on port `8086`:
|
[InfluxDB](https://www.influxdata.com) is a database for any time series data with a single. It runs in Docker and is exposed on port `8086`:
|
||||||
|
|
||||||
InfluxDb is running here: http://localhost:8086/ (admin:adminadmin)
|
InfluxDb is running here: http://localhost:8086/ (you have to create an initial user in just a few simple steps)
|
||||||
|
|
||||||
### Grafana
|
### Grafana
|
||||||
|
|
||||||
|
@ -75,6 +73,13 @@ You can login to Grafana: http://localhost:3000/login (admin:admin)
|
||||||
|
|
||||||
Have a look at the [HowTo in this repository](./docs/dashboard/README.md).
|
Have a look at the [HowTo in this repository](./docs/dashboard/README.md).
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
### Setting up a simple Flow
|
||||||
|
|
||||||
|
A simple introduction to Node-RED can be found - along with the nodes / the code - in [this repository, please have a look](./docs/flow/README.md)!
|
||||||
|
|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
|
|
||||||
Feel free to open an issue for bugs, feature requests, or questions. Contributions are welcome.
|
Feel free to open an issue for bugs, feature requests, or questions. Contributions are welcome.
|
||||||
|
|
BIN
docs/.DS_Store
vendored
|
@ -23,8 +23,6 @@ Flows are an organized sequence of nodes. Let's do the "first steps" by creating
|
||||||
|
|
||||||
## Plugins
|
## Plugins
|
||||||
|
|
||||||
> The plugin folder is pushed into this Git repository and is mounted in Docker. Maybe we should use an own Docker file, instead.
|
|
||||||
|
|
||||||
Node-RED uses plugins (e.g. for InfluxDB or own Dashboard capabilites).
|
Node-RED uses plugins (e.g. for InfluxDB or own Dashboard capabilites).
|
||||||
|
|
||||||
You can access the plugins in the right burger menu.
|
You can access the plugins in the right burger menu.
|
||||||
|
@ -33,7 +31,7 @@ You can access the plugins in the right burger menu.
|
||||||
|
|
||||||
## First steps
|
## First steps
|
||||||
|
|
||||||
For debuging I already added Node-RED's own dashboard (sure, we are going to use Grafana, later).
|
For debuging you can add Node-RED's own dashboard (sure, we are going to use Grafana, later).
|
||||||
|
|
||||||
![Overview](./docs/images/1-overview.png)
|
![Overview](./docs/images/1-overview.png)
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,6 @@ services:
|
||||||
nodered:
|
nodered:
|
||||||
# https://hub.docker.com/r/grafana/grafana
|
# https://hub.docker.com/r/grafana/grafana
|
||||||
# https://nodered.org/docs/getting-started/docker
|
# https://nodered.org/docs/getting-started/docker
|
||||||
image: nodered/node-red:3.0.2
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- influxdb
|
- influxdb
|
||||||
restart: always
|
restart: always
|
||||||
|
@ -46,6 +45,8 @@ services:
|
||||||
- FLOWS=flows.json
|
- FLOWS=flows.json
|
||||||
volumes:
|
volumes:
|
||||||
- nodered-data:/data
|
- nodered-data:/data
|
||||||
|
build: ../flow
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
influxdb2:
|
influxdb2:
|
||||||
grafana-dashboards:
|
grafana-dashboards:
|
||||||
|
|
|
@ -1,53 +0,0 @@
|
||||||
|
|
||||||
{{ define "__subject" }}[{{ .Status | toUpper }}{{ if eq .Status "firing" }}:{{ .Alerts.Firing | len }}{{ if gt (.Alerts.Resolved | len) 0 }}, RESOLVED:{{ .Alerts.Resolved | len }}{{ end }}{{ end }}] {{ .GroupLabels.SortedPairs.Values | join " " }} {{ if gt (len .CommonLabels) (len .GroupLabels) }}({{ with .CommonLabels.Remove .GroupLabels.Names }}{{ .Values | join " " }}{{ end }}){{ end }}{{ end }}
|
|
||||||
|
|
||||||
{{ define "__text_values_list" }}{{ $len := len .Values }}{{ if $len }}{{ $first := gt $len 1 }}{{ range $refID, $value := .Values -}}
|
|
||||||
{{ $refID }}={{ $value }}{{ if $first }}, {{ end }}{{ $first = false }}{{ end -}}
|
|
||||||
{{ else }}[no value]{{ end }}{{ end }}
|
|
||||||
|
|
||||||
{{ define "__text_alert_list" }}{{ range . }}
|
|
||||||
Value: {{ template "__text_values_list" . }}
|
|
||||||
Labels:
|
|
||||||
{{ range .Labels.SortedPairs }} - {{ .Name }} = {{ .Value }}
|
|
||||||
{{ end }}Annotations:
|
|
||||||
{{ range .Annotations.SortedPairs }} - {{ .Name }} = {{ .Value }}
|
|
||||||
{{ end }}{{ if gt (len .GeneratorURL) 0 }}Source: {{ .GeneratorURL }}
|
|
||||||
{{ end }}{{ if gt (len .SilenceURL) 0 }}Silence: {{ .SilenceURL }}
|
|
||||||
{{ end }}{{ if gt (len .DashboardURL) 0 }}Dashboard: {{ .DashboardURL }}
|
|
||||||
{{ end }}{{ if gt (len .PanelURL) 0 }}Panel: {{ .PanelURL }}
|
|
||||||
{{ end }}{{ end }}{{ end }}
|
|
||||||
|
|
||||||
{{ define "default.title" }}{{ template "__subject" . }}{{ end }}
|
|
||||||
|
|
||||||
{{ define "default.message" }}{{ if gt (len .Alerts.Firing) 0 }}**Firing**
|
|
||||||
{{ template "__text_alert_list" .Alerts.Firing }}{{ if gt (len .Alerts.Resolved) 0 }}
|
|
||||||
|
|
||||||
{{ end }}{{ end }}{{ if gt (len .Alerts.Resolved) 0 }}**Resolved**
|
|
||||||
{{ template "__text_alert_list" .Alerts.Resolved }}{{ end }}{{ end }}
|
|
||||||
|
|
||||||
|
|
||||||
{{ define "__teams_text_alert_list" }}{{ range . }}
|
|
||||||
Value: {{ template "__text_values_list" . }}
|
|
||||||
Labels:
|
|
||||||
{{ range .Labels.SortedPairs }} - {{ .Name }} = {{ .Value }}
|
|
||||||
{{ end }}
|
|
||||||
Annotations:
|
|
||||||
{{ range .Annotations.SortedPairs }} - {{ .Name }} = {{ .Value }}
|
|
||||||
{{ end }}
|
|
||||||
{{ if gt (len .GeneratorURL) 0 }}Source: [{{ .GeneratorURL }}]({{ .GeneratorURL }})
|
|
||||||
|
|
||||||
{{ end }}{{ if gt (len .SilenceURL) 0 }}Silence: [{{ .SilenceURL }}]({{ .SilenceURL }})
|
|
||||||
|
|
||||||
{{ end }}{{ if gt (len .DashboardURL) 0 }}Dashboard: [{{ .DashboardURL }}]({{ .DashboardURL }})
|
|
||||||
|
|
||||||
{{ end }}{{ if gt (len .PanelURL) 0 }}Panel: [{{ .PanelURL }}]({{ .PanelURL }})
|
|
||||||
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}{{ end }}
|
|
||||||
|
|
||||||
|
|
||||||
{{ define "teams.default.message" }}{{ if gt (len .Alerts.Firing) 0 }}**Firing**
|
|
||||||
{{ template "__teams_text_alert_list" .Alerts.Firing }}{{ if gt (len .Alerts.Resolved) 0 }}
|
|
||||||
|
|
||||||
{{ end }}{{ end }}{{ if gt (len .Alerts.Resolved) 0 }}**Resolved**
|
|
||||||
{{ template "__teams_text_alert_list" .Alerts.Resolved }}{{ end }}{{ end }}
|
|
|
@ -1,14 +0,0 @@
|
||||||
Jahr,Verarbeitendes Gewerbe (in kt),Verkehr gesamt (in kt),Straßenverkehr (in kt),Haushalte und GHD gesamt (in kt),Haushalte (in kt),"Gewerbe, Handel, Dienstleistungen GHD (in kt)",CO2-Emissionen gesamt (in kt)
|
|
||||||
2020-01-01,3702,3760,2989,6070,3165,2905,13532
|
|
||||||
2019-01-01,3956,4708,3313,6477,3451,3026,15140
|
|
||||||
2018-01-01,4220,4755,3294,6982,3600,3382,15957
|
|
||||||
2017-01-01,4630,4653,3333,7012,3509,3503,16294
|
|
||||||
2016-01-01,4661,4577,3287,7314,3637,3677,16552
|
|
||||||
2015-01-01,5135,4460,3198,7434,3593,3841,17029
|
|
||||||
2014-01-01,5388,4417,3178,7419,3657,3762,17224
|
|
||||||
2013-01-01,5224,4337,3165,8277,4056,4221,17839
|
|
||||||
2012-01-01,5848,4259,3033,8313,4030,4283,18419
|
|
||||||
2011-01-01,5714,4279,3045,8143,4052,4091,18136
|
|
||||||
2010-01-01,5899,4243,3065,8611,4245,4366,18753
|
|
||||||
2009-01-01,5442,4172,3013,8360,4159,4201,17974
|
|
||||||
2008-01-01,5835,4234,3019,8462,4284,4178,18531
|
|
|
|
@ -1,3 +0,0 @@
|
||||||
ID,Path,StartTime,EndTime
|
|
||||||
0,C:\Users\InMachines\Desktop\MQTT\bCNC-laser\tests\static\sample.gcode,2023-03-01 12:31:30.351399,2023-03-01 12:31:52.538042
|
|
||||||
1,C:\Users\InMachines\Desktop\MQTT\bCNC-laser\tests\static\sample.gcode,2023-03-01 12:32:17.547355,2023-03-01 12:32:38.265005
|
|
|
|
@ -1,13 +0,0 @@
|
||||||
Time,State-CNC,State-Lasercutter,State-3D-Printer
|
|
||||||
2023-03-01 12:31:28,Connected,Connected,Connected
|
|
||||||
2023-03-01 12:31:29,Idle,Idle,Idle
|
|
||||||
2023-03-01 12:31:30,Idle, Run,Idle
|
|
||||||
2023-03-01 12:31:31,Run,Idle,Run
|
|
||||||
2023-03-01 12:31:32,Idle,Run,Run
|
|
||||||
2023-03-01 12:31:33,Run,Run,Run
|
|
||||||
2023-03-01 12:31:52,Idle,Idle,Run
|
|
||||||
2023-03-01 12:31:52,Idle,Run,Idle
|
|
||||||
2023-03-01 12:32:17,Idle,Run,Idle
|
|
||||||
2023-03-01 12:32:20,Run,Idle,Run
|
|
||||||
2023-03-01 12:32:39,Idle,Run,Run
|
|
||||||
2023-03-01 12:32:39,Idle,Idle,Idle
|
|
|
|
@ -1,733 +0,0 @@
|
||||||
/**
|
|
||||||
* Copyright JS Foundation and other contributors, http://js.foundation
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
**/
|
|
||||||
|
|
||||||
if (!RED) {
|
|
||||||
var RED = {}
|
|
||||||
}
|
|
||||||
RED.debug = (function() {
|
|
||||||
var config;
|
|
||||||
var messageList;
|
|
||||||
var messageTable;
|
|
||||||
var filterType = "filterAll";
|
|
||||||
var filteredNodes = {}; // id->true means hide, so default to all visible
|
|
||||||
|
|
||||||
var view = 'list';
|
|
||||||
var messages = [];
|
|
||||||
var messagesByNode = {};
|
|
||||||
var sbc;
|
|
||||||
var activeWorkspace;
|
|
||||||
var numMessages = 100; // Hardcoded number of message to show in debug window scrollback
|
|
||||||
|
|
||||||
var debugNodeTreeList;
|
|
||||||
|
|
||||||
function init(_config) {
|
|
||||||
config = _config;
|
|
||||||
|
|
||||||
var content = $("<div>").css({"position":"relative","height":"100%"});
|
|
||||||
var toolbar = $('<div class="red-ui-sidebar-header">'+
|
|
||||||
'<span class="button-group">'+
|
|
||||||
'<a id="red-ui-sidebar-debug-filter" style="padding-right: 5px" class="red-ui-sidebar-header-button" href="#"><i class="fa fa-filter"></i> <span></span> <i style="padding-left: 5px;" class="fa fa-caret-down"></i></a>'+
|
|
||||||
'</span>'+
|
|
||||||
'<span class="button-group">'+
|
|
||||||
'<a id="red-ui-sidebar-debug-clear" style="border-right: none; padding-right: 6px" class="red-ui-sidebar-header-button" href="#" data-clear-type="all"><i class="fa fa-trash"></i> <span>all</span></a>' +
|
|
||||||
'<a id="red-ui-sidebar-debug-clear-opts" style="padding: 5px; border-left: none;" class="red-ui-sidebar-header-button" href="#"><i class="fa fa-caret-down"></i></a>'+
|
|
||||||
'</span></div>').appendTo(content);
|
|
||||||
|
|
||||||
var footerToolbar = $('<div>'+
|
|
||||||
'<span class="button-group"><a id="red-ui-sidebar-debug-open" class="red-ui-footer-button" href="#"><i class="fa fa-desktop"></i></a></span> ' +
|
|
||||||
'</div>');
|
|
||||||
|
|
||||||
messageList = $('<div class="red-ui-debug-content red-ui-debug-content-list"/>').appendTo(content);
|
|
||||||
sbc = messageList[0];
|
|
||||||
messageTable = $('<div class="red-ui-debug-content red-ui-debug-content-table hide"/>').appendTo(content);
|
|
||||||
|
|
||||||
var filterDialogCloseTimeout;
|
|
||||||
var filterDialogShown = false;
|
|
||||||
var filterDialog = $('<div class="red-ui-debug-filter-box hide"></div>').appendTo(toolbar);//content);
|
|
||||||
filterDialog.on('mouseleave' ,function(evt) {
|
|
||||||
if (filterDialogShown) {
|
|
||||||
filterDialogCloseTimeout = setTimeout(function() {
|
|
||||||
filterDialog.slideUp(200);
|
|
||||||
filterDialogShown = false;
|
|
||||||
},500)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
filterDialog.on('mouseenter' ,function(evt) {
|
|
||||||
clearTimeout(filterDialogCloseTimeout)
|
|
||||||
})
|
|
||||||
var filterToolbar = $('<div style="margin-bottom: 3px; display: flex;">'+
|
|
||||||
'<span style="flex-grow:1; text-align: left;">'+
|
|
||||||
'<span class="button-group"><button type="button" id="red-ui-sidebar-filter-select-all" class="red-ui-sidebar-header-button red-ui-button-small" data-i18n="node-red:debug.sidebar.selectAll"></button></span>' +
|
|
||||||
'<span class="button-group"><button type="button" id="red-ui-sidebar-filter-select-none" class="red-ui-sidebar-header-button red-ui-button-small" data-i18n="node-red:debug.sidebar.selectNone"></button></span>' +
|
|
||||||
'</span>'+
|
|
||||||
'<span class="button-group"><button type="button" id="red-ui-sidebar-filter-select-close" class="red-ui-sidebar-header-button red-ui-button-small"><i class="fa fa-times"></i></button></span>'+
|
|
||||||
'</div>').appendTo(filterDialog);
|
|
||||||
|
|
||||||
filterToolbar.find("#red-ui-sidebar-filter-select-close").on('click', function(evt) {
|
|
||||||
clearTimeout(filterDialogCloseTimeout)
|
|
||||||
filterDialogShown = false;
|
|
||||||
filterDialog.slideUp(200);
|
|
||||||
})
|
|
||||||
|
|
||||||
filterToolbar.find("#red-ui-sidebar-filter-select-all").on('click', function(evt) {
|
|
||||||
evt.preventDefault();
|
|
||||||
var data = debugNodeTreeList.treeList('data');
|
|
||||||
data.forEach(function(flow) {
|
|
||||||
if (!flow.selected) {
|
|
||||||
if (flow.treeList.checkbox) {
|
|
||||||
flow.treeList.checkbox.trigger('click')
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
flow.children.forEach(function(item) {
|
|
||||||
if (!item.selected) {
|
|
||||||
item.treeList.select();
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
});
|
|
||||||
refreshMessageList();
|
|
||||||
})
|
|
||||||
|
|
||||||
filterToolbar.find("#red-ui-sidebar-filter-select-none").on('click', function(evt) {
|
|
||||||
evt.preventDefault();
|
|
||||||
debugNodeTreeList.treeList('clearSelection');
|
|
||||||
var data = debugNodeTreeList.treeList('data');
|
|
||||||
data.forEach(function(flow) {
|
|
||||||
if (flow.children) {
|
|
||||||
flow.children.forEach(function(item) {
|
|
||||||
filteredNodes[item.node.id] = true;
|
|
||||||
})
|
|
||||||
}
|
|
||||||
});
|
|
||||||
RED.settings.set('debug.filteredNodes',Object.keys(filteredNodes))
|
|
||||||
refreshMessageList();
|
|
||||||
})
|
|
||||||
var debugNodeListRow = $('<div class="red-ui-debug-filter-row" id="red-ui-sidebar-debug-filter-node-list-row"></div>').appendTo(filterDialog);
|
|
||||||
debugNodeTreeList = $("<div></div>").appendTo(debugNodeListRow).css({width: "100%", height: "300px"})
|
|
||||||
.treeList({autoSelect: false}).on("treelistitemmouseover", function(e, item) {
|
|
||||||
if (item.node) {
|
|
||||||
item.node.highlighted = true;
|
|
||||||
item.node.dirty = true;
|
|
||||||
RED.view.redraw();
|
|
||||||
}
|
|
||||||
}).on("treelistitemmouseout", function(e, item) {
|
|
||||||
if (item.node) {
|
|
||||||
item.node.highlighted = false;
|
|
||||||
item.node.dirty = true;
|
|
||||||
RED.view.redraw();
|
|
||||||
}
|
|
||||||
}).on("treelistselect", function(e, item) {
|
|
||||||
if (item.children) {
|
|
||||||
item.children.forEach(function(child) {
|
|
||||||
if (child.checkbox) {
|
|
||||||
child.treeList.select(item.selected)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
if (item.node) {
|
|
||||||
if (item.selected) {
|
|
||||||
delete filteredNodes[item.node.id]
|
|
||||||
} else {
|
|
||||||
filteredNodes[item.node.id] = true;
|
|
||||||
}
|
|
||||||
RED.settings.set('debug.filteredNodes',Object.keys(filteredNodes))
|
|
||||||
refreshMessageList();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
try {
|
|
||||||
content.i18n();
|
|
||||||
} catch(err) {
|
|
||||||
console.log("TODO: i18n library support");
|
|
||||||
}
|
|
||||||
|
|
||||||
toolbar.find('#red-ui-sidebar-debug-filter span').text(RED._('node-red:debug.sidebar.filterAll'));
|
|
||||||
|
|
||||||
toolbar.find('#red-ui-sidebar-debug-filter').on("click",function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
var options = [
|
|
||||||
{ label: $('<span data-i18n="[append]node-red:debug.sidebar.filterAll"><input type="radio" value="filterAll" name="filter-type" style="margin-top:0"> </span>').i18n() , value: "filterAll" },
|
|
||||||
{ label: $('<span><span data-i18n="[append]node-red:debug.sidebar.filterSelected"><input type="radio" value="filterSelected" name="filter-type" style="margin-top:0"> </span>...</span>').i18n(), value: "filterSelected" },
|
|
||||||
{ label: $('<span data-i18n="[append]node-red:debug.sidebar.filterCurrent"><input type="radio" value="filterCurrent" name="filter-type" style="margin-top:0"> </span>').i18n(), value: "filterCurrent" }
|
|
||||||
]
|
|
||||||
var menu = RED.popover.menu({
|
|
||||||
options: options,
|
|
||||||
onselect: function(item) {
|
|
||||||
if (item.value !== filterType) {
|
|
||||||
filterType = item.value;
|
|
||||||
$('#red-ui-sidebar-debug-filter span').text(RED._('node-red:debug.sidebar.'+filterType));
|
|
||||||
refreshMessageList();
|
|
||||||
RED.settings.set("debug.filter",filterType)
|
|
||||||
}
|
|
||||||
if (filterType === 'filterSelected') {
|
|
||||||
refreshDebugNodeList();
|
|
||||||
filterDialog.slideDown(200);
|
|
||||||
filterDialogShown = true;
|
|
||||||
debugNodeTreeList.focus();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
menu.show({
|
|
||||||
target: $("#red-ui-sidebar-debug-filter"),
|
|
||||||
align: "left",
|
|
||||||
offset: [$("#red-ui-sidebar-debug-filter").outerWidth()-2, -1]
|
|
||||||
})
|
|
||||||
$('input[name="filter-type"][value="'+RED.settings.get("debug.filter","filterAll")+'"]').prop("checked", true)
|
|
||||||
});
|
|
||||||
RED.popover.tooltip(toolbar.find('#red-ui-sidebar-debug-filter'),RED._('node-red:debug.sidebar.filterLog'));
|
|
||||||
|
|
||||||
toolbar.find("#red-ui-sidebar-debug-clear").on("click", function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
var action = RED.settings.get("debug.clearType","all")
|
|
||||||
clearMessageList(false, action === 'filtered');
|
|
||||||
});
|
|
||||||
var clearTooltip = RED.popover.tooltip(toolbar.find("#red-ui-sidebar-debug-clear"),RED._('node-red:debug.sidebar.clearLog'),"core:clear-debug-messages");
|
|
||||||
toolbar.find("#red-ui-sidebar-debug-clear-opts").on("click", function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
var options = [
|
|
||||||
{ label: $('<span data-i18n="[append]node-red:debug.sidebar.clearLog"><input type="radio" value="all" name="clear-type" style="margin-top:0"> </span>').i18n() , value: "all" },
|
|
||||||
{ label: $('<span data-i18n="[append]node-red:debug.sidebar.clearFilteredLog"><input type="radio" value="filtered" name="clear-type" style="margin-top:0"> </span>').i18n(), value: "filtered" }
|
|
||||||
]
|
|
||||||
var menu = RED.popover.menu({
|
|
||||||
options: options,
|
|
||||||
onselect: function(item) {
|
|
||||||
if (item.value === "all") {
|
|
||||||
$("#red-ui-sidebar-debug-clear > span").text(RED._('node-red:debug.sidebar.all'));
|
|
||||||
clearTooltip.setAction("core:clear-debug-messages");
|
|
||||||
clearTooltip.setContent(RED._('node-red:debug.sidebar.clearLog'))
|
|
||||||
RED.settings.set("debug.clearType","all")
|
|
||||||
} else {
|
|
||||||
$("#red-ui-sidebar-debug-clear > span").text(RED._('node-red:debug.sidebar.filtered'));
|
|
||||||
clearTooltip.setAction("core:clear-filtered-debug-messages");
|
|
||||||
clearTooltip.setContent(RED._('node-red:debug.sidebar.clearFilteredLog'))
|
|
||||||
RED.settings.set("debug.clearType","filtered")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
menu.show({
|
|
||||||
target: $("#red-ui-sidebar-debug-clear-opts"),
|
|
||||||
align: "left",
|
|
||||||
offset: [$("#red-ui-sidebar-debug-clear-opts").outerWidth()-2, -1]
|
|
||||||
})
|
|
||||||
$('input[name="clear-type"][value="'+RED.settings.get("debug.clearType","all")+'"]').prop("checked", true)
|
|
||||||
})
|
|
||||||
|
|
||||||
var clearType = RED.settings.get("debug.clearType","all");
|
|
||||||
if (clearType === "all") {
|
|
||||||
toolbar.find("#red-ui-sidebar-debug-clear > span").text(RED._('node-red:debug.sidebar.all'));
|
|
||||||
clearTooltip.setAction("core:clear-debug-messages");
|
|
||||||
clearTooltip.setContent(RED._('node-red:debug.sidebar.clearLog'))
|
|
||||||
} else {
|
|
||||||
toolbar.find("#red-ui-sidebar-debug-clear > span").text(RED._('node-red:debug.sidebar.filtered'));
|
|
||||||
clearTooltip.setAction("core:clear-filtered-debug-messages");
|
|
||||||
clearTooltip.setContent(RED._('node-red:debug.sidebar.clearFilteredLog'))
|
|
||||||
}
|
|
||||||
|
|
||||||
filterType = RED.settings.get("debug.filter","filterAll")
|
|
||||||
var filteredNodeList = RED.settings.get("debug.filteredNodes",[]);
|
|
||||||
filteredNodes = {}
|
|
||||||
filteredNodeList.forEach(function(id) {
|
|
||||||
filteredNodes[id] = true
|
|
||||||
})
|
|
||||||
toolbar.find('#red-ui-sidebar-debug-filter span').text(RED._('node-red:debug.sidebar.'+filterType));
|
|
||||||
refreshMessageList();
|
|
||||||
|
|
||||||
return {
|
|
||||||
content: content,
|
|
||||||
footer: footerToolbar
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function containsDebug(sid, map) {
|
|
||||||
var item = map[sid];
|
|
||||||
if (item) {
|
|
||||||
if (item.debug === undefined) {
|
|
||||||
var sfs = Object.keys(item.subflows);
|
|
||||||
var contain = false;
|
|
||||||
for (var i = 0; i < sfs.length; i++) {
|
|
||||||
var sf = sfs[i];
|
|
||||||
if (containsDebug(sf, map)) {
|
|
||||||
contain = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
item.debug = contain;
|
|
||||||
}
|
|
||||||
return item.debug;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function refreshDebugNodeList() {
|
|
||||||
var workspaceOrder = RED.nodes.getWorkspaceOrder();
|
|
||||||
var workspaceOrderMap = {};
|
|
||||||
workspaceOrder.forEach(function(ws,i) {
|
|
||||||
workspaceOrderMap[ws] = i;
|
|
||||||
});
|
|
||||||
|
|
||||||
var candidateNodes = [];
|
|
||||||
var candidateSFs = [];
|
|
||||||
var subflows = {};
|
|
||||||
RED.nodes.eachNode(function (n) {
|
|
||||||
var nt = n.type;
|
|
||||||
if (nt === "debug") {
|
|
||||||
if (n.z in workspaceOrderMap) {
|
|
||||||
candidateNodes.push(n);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
var sf = RED.nodes.subflow(n.z);
|
|
||||||
if (sf) {
|
|
||||||
subflows[sf.id] = {
|
|
||||||
debug: true,
|
|
||||||
subflows: {}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if(nt.substring(0, 8) === "subflow:") {
|
|
||||||
if (n.z in workspaceOrderMap) {
|
|
||||||
candidateSFs.push(n);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
var psf = RED.nodes.subflow(n.z);
|
|
||||||
if (psf) {
|
|
||||||
var sid = nt.substring(8);
|
|
||||||
var item = subflows[psf.id];
|
|
||||||
if (!item) {
|
|
||||||
item = {
|
|
||||||
debug: undefined,
|
|
||||||
subflows: {}
|
|
||||||
};
|
|
||||||
subflows[psf.id] = item;
|
|
||||||
}
|
|
||||||
item.subflows[sid] = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
candidateSFs.forEach(function (sf) {
|
|
||||||
var sid = sf.type.substring(8);
|
|
||||||
if (containsDebug(sid, subflows)) {
|
|
||||||
candidateNodes.push(sf);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
candidateNodes.sort(function(A,B) {
|
|
||||||
var wsA = workspaceOrderMap[A.z];
|
|
||||||
var wsB = workspaceOrderMap[B.z];
|
|
||||||
if (wsA !== wsB) {
|
|
||||||
return wsA-wsB;
|
|
||||||
}
|
|
||||||
var labelA = RED.utils.getNodeLabel(A,A.id);
|
|
||||||
var labelB = RED.utils.getNodeLabel(B,B.id);
|
|
||||||
return labelA.localeCompare(labelB);
|
|
||||||
});
|
|
||||||
var currentWs = null;
|
|
||||||
var data = [];
|
|
||||||
var currentFlow;
|
|
||||||
var currentSelectedCount = 0;
|
|
||||||
candidateNodes.forEach(function(node) {
|
|
||||||
if (currentWs !== node.z) {
|
|
||||||
if (currentFlow && currentFlow.checkbox) {
|
|
||||||
currentFlow.selected = currentSelectedCount === currentFlow.children.length
|
|
||||||
}
|
|
||||||
currentSelectedCount = 0;
|
|
||||||
currentWs = node.z;
|
|
||||||
var parent = RED.nodes.workspace(currentWs) || RED.nodes.subflow(currentWs);
|
|
||||||
currentFlow = {
|
|
||||||
label: RED.utils.getNodeLabel(parent, currentWs),
|
|
||||||
}
|
|
||||||
if (!parent.disabled) {
|
|
||||||
currentFlow.children = [];
|
|
||||||
currentFlow.checkbox = true;
|
|
||||||
} else {
|
|
||||||
currentFlow.class = "disabled"
|
|
||||||
}
|
|
||||||
data.push(currentFlow);
|
|
||||||
}
|
|
||||||
if (currentFlow.children) {
|
|
||||||
if (!filteredNodes[node.id]) {
|
|
||||||
currentSelectedCount++;
|
|
||||||
}
|
|
||||||
currentFlow.children.push({
|
|
||||||
label: RED.utils.getNodeLabel(node,node.id),
|
|
||||||
node: node,
|
|
||||||
checkbox: true,
|
|
||||||
selected: !filteredNodes[node.id]
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (currentFlow && currentFlow.checkbox) {
|
|
||||||
currentFlow.selected = currentSelectedCount === currentFlow.children.length
|
|
||||||
}
|
|
||||||
|
|
||||||
debugNodeTreeList.treeList("data", data);
|
|
||||||
}
|
|
||||||
|
|
||||||
function getTimestamp() {
|
|
||||||
var d = new Date();
|
|
||||||
return d.toLocaleString();
|
|
||||||
}
|
|
||||||
|
|
||||||
function sanitize(m) {
|
|
||||||
return m.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">");
|
|
||||||
}
|
|
||||||
|
|
||||||
var refreshTimeout;
|
|
||||||
function refreshMessageList(_activeWorkspace) {
|
|
||||||
if (refreshTimeout) {
|
|
||||||
clearTimeout(refreshTimeout);
|
|
||||||
}
|
|
||||||
refreshTimeout = setTimeout(function() {
|
|
||||||
_refreshMessageList(_activeWorkspace);
|
|
||||||
},200);
|
|
||||||
}
|
|
||||||
function _refreshMessageList(_activeWorkspace) {
|
|
||||||
if (_activeWorkspace) {
|
|
||||||
activeWorkspace = _activeWorkspace.replace(/\./g,"_");
|
|
||||||
}
|
|
||||||
if (filterType === "filterAll") {
|
|
||||||
$(".red-ui-debug-msg").removeClass("hide");
|
|
||||||
} else {
|
|
||||||
$(".red-ui-debug-msg").each(function() {
|
|
||||||
if (filterType === 'filterCurrent') {
|
|
||||||
$(this).toggleClass('hide',!$(this).hasClass('red-ui-debug-msg-flow-'+activeWorkspace));
|
|
||||||
} else if (filterType === 'filterSelected') {
|
|
||||||
var id = $(this).data('source');
|
|
||||||
if (id) {
|
|
||||||
$(this).toggleClass('hide',!!filteredNodes[id]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function refreshMessageTable() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
function showMessageList() {
|
|
||||||
view = 'list';
|
|
||||||
messageTable.hide();
|
|
||||||
messageTable.empty();
|
|
||||||
|
|
||||||
messages.forEach(function(m) {
|
|
||||||
messageList.append(m.el);
|
|
||||||
})
|
|
||||||
messageList.show();
|
|
||||||
}
|
|
||||||
function showMessageTable() {
|
|
||||||
view = 'table';
|
|
||||||
messageList.hide();
|
|
||||||
messageList.empty();
|
|
||||||
|
|
||||||
Object.keys(messagesByNode).forEach(function(id) {
|
|
||||||
var m = messagesByNode[id];
|
|
||||||
var msg = m.el;
|
|
||||||
var sourceNode = m.source;
|
|
||||||
if (sourceNode) {
|
|
||||||
var wrapper = $("<div>",{id:"red-ui-debug-msg-source-"+sourceNode.id.replace(/\./g,"_")}).appendTo(messageTable);
|
|
||||||
wrapper.append(msg);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
messageTable.show();
|
|
||||||
}
|
|
||||||
function formatString(str) {
|
|
||||||
return str.replace(/\n/g,"↵").replace(/\t/g,"→");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
var menuOptionMenu;
|
|
||||||
var activeMenuMessage;
|
|
||||||
function showMessageMenu(button,dbgMessage,sourceId) {
|
|
||||||
activeMenuMessage = dbgMessage;
|
|
||||||
if (!menuOptionMenu) {
|
|
||||||
var opts = [
|
|
||||||
{id:"red-ui-debug-msg-menu-item-collapse",label:RED._("node-red:debug.messageMenu.collapseAll"),onselect:function(){
|
|
||||||
activeMenuMessage.collapse();
|
|
||||||
}},
|
|
||||||
];
|
|
||||||
if (activeMenuMessage.clearPinned) {
|
|
||||||
opts.push(
|
|
||||||
{id:"red-ui-debug-msg-menu-item-clear-pins",label:RED._("node-red:debug.messageMenu.clearPinned"),onselect:function(){
|
|
||||||
activeMenuMessage.clearPinned();
|
|
||||||
}},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
opts.push(
|
|
||||||
null,
|
|
||||||
{id:"red-ui-debug-msg-menu-item-filter", label:RED._("node-red:debug.messageMenu.filterNode"),onselect:function(){
|
|
||||||
var candidateNodes = RED.nodes.filterNodes({type:'debug'});
|
|
||||||
candidateNodes.forEach(function(n) {
|
|
||||||
filteredNodes[n.id] = true;
|
|
||||||
});
|
|
||||||
delete filteredNodes[sourceId];
|
|
||||||
$("#red-ui-sidebar-debug-filterSelected").trigger("click");
|
|
||||||
RED.settings.set('debug.filteredNodes',Object.keys(filteredNodes))
|
|
||||||
refreshMessageList();
|
|
||||||
}},
|
|
||||||
{id:"red-ui-debug-msg-menu-item-clear-filter",label:RED._("node-red:debug.messageMenu.clearFilter"),onselect:function(){
|
|
||||||
$("#red-ui-sidebar-debug-filterAll").trigger("click");
|
|
||||||
refreshMessageList();
|
|
||||||
}}
|
|
||||||
);
|
|
||||||
|
|
||||||
menuOptionMenu = RED.menu.init({id:"red-ui-debug-msg-option-menu",
|
|
||||||
options: opts
|
|
||||||
});
|
|
||||||
menuOptionMenu.css({
|
|
||||||
position: "absolute"
|
|
||||||
})
|
|
||||||
menuOptionMenu.on('mouseleave', function(){ $(this).hide() });
|
|
||||||
menuOptionMenu.on('mouseup', function() { $(this).hide() });
|
|
||||||
menuOptionMenu.appendTo("body");
|
|
||||||
}
|
|
||||||
|
|
||||||
var filterOptionDisabled = false;
|
|
||||||
var sourceNode = RED.nodes.node(sourceId);
|
|
||||||
if (sourceNode && sourceNode.type !== 'debug') {
|
|
||||||
filterOptionDisabled = true;
|
|
||||||
}
|
|
||||||
RED.menu.setDisabled('red-ui-debug-msg-menu-item-filter',filterOptionDisabled);
|
|
||||||
RED.menu.setDisabled('red-ui-debug-msg-menu-item-clear-filter',filterOptionDisabled);
|
|
||||||
|
|
||||||
var elementPos = button.offset();
|
|
||||||
menuOptionMenu.css({
|
|
||||||
top: elementPos.top+"px",
|
|
||||||
left: (elementPos.left - menuOptionMenu.width() + 20)+"px"
|
|
||||||
})
|
|
||||||
menuOptionMenu.show();
|
|
||||||
}
|
|
||||||
|
|
||||||
var stack = [];
|
|
||||||
var busy = false;
|
|
||||||
function handleDebugMessage(o) {
|
|
||||||
if (o) { stack.push(o); }
|
|
||||||
if (!busy && (stack.length > 0)) {
|
|
||||||
busy = true;
|
|
||||||
processDebugMessage(stack.shift());
|
|
||||||
setTimeout(function() {
|
|
||||||
busy = false;
|
|
||||||
handleDebugMessage();
|
|
||||||
}, 15); // every 15mS = 66 times a second
|
|
||||||
if (stack.length > numMessages) { stack = stack.splice(-numMessages); }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function processDebugMessage(o) {
|
|
||||||
var msg = $("<div/>");
|
|
||||||
var sourceNode = o._source;
|
|
||||||
|
|
||||||
msg.on("mouseenter", function() {
|
|
||||||
msg.addClass('red-ui-debug-msg-hover');
|
|
||||||
if (o._source) {
|
|
||||||
// highlight the top-level node (could be subflow instance)
|
|
||||||
config.messageMouseEnter(o._source.id);
|
|
||||||
if (o._source._alias) {
|
|
||||||
// this is inside a subflow - highlight the node itself
|
|
||||||
config.messageMouseEnter(o._source._alias);
|
|
||||||
}
|
|
||||||
// if path.length > 2, we are nested - highlight subflow instances
|
|
||||||
for (var i=2;i<o._source.path.length;i++) {
|
|
||||||
config.messageMouseEnter(o._source.path[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
msg.on("mouseleave", function() {
|
|
||||||
msg.removeClass('red-ui-debug-msg-hover');
|
|
||||||
if (o._source) {
|
|
||||||
config.messageMouseLeave(o._source.id);
|
|
||||||
if (o._source._alias) {
|
|
||||||
config.messageMouseLeave(o._source._alias);
|
|
||||||
}
|
|
||||||
for (var i=2;i<o._source.path.length;i++) {
|
|
||||||
config.messageMouseLeave(o._source.path[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
var name = sanitize(((o.name?o.name:o.id)||"").toString());
|
|
||||||
var topic = sanitize((o.topic||"").toString());
|
|
||||||
var property = sanitize(o.property?o.property:'');
|
|
||||||
var payload = o.msg;
|
|
||||||
var format = sanitize((o.format||"").toString());
|
|
||||||
msg.attr("class", 'red-ui-debug-msg'+(o.level?(' red-ui-debug-msg-level-'+o.level):'')+
|
|
||||||
(sourceNode?(
|
|
||||||
" red-ui-debug-msg-node-"+sourceNode.id.replace(/\./g,"_")+
|
|
||||||
(sourceNode.z?" red-ui-debug-msg-flow-"+sourceNode.z.replace(/\./g,"_"):"")
|
|
||||||
):""));
|
|
||||||
|
|
||||||
if (sourceNode) {
|
|
||||||
msg.data('source',sourceNode.id);
|
|
||||||
if (filterType === "filterCurrent" && activeWorkspace) {
|
|
||||||
if (sourceNode.z && sourceNode.z.replace(/\./g,"_") !== activeWorkspace) {
|
|
||||||
msg.addClass('hide');
|
|
||||||
}
|
|
||||||
} else if (filterType === 'filterSelected'){
|
|
||||||
if (!!filteredNodes[sourceNode.id]) {
|
|
||||||
msg.addClass('hide');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var metaRow = $('<div class="red-ui-debug-msg-meta"></div>').appendTo(msg);
|
|
||||||
$('<span class="red-ui-debug-msg-date">'+ getTimestamp()+'</span>').appendTo(metaRow);
|
|
||||||
if (sourceNode) {
|
|
||||||
|
|
||||||
var nodeLink = $('<a>',{href:"#",class:"red-ui-debug-msg-name"}).text(RED._("node-red:debug.node")+": "+(o.name||sourceNode.name||sourceNode.id))
|
|
||||||
.appendTo(metaRow)
|
|
||||||
.on("click", function(evt) {
|
|
||||||
evt.preventDefault();
|
|
||||||
config.messageSourceClick(sourceNode.id, sourceNode._alias, sourceNode.path);
|
|
||||||
});
|
|
||||||
|
|
||||||
if (sourceNode.pathHierarchy) {
|
|
||||||
RED.popover.create({
|
|
||||||
tooltip: true,
|
|
||||||
target:nodeLink,
|
|
||||||
trigger: "hover",
|
|
||||||
size: "small",
|
|
||||||
direction: "bottom",
|
|
||||||
interactive: true,
|
|
||||||
content: function() {
|
|
||||||
const content = $("<div>")
|
|
||||||
sourceNode.pathHierarchy.forEach((pathPart,idx) => {
|
|
||||||
const link = $("<a>", {href:"#" ,style:'display: block'})
|
|
||||||
.css({
|
|
||||||
paddingLeft:((idx*10)+((idx === sourceNode.pathHierarchy.length - 1)?10:0))+"px",
|
|
||||||
paddingRight:'2px'
|
|
||||||
})
|
|
||||||
.text(pathPart.label)
|
|
||||||
.appendTo(content)
|
|
||||||
.on("click", function(evt) {
|
|
||||||
evt.preventDefault();
|
|
||||||
config.messageSourceClick(pathPart.id);
|
|
||||||
})
|
|
||||||
if (idx < sourceNode.pathHierarchy.length - 1) {
|
|
||||||
$('<i class="fa fa-angle-down" style="margin-right: 3px"></i>').prependTo(link)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
return content
|
|
||||||
},
|
|
||||||
delay: { show: 50, hide: 150 }
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} else if (name) {
|
|
||||||
$('<span class="red-ui-debug-msg-name">'+name+'</span>').appendTo(metaRow);
|
|
||||||
}
|
|
||||||
|
|
||||||
payload = RED.utils.decodeObject(payload,format);
|
|
||||||
|
|
||||||
var el = $('<span class="red-ui-debug-msg-payload"></span>').appendTo(msg);
|
|
||||||
var path = o.property||'';
|
|
||||||
var debugMessage = RED.utils.createObjectElement(payload, {
|
|
||||||
key: /*true*/null,
|
|
||||||
typeHint: format,
|
|
||||||
hideKey: false,
|
|
||||||
path: path,
|
|
||||||
sourceId: sourceNode&&sourceNode.id,
|
|
||||||
rootPath: path
|
|
||||||
});
|
|
||||||
// Do this in a separate step so the element functions aren't stripped
|
|
||||||
debugMessage.appendTo(el);
|
|
||||||
// NOTE: relying on function error to have a "type" that all other msgs don't
|
|
||||||
if (o.hasOwnProperty("type") && (o.type === "function")) {
|
|
||||||
var errorLvlType = 'error';
|
|
||||||
var errorLvl = 20;
|
|
||||||
if (o.hasOwnProperty("level") && o.level === 30) {
|
|
||||||
errorLvl = 30;
|
|
||||||
errorLvlType = 'warn';
|
|
||||||
}
|
|
||||||
msg.addClass('red-ui-debug-msg-level-' + errorLvl);
|
|
||||||
$('<span class="red-ui-debug-msg-topic">function : (' + errorLvlType + ')</span>').appendTo(metaRow);
|
|
||||||
} else {
|
|
||||||
var tools = $('<span class="red-ui-debug-msg-tools button-group"></span>').appendTo(metaRow);
|
|
||||||
var filterMessage = $('<button class="red-ui-button red-ui-button-small"><i class="fa fa-caret-down"></i></button>').appendTo(tools);
|
|
||||||
filterMessage.on("click", function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
showMessageMenu(filterMessage,debugMessage,sourceNode&&sourceNode.id);
|
|
||||||
});
|
|
||||||
$('<span class="red-ui-debug-msg-topic">'+
|
|
||||||
(o.topic?topic+' : ':'')+
|
|
||||||
(o.property?'msg.'+property:'msg')+" : "+format+
|
|
||||||
'</span>').appendTo(metaRow);
|
|
||||||
}
|
|
||||||
|
|
||||||
var atBottom = (sbc.scrollHeight-messageList.height()-sbc.scrollTop) < 5;
|
|
||||||
var m = {
|
|
||||||
el: msg
|
|
||||||
};
|
|
||||||
messages.push(m);
|
|
||||||
if (sourceNode) {
|
|
||||||
m.source = sourceNode;
|
|
||||||
messagesByNode[sourceNode.id] = m;
|
|
||||||
}
|
|
||||||
if (view == "list") {
|
|
||||||
messageList.append(msg);
|
|
||||||
} else {
|
|
||||||
if (sourceNode) {
|
|
||||||
var wrapper = $("#red-ui-debug-msg-source-"+sourceNode.id.replace(/\./g,"_"));
|
|
||||||
if (wrapper.length === 0 ) {
|
|
||||||
wrapper = $("<div>",{id:"red-ui-debug-msg-source-"+sourceNode.id.replace(/\./g,"_")}).appendTo(messageTable);
|
|
||||||
}
|
|
||||||
wrapper.empty();
|
|
||||||
wrapper.append(msg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (messages.length === numMessages) {
|
|
||||||
m = messages.shift();
|
|
||||||
if (view === "list") {
|
|
||||||
m.el.remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (atBottom) {
|
|
||||||
messageList.scrollTop(sbc.scrollHeight);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function clearMessageList(clearFilter, filteredOnly) {
|
|
||||||
if (!filteredOnly) {
|
|
||||||
$(".red-ui-debug-msg").remove();
|
|
||||||
} else {
|
|
||||||
$(".red-ui-debug-msg:not(.hide)").remove();
|
|
||||||
}
|
|
||||||
config.clear();
|
|
||||||
if (!!clearFilter) {
|
|
||||||
clearFilterSettings();
|
|
||||||
}
|
|
||||||
refreshDebugNodeList();
|
|
||||||
}
|
|
||||||
|
|
||||||
function clearFilterSettings() {
|
|
||||||
filteredNodes = {};
|
|
||||||
filterType = 'filterAll';
|
|
||||||
RED.settings.set("debug.filter",filterType);
|
|
||||||
RED.settings.set('debug.filteredNodes',Object.keys(filteredNodes))
|
|
||||||
$('#red-ui-sidebar-debug-filter span').text(RED._('node-red:debug.sidebar.filterAll'));
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
init: init,
|
|
||||||
refreshMessageList:refreshMessageList,
|
|
||||||
handleDebugMessage: handleDebugMessage,
|
|
||||||
clearMessageList: clearMessageList
|
|
||||||
}
|
|
||||||
})();
|
|
|
@ -1 +0,0 @@
|
||||||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg"><path color="#000" fill="#8c101c" d="M0 .002h32v32H0z"/><g color="#000"><path fill="#fff" d="M2 13.002h10v5H2zM19 8.002h10v5H19z"/><path d="M19 21.002h10v5H19z"/></g><path d="M11.5 15.502h2l4-5h2" fill="none" stroke="#fff" stroke-width="1.5"/></svg>
|
|
Before Width: | Height: | Size: 312 B |
|
@ -1 +0,0 @@
|
||||||
<svg width="27" height="18" xmlns="http://www.w3.org/2000/svg"><g fill="#fff" color="#000"><path d="M0 5h10v5H0zM17 0h10v5H17zM17 13h10v5H17z"/></g><path d="M9.5 7.5h2l4-5h2" fill="none" stroke="#fff" stroke-width="1.5"/></svg>
|
|
Before Width: | Height: | Size: 227 B |
|
@ -1 +0,0 @@
|
||||||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg"><path color="#000" fill="#8c101c" d="M0 0h32v32H0z"/><g fill="#fff" color="#000"><path d="M2 13h10v5H2zM19 8h10v5H19zM19 21h10v5H19z"/></g><path d="M11.5 15.5h2l4-5h2" fill="none" stroke="#fff" stroke-width="1.5"/></svg>
|
|
Before Width: | Height: | Size: 283 B |
|
@ -1 +0,0 @@
|
||||||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg"><path color="#000" fill="#8c101c" d="M0 .002h32v32H0z"/><path color="#000" d="M2 13.002h10v5H2zM19 21.002h10v5H19z"/><path d="M11.5 15.502h2l4-5h2" fill="none" stroke="#000" stroke-width="1.5"/><path color="#000" fill="#fff" d="M19 8.002h10v5H19z"/></svg>
|
|
Before Width: | Height: | Size: 318 B |
|
@ -1 +0,0 @@
|
||||||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg"><g color="#000"><path fill="#8c101c" d="M0 .006h32v32H0z"/><path d="M11.81 25.429a10.02 10.02 0 0 0 4.19.914c5.562 0 10.107-4.545 10.107-10.106S21.562 6.131 16 6.131 5.895 10.676 5.895 16.237h3.368c0-3.74 2.997-6.737 6.738-6.737s6.737 2.996 6.737 6.737-2.996 6.738-6.737 6.738a6.775 6.775 0 0 1-2.533-.486l1.43-3.48-6.947 1.317 2.13 8.485z" fill="#fff" style="isolation:auto;mix-blend-mode:normal;text-decoration-color:#000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-transform:none;white-space:normal"/></g></svg>
|
|
Before Width: | Height: | Size: 606 B |
|
@ -1,3 +0,0 @@
|
||||||
/** gridstack.js 0.6.4 - JQuery UI Drag&Drop plugin @preserve */
|
|
||||||
!function(t){if("function"==typeof define&&define.amd)define(["jquery","gridstack","exports"],t);else if("undefined"!=typeof exports){try{jQuery=require("jquery")}catch(t){}try{gridstack=require("gridstack")}catch(t){}t(jQuery,gridstack.GridStackUI,exports)}else t(jQuery,GridStackUI,window)}(function(a,e,t){function r(t){e.GridStackDragDropPlugin.call(this,t)}return e.GridStackDragDropPlugin.registerPlugin(r),((r.prototype=Object.create(e.GridStackDragDropPlugin.prototype)).constructor=r).prototype.resizable=function(t,e){if(t=a(t),"disable"===e||"enable"===e)t.resizable(e);else if("option"===e){var r=arguments[2],i=arguments[3];t.resizable(e,r,i)}else{var n=t.data("gs-resize-handles")?t.data("gs-resize-handles"):this.grid.opts.resizable.handles;t.resizable(a.extend({},this.grid.opts.resizable,{handles:n},{start:e.start||function(){},stop:e.stop||function(){},resize:e.resize||function(){}}))}return this},r.prototype.draggable=function(t,e){return t=a(t),"disable"===e||"enable"===e?t.draggable(e):t.draggable(a.extend({},this.grid.opts.draggable,{containment:this.grid.opts.isNested&&!this.grid.opts.dragOut?this.grid.container.parent():this.grid.opts.draggable.containment||null,start:e.start||function(){},stop:e.stop||function(){},drag:e.drag||function(){}})),this},r.prototype.droppable=function(t,e){return(t=a(t)).droppable(e),this},r.prototype.isDroppable=function(t,e){return t=a(t),Boolean(t.data("droppable"))},r.prototype.on=function(t,e,r){return a(t).on(e,r),this},t.JQueryUIGridStackDragDropPlugin=r});
|
|
||||||
//# sourceMappingURL=gridstack.min.map
|
|
|
@ -1,3 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<!-- saved from url=(0062)chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/index.html -->
|
|
||||||
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="viewport" content="width=device-width"><meta name="next-head-count" content="2"><link rel="preload" href="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/css/e1f3fc4f37b73b75.css" as="style"><link rel="stylesheet" href="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/css/e1f3fc4f37b73b75.css" data-n-g=""><link rel="preload" href="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/css/dbb3cce3661ac5c0.css" as="style"><link rel="stylesheet" href="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/css/dbb3cce3661ac5c0.css" data-n-p=""><link rel="preload" href="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/css/1e3285f6f12d0906.css" as="style"><link rel="stylesheet" href="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/css/1e3285f6f12d0906.css" data-n-p=""><noscript data-n-css=""></noscript><script defer="" nomodule="" src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/chunks/polyfills-0d1b80a048d4787e.js"></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/chunks/webpack-9416c693c650cdc9.js" defer=""></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/chunks/framework-25a828f663c71176.js" defer=""></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/chunks/main-7b75b77264532375.js" defer=""></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/chunks/pages/_app-004a08b02ae3936b.js" defer=""></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/chunks/247-687a9dcc57d11d43.js" defer=""></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/chunks/457-681ed9a1ace1278b.js" defer=""></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/chunks/917-2a929b26e0e3c9e3.js" defer=""></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/chunks/236-81a5b0e797edebba.js" defer=""></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/chunks/pages/index-39af106d4b750cab.js" defer=""></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/MlRHwSEgi8a1HKafQVEF9/_buildManifest.js" defer=""></script><script src="chrome-extension://knjbgabkeojmfdhindppcmhhfiembkeb/next/static/MlRHwSEgi8a1HKafQVEF9/_ssgManifest.js" defer=""></script></head><body><div id="__next" data-reactroot=""><div class="_12u1he45d"><div class="_8jp051a ouiv4n5 _12u1he418 _12u1he436 _12u1he44e _12u1he445 _12u1he413 _12u1he481 _12u1he486 _12u1he48j _12u1he41t _12u1he454"><nav class="_12u1he44e _12u1he43z"><button class="kkxc9fv _12u1he43k _12u1he44e _12u1he418 _12u1he453 _12u1he44c kkxc9f19 kkxc9fy kkxc9fm kkxc9f1b "><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.38618 4.38612C4.64978 4.12251 5.07717 4.12251 5.34077 4.38612L9.00005 8.0454L12.6593 4.38612C12.9229 4.12251 13.3503 4.12251 13.6139 4.38612C13.8775 4.64972 13.8775 5.07711 13.6139 5.34071L9.95465 8.99999L13.6139 12.6593C13.8775 12.9229 13.8775 13.3503 13.6139 13.6139C13.3503 13.8775 12.9229 13.8775 12.6593 13.6139L9.00005 9.95458L5.34077 13.6139C5.07717 13.8775 4.64978 13.8775 4.38618 13.6139C4.12258 13.3503 4.12258 12.9229 4.38618 12.6593L8.04546 8.99999L4.38618 5.34071C4.12258 5.07711 4.12258 4.64972 4.38618 4.38612Z" fill="currentColor"></path></svg></button></nav></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{}},"page":"/","query":{},"buildId":"MlRHwSEgi8a1HKafQVEF9","nextExport":true,"autoExport":true,"isFallback":false,"scriptLoader":[]}</script><next-route-announcer><p aria-live="assertive" id="__next-route-announcer__" role="alert" style="border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;"></p></next-route-announcer></body></html>
|
|
|
@ -1,16 +0,0 @@
|
||||||
/**
|
|
||||||
* Copyright OpenJS Foundation and other contributors, https://openjsf.org/
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
**/
|
|
||||||
$(function(){"localhost"!==window.location.hostname&&"127.0.0.1"!==window.location.hostname&&(document.title=document.title+" : "+window.location.hostname),RED.init({apiRootUrl:""})});
|
|
|
@ -1,26 +0,0 @@
|
||||||
(function() {
|
|
||||||
var _isIE = /MSIE \d|Trident.*rv:/.test(navigator.userAgent);
|
|
||||||
//dont load monaco if IE
|
|
||||||
if(_isIE === false) {
|
|
||||||
var userLocale = (localStorage.getItem("editor-language") + "")
|
|
||||||
var browserLocale = typeof navigator === "undefined" ? "" : (navigator.language || navigator.userLanguage || "");
|
|
||||||
var cultureDists = {
|
|
||||||
"zh-cn":"zh-hans",
|
|
||||||
"zh-tw":"zh-hant",
|
|
||||||
"ja":"ja",
|
|
||||||
"ko":"ko",
|
|
||||||
"de":"de",
|
|
||||||
"fr":"fr",
|
|
||||||
"it":"it",
|
|
||||||
"es":"es",
|
|
||||||
"ru":"ru",
|
|
||||||
"tr":"tr",
|
|
||||||
"pl":"pl",
|
|
||||||
"pt-br":"pt-br",
|
|
||||||
"cs":"cs"
|
|
||||||
};
|
|
||||||
var uiLanguage = cultureDists[userLocale.toLowerCase()] || cultureDists[browserLocale.toLowerCase()];
|
|
||||||
if(uiLanguage) document.write('<script src="vendor/monaco/dist/locale/' + uiLanguage + '.js"><\/script>');
|
|
||||||
document.write('<script src="vendor/monaco/dist/editor.js"><\/script>');
|
|
||||||
}
|
|
||||||
})();
|
|
|
@ -1 +0,0 @@
|
||||||
<svg width="46.994" height="18.006" xmlns="http://www.w3.org/2000/svg"><g stroke="#d6d6d6"><g fill="#9e3131" stroke-linejoin="round" stroke-width="3.847" transform="matrix(.25848 0 0 .2614 -63.87 -108.483)"><rect x="249.04" y="435.92" width="50.294" height="22.953" ry="6.608"/><rect x="345.63" y="416.93" width="50.294" height="22.953" ry="6.608"/><rect x="376.71" y="459.01" width="50.294" height="22.953" ry="6.608"/></g><path d="M301.04 447.43c24.406.184 7.107-18.84 42.708-19.03M374.82 470.48c-46.966.538-28.989-22.664-73.619-22.944" fill="none" stroke-width="5.771" transform="matrix(.25848 0 0 .2614 -63.87 -108.483)"/></g></svg>
|
|
Before Width: | Height: | Size: 636 B |
|
@ -1,41 +0,0 @@
|
||||||
<!--
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2014 Brent Jackson
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
||||||
this software and associated documentation files (the "Software"), to deal in
|
|
||||||
the Software without restriction, including without limitation the rights to use,
|
|
||||||
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
|
||||||
Software, and to permit persons to whom the Software is furnished to do so,
|
|
||||||
subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
||||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
||||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
||||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
||||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
https://github.com/jxnblk/loading
|
|
||||||
-->
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" fill="#999">
|
|
||||||
<path transform="translate(2)" d="M0 12 V20 H4 V12z">
|
|
||||||
<animate attributeName="d" values="M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z" dur="1.2s" repeatCount="indefinite" begin="0" keytimes="0;.2;.5;1" keySplines="0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8" calcMode="spline" />
|
|
||||||
</path>
|
|
||||||
<path transform="translate(8)" d="M0 12 V20 H4 V12z">
|
|
||||||
<animate attributeName="d" values="M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z" dur="1.2s" repeatCount="indefinite" begin="0.2" keytimes="0;.2;.5;1" keySplines="0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8" calcMode="spline" />
|
|
||||||
</path>
|
|
||||||
<path transform="translate(14)" d="M0 12 V20 H4 V12z">
|
|
||||||
<animate attributeName="d" values="M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z" dur="1.2s" repeatCount="indefinite" begin="0.4" keytimes="0;.2;.5;1" keySplines="0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8" calcMode="spline" />
|
|
||||||
</path>
|
|
||||||
<path transform="translate(20)" d="M0 12 V20 H4 V12z">
|
|
||||||
<animate attributeName="d" values="M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z" dur="1.2s" repeatCount="indefinite" begin="0.6" keytimes="0;.2;.5;1" keySplines="0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8" calcMode="spline" />
|
|
||||||
</path>
|
|
||||||
<path transform="translate(26)" d="M0 12 V20 H4 V12z">
|
|
||||||
<animate attributeName="d" values="M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z" dur="1.2s" repeatCount="indefinite" begin="0.8" keytimes="0;.2;.5;1" keySplines="0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8" calcMode="spline" />
|
|
||||||
</path>
|
|
||||||
</svg>
|
|
|
@ -1,22 +0,0 @@
|
||||||
/*
|
|
||||||
Some classes and styles in node-red affect the monaco editor.
|
|
||||||
This stylesheet overrides those to correct some graphical glitches
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* unset `margin-left: 180px` of `.controls` class for hover tips */
|
|
||||||
.monaco-editor div.phwrapper > div.controls {
|
|
||||||
margin-left: unset;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* unset some styles of `code` tag (set by node-red css) for monaco hover items */
|
|
||||||
.monaco-editor .monaco-hover code {
|
|
||||||
font-size: unset;
|
|
||||||
color: unset;
|
|
||||||
margin: unset;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* unset some styles of `input` tag (set by node-red css) for monaco rename box */
|
|
||||||
.monaco-editor .rename-box .rename-input {
|
|
||||||
box-sizing: unset;
|
|
||||||
height: unset;
|
|
||||||
}
|
|
|
@ -1,126 +0,0 @@
|
||||||
# Changelog
|
|
||||||
|
|
||||||
## 0.6.4 (2022-12-13)
|
|
||||||
|
|
||||||
- **Chore** backend binaries are now compiled with go 1.19.4
|
|
||||||
|
|
||||||
## 0.6.3 (2021-12-03)
|
|
||||||
|
|
||||||
- **Chore** backend binaries are now compiled with go 1.19.3
|
|
||||||
- **Chore** frontend npm dependencies updated
|
|
||||||
- **Chore** added spellcheck
|
|
||||||
|
|
||||||
## 0.6.2 (2021-10-14)
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.6.1...v0.6.2)
|
|
||||||
|
|
||||||
- Fixed the broken docs and links
|
|
||||||
|
|
||||||
## 0.6.1 (2021-06-22)
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.6.0...v0.6.1)
|
|
||||||
|
|
||||||
### Bug fixes
|
|
||||||
|
|
||||||
- allow_local_mode accepts any value
|
|
||||||
|
|
||||||
## 0.6.0 (2021-06-21)
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.5.0...v0.6.0)
|
|
||||||
|
|
||||||
### Enhancements
|
|
||||||
|
|
||||||
- Disable local mode by default. To use local mode, allow it in your grafana.ini:
|
|
||||||
|
|
||||||
```ini
|
|
||||||
[plugin.marcusolsson-csv-datasource]
|
|
||||||
allow_local_mode = true
|
|
||||||
```
|
|
||||||
|
|
||||||
## 0.5.0 (2021-03-21)
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.4.1...v0.5.0)
|
|
||||||
|
|
||||||
### Enhancements
|
|
||||||
|
|
||||||
- Improved query editor with support for HTTP params, headers, and body.
|
|
||||||
- Add support for relative paths ([#69](https://github.com/grafana/grafana-csv-datasource/issues/69))
|
|
||||||
- Add support for decimal separators ([#43](https://github.com/grafana/grafana-csv-datasource/issues/43))
|
|
||||||
- **EXPERIMENTAL:** Add support for regular expressions in field names ([#68](https://github.com/grafana/grafana-csv-datasource/issues/68)). Must be enabled in the Experimental tab in the query editor.
|
|
||||||
|
|
||||||
### Bug fixes
|
|
||||||
|
|
||||||
- **BREAKING:** Remove default Accept header ([#56](https://github.com/grafana/grafana-csv-datasource/issues/56)). If your data source expects `Accept: text/csv` on the request, you now need to add it yourself in the Params tab.
|
|
||||||
|
|
||||||
## 0.4.1 (2021-03-21)
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.4.0...v0.4.1)
|
|
||||||
|
|
||||||
### Bug fixes
|
|
||||||
|
|
||||||
- Wrong data format is detected
|
|
||||||
|
|
||||||
## 0.4.0 (2021-03-21)
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.3.3...v0.4.0)
|
|
||||||
|
|
||||||
### Enhancements
|
|
||||||
|
|
||||||
- Add support for annotation queries
|
|
||||||
- Add support for variables queries ([#30](https://github.com/grafana/grafana-csv-datasource/issues/30))
|
|
||||||
- Upgrade @grafana/\* packages
|
|
||||||
- Upgrade Grafana Go SDK
|
|
||||||
|
|
||||||
## 0.3.3 (2021-02-05)
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.3.2...v0.3.3)
|
|
||||||
|
|
||||||
### Bug fixes
|
|
||||||
|
|
||||||
- Default to HTTP if no storage type has been set
|
|
||||||
|
|
||||||
## 0.3.2 (2021-02-03)
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.3.1...v0.3.2)
|
|
||||||
|
|
||||||
### Bug fixes
|
|
||||||
|
|
||||||
- Allow lazy quotes ([#17](https://github.com/grafana/grafana-csv-datasource/issues/17))
|
|
||||||
|
|
||||||
## 0.3.1
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.3.0...v0.3.1)
|
|
||||||
|
|
||||||
### Enhancements
|
|
||||||
|
|
||||||
- Update grafana-plugin-sdk-go to v0.83.0
|
|
||||||
|
|
||||||
### Bug fixes
|
|
||||||
|
|
||||||
- Ignore empty custom HTTP headers
|
|
||||||
- Fix duplicate JSON tag for TLS skip verify
|
|
||||||
|
|
||||||
## 0.3.0
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.2.0...v0.3.0)
|
|
||||||
|
|
||||||
### Enhancements
|
|
||||||
|
|
||||||
- Add ARM support ([#13](https://github.com/grafana/grafana-csv-datasource/issues/13))
|
|
||||||
|
|
||||||
### Bug fixes
|
|
||||||
|
|
||||||
- Windows: Paths with backslashes don't work ([#14](https://github.com/grafana/grafana-csv-datasource/issues/14))
|
|
||||||
|
|
||||||
## 0.2.0
|
|
||||||
|
|
||||||
[Full changelog](https://github.com/grafana/grafana-csv-datasource/compare/v0.1.0...v0.2.0)
|
|
||||||
|
|
||||||
### Enhancements
|
|
||||||
|
|
||||||
- Add support for local CSV files ([#6](https://github.com/grafana/grafana-csv-datasource/issues/6))
|
|
||||||
- Add a default Accept header for text/csv
|
|
||||||
|
|
||||||
## 0.1.0
|
|
||||||
|
|
||||||
Initial release. Not fit for production use.
|
|
|
@ -1,201 +0,0 @@
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright 2022 Grafana Labs
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
|
@ -1,38 +0,0 @@
|
||||||
|
|
||||||
-----BEGIN PGP SIGNED MESSAGE-----
|
|
||||||
Hash: SHA512
|
|
||||||
|
|
||||||
{
|
|
||||||
"manifestVersion": "2.0.0",
|
|
||||||
"signatureType": "community",
|
|
||||||
"signedByOrg": "marcusolsson",
|
|
||||||
"signedByOrgName": "Marcus Olsson",
|
|
||||||
"plugin": "marcusolsson-csv-datasource",
|
|
||||||
"version": "0.6.3",
|
|
||||||
"time": 1670932858740,
|
|
||||||
"keyId": "7e4d0c6a708866e7",
|
|
||||||
"files": {
|
|
||||||
"CHANGELOG.md": "6d89b3325adfe2067a5ccde632bc0197416a6d99bb89367dd5b1232af8dcc19f",
|
|
||||||
"LICENSE": "ee4141d02acd9ce8d5ec0b3b79fc286a7e2b2c430f8b58bc6261446c0dd9b23c",
|
|
||||||
"README.md": "ea7dbb5d4897d88a3c6da91bf38198ae4c64b7b4ea8f4775aef2cd36c17d4f5c",
|
|
||||||
"gpx_csv-datasource_linux_amd64": "f7f5377cf081dd2d9e7f430961e2a4966602e8a9a977ea7134f1d5dbcb225f50",
|
|
||||||
"img/dark.png": "9e0d577c29d983d7c258ea5704ecdc3e574ff3d16cb9762e9b7fd06a13630daa",
|
|
||||||
"img/light.png": "e71042db587b73f3b6f5e90df09b9d74213060632a3b22250f483a55c752e287",
|
|
||||||
"img/logo.svg": "0bcb07e8f33b833bc4e5ac340feb0997a71dec4c0d8f497feaac775823bbb091",
|
|
||||||
"module.js": "8227c9542931ba495d44eb41892bc02353a393210cdcebeb78469ddda2881c53",
|
|
||||||
"module.js.LICENSE.txt": "347dbeed2228865f29a62b3b23a7c78b97d65d0fe6842c394dd2c9af2b622204",
|
|
||||||
"module.js.map": "6ea7b34a636260bc60386d1a50c07906039a5b35ad748bc4c63c2255d0765543",
|
|
||||||
"plugin.json": "cd567eeb6720a4b38687247f88022e69fff45789942455697889526c8a9e4c9e"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
Version: OpenPGP.js v4.10.10
|
|
||||||
Comment: https://openpgpjs.org
|
|
||||||
|
|
||||||
wrcEARMKAAYFAmOYaXsAIQkQfk0ManCIZucWIQTzOyW2kQdOhGNlcPN+TQxq
|
|
||||||
cIhm568wAgjrXk/7S8MfIJEuvkjczmQ9h22LxwlKMxMNAWoGv/U7/g48Nexy
|
|
||||||
gDuPrFIZGALfrFKOUwUCpkFIbLh6YjG3xAHxmwIFF0fD4dMccyv98W8Hpy50
|
|
||||||
dcOt70EG6ap8zs9QakcvIaNN3JLeoj8BEc0lwutxIHZdZBDEfsL6Ebd6zoY7
|
|
||||||
hgvDQzU=
|
|
||||||
=91CK
|
|
||||||
-----END PGP SIGNATURE-----
|
|
|
@ -1,17 +0,0 @@
|
||||||
# CSV data source for Grafana
|
|
||||||
|
|
||||||
[![Build](https://github.com/grafana/grafana-csv-datasource/workflows/CI/badge.svg)](https://github.com/grafana/grafana-csv-datasource/actions?query=workflow%3A%22CI%22)
|
|
||||||
[![Release](https://github.com/grafana/grafana-csv-datasource/workflows/Release/badge.svg)](https://github.com/grafana/grafana-csv-datasource/actions?query=workflow%3ARelease)
|
|
||||||
[![Marketplace](https://img.shields.io/badge/dynamic/json?logo=grafana&color=F47A20&label=marketplace&prefix=v&query=%24.items%5B%3F%28%40.slug%20%3D%3D%20%22marcusolsson-csv-datasource%22%29%5D.version&url=https%3A%2F%2Fgrafana.com%2Fapi%2Fplugins)](https://grafana.com/grafana/plugins/marcusolsson-csv-datasource)
|
|
||||||
[![Downloads](https://img.shields.io/badge/dynamic/json?logo=grafana&color=F47A20&label=downloads&query=%24.items%5B%3F%28%40.slug%20%3D%3D%20%22marcusolsson-csv-datasource%22%29%5D.downloads&url=https%3A%2F%2Fgrafana.com%2Fapi%2Fplugins)](https://grafana.com/grafana/plugins/marcusolsson-csv-datasource)
|
|
||||||
[![License](https://img.shields.io/github/license/grafana/grafana-csv-datasource)](LICENSE)
|
|
||||||
|
|
||||||
> **Maintenance**: Now the plugin is being maintained by Grafana Labs. Big thanks to [Marcus Olsson](https://twitter.com/marcusolsson) for the awesome work!
|
|
||||||
|
|
||||||
A data source for loading CSV data into [Grafana](https://grafana.com).
|
|
||||||
|
|
||||||
![Screenshot](https://github.com/grafana/grafana-csv-datasource/raw/main/src/img/dark.png)
|
|
||||||
|
|
||||||
## Documentation
|
|
||||||
|
|
||||||
Full documentation for the plugin is available on the [website](https://grafana.github.io/grafana-csv-datasource).
|
|
Before Width: | Height: | Size: 333 KiB |
Before Width: | Height: | Size: 330 KiB |
|
@ -1 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 460 460" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><circle cx="229.735" cy="229.735" r="183.477" style="fill:#3865ab;"/><path d="M229.735,-0c126.794,-0 229.735,102.941 229.735,229.735c0,126.794 -102.941,229.735 -229.735,229.735c-126.794,0 -229.735,-102.941 -229.735,-229.735c-0,-126.794 102.941,-229.735 229.735,-229.735Zm0,22.974c114.115,-0 206.762,92.646 206.762,206.761c-0,114.115 -92.647,206.762 -206.762,206.762c-114.115,-0 -206.761,-92.647 -206.761,-206.762c-0,-114.115 92.646,-206.761 206.761,-206.761Z" style="fill:#84aff1;"/><path d="M257.412,121.205c4.1,4.342 6.15,12.784 6.15,25.325l0,1.448c0,5.788 -0.181,10.069 -0.543,12.843c-0.361,2.774 -1.628,6.09 -3.798,9.949c-3.618,6.995 -12.723,10.492 -27.315,10.492c-14.592,-0 -24.24,-2.291 -28.943,-6.874c-4.703,-4.583 -7.055,-13.266 -7.055,-26.049l0,-1.447c0,-5.547 0.181,-9.768 0.543,-12.662c0.362,-2.895 1.507,-6.271 3.437,-10.13c3.618,-6.995 12.723,-10.492 27.315,-10.492c14.592,-0 24.661,2.532 30.209,7.597Zm-0,115.41c4.1,4.1 6.15,12.542 6.15,25.325l0,1.447c0,26.531 -6.994,49.203 -20.984,68.016c-11.335,15.195 -24.601,22.792 -39.796,22.792c-1.688,0 -3.196,-1.266 -4.522,-3.798c-1.327,-2.533 -1.99,-5.849 -1.99,-9.949c-0,-4.101 0.543,-7.296 1.628,-9.588c1.085,-2.291 2.472,-3.738 4.16,-4.341c1.689,-0.603 3.377,-1.568 5.065,-2.894c1.689,-1.327 4.161,-4.583 7.417,-9.769c3.256,-5.185 5.125,-11.034 5.608,-17.546c-7.96,-0.965 -13.989,-3.437 -18.09,-7.417c-4.1,-3.979 -6.15,-12.361 -6.15,-25.144l0,-1.447c0,-5.547 0.181,-9.768 0.543,-12.663c0.362,-2.894 1.507,-6.15 3.437,-9.768c3.618,-7.236 12.723,-10.853 27.315,-10.853c14.592,-0 24.661,2.532 30.209,7.597Z" style="fill:url(#_Linear1);fill-rule:nonzero;"/><defs><linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.38182e-14,260.088,-225.669,1.59258e-14,299.698,88.1174)"><stop offset="0" style="stop-color:#f2cc0c;stop-opacity:1"/><stop offset="1" style="stop-color:#ff9830;stop-opacity:1"/></linearGradient></defs></svg>
|
|
Before Width: | Height: | Size: 2.3 KiB |
|
@ -1,11 +0,0 @@
|
||||||
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
||||||
|
|
||||||
//! Copyright (c) JS Foundation and other contributors
|
|
||||||
|
|
||||||
//! github.com/moment/moment-timezone
|
|
||||||
|
|
||||||
//! license : MIT
|
|
||||||
|
|
||||||
//! moment-timezone.js
|
|
||||||
|
|
||||||
//! version : 0.5.38
|
|
|
@ -1,64 +0,0 @@
|
||||||
{
|
|
||||||
"$schema": "https://github.com/grafana/grafana/raw/main/docs/sources/developers/plugins/plugin.schema.json",
|
|
||||||
"alerting": true,
|
|
||||||
"annotations": true,
|
|
||||||
"backend": true,
|
|
||||||
"dependencies": {
|
|
||||||
"grafanaDependency": "\u003e=8.4.7",
|
|
||||||
"grafanaVersion": "8.4.7",
|
|
||||||
"plugins": []
|
|
||||||
},
|
|
||||||
"executable": "gpx_csv-datasource",
|
|
||||||
"id": "marcusolsson-csv-datasource",
|
|
||||||
"info": {
|
|
||||||
"author": {
|
|
||||||
"name": "Grafana Labs",
|
|
||||||
"url": "https://grafana.com"
|
|
||||||
},
|
|
||||||
"build": {
|
|
||||||
"time": 1670932852698,
|
|
||||||
"repo": "https://github.com/grafana/grafana-csv-datasource",
|
|
||||||
"branch": "main",
|
|
||||||
"hash": "29675413b7a78c36ce2bea100a4d733a0eb05418",
|
|
||||||
"build": 17
|
|
||||||
},
|
|
||||||
"description": "A data source for loading CSV data",
|
|
||||||
"keywords": [
|
|
||||||
"csv"
|
|
||||||
],
|
|
||||||
"links": [
|
|
||||||
{
|
|
||||||
"name": "Documentation",
|
|
||||||
"url": "https://grafana.github.io/grafana-csv-datasource"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Website",
|
|
||||||
"url": "https://github.com/grafana/grafana-csv-datasource"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "License",
|
|
||||||
"url": "https://github.com/grafana/grafana-csv-datasource/blob/main/LICENSE"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"logos": {
|
|
||||||
"large": "img/logo.svg",
|
|
||||||
"small": "img/logo.svg"
|
|
||||||
},
|
|
||||||
"screenshots": [
|
|
||||||
{
|
|
||||||
"name": "Explore (Dark)",
|
|
||||||
"path": "img/dark.png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Explore (Light)",
|
|
||||||
"path": "img/light.png"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"updated": "2022-12-13",
|
|
||||||
"version": "0.6.3"
|
|
||||||
},
|
|
||||||
"logs": true,
|
|
||||||
"metrics": true,
|
|
||||||
"name": "CSV",
|
|
||||||
"type": "datasource"
|
|
||||||
}
|
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000001.tsl"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000001.tsl"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000001.tsl"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000001.tsl"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000001.tsl"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000001.tsl"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000001.tsl"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000001.tsl"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,39 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000005.tsl",
|
|
||||||
"L1-00000003.tsi",
|
|
||||||
"L2-00000004.tsi"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000003.tsl",
|
|
||||||
"L2-00000004.tsi"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000003.tsl",
|
|
||||||
"L2-00000004.tsi"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|
|
@ -1,39 +0,0 @@
|
||||||
{
|
|
||||||
"levels": [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 33554432,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 67108864,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 134217728,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 268435456,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 536870912,
|
|
||||||
"k": 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"m": 1073741824,
|
|
||||||
"k": 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"L0-00000005.tsl",
|
|
||||||
"L1-00000003.tsi",
|
|
||||||
"L2-00000004.tsi"
|
|
||||||
],
|
|
||||||
"version": 1
|
|
||||||
}
|
|