@theotherwillembotha/node-red-loki 0.0.56 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/Nodes.html +5 -2
- package/build/Plugins.js +0 -1
- package/package.json +2 -2
package/build/Nodes.html
CHANGED
|
@@ -730,11 +730,14 @@ Mustache/Handlebars templates build the message string pushed to Loki.
|
|
|
730
730
|
width: 120px !important;
|
|
731
731
|
}
|
|
732
732
|
|
|
733
|
-
.towb_editorfield
|
|
733
|
+
input.towb_editorfield,
|
|
734
|
+
select.towb_editorfield,
|
|
735
|
+
textarea.towb_editorfield {
|
|
734
736
|
width: 70% !important;
|
|
735
737
|
}
|
|
736
738
|
|
|
737
|
-
.towb_editorfield_short
|
|
739
|
+
input.towb_editorfield_short,
|
|
740
|
+
select.towb_editorfield_short {
|
|
738
741
|
width: 30% !important;
|
|
739
742
|
}
|
|
740
743
|
|
package/build/Plugins.js
CHANGED
|
@@ -26,7 +26,6 @@ module.exports = function (RED) {
|
|
|
26
26
|
let plugin = RED.plugins.get(pluginID);
|
|
27
27
|
|
|
28
28
|
if(addedPlugin && plugin.instantiate && !plugin.instance){
|
|
29
|
-
console.log("Deploying instance of: " + plugin.id);
|
|
30
29
|
plugin.instance = new plugin.class();
|
|
31
30
|
|
|
32
31
|
// instantiate the plugin.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theotherwillembotha/node-red-loki",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Grafana Loki integration for Node-RED ( service config, logger, and LogQL query node). Built on @theotherwillembotha/node-red-plugincore.",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"exports": "./build/index.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"nodered": ">=4.0.0"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@theotherwillembotha/node-red-plugincore": "^0.0
|
|
42
|
+
"@theotherwillembotha/node-red-plugincore": "^0.1.0",
|
|
43
43
|
"axios": "^1.7.0",
|
|
44
44
|
"winston": "^3.17.0",
|
|
45
45
|
"winston-loki": "^6.1.3"
|