rsyslog: Forward different message types to same server with different templateswhat's causing rsyslog to log $msg**INVALID PROPERTY NAME** instead of the message contents from sonicwall devices?How to forward specific log file outside of /var/log with rsyslog to remote server?Writing templates for rsyslogrsyslog - Different logs for different IP addresses?Templates in Rsyslog 8.17Rsyslog hangs after memory usage 456 MBrsyslog truncate message also with $MaxMessageSizersyslog: using message properties in a templateRsyslog - forward via HTTP postFilter rsyslog message by user

Why didn't Boeing produce its own regional jet?

Forgetting the musical notes while performing in concert

Is it inappropriate for a student to attend their mentor's dissertation defense?

What is a Samsaran Word™?

Car headlights in a world without electricity

how do we prove that a sum of two periods is still a period?

Is it a bad idea to plug the other end of ESD strap to wall ground?

Is it possible to map the firing of neurons in the human brain so as to stimulate artificial memories in someone else?

How can I deal with my CEO asking me to hire someone with a higher salary than me, a co-founder?

Placement of More Information/Help Icon button for Radio Buttons

How could indestructible materials be used in power generation?

In the UK, is it possible to get a referendum by a court decision?

Using "tail" to follow a file without displaying the most recent lines

Is this answer explanation correct?

Am I breaking OOP practice with this architecture?

Are British MPs missing the point, with these 'Indicative Votes'?

Could the museum Saturn V's be refitted for one more flight?

Is there an expression that means doing something right before you will need it rather than doing it in case you might need it?

How to remove border from elements in the last row?

How to Prove P(a) → ∀x(P(x) ∨ ¬(x = a)) using Natural Deduction

Why was the shrink from 8″ made only to 5.25″ and not smaller (4″ or less)

files created then deleted at every second in tmp directory

Is it "common practice in Fourier transform spectroscopy to multiply the measured interferogram by an apodizing function"? If so, why?

Can someone clarify Hamming's notion of important problems in relation to modern academia?



rsyslog: Forward different message types to same server with different templates


what's causing rsyslog to log $msg**INVALID PROPERTY NAME** instead of the message contents from sonicwall devices?How to forward specific log file outside of /var/log with rsyslog to remote server?Writing templates for rsyslogrsyslog - Different logs for different IP addresses?Templates in Rsyslog 8.17Rsyslog hangs after memory usage 456 MBrsyslog truncate message also with $MaxMessageSizersyslog: using message properties in a templateRsyslog - forward via HTTP postFilter rsyslog message by user













0















I have the following rsyslog config:



template(name="logz.io" type="string" string="[TOKEN] 
<%pri%>%protocol-version% %timestamp:::date-rfc3339% [hostname]
%app-name% %procid% %msgid% tag="syslog"] %msg%n")

# Send messages over TCP using the template.
action(type="omfwd" protocol="tcp" target="listener.logz.io" port="5001"
template="logz.io" StreamDriver="gtls" StreamDriverMode="1"
StreamDriverAuthMode="x509/name" StreamDriverPermittedPeers="*.logz.io")


Now I would like to have the type="string" set according to one of the message type. So I could create individual templates for each type like



template(name="logz.io_nginx" type="nginx" string="[TOKEN] 
<%pri%>%protocol-version% %timestamp:::date-rfc3339% [hostname]
%app-name% %procid% %msgid% tag="nginx"] %msg%n")


However this means that the action should call the correct template based on the type.



  1. How would I configure rsyslog to use the same action with different template?

  2. Could I just have one template but for example the type parameter dynamically set dependent on the message type?









share|improve this question


























    0















    I have the following rsyslog config:



    template(name="logz.io" type="string" string="[TOKEN] 
    <%pri%>%protocol-version% %timestamp:::date-rfc3339% [hostname]
    %app-name% %procid% %msgid% tag="syslog"] %msg%n")

    # Send messages over TCP using the template.
    action(type="omfwd" protocol="tcp" target="listener.logz.io" port="5001"
    template="logz.io" StreamDriver="gtls" StreamDriverMode="1"
    StreamDriverAuthMode="x509/name" StreamDriverPermittedPeers="*.logz.io")


    Now I would like to have the type="string" set according to one of the message type. So I could create individual templates for each type like



    template(name="logz.io_nginx" type="nginx" string="[TOKEN] 
    <%pri%>%protocol-version% %timestamp:::date-rfc3339% [hostname]
    %app-name% %procid% %msgid% tag="nginx"] %msg%n")


    However this means that the action should call the correct template based on the type.



    1. How would I configure rsyslog to use the same action with different template?

    2. Could I just have one template but for example the type parameter dynamically set dependent on the message type?









    share|improve this question
























      0












      0








      0








      I have the following rsyslog config:



      template(name="logz.io" type="string" string="[TOKEN] 
      <%pri%>%protocol-version% %timestamp:::date-rfc3339% [hostname]
      %app-name% %procid% %msgid% tag="syslog"] %msg%n")

      # Send messages over TCP using the template.
      action(type="omfwd" protocol="tcp" target="listener.logz.io" port="5001"
      template="logz.io" StreamDriver="gtls" StreamDriverMode="1"
      StreamDriverAuthMode="x509/name" StreamDriverPermittedPeers="*.logz.io")


      Now I would like to have the type="string" set according to one of the message type. So I could create individual templates for each type like



      template(name="logz.io_nginx" type="nginx" string="[TOKEN] 
      <%pri%>%protocol-version% %timestamp:::date-rfc3339% [hostname]
      %app-name% %procid% %msgid% tag="nginx"] %msg%n")


      However this means that the action should call the correct template based on the type.



      1. How would I configure rsyslog to use the same action with different template?

      2. Could I just have one template but for example the type parameter dynamically set dependent on the message type?









      share|improve this question














      I have the following rsyslog config:



      template(name="logz.io" type="string" string="[TOKEN] 
      <%pri%>%protocol-version% %timestamp:::date-rfc3339% [hostname]
      %app-name% %procid% %msgid% tag="syslog"] %msg%n")

      # Send messages over TCP using the template.
      action(type="omfwd" protocol="tcp" target="listener.logz.io" port="5001"
      template="logz.io" StreamDriver="gtls" StreamDriverMode="1"
      StreamDriverAuthMode="x509/name" StreamDriverPermittedPeers="*.logz.io")


      Now I would like to have the type="string" set according to one of the message type. So I could create individual templates for each type like



      template(name="logz.io_nginx" type="nginx" string="[TOKEN] 
      <%pri%>%protocol-version% %timestamp:::date-rfc3339% [hostname]
      %app-name% %procid% %msgid% tag="nginx"] %msg%n")


      However this means that the action should call the correct template based on the type.



      1. How would I configure rsyslog to use the same action with different template?

      2. Could I just have one template but for example the type parameter dynamically set dependent on the message type?






      rsyslog






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 10 at 10:36









      papanitopapanito

      208




      208




















          1 Answer
          1






          active

          oldest

          votes


















          0














          How is rsyslog supposed to know the message type, which is a logz concept and not an rsyslogd concept?
          You will probably have to distinguish the action based on syslogtag/programname, using an if statement, and chose the appropriate template within the if-then-block.






          share|improve this answer























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "2"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f953204%2frsyslog-forward-different-message-types-to-same-server-with-different-templates%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            How is rsyslog supposed to know the message type, which is a logz concept and not an rsyslogd concept?
            You will probably have to distinguish the action based on syslogtag/programname, using an if statement, and chose the appropriate template within the if-then-block.






            share|improve this answer



























              0














              How is rsyslog supposed to know the message type, which is a logz concept and not an rsyslogd concept?
              You will probably have to distinguish the action based on syslogtag/programname, using an if statement, and chose the appropriate template within the if-then-block.






              share|improve this answer

























                0












                0








                0







                How is rsyslog supposed to know the message type, which is a logz concept and not an rsyslogd concept?
                You will probably have to distinguish the action based on syslogtag/programname, using an if statement, and chose the appropriate template within the if-then-block.






                share|improve this answer













                How is rsyslog supposed to know the message type, which is a logz concept and not an rsyslogd concept?
                You will probably have to distinguish the action based on syslogtag/programname, using an if statement, and chose the appropriate template within the if-then-block.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered yesterday









                Alexander StumpfAlexander Stumpf

                13




                13



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Server Fault!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f953204%2frsyslog-forward-different-message-types-to-same-server-with-different-templates%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

                    How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

                    Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos