<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Java application logs not showing up in splunk in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660079#M111621</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to integrate splunk to our springboot java application, I believe that I have made all the required integration steps but the logs are not showing up in our splunk account.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jerome&lt;/P&gt;</description>
    <pubDate>Sat, 07 Oct 2023 21:18:11 GMT</pubDate>
    <dc:creator>jerome</dc:creator>
    <dc:date>2023-10-07T21:18:11Z</dc:date>
    <item>
      <title>Java application logs not showing up in splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660079#M111621</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to integrate splunk to our springboot java application, I believe that I have made all the required integration steps but the logs are not showing up in our splunk account.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jerome&lt;/P&gt;</description>
      <pubDate>Sat, 07 Oct 2023 21:18:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660079#M111621</guid>
      <dc:creator>jerome</dc:creator>
      <dc:date>2023-10-07T21:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Java application logs not showing up in splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660080#M111622</link>
      <description>&lt;P&gt;And what is it that you did? Because "all required integration steps" doesn't say anything.&lt;/P&gt;&lt;P&gt;Are you writing your logs to files and ingesting events from those files? Are you sending directly to splunk from your app? If so - how and to which component? If you configured the process with a specific destination index - are you sure that the user you're checking it with has proper permissions to access that index?&lt;/P&gt;&lt;P&gt;Just a few questions to start.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Oct 2023 21:46:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660080#M111622</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2023-10-07T21:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Java application logs not showing up in splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660082#M111624</link>
      <description>&lt;P&gt;I created the index via splunk and have a log4j-spring.xml file where I have the necessary configurations for splunk see below:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I'm using log4j as the logging mechanism in my application.&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;&amp;lt;?&lt;/SPAN&gt;xml version&lt;SPAN&gt;="1.0" &lt;/SPAN&gt;encoding&lt;SPAN&gt;="UTF-8"&lt;/SPAN&gt;&lt;SPAN&gt;?&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;Configuration&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;    &amp;lt;Appenders&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        &amp;lt;Console &lt;/SPAN&gt;name&lt;SPAN&gt;="console" &lt;/SPAN&gt;target&lt;SPAN&gt;="SYSTEM_OUT"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            &amp;lt;PatternLayout&lt;BR /&gt;&lt;/SPAN&gt;                    pattern&lt;SPAN&gt;="%style{%d{ISO8601}} %highlight{%-5level }[%style{%t}{bright,blue}] %style{%C{10}}{bright,yellow}: %msg%n%throwable" &lt;/SPAN&gt;&lt;SPAN&gt;/&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        &amp;lt;/Console&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        &amp;lt;SplunkHttp&lt;BR /&gt;&lt;/SPAN&gt;                name&lt;SPAN&gt;="splunkhttp"&lt;BR /&gt;&lt;/SPAN&gt;                url&lt;SPAN&gt;="http://localhost:8088"&lt;BR /&gt;&lt;/SPAN&gt;                token&lt;SPAN&gt;="*******"&lt;BR /&gt;&lt;/SPAN&gt;                host&lt;SPAN&gt;="localhost"&lt;BR /&gt;&lt;/SPAN&gt;                index&lt;SPAN&gt;="gam_event_pro_dev"&lt;BR /&gt;&lt;/SPAN&gt;                type&lt;SPAN&gt;="raw"&lt;BR /&gt;&lt;/SPAN&gt;                source&lt;SPAN&gt;="gameventpro"&lt;BR /&gt;&lt;/SPAN&gt;                sourcetype&lt;SPAN&gt;="log4j"&lt;BR /&gt;&lt;/SPAN&gt;                messageFormat&lt;SPAN&gt;="text"&lt;BR /&gt;&lt;/SPAN&gt;                disableCertificateValidation&lt;SPAN&gt;="true"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            &amp;lt;PatternLayout &lt;/SPAN&gt;pattern&lt;SPAN&gt;="%m" &lt;/SPAN&gt;&lt;SPAN&gt;/&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        &amp;lt;/SplunkHttp&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;    &amp;lt;/Appenders&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;    &amp;lt;Loggers&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;&amp;lt;!-- LOG everything at INFO level --&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;&amp;lt;Root &lt;/SPAN&gt;level&lt;SPAN&gt;="info"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            &amp;lt;AppenderRef &lt;/SPAN&gt;ref&lt;SPAN&gt;="console" &lt;/SPAN&gt;&lt;SPAN&gt;/&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            &amp;lt;AppenderRef &lt;/SPAN&gt;ref&lt;SPAN&gt;="splunkhttp" &lt;/SPAN&gt;&lt;SPAN&gt;/&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        &amp;lt;/Root&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;    &amp;lt;/Loggers&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/Configuration&amp;gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 07 Oct 2023 21:55:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660082#M111624</guid>
      <dc:creator>jerome</dc:creator>
      <dc:date>2023-10-07T21:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Java application logs not showing up in splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660083#M111625</link>
      <description>&lt;P&gt;I created the index via splunk and have a log4j-spring.xml file where I have the necessary configurations for splunk see below:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I'm using log4j as the logging mechanism in my application.&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;&amp;lt;?&lt;/SPAN&gt;xml version&lt;SPAN&gt;="1.0" &lt;/SPAN&gt;encoding&lt;SPAN&gt;="UTF-8"&lt;/SPAN&gt;&lt;SPAN&gt;?&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;Configuration&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;    &amp;lt;Appenders&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        &amp;lt;Console &lt;/SPAN&gt;name&lt;SPAN&gt;="console" &lt;/SPAN&gt;target&lt;SPAN&gt;="SYSTEM_OUT"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            &amp;lt;PatternLayout&lt;BR /&gt;&lt;/SPAN&gt;                    pattern&lt;SPAN&gt;="%style{%d{ISO8601}} %highlight{%-5level }[%style{%t}{bright,blue}] %style{%C{10}}{bright,yellow}: %msg%n%throwable" &lt;/SPAN&gt;&lt;SPAN&gt;/&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        &amp;lt;/Console&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        &amp;lt;SplunkHttp&lt;BR /&gt;&lt;/SPAN&gt;                name&lt;SPAN&gt;="splunkhttp"&lt;BR /&gt;&lt;/SPAN&gt;                url&lt;SPAN&gt;="http://localhost:8088"&lt;BR /&gt;&lt;/SPAN&gt;                token&lt;SPAN&gt;="*******"&lt;BR /&gt;&lt;/SPAN&gt;                host&lt;SPAN&gt;="localhost"&lt;BR /&gt;&lt;/SPAN&gt;                index&lt;SPAN&gt;="gam_event_pro_dev"&lt;BR /&gt;&lt;/SPAN&gt;                type&lt;SPAN&gt;="raw"&lt;BR /&gt;&lt;/SPAN&gt;                source&lt;SPAN&gt;="gameventpro"&lt;BR /&gt;&lt;/SPAN&gt;                sourcetype&lt;SPAN&gt;="log4j"&lt;BR /&gt;&lt;/SPAN&gt;                messageFormat&lt;SPAN&gt;="text"&lt;BR /&gt;&lt;/SPAN&gt;                disableCertificateValidation&lt;SPAN&gt;="true"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            &amp;lt;PatternLayout &lt;/SPAN&gt;pattern&lt;SPAN&gt;="%m" &lt;/SPAN&gt;&lt;SPAN&gt;/&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        &amp;lt;/SplunkHttp&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;    &amp;lt;/Appenders&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;    &amp;lt;Loggers&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;&amp;lt;!-- LOG everything at INFO level --&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;&amp;lt;Root &lt;/SPAN&gt;level&lt;SPAN&gt;="info"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            &amp;lt;AppenderRef &lt;/SPAN&gt;ref&lt;SPAN&gt;="console" &lt;/SPAN&gt;&lt;SPAN&gt;/&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            &amp;lt;AppenderRef &lt;/SPAN&gt;ref&lt;SPAN&gt;="splunkhttp" &lt;/SPAN&gt;&lt;SPAN&gt;/&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        &amp;lt;/Root&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;    &amp;lt;/Loggers&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/Configuration&amp;gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;I have admin access to our splunk account so permission should not be an issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 07 Oct 2023 21:57:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660083#M111625</guid>
      <dc:creator>jerome</dc:creator>
      <dc:date>2023-10-07T21:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Java application logs not showing up in splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660085#M111626</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/261317"&gt;@jerome&lt;/a&gt;&amp;nbsp;... troubleshooting this requires mooore details from you.&lt;/P&gt;&lt;P&gt;1. from the UF, are you able to receive other logs to indexer?&lt;/P&gt;&lt;P&gt;2. was this java logs showing up at indexer previously or.. it did not work from you have configured&lt;/P&gt;&lt;P&gt;3. is it a prod or test system...&lt;/P&gt;&lt;P&gt;4. your inputs.conf at the UF configuration please&lt;/P&gt;</description>
      <pubDate>Sun, 08 Oct 2023 03:44:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660085#M111626</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2023-10-08T03:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: Java application logs not showing up in splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660091#M111627</link>
      <description>&lt;P&gt;Ok. We're getting somewhere &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Your appender should be sending the events to the listening components on the localhost.&lt;/P&gt;&lt;P&gt;1. Do you have a UF or a Splunk Enterprise instance on the same host?&lt;/P&gt;&lt;P&gt;2. Does it have an input defined on port 8088?&lt;/P&gt;&lt;P&gt;3. Isn't your network traffic firewalled?&lt;/P&gt;&lt;P&gt;4. Does your http input have TLS enabled or disabled? (your appender configuration will expect plain unencrypted HTTP).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Oct 2023 07:42:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660091#M111627</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2023-10-08T07:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Java application logs not showing up in splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660099#M111630</link>
      <description>&lt;P&gt;I was able to figure out the issue. I had to uncheck Enable indexer acknowledgement checkbox, I don't know why that caused the instance from receiving logs. I'm currently using localhost but will eventually change that to our domain. Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 08 Oct 2023 21:33:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660099#M111630</guid>
      <dc:creator>jerome</dc:creator>
      <dc:date>2023-10-08T21:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Java application logs not showing up in splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660100#M111631</link>
      <description>&lt;P&gt;I was able to figure out the issue. I had to uncheck Enable indexer acknowledgement checkbox, I don't know why that caused the instance from receiving logs. I'm currently using localhost but will eventually change that to our domain. Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 08 Oct 2023 21:34:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660100#M111631</guid>
      <dc:creator>jerome</dc:creator>
      <dc:date>2023-10-08T21:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Java application logs not showing up in splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660101#M111632</link>
      <description>&lt;P&gt;I was able to figure out the issue. I had to uncheck Enable indexer acknowledgement checkbox, I don't know why that caused the instance from receiving logs. I'm currently using localhost but will eventually change that to our domain. Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 08 Oct 2023 21:36:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Java-application-logs-not-showing-up-in-splunk/m-p/660101#M111632</guid>
      <dc:creator>jerome</dc:creator>
      <dc:date>2023-10-08T21:36:02Z</dc:date>
    </item>
  </channel>
</rss>

