<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Debug School: Haripriya A</title>
    <description>The latest articles on Debug School by Haripriya A (@haripriyaashok18_593).</description>
    <link>https://www.debug.school/haripriyaashok18_593</link>
    <image>
      <url>https://www.debug.school/images/QjF5Ul2OheFGaSC0wWJRALBCnKOwnKDlVSZjfxMgG-c/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvdXNl/ci9wcm9maWxlX2lt/YWdlLzgwL2NhMGEy/ZjZiLTI2NDktNGQ1/Yi1iYTM1LTQ1NWM2/Y2MyMjQ5NC5wbmc</url>
      <title>Debug School: Haripriya A</title>
      <link>https://www.debug.school/haripriyaashok18_593</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/haripriyaashok18_593"/>
    <language>en</language>
    <item>
      <title>Log Analysis</title>
      <dc:creator>Haripriya A</dc:creator>
      <pubDate>Thu, 15 Sep 2022 05:55:22 +0000</pubDate>
      <link>https://www.debug.school/haripriyaashok18_593/log-analysis-1cj4</link>
      <guid>https://www.debug.school/haripriyaashok18_593/log-analysis-1cj4</guid>
      <description>&lt;p&gt;&lt;strong&gt;1. Write down top 10 events in Windows and identify their event ID&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;4723 - An attempt was made to change the password of an account&lt;br&gt;
4625 - Failed account login&lt;br&gt;
4624 - Successful account login&lt;br&gt;
4719 - System audit policy was changed.&lt;br&gt;
4722  - A user account was enabled&lt;br&gt;
4634 - account logged off&lt;br&gt;
4648-  A logon attempt was made with explicit credentials&lt;br&gt;
4964  - Special group has been assigned to a new log&lt;br&gt;
1102 - Audit log was cleared.&lt;br&gt;
4720 - A user account was created&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Write down top 10 events in Linux and identify their pattern and log Linux&lt;/strong&gt;&lt;br&gt;
/var/log/messages&lt;br&gt;
/var/log/auth.log&lt;br&gt;
/var/log/cron&lt;br&gt;
/var/log/yum.log&lt;br&gt;
/var/log/maillog &lt;br&gt;
/var/log/secure&lt;br&gt;
/var/log/boot.log&lt;br&gt;
/var/log/dmesg&lt;br&gt;
/var/log/kern.log&lt;br&gt;
/var/log/faillog&lt;br&gt;
**&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Identify the log file in linux which log service start|stop|enable|disable**
systemctl start SERVICE_NAME
    systemctl stop SERVICE_NAME
    systemctl enable  SERVICE_NAME
    systemctl disable SERVICE_NAME&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;4. Identify the log file in linux which log process running or killed.&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      check the logfile using this - /var/log/kern.log 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;5. Identify the log file of apache and find out list of VERB and count of each using linux command&lt;/strong&gt;&lt;br&gt;
        var/log/apache/access.log&lt;br&gt;
    /var/log/apache2/access.log&lt;br&gt;
    /etc/httpd/log/access_log (on MacOS)&lt;br&gt;
    /var/log/apache2/error.log&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Understanding Datadog Agent</title>
      <dc:creator>Haripriya A</dc:creator>
      <pubDate>Tue, 13 Sep 2022 10:00:00 +0000</pubDate>
      <link>https://www.debug.school/haripriyaashok18_593/understanding-datadog-agent-147i</link>
      <guid>https://www.debug.school/haripriyaashok18_593/understanding-datadog-agent-147i</guid>
      <description>&lt;p&gt;&lt;strong&gt;- What is Datadog agent?&lt;/strong&gt; Datadog is a software that runs on your host. It collects hosts metrics and event and send it to Datadog. In Datadog u can analyse your monitoring and performance data.&lt;br&gt;
*&lt;em&gt;- Type of Datadog Agent? *&lt;/em&gt;   Collector &lt;br&gt;
Dogstatsd&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- Ports used to in Datadog agent?&lt;/strong&gt; UDP , HTTP - 80, TCP, HTTPS - 443&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- Top 5 commands with simple explanation troubleshooting Datadog agent?&lt;/strong&gt; $ systemctl start datadog-agent  - to start the datadog agent&lt;br&gt;
$ systemctl stop datadog-agent - to stop the datadog agent&lt;br&gt;
$ systemctl restart datadog-agent- to Restart the datadog agent&lt;br&gt;
$ systemctl status datadog-agent- to status is running or not in the datadog agent&lt;br&gt;
$ datadog-agent version  - to find the version &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- Locate how to enable Logs monitoring in datadog.yaml ** Go to the datadog file located in the windows c:/ programdata/datadog.yaml&lt;br&gt;
Edit the file and add enable the option to true.&lt;br&gt;
**- 5 techniques for troubleshooting Datadog?&lt;/strong&gt;&lt;br&gt;
Verify API token (datadog.yaml)&lt;br&gt;
Verify site/region (datadog.yaml)&lt;br&gt;
Datadog Agent is running or not under services&lt;br&gt;
check if logs enabled under config file&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
