Node-red and Check_mk
-
Hi,
i'm struggling with the communication between node-red and check_mk. The idea was to trigger an event (in check_mk) through a namped_pipe provided by checkmk. Therefore you can write a text message (e.g. '<78>Dec 18 10:40:00 myserver123 MyApplication: It happened again.') locally to the named pipe to trigger an event.
Now everything should work in a node. The node should check the string for various test criteria and then write the string on the named pipe.
To transfer the string to the named pipe i used these code-lines:
var fs = require('fs'); var writableStream = fs.createWriteStream('/opt/omd/sites/monitoring/tmp/run/mkeventd/events'); writableStream.write(Msg);Now the Problem:
If i declare the string within the js-file (which i need to create a node) and then transfer it to writableStream.write(); everything works fine and an event in checkmk gets triggered.
But if im defining a string outside the node (like in an inject-node; msg.payload) and then using it in my node... the triggering fails.
Here are some Variantes i tried without any success.
//Var1 var Msg2 = msg.payload; . . writableStream.write(Msg2); //Var2 writableStream.write(msg.payload); //Var3 var Msg2 = msg.payload; Msg2 = Msg2.toString(); writableStream.write(Msg2);Any advices will be taken with much gratitude :)
regards
Arun
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login