<?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: Deepjeet Sen</title>
    <description>The latest articles on Debug School by Deepjeet Sen (@deepjeetsen_464).</description>
    <link>https://www.debug.school/deepjeetsen_464</link>
    <image>
      <url>https://www.debug.school/images/CPDdQlGexClW9WOTxwLbEDeLKxuBxqind7bvkmstzXo/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly90aGVw/cmFjdGljYWxkZXYu/czMuYW1hem9uYXdz/LmNvbS9pLzk5bXZs/c2Z1NXRmajltN2t1/MjVkLnBuZw</url>
      <title>Debug School: Deepjeet Sen</title>
      <link>https://www.debug.school/deepjeetsen_464</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/deepjeetsen_464"/>
    <language>en</language>
    <item>
      <title>Integrate Docker and gather metrices using Datadog Agent</title>
      <dc:creator>Deepjeet Sen</dc:creator>
      <pubDate>Tue, 18 Apr 2023 11:52:22 +0000</pubDate>
      <link>https://www.debug.school/deepjeetsen_464/integrate-docker-and-gather-metrices-using-datadog-agent-o3a</link>
      <guid>https://www.debug.school/deepjeetsen_464/integrate-docker-and-gather-metrices-using-datadog-agent-o3a</guid>
      <description>&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Install Datadog agent (for example in Ubuntu). Then enable process monitoring using the steps mentioned in below link.&lt;br&gt;
&lt;a href="https://www.devopsschool.com/blog/how-to-enable-live-process-monitoring-in-datadog-agent/"&gt;https://www.devopsschool.com/blog/how-to-enable-live-process-monitoring-in-datadog-agent/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Install Docker server. For example, follow this link for installing in Ubuntu&lt;br&gt;
&lt;a href="https://www.devopsschool.com/blog/how-to-install-docker-in-linux/"&gt;https://www.devopsschool.com/blog/how-to-install-docker-in-linux/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Enable Docker integration with Datadog by modifying conf.yaml file located inside /etc/datadog-agent/conf.d/docker.d/. Need to create this file first by making a copy from conf.yaml.default.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Restart the Datadog agent.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Create a few containers as well.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Finally verify whether docker &amp;amp; container metrices are appearing and containers are reporting in Datadog.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>List of Top Datadog Agent commands with their usage</title>
      <dc:creator>Deepjeet Sen</dc:creator>
      <pubDate>Mon, 17 Apr 2023 11:48:47 +0000</pubDate>
      <link>https://www.debug.school/deepjeetsen_464/list-of-top-datadog-agent-commands-with-their-usage-5cno</link>
      <guid>https://www.debug.school/deepjeetsen_464/list-of-top-datadog-agent-commands-with-their-usage-5cno</guid>
      <description>&lt;p&gt;Start agent -&lt;br&gt;
systemctl start datadog-agent&lt;/p&gt;

&lt;p&gt;Stop agent -&lt;br&gt;
systemctl stop datadog-agent&lt;/p&gt;

&lt;p&gt;Restart agent -&lt;br&gt;
systemctl restart datadog-agent&lt;/p&gt;

&lt;p&gt;Check status of agent -&lt;br&gt;
systemctl status datadog-agent&lt;/p&gt;

&lt;p&gt;Check version of agent -&lt;br&gt;
datadog-agent version&lt;/p&gt;

&lt;p&gt;Check hostname -&lt;br&gt;
datadog-agent hostname&lt;/p&gt;

&lt;p&gt;Check health of agent -&lt;br&gt;
datadog-agent health&lt;/p&gt;

&lt;p&gt;Check yaml configurations -&lt;br&gt;
more /etc/datadog-agent/datadog.yaml&lt;/p&gt;

&lt;p&gt;Check logs -&lt;br&gt;
more /var/log/datadog/agent.log&lt;br&gt;
more /var/log/datadog/process-agent.log&lt;br&gt;
more /var/log/datadog/trace-agent.log&lt;/p&gt;

&lt;p&gt;See configurations loaded &amp;amp; resolved of a running agent -&lt;br&gt;
datadog-agent configcheck&lt;/p&gt;

&lt;p&gt;Run the specified check -&lt;br&gt;
datadog-agent check&lt;/p&gt;

&lt;p&gt;Print the runtime configuration of a running agent -&lt;br&gt;
datadog-agent config&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Explained observability by Deepjeet</title>
      <dc:creator>Deepjeet Sen</dc:creator>
      <pubDate>Mon, 17 Apr 2023 05:26:27 +0000</pubDate>
      <link>https://www.debug.school/deepjeetsen_464/explained-observability-by-deepjeet-1ckj</link>
      <guid>https://www.debug.school/deepjeetsen_464/explained-observability-by-deepjeet-1ckj</guid>
      <description>&lt;h2&gt;
  
  
  What is observability?
&lt;/h2&gt;

&lt;p&gt;Observability means assembling all fragments from logs, monitoring tools and organize them in such a way which gives in-depth knowledge of the whole environment, thus creating an insight. It provides high-level overviews of the system's health as well as granular insights into the implicit failure modes of the system.&lt;/p&gt;




&lt;h2&gt;
  
  
  How to set up observability for your project?
&lt;/h2&gt;

&lt;p&gt;We have to follow the following steps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;When choosing what to monitor, we should involve business stakeholders and leaders. Our goal should be to monitor what matters to the business and not to overload the whole process. &lt;/li&gt;
&lt;li&gt;Metrics, health checks, logs and traces are the essential data types of observability that a system should produce.&lt;/li&gt;
&lt;li&gt; The ability to instrument any data type from any source is critical for observability, as it allows us to get telemetry quickly, and resolve issues dynamically as they arise.&lt;/li&gt;
&lt;/ol&gt;




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