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

                    Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                    Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

                    What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company