
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dataset</title>
	<atom:link href="https://www.dataset.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.dataset.com/</link>
	<description>Where Data Comes Alive</description>
	<lastBuildDate>Sun, 04 Jun 2023 03:16:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.dataset.com/wp-content/uploads/sites/10/2022/11/cropped-dataset_favicon_512x512-32x32.png</url>
	<title>Dataset</title>
	<link>https://www.dataset.com/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Observability Trends and Dogfooding Products</title>
		<link>https://www.dataset.com/blog/observability-trends-and-dogfooding-products/</link>
		
		<dc:creator><![CDATA[Maggie Liu]]></dc:creator>
		<pubDate>Tue, 30 May 2023 18:54:22 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[dogfooding]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[trends]]></category>
		<guid isPermaLink="false">https://www.dataset.com/?p=2283</guid>

					<description><![CDATA[<p>“Our dependency tree keeps getting bigger, and each dependency is emitting more logs. The extent of those logs not following a common schema radically impacts their usability” Distinguished engineer John Hart of the Event DB team at DataSet joins Lee Atchinson to speak about everything from observability trends, machine learning, dogfooding DataSet, and more. Listen to [&#8230;]</p>
<p>The post <a href="https://www.dataset.com/blog/observability-trends-and-dogfooding-products/">Observability Trends and Dogfooding Products</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><b>“Our dependency tree keeps getting bigger, and each dependency is emitting more logs. The extent of those logs not following a common schema radically impacts their usability”</b></h3>
<p>Distinguished engineer <a href="https://www.linkedin.com/in/john-hart-6873a530?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAZ284cB4mtNgIMWyHLd4VtASVv_BLsu6GY&amp;lipi=urn%3Ali%3Apage%3Ad_flagship3_search_srp_all%3Bka4RkgItRjiVUUhRO65ZQg%3D%3D">John Hart </a>of the Event DB team at DataSet joins <a href="https://www.linkedin.com/in/leeatchison?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAARYH8BHJ9n77bz_d4r7TC8s_Be2DS_cwA&amp;lipi=urn%3Ali%3Apage%3Ad_flagship3_search_srp_all%3BTpw0AbmZRL2G3Nw66CX5Kw%3D%3D">Lee Atchinson</a> to speak about everything from observability trends, machine learning, dogfooding DataSet, and more.</p>
<p>Listen to the full podcast<a href="https://softwareengineeringdaily.com/2023/03/20/observability-trends/"> episode here</a> on Software Engineering Daily. Read on to see Q&amp;A summary and highlights of the conversation:</p>
<h3><b>Q: What does DataSet do?</b></h3>
<p><b>JH: </b>DataSet is a unified source for <i>server observability, trace, logs, and metrics</i>. There are many solutions that address each of these in isolation, but DataSet brings them all together.  The ability to click from a metric-based “latency is high” alert to the tracing spans that show those operations in context, all the way to the individual line-level application logs, without having to leave the tool, is super important.  We sometimes refer to this as “MTTWH” &#8211; mean time to “what the heck?” (<i>although sometimes we use a different final character&#8230;)</i>  Having to switch tools for different levels of detail is needless friction.</p>
<p>You can go the other direction as well &#8211; from looking at an application log that contains a numeric value, it’s just one click to chart that over time and another click to create an alert or dashboard based on it.</p>
<h3><b>Q: Sounds like a lot of data.</b></h3>
<p><strong>JH:</strong> For sure, and that’s not trending down anytime soon. Kubernetes control-plane data is verbose just by itself, and that’s before you get to the actual workload logs that you care about. DataSet’s architecture is fairly unique as far as I know &#8211; we avoid global indexes that would write-amplify our data and we separate compute from storage. Competing solutions that are based in the Solr/Lucene/Elastic document-indexing world depend on locally-attached storage, and therefore must scale their compute linearly with data. In other words, moving from 1 month to 1 year of storage would mean lighting up 2x the amount of compute (each with its own locally-attached storage).</p>
<p>DataSet separates compute from storage, so most of our cost is determined by daily volume rather than total-data-stored. This enables some cool features like pay-per-query for historical data, which lets customers leave their data in our system at very low cost for as long as they’d like. Because our at-rest format is columnar, we get great compression rates and it can actually be cheaper to leave data in DataSet than to keep it directly in your own storage system in standard row-major format. Plus you get the ergonomics of the entire tool, without having to manage hot/cold/glacier storage migrations.</p>
<h3><b>Q: How has the log analytics space changed dramatically?</b></h3>
<p><strong>JH: </strong>With ever-increasing volume comes a need for a standardized view of your data, so I’d shout out to OpenTelemetry (and its predecessors) as maybe the biggest revolution in the observability space over the past decade.  Everyone’s dependency trees keep getting bigger, and each dependency is emitting more logs. The extent of those logs not following a common schema radically impacts their usability.  The standardized approach of OpenTelemetry really helps engineers operate third party systems <i>reliably</i> without having to become an expert in those systems’ logfile formats.</p>
<h3><b>Q: Can you use machine learning for logs to find larger or time consuming patterns?</b></h3>
<p><strong>JH:</strong> For sure, and we’re putting a lot of effort into this.  DataSet recently added anomaly detection, so the system can detect spikes/gaps without needing manual thresholds.  I think we’ve all been through the cycle of creating an alert and then tuning it over days/weeks to eliminate false positives while still flagging actual problems … it’s annoying, time-consuming, and can be difficult to get right for data with built-in seasonality, diurnal/nocturnal patterns, etc.  This is the type of thing that ML excels at, so it’s nice to offload that problem to the computer.</p>
<h3><b>Q: How is your team dogfooding product at DataSet?</b></h3>
<p><strong>JH: </strong>That might be my favorite part of this job &#8211; we use DataSet <i>constantly</i> in the development and operation of DataSet.  Any new feature we are developing is a feature we ourselves benefit from.  That’s about as tight of a feedback loop as you can get between your code &amp; your tools, unless you’re coding a text editor.</p>
<p>DataSet is hosted and multitenant, typically with just one cluster per geographic region.  In our largest cluster, this means a single query will fan out to tens of thousands of CPU cores, all acting in concert to search TBs or PBs of data as quickly as possible.  To run clusters of this size we absolutely depend on DataSet to monitor them, for steady-state operation (alerts and dashboards) as well as ad-hoc queries, debugging, reasoning about the system … we couldn’t do it without DataSet.</p>
<p><span style="color: #0000ff"><strong>Fun Fact: </strong>John was one of DataSet’s first ten customers (back when it was called Scalyr).  He came across this <a href="https://www.dataset.com/blog/1000-little-breakthroughs/">blog post</a> written by Scalyr’s founder, Steve Newman, and after trying Scalyr found it much preferable to Splunk. John liked the product so much he became an early employee of DataSet and now runs the database team, which powers DataSet as well as SentinelOne’s security products.</span></p>
<h2><b>Get Started with DataSet for Free</b></h2>
<p>DataSet is a modern log analytics platform that helps DevOps, IT engineering, and security teams get answers from their data across all time periods, both live streaming and historical. It’s powered by a unique architecture that uses a massively parallel query engine to provide actionable insights from the data available.</p>
<p>Get started with <a href="https://www.dataset.com/try-dataset/">our 30-day free trial here</a>.</p>
<p>The post <a href="https://www.dataset.com/blog/observability-trends-and-dogfooding-products/">Observability Trends and Dogfooding Products</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></content:encoded>
					
		
		
		<enclosure url="https://www.dataset.com/wp-content/uploads/sites/10/2020/12/DataSet_Blog_Cloud_Thumbnail_1200x628_Log_Analysis.jpg" length="30742" type="image/jpeg" />	</item>
		<item>
		<title>Unleash the Power of Modern Log Analytics</title>
		<link>https://www.dataset.com/blog/logging-and-analytics-best-practices/</link>
		
		<dc:creator><![CDATA[Maggie Liu]]></dc:creator>
		<pubDate>Fri, 19 May 2023 18:40:31 +0000</pubDate>
				<category><![CDATA[Log Analytics]]></category>
		<category><![CDATA[eBook]]></category>
		<category><![CDATA[Logging]]></category>
		<guid isPermaLink="false">https://www.dataset.com/?p=2279</guid>

					<description><![CDATA[<p>Our latest eBook covers the importance of event logging in cloud-native applications. Learn how logging works, why it matters, and how it improves your business and end-user experience. Our latest ebook covers the basics of log analytics, including different types of log data and how to collect, store, and analyze them. If you are currently [&#8230;]</p>
<p>The post <a href="https://www.dataset.com/blog/logging-and-analytics-best-practices/">Unleash the Power of Modern Log Analytics</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>Our latest eBook covers the importance of event logging in cloud-native applications. Learn how logging works, why it matters, and how it improves your business and end-user experience.</h3>
<p>Our latest ebook covers the basics of log analytics, including different types of log data and how to collect, store, and analyze them. If you are currently using an event data solution or looking for alternatives, consider new ways to better manage logs for your entire team.</p>
<p>Do you want to understand log analytics and how it can be used to optimize system and application performance, detect and triage issues, and improve user experience? In this eBook we answer common questions such us:</p>
<ul>
<li>Why do you need log aggregation?</li>
<li>What makes an effective logging strategy and how do you start?</li>
<li>How can you centralize logs to improve developer productivity?</li>
</ul>
<p>Download the <a href="https://assets.sentinelone.com/dataset/dataset_logging_ebook#page=1">Modern Logging and Analytics eBook</a> today and start unlocking the full potential of your event data.</p>
<h3><b>Building a Great Logging Strategy</b></h3>
<p>Quickly track down and understand issues that arise within an application. Understanding what and how to log data will make this process significantly easier. Whether you are just getting started or using an alternative logging solution, see the DataSet difference in our<a href="https://assets.sentinelone.com/dataset/get-more-from-splunk#page=1"><strong> Get More Value Out of Your Splunk Investment</strong></a> and <a href="https://assets.sentinelone.com/dataset/elk_tco_wp_22#page=1"><strong>Replace ELK Stack</strong> </a>whitepaper when evaluating the best solution.</p>
<p>The post <a href="https://www.dataset.com/blog/logging-and-analytics-best-practices/">Unleash the Power of Modern Log Analytics</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>DataSet, SentinelOne at KubeCon Europe 2023</title>
		<link>https://www.dataset.com/blog/dataset-kubecon-eu-2023/</link>
		
		<dc:creator><![CDATA[Maggie Liu]]></dc:creator>
		<pubDate>Fri, 14 Apr 2023 20:59:56 +0000</pubDate>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[datalake]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[K8s]]></category>
		<category><![CDATA[KubeCon]]></category>
		<category><![CDATA[Kubernetes]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">https://www.dataset.com/?p=2269</guid>

					<description><![CDATA[<p>DataSet and SentinelOne are proud sponsors of KubeCon + CloudNativeCon Europe this year. Join us in Amsterdam, Netherlands on April 18-23, 2023, to be a part of the biggest event for Kubernetes! We hope to see you in Amsterdam &#8211; visit the booth, meet the team, and talk about all things related to Kubernetes from [&#8230;]</p>
<p>The post <a href="https://www.dataset.com/blog/dataset-kubecon-eu-2023/">DataSet, SentinelOne at KubeCon Europe 2023</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>DataSet and SentinelOne are proud sponsors of KubeCon + CloudNativeCon Europe this year. Join us in <b>Amsterdam, Netherlands </b>on <strong>April 18-23, 2023</strong>, to be a part of the biggest event for Kubernetes! We hope to see you in Amsterdam &#8211; visit the booth, meet the team, and talk about all things related to Kubernetes from monitoring to security.</p>
<h3><strong>Visit Us at the Event</strong></h3>
<p><strong>Where:</strong> RAI Convention Centre in Amsterdam, NL</p>
<p><strong>When:</strong> April 18-21, 2023</p>
<p><strong>Booth:</strong> S47</p>
<p>Find us at SentinelOne booth S47 where we will share interactive product demos and you will even have a chance to participate in exciting giveaways!</p>
<p><span style="color: #0000ff"><a style="color: #0000ff" href="https://events.linuxfoundation.org/kubecon-cloudnativecon-europe/register/"><strong>Register Now</strong></a></span></p>
<h3><strong>How SentinelOne Helps Kubernetes Security</strong></h3>
<p>Check out our guide <a href="https://www.sentinelone.com/blog/defending-modern-cloud-based-workloads-a-guide-to-kubernetes-security/">Defending Cloud-Based Workloads</a> to learn more about implementing Kubernetes (K8s) security. Our <a href="https://assets.sentinelone.com/dataset/dataset-ebook-k8-troubleshooting#page=1">Guide to Kubernetes Troubleshooting</a> also highlights how to handle monitoring with K8s. If you can&#8217;t make the event, but are looking to learn more &#8211;  we invite you to try a <a href="https://www.dataset.com/request-demo/">personalized demo with our team for your use case</a>!</p>
<p>The post <a href="https://www.dataset.com/blog/dataset-kubecon-eu-2023/">DataSet, SentinelOne at KubeCon Europe 2023</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></content:encoded>
					
		
		
		<enclosure url="https://www.dataset.com/wp-content/uploads/sites/10/2022/02/1bbdc157a00f6e7ffe6eb4a2e2479d4d.jpg" length="27756" type="image/jpeg" />	</item>
		<item>
		<title>DataSet at SREcon 2023 Americas</title>
		<link>https://www.dataset.com/blog/srecon-23/</link>
		
		<dc:creator><![CDATA[Maggie Liu]]></dc:creator>
		<pubDate>Mon, 13 Mar 2023 17:52:23 +0000</pubDate>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[SRE]]></category>
		<guid isPermaLink="false">https://www.dataset.com/?p=2225</guid>

					<description><![CDATA[<p>DataSet is proud to be a sponsor of SREcon Americas this year. Join us in Santa Clara, CA on March 21-23, 2023, to be a part of the biggest event for SREs! The conference is a premier gathering of engineers who are passionate about site reliability, systems engineering, and working with complex distributed systems at [&#8230;]</p>
<p>The post <a href="https://www.dataset.com/blog/srecon-23/">DataSet at SREcon 2023 Americas</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>DataSet is proud to be a sponsor of SREcon Americas this year. Join us in Santa Clara, CA on March 21-23, 2023, to be a part of the biggest event for SREs! The conference is a premier gathering of engineers who are passionate about <a href="https://www.sentinelone.com/blog/what-is-sre/">site reliability</a>, systems engineering, and working with complex distributed systems at scale.</p>
<h3><b>Where to Find Us at SREcon</b></h3>
<p><strong>Where: Santa Clara, CA</strong><br />
<strong>When: March 21-23, 2023</strong><br />
<strong>Booth: #K5</strong></p>
<p>Our team will be here to share product demos and you will even have a chance to win a <em>Bose Bluetooth Speaker</em>!</p>
<h3 style="text-align: center"><a href="https://www.usenix.org/conference/srecon23americas"><strong>Register Now</strong></a></h3>
<h3><b>How DataSet Helps SREs</b></h3>
<p>DataSet is a fully managed SaaS platform that has minimal downtime and maintenance. Site reliability engineers need to scale fast  without worrying about high operational overhead, managing large data volumes, and <a href="https://www.dataset.com/blog/mean-time-to-repair/">high MTTR</a> and MTTD.</p>
<p>DataSet provides SREs and DevOps engineers with a single and unified log monitoring tool that replaces disparate workflows. Instead of dealing with fragmented tools that complicate log analytics, your team can aggregate multiple server logs, monitor and analyze them, set custom log alerts, and create custom dashboards. With the help of DataSet, achieve unmatched scale and real-time visibility across the entire software environment –  all while experiencing a low total cost of ownership.</p>
<p>Can&#8217;t make the event? We also invite you to <a href="https://www.dataset.com/request-demo/">try a personalized demo with our team</a>.</p>
<p>The post <a href="https://www.dataset.com/blog/srecon-23/">DataSet at SREcon 2023 Americas</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></content:encoded>
					
		
		
		<enclosure url="https://www.dataset.com/wp-content/uploads/sites/10/2022/02/f3483715c225c541a623a1548945c7a2.jpg" length="25414" type="image/jpeg" />	</item>
		<item>
		<title>Scaling Beyond Elasticsearch</title>
		<link>https://www.dataset.com/blog/scaling-beyond-elasticsearch/</link>
		
		<dc:creator><![CDATA[Maggie Liu]]></dc:creator>
		<pubDate>Fri, 03 Mar 2023 22:39:14 +0000</pubDate>
				<category><![CDATA[Log Analytics]]></category>
		<category><![CDATA[Elasticsearch]]></category>
		<category><![CDATA[ELK]]></category>
		<guid isPermaLink="false">https://www.dataset.com/?p=2195</guid>

					<description><![CDATA[<p>According to the IDC, the amount of data created in the next three years is estimated to be greater than that generated in the past thirty. With data explosion, comes the need to efficiently manage, adapt, and scale the growing volume. Many customers opt for ELK for its cost saving, scalability, and open source benefits [&#8230;]</p>
<p>The post <a href="https://www.dataset.com/blog/scaling-beyond-elasticsearch/">Scaling Beyond Elasticsearch</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>According to the IDC, the amount of data created in the next three years is estimated to be greater than that generated in the past thirty. With data explosion, comes the need to efficiently manage, adapt, and scale the growing volume. Many customers opt for ELK for its cost saving, scalability, and open source benefits – however,  it is important to understand the pitfalls of maintaining legacy tools and consider the advantages of other solutions.</p>
<p>We recently hosted a webinar diving into the challenges with Elasticsearch and how DataSet differentiates itself in log management with Dave Gold, Field CTO SentinelOne , and Anthony Johnson, Field CTO of DataSet. If you missed the webinar,<a href="https://assets.sentinelone.com/dataset/scale-beyond-elasticsearch"> <b>watch the on-demand recording here</b></a>.</p>
<p>Here are some key takeaways:</p>
<h2><b>Main Challenges with Legacy and On-Premise Tools</b></h2>
<ol>
<li>Cannot support the scale and speed requirements of modern architectures such as Kubernetes and microservices</li>
<li>Relies heavily on keyword indexing, batch, and query</li>
<li>Autoscaling data is hard – compute and storage are tightly coupled</li>
<li>Open source doesn’t necessarily mean free, consider operational costs from the beginning</li>
</ol>
<h2><b>ELK Hidden Costs</b></h2>
<p>There are hidden costs when it comes to maintaining hardware. This can lead ELK deployments to be more expensive and time-consuming than suggested:</p>
<ul>
<li>Sharding is required which divides indexes across nodes. If there are too many on a single node, this can lead to increased latency, storage usage, and make it more difficult to scale.</li>
<li>While it is free and open to modifications, ELK requires heavy lifting in the form of additional paid services, support, and features. This increases operational overhead requiring developers to manage, maintain, and deploy updates.</li>
<li>Managing the infrastructure for ELK requires additional setup work in making sure the data is backed up and protected with the right type of hardware that can scale large volumes of data.</li>
</ul>
<h2><b>Comparing Scale and Query Data</b></h2>
<p>Using Logstash generators, watch how DataSet stacks up against ELK when handling one, five, and even up to forty generators. You can see the whole demo in the webinar<a href="https://assets.sentinelone.com/dataset/scale-beyond-elasticsearch"> linked here</a>. See how much more data (TB) is faster and easily ingested over different retention periods compared to that of ELK.  It is clear that DataSet differentiates in:</p>
<ul>
<li>Achieving faster ingestion and query speed, taking seconds at a petabyte scale</li>
<li>Scaling efficiently and autoscaling without the need to rebalance nodes, manage storage, or allocate resources.</li>
<li>Reducing operational overhead and total cost of ownership</li>
</ul>
<h2><b>The DataSet Difference:</b></h2>
<ul>
<li><b>Live Data </b>&#8211; Schema-less ingestion and index-free architecture means that data shows up in real time, scaling to petabytes of data. No need to worry about indexing and sharding.</li>
<li><b>The Power of a SaaS Cloud Platform &#8211; </b>Store all log and event data in one place accessible to different teams.</li>
<li><b>Separate Storage from Compute</b> &#8211; Choose between DataSet S3 or Bring Your Own S3 bucket. Our columnar format allows for fast searches and low cost storage.</li>
<li><b>Streaming Engine</b> -Drive live dashboards and alerts to offload queries to answer in real time.</li>
<li><b>Best in class security</b> &#8211; A security first architecture helps meet encryption and compliance standards.</li>
</ul>
<h2><b>Lower Your Total Cost of Ownership:</b></h2>
<p>DataSet can lower Total Cost of Ownership by 60-80% over 3 years compared to traditional tools. With the platform experience:</p>
<ul>
<li>Paid full managed cloud system with no maintenance, tuning, and scaling that is  <i>cheaper than open source</i></li>
<li>Faster, scalable, lower operational expense</li>
<li>Increase productivity with your teams spending 10x less time managing and operating the platform</li>
<li>Integrations that help pull data in (Logstash, Kafka, fluentD)</li>
<li>White glove support</li>
</ul>
<p>Read more about the benefits of replacing ELK in our latest whitepaper, <a href="https://assets.sentinelone.com/dataset/elk_tco_wp_22#page=1">The Business and Engineering Case to Replace ELK Stack</a></p>
<p>&nbsp;</p>
<p>The post <a href="https://www.dataset.com/blog/scaling-beyond-elasticsearch/">Scaling Beyond Elasticsearch</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></content:encoded>
					
		
		
		<enclosure url="https://www.dataset.com/wp-content/uploads/sites/10/2022/02/dataset_homepage_lgtext_desktop-scaled.jpg" length="108166" type="image/jpeg" />	</item>
		<item>
		<title>DataSet Achieves AWS Container Competency Status</title>
		<link>https://www.dataset.com/blog/dataset-aws-container-competency/</link>
		
		<dc:creator><![CDATA[Maggie Liu]]></dc:creator>
		<pubDate>Tue, 21 Feb 2023 21:52:48 +0000</pubDate>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[AWS Partner]]></category>
		<category><![CDATA[containers]]></category>
		<guid isPermaLink="false">https://www.dataset.com/?p=2179</guid>

					<description><![CDATA[<p>DataSet has achieved Amazon Web Services (AWS) Container Competency status. DataSet is a SentinelOne solution that offers logging, monitoring, and troubleshooting in container environments, enabling organizations to fully achieve the benefits of cloud, containers, and Kubernetes. Achieving the AWS Container Competency differentiates DataSet as an AWS Partner Network (APN) member that provides specialized expertise and [&#8230;]</p>
<p>The post <a href="https://www.dataset.com/blog/dataset-aws-container-competency/">DataSet Achieves AWS Container Competency Status</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>DataSet has achieved <a href="https://aws.amazon.com/containers/partner-solutions/?blog-posts-cards.sort-by=item.additionalFields.createdDate&amp;blog-posts-cards.sort-order=desc&amp;partner-solutions-cards.sort-by=item.additionalFields.partnerNameLower&amp;partner-solutions-cards.sort-order=asc&amp;awsf.partner-solutions-filter-partner-usecase-finserv=*all&amp;awsf.partner-solutions-filter-partner-location-finserv=*all&amp;partner-case-studies-cards.sort-by=item.additionalFields.sortDate&amp;partner-case-studies-cards.sort-order=desc&amp;partner-solutions-cards.q=dataset&amp;partner-solutions-cards.q_operator=AND">Amazon Web Services (AWS) Container Competency</a> status. DataSet is a SentinelOne solution that offers logging, monitoring, and troubleshooting in container environments, enabling organizations to fully achieve the benefits of cloud, containers, and Kubernetes.</p>
<p>Achieving the AWS Container Competency differentiates DataSet as an AWS Partner Network (APN) member that provides specialized expertise and proven success in delivering solutions for customers looking to manage, deploy, secure, and monitor their container workloads on AWS.</p>
<div class="inverted-block">&#8220;We are excited to achieve AWS Container Competency status and to continue our efforts in accelerating our customers’ cloud journey,&#8221; Rajiv Taori, General Manager</div>
<p><a href="https://www.dataset.com/">DataSet</a> seamlessly works with AWS services such as Amazon Elastic Kubernetes Service (Amazon EKS), Amazon Elastic Container Service (Amazon ECS), and AWS  Fargate, continuously collects metrics, events, and logs from the entire stack, surfaces anomalies and uncovers their root causes, so DevOps, SRE, and engineering teams can detect and resolve performance issues faster than ever before. Read more about this from the case studies referenced on the <a href="https://partners.amazonaws.com/partners/0010L00001tA9EiQAK/">AWS partner page</a>.</p>
<div class="inverted-block">&#8220;Dynamic container environments generate a lot of fast-moving data. Traditional solutions are expensive, difficult to scale, and slow to detect anomalies. DataSet delivers easy scalability and real-time performance at a fraction of the cost. SentinelOne is committed to helping customers efficiently modernize their applications by using containers with the range of powerful tools AWS provides, and this recognition further advances our partnership in delivering customer success,&#8221; Rajiv Taori, General Manager</div>
<h2><strong>About the Architecture</strong></h2>
<p>DataSet’s unique architecture combines high performance, low overhead, index-free design, and massively parallel processing that unlocks an unmatched log analytics experience:</p>
<ul>
<li><span class="marker-animation" style="text-decoration: underline">Schema-Less Ingestion</span>: Experience enormous flexibility in data collection and ingestion without any processing overhead of schema evaluation</li>
<li><span style="text-decoration: underline"><span class="marker-animation">Streaming Engine</span>:</span> Create materialized views for repeat queries, so high-res dash-boards refresh, accurate alerts fire and automation tasks trigger within seconds.</li>
<li><span style="text-decoration: underline"><span class="marker-animation">Index-Free Design</span>:</span> Columnar data format eliminates the need to maintain index clusters, re-index, and re-shard storage.</li>
<li><span class="marker-animation" style="text-decoration: underline">Massively Parallel Query Engine</span>: Query engine uses horizontal scheduling, devoting the entire cluster – every CPU core on every compute node –to one query at a time.</li>
<li><span style="text-decoration: underline"><span class="marker-animation">Cost-Efficient Object Storage</span>:</span> Dedicates every node in our compute cluster to retrieve data from <a href="https://support.dataset.com/hc/en-us/articles/4409423790611-S3-files-in-DataSet">Amazon S3</a> in parallel, saturating the entire network band-width to fetch compressed data in the most efficient way possible.</li>
</ul>
<p>The post <a href="https://www.dataset.com/blog/dataset-aws-container-competency/">DataSet Achieves AWS Container Competency Status</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></content:encoded>
					
		
		
		<enclosure url="https://www.dataset.com/wp-content/uploads/sites/10/2022/02/1bbdc157a00f6e7ffe6eb4a2e2479d4d.jpg" length="27756" type="image/jpeg" />	</item>
		<item>
		<title>Introducing DataSet Kubernetes Explorer</title>
		<link>https://www.dataset.com/blog/introducing-dataset-kubernetes-explorer/</link>
		
		<dc:creator><![CDATA[Amit Sharma]]></dc:creator>
		<pubDate>Tue, 10 Jan 2023 23:24:38 +0000</pubDate>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Kubernetes]]></category>
		<category><![CDATA[Log Management]]></category>
		<category><![CDATA[monitoring]]></category>
		<guid isPermaLink="false">https://www.dataset.com/?p=2170</guid>

					<description><![CDATA[<p>We are excited to announce the general availability of DataSet Kubernetes Explorer for our customers. Kubernetes Explorer is an intuitive and cost-effective way to understand and manage the health and performance of Kubernetes clusters, deployed applications, and underlying infrastructure. Kubernetes Explorer continuously collects metrics, events, and logs from the entire Kubernetes stack, surfaces anomalies, uncovers [&#8230;]</p>
<p>The post <a href="https://www.dataset.com/blog/introducing-dataset-kubernetes-explorer/">Introducing DataSet Kubernetes Explorer</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We are excited to announce the general availability of DataSet Kubernetes Explorer for our customers. Kubernetes Explorer is an intuitive and cost-effective way to understand and manage the health and performance of Kubernetes clusters, deployed applications, and underlying infrastructure. Kubernetes Explorer continuously collects metrics, events, and logs from the entire Kubernetes stack, surfaces anomalies, uncovers their root causes, and provides contextual logs, so DevOps, SRE, and engineering teams can triage and troubleshoot independently – faster than ever before.</p>
<p>Enterprises strive for operational efficiencies, multi-cloud portability, and agility by deploying and running applications on Kubernetes. While Kubernetes has emerged as the ‘de-facto’ standard for container orchestration (<a href="https://www.gartner.com/document/3902966">Gartner</a>) and is getting mainstream adoption, many enterprises encounter challenges as they operationalize Kubernetes at scale.</p>
<p>The latest Cloud Native Computing Foundation (CNCF) <a href="https://github.com/cncf/surveys/blob/main/cloudnative/Cloud_Native_Survey_2021-Part_1.xlsx">survey</a> cites monitoring and logging as the biggest challenge in adopting Kubernetes, followed by complexity and security.</p>
<h3>Why Operationalizing Kubernetes is Challenging</h3>
<p>As Kubernetes environments scale and applications get more distributed, DevOps, SRE, and engineering teams struggle because:</p>
<ul>
<li><span class="marker-animation">High data volume</span>: Distributed containerized applications generate a lot of data. Traditional tools struggle to analyze high log data volume in real-time.</li>
<li><span class="marker-animation">Fragmented tooling</span>: Multiple monitoring and logging solutions trap data in silos and require teams to carry context across tools leading to higher mean-time-to-detect.</li>
<li><span class="marker-animation">Lack of cluster-wide access</span>: All developers do not have cluster-level access as implementing RBAC within Kubernetes is complex, so it is difficult to troubleshoot errors efficiently and independently.</li>
<li><span class="marker-animation">Expensive to scale</span>: Higher data volume in cloud-native environments increases the total cost of ownership by orders of magnitude.</li>
</ul>
<p>SREs and DevOps engineering teams spend the bulk of their time answering basic questions regarding the performance of Kubernetes and deployed applications. Scale increases the effort required to detect and troubleshoot problems. Traditional log data platforms were designed decades ago in the pre-cloud era; they don’t work for modern K8s environments. They are slow, siloed, expensive to scale, and complex to operate.</p>
<h3>Introducing DataSet Kubernetes Explorer</h3>
<p>Kubernetes Explorer is a turnkey solution that makes it easy for engineering teams to debug and troubleshoot errors no matter where they happen across the entire Kubernetes stack. Kubernetes Explorer delivers immediate value to teams starting on their Kubernetes journey while addressing challenges for complex Kubernetes deployments at scale.</p>
<p>Kubernetes Explorer provides an at-a-glance view into all Kubernetes clusters with the flexibility to drill down into a particular cluster, namespace, nodes, pods, containers, or deployed workloads in mere seconds. Additionally, Kubernetes Explorer provides instant visibility to lifecycle events of Kubernetes components so teams can connect the dots between distributed infrastructure and applications. A seamless pivot to contextual logs gives granular visibility, helping organizations troubleshoot and resolve anomalies quickly.</p>
<h2>Cluster Overview</h2>
<p>Cluster Overview is the at-a-glance view that provides visibility into all clusters, infrastructure – nodes, pods, containers running in each cluster, and applications. You can filter or search into individual components in mere seconds. Kubernetes Explorer <b>automatically discovers</b> Kubernetes components and containerized applications, so you get instant, out-of-the-box visibility across the entire stack.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-1706 size-full" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/cluster_overview.png" alt="" width="2269" height="1334" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/cluster_overview.png 2269w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/cluster_overview-300x176.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/cluster_overview-1024x602.png 1024w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/cluster_overview-768x452.png 768w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/cluster_overview-1536x903.png 1536w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/cluster_overview-2048x1204.png 2048w" sizes="(max-width: 2269px) 100vw, 2269px" /></p>
<h2>Nodes and Pods Overview</h2>
<p>Visualize provisioned capacity and key performance characteristics such as CPU, Memory, Network, and Disk performance across clusters using pre-built, curated dashboards. Visualize and get alerted on any component trending hot and draining cluster resources, commonly known as noisy neighbor issues.</p>
<p><img decoding="async" class="alignnone wp-image-1709 size-full" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/Screen-Shot-2022-05-15-at-8.51.00-PM.png" alt="" width="3584" height="2122" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/Screen-Shot-2022-05-15-at-8.51.00-PM.png 3584w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/Screen-Shot-2022-05-15-at-8.51.00-PM-300x178.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/Screen-Shot-2022-05-15-at-8.51.00-PM-1024x606.png 1024w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/Screen-Shot-2022-05-15-at-8.51.00-PM-768x455.png 768w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/Screen-Shot-2022-05-15-at-8.51.00-PM-1536x909.png 1536w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/Screen-Shot-2022-05-15-at-8.51.00-PM-2048x1213.png 2048w" sizes="(max-width: 3584px) 100vw, 3584px" /></p>
<h2>Troubleshooting Kubernetes Errors</h2>
<p>In distributed systems such as Kubernetes, errors can occur anywhere within the stack, and troubleshooting becomes time-consuming when teams have to inspect the health of individual components and manually stitch context.</p>
<p>Further exacerbating the problem is the lack of cluster-level privileges for all developers. While the platform team, DevOps, or SRE teams will have access to the cluster using <i>kubectl,</i> the complexity of managing RBAC within Kubernetes prevents all developers from gaining such access and thus hinders their ability to troubleshoot their applications independently.</p>
<p>Kubernetes Explorer’s Workloads view shines in for these scenarios. It provides an out-of-the-box view of all events that happened to a particular workload.</p>
<p>Application engineers can click the number of events for contextual logging and detailed information about root-cause. In this example, a python application is causing the container to crash every time it starts resulting in BackOff. Using DataSet, engineers can go to the root cause &#8211; up to the line of code causing the error within two clicks.</p>
<p><img decoding="async" class="alignnone wp-image-1713 size-full" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/app_error.png" alt="" width="1789" height="934" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/app_error.png 1789w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/app_error-300x157.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/app_error-1024x535.png 1024w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/app_error-768x401.png 768w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/app_error-1536x802.png 1536w" sizes="(max-width: 1789px) 100vw, 1789px" /></p>
<p>Engineers can quickly narrow down to visualize all events that happened to the service they are supporting, while DevOps and SRE teams can look for all events across the cluster.</p>
<h2>Full-stack visibility</h2>
<p>Drilling down into an application from the workload tab gives out-of-the-box application performance details using RED metrics – Rate, Errors, and Duration.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-1711 size-full" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/full-stack.png" alt="" width="2249" height="1009" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/full-stack.png 2249w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/full-stack-300x135.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/full-stack-1024x459.png 1024w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/full-stack-768x345.png 768w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/full-stack-1536x689.png 1536w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/full-stack-2048x919.png 2048w" sizes="auto, (max-width: 2249px) 100vw, 2249px" /></p>
<p>The Workload view also shows all lifecycle events that happened on applications so teams can immediately correlate performance-related incidence with Kubernetes events.</p>
<h2>Get Started with DataSet to Simplify Kubernetes Troubleshooting</h2>
<p>DataSet Kubernetes Explorer is deployed as a one-step helm installation and works with all flavors of Kubernetes &#8211; native upstream distribution, Amazon EKS, Google Cloud GKE, Microsoft Azure AKS, or Red Hat OpenShift.</p>
<p>Powered by unique architecture, DataSet combines high performance, low overhead, index-free design, and massively parallel processing that unlocks an unmatched analytics experience at a fraction of the cost.</p>
<p>If you haven’t started with DataSet yet, we invite you to try fully-functional DataSet for 30 days, completely free. Request a demo; we’d love to show you how DataSet can enable all your teams to troubleshoot Kubernetes efficiently.</p>
<p><a href="https://www.dataset.com/try-dataset/"><img loading="lazy" decoding="async" class="wp-image-1667 alignnone" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/dataset-banner.png" alt="" width="395" height="109" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/dataset-banner.png 920w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/dataset-banner-300x83.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/dataset-banner-768x212.png 768w" sizes="auto, (max-width: 395px) 100vw, 395px" /></a></p>
<p>The post <a href="https://www.dataset.com/blog/introducing-dataset-kubernetes-explorer/">Introducing DataSet Kubernetes Explorer</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>7 Reasons Customers Choose DataSet for Log Management</title>
		<link>https://www.dataset.com/blog/7-reasons-customers-choose-dataset/</link>
		
		<dc:creator><![CDATA[Maggie Liu]]></dc:creator>
		<pubDate>Tue, 20 Dec 2022 21:14:23 +0000</pubDate>
				<category><![CDATA[Log Analytics]]></category>
		<category><![CDATA[Customers]]></category>
		<category><![CDATA[DevOps]]></category>
		<category><![CDATA[Log Monitoring]]></category>
		<category><![CDATA[observability]]></category>
		<guid isPermaLink="false">https://www.dataset.com/?p=2139</guid>

					<description><![CDATA[<p>There are numerous reasons to consider a log and data event management tool. To start, here are customer stories we have consolidated to share the benefits of implementing a logging solution into your team’s workflow! Let’s dive into what customers have said about why they chose DataSet, but more importantly how they are using log [&#8230;]</p>
<p>The post <a href="https://www.dataset.com/blog/7-reasons-customers-choose-dataset/">7 Reasons Customers Choose DataSet for Log Management</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>There are numerous reasons to consider a log and data event management tool. To start, here are customer stories we have consolidated to share the benefits of implementing a logging solution into your team’s workflow! Let’s dive into what customers have said about why they chose <b>DataSet,</b> but more importantly how they are using log management to improve their software development process and productivity.</p>
<h3><b>1. Fast Data Ingestion &#8211; Petabytes to Scale</b></h3>
<p>One of DataSet’s strongest assets is providing blazing speeds of data ingestion. It is clear that most teams evaluating logging and observability tools are looking for the easiest and most effective way to scale and search through high volume data. When <a href="https://assets.sentinelone.com/dataset/dataset-casestudy-za?lb-mode=overlay"><b>Zalando</b></a> migrated from a monolithic code base to a microservices architecture, their teams prioritized being able to access all data within their new complex architecture. Instead of trying to find which hosts were running on which services and manually pulling logs from each host, their DevOps teams simplified by ingesting all services in DataSet for instant searches.</p>
<blockquote><p><b><i>An online retail company reduced log search time by 98% from hours down to seconds</i></b></p></blockquote>
<p>While some customers were beginning their journey in the logging space, others were opting for a new solution opposed to their current legacy competitor tools. A leading talent management software company found a competitor tools’ ingestion performance too slow and noticed their service slowing down as data volume ramped up. On the other hand, a popular online dating company decided to opt-in for a buy solution with DataSet versus their ELK based in-house solution.</p>
<p>As a result, both of their engineering teams found a similar reduction in log search time to that of Zalando’s and did not have to worry about storage capacity.</p>
<h3><b>2. Simplify the Journey from Monoliths to Microservices</b></h3>
<p>There are many benefits to moving your architecture to microservices, but there are caveats to consider. For example, engineering teams at <a href="https://assets.sentinelone.com/dataset/dataset-casestudy-wi?lb-mode=overlay"><strong>Wistia</strong></a> needed a single solution to provide real time visibility into their entire cloud environment. They used DataSet to gain insight into their containerized applications which were being deployed on Amazon EKS. Knowing that DataSet effortlessly unifies logs spread across all microservices, infrastructure, and applications they’re running on, the team was able to gain insight with Kubernetes.</p>
<p>Likewise, the previously mentioned talent management company was able to equip their Cloud Operations team with similar visibility across all applications, cloud stacks, and containers on Amazon ECS. They were able to have all the access they needed to web server logs and applications from DataSet.</p>
<blockquote><p><b><i>A leading talent management software company</i></b><b><i> enhanced its migration to microservices by being able to detect performance issues in seconds &#8211; which took competitors 10 minutes</i></b></p></blockquote>
<p>When moving from traditional data centers to Kubernetes, <a href="https://assets.sentinelone.com/dataset/copart-testimonial?lb-mode=overlay"><strong>Copart</strong></a> decided to make the jump to log management. They quickly scaled all their logs in order to increase response times to query, thus improving scalability and performance in operations.</p>
<p>Lastly, <strong><a href="https://assets.sentinelone.com/dataset/asana-dataset-testimonial?lb-mode=overlay">Asana</a></strong>, found their applications lacked visibility and transitioned from running scripts to download logs from their S3 buckets to running Kubernetes frameworks to connect their logs for easy central visibility across the entire tech stack.</p>
<p>As you can see, it is generally easy to deploy an agent and start ingesting logs with cloud-native tools like DataSet.</p>
<h3><b>3. Total Cost Reduction</b></h3>
<p>Developer team leaders can attest to a significant decrease in total cost of ownership when looking at the big picture effects of log management. In fact, noted by Copart’s CISO, DevOps and Security teams downsized from two log management solutions to one, with DataSet. They were able to respond to incidents quicker due to aggregated data across servers, routers, infrastructures, and ensure application uptime.</p>
<blockquote><p><b><i>Copart&#8217;s CISO recognized a drop in total cost for DevOps teams due to more integrated system and network logs and increased latency</i></b></p></blockquote>
<p>Another benefit is that DataSet does not charge by the number of users. Some teams feel like they can scale infinitely in relation to product adoption and not worry about uncertain overages.</p>
<h3><b>4. Make Data Accessible to All</b></h3>
<p>No need to worry about the gatekeepers of information with a log management tool as accessible as DataSet. It’s no surprise that making data sets accessible to an entire team benefits everyone. When it came down to sharing a <a href="https://www.dataset.com/solutions/data-lake/">data lake</a>, Zalando enabled hundreds of their small autonomous teams to take ownership of one or more platforms. By having a centralized variety of logs available to search at scale for everyone, DataSet was <em>adopted by 200 teams made up of over 1,000 engineers</em>.</p>
<blockquote><p><b><i>Engineer, Security, DevOps, Support teams all make use of log management resources</i></b></p></blockquote>
<p>Who else can take advantage of logs besides DevOps and security teams? Wistia, chose to give access to log management for their Technical Support team and found success in usability and self-serve purposes. Its tech support team used DataSet to track the root cause of customer issues using the search function to pinpoint requests within the logs. By analyzing customer encounters, they were able to identify and best solve common problems.</p>
<h3><strong>5.</strong> <b>Custom Parsing &#8211; See What Matters</b></h3>
<p>Parsing common log types makes it easy to ingest data so that they’re easy to search and analyze. Customers previously mentioned, such as Zalando and Wistia, found usefulness in custom parsing, ease in implementing on instances and out-of-the-box agents, as well as flexibility with formatting rules.</p>
<blockquote><p><b><i>An online dating company&#8217;s operations team saves thousands of engineer hours with custom parsers, configuring to extract fields from custom log formats</i></b></p></blockquote>
<p>An online dating company found its match with DataSet’s custom parsing ability. Within their journey, they were able to deploy in production environments, set up the parser, and track down issues in only minutes. Traditionally, it would take hours to query data and pinpoint important levels of information, but with parsing it only takes minutes to track down relevant issues.</p>
<p>DataSet provides <a href="https://app.scalyr.com/help/built-in-parsers">Built-In Parsers</a> for common log formats and also allows for custom builds as well.</p>
<h3><strong>6.</strong> <b>Easy Integrations</b></h3>
<p>It&#8217;s possible to aggregate logs from thousands of services with no management overhead. You can use the DataSet API to send and retrieve log data, archive events, and manage configuration files, users, and groups.</p>
<blockquote><p><b><i>Asana onboarded logs within their Kubernetes framework, making it easy to find logs across different clusters</i></b></p></blockquote>
<p>Going from one application to another is simple. As shown by Asana, their teams were able to find the root cause of incidents and correlations at lightning speed with Kubernetes.</p>
<p>Teams can experience the benefits of DataSet on all cloud platforms – from Amazon ECS, Google, to Microsoft Azure and more.</p>
<ul>
<li>DataSet and <a href="https://app.scalyr.com/monitors/kubernetes">Kubernetes</a></li>
<li>DataSet and <a href="https://app.scalyr.com/monitors/docker-monitor">Docker</a></li>
<li>DataSet and <a href="https://app.scalyr.com/help/install-agent-ecs">Amazon ECS</a></li>
</ul>
<h3><strong>7.</strong> Identify Errors with Alerts</h3>
<p>DataSet’s many integrations across platforms like email, Slack, PagerDuty, OpsGenie allow for instant alerting to flag important incidents. Many customers found that log management helped their teams identify errors and mitigate the incidents as a response. One company found that increased troubleshooting led to debugging productivity across their engineering team and as a result <em><strong>t</strong><strong>hey were able to resolve customer-facing issues quicker &#8211; cutting resolution time by 80 percent.</strong></em></p>
<blockquote><p><b><i>It’s easier and faster to diagnose bugs that frustrate customers &#8211; Infrastructure Engineering Lead, Wistia</i></b></p></blockquote>
<p>While some competitor tools do not provide easy access to web server and application logs, DataSet does so you can spend less time searching through them. What do you do when there is an outage? On-call engineers can quickly find logs that correlate and decide to scale up or down or deploy fixes. If you are dealing with Kubernetes, instead of figuring out which pod has errors and trying to find error logs from there, all the logs are shown in DataSet.</p>
<h3><strong><b>DataSet Has All The Features </b></strong></h3>
<p>Our platform is built for experiencing the speed, scale, and efficiency of enterprise data. Learn more about our features, such as <strong>schema-less ingestions</strong>, <strong>parsing and preprocessing data</strong>, <strong>live streaming data</strong>, <strong>parallel query engine</strong>, <strong>secure storage</strong>, and <strong>cloud architecture</strong>, to make an informed decision when evaluating your next log monitoring solution.</p>
<p>These features allow you to do all sorts of things, including and not limited to:</p>
<ul>
<li>Streaming data from a broad range of log shippers, queues, agents, distributed stream processors, and APIs in milliseconds</li>
<li>Acquiring visibility on structured and unstructured data upon ingestion</li>
<li>Viewing live dashboards materialized by repeat queries, which alerts trigger at machine speed and automate tasks execute in real-time</li>
<li>Searching encrypted data instantly in a security-first platform</li>
<li>Experiencing cloud scale</li>
</ul>
<h3><b>Get Started Now</b></h3>
<p>Teams choose DataSet to elastically scale to petabytes of data while delivering real-time performance at a fraction of the cost. We <a href="https://www.dataset.com/try-dataset/">invite you to try </a>a fully-functional DataSet for 30 days at no cost.</p>
<p><a href="https://www.dataset.com/request-demo/">Request a demo</a> &#8211; We&#8217;ll show you how DataSet provides unparalleled cost advantages for your specific use case.</p>
<p>The post <a href="https://www.dataset.com/blog/7-reasons-customers-choose-dataset/">7 Reasons Customers Choose DataSet for Log Management</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></content:encoded>
					
		
		
		<enclosure url="https://www.dataset.com/wp-content/uploads/sites/10/2022/02/0a191b04aa511d4c29f4bfd478265f4a.jpg" length="36820" type="image/jpeg" />	</item>
		<item>
		<title>Observability vs. Monitoring: Everything You Need To Know</title>
		<link>https://www.dataset.com/blog/observability-vs-monitoring/</link>
		
		<dc:creator><![CDATA[Maggie Liu]]></dc:creator>
		<pubDate>Tue, 22 Nov 2022 20:11:48 +0000</pubDate>
				<category><![CDATA[Log Analytics]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[observability]]></category>
		<guid isPermaLink="false">https://www.dataset.com/?p=2127</guid>

					<description><![CDATA[<p>Good monitoring and observability will help you detect problems more quickly when it comes to running production software, spot issues before they become outages, and ultimately save you and your users’ headaches. Both monitoring and observability provide the foundation to improve the customer experience, reduce reliability metrics like Mean Time to Repair (MTTR), and improve [&#8230;]</p>
<p>The post <a href="https://www.dataset.com/blog/observability-vs-monitoring/">Observability vs. Monitoring: Everything You Need To Know</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Good <b>monitoring </b>and<b> observability </b>will help you detect problems more quickly when it comes to running production software, spot issues before they become outages, and ultimately save you and your users’ headaches. Both monitoring and observability provide the foundation to improve the customer experience, reduce reliability metrics like <a href="https://www.dataset.com/blog/mean-time-to-repair/">Mean Time to Repair </a>(MTTR), and improve Mean Time Between Failures (MTBF).</p>
<p>According to the latest 2022 report, <a href="https://cloud.google.com/devops">DevOps Research and Assessment (DORA)</a> highlights that good monitoring alongside an observability solution should be prioritized for high-performing and elite teams.</p>
<p>It is important to know the value monitoring can provide and the role it plays in strengthening observability. Read on to learn:</p>
<ul>
<li>What is observability and monitoring?</li>
<li>How are observability and monitoring different?</li>
<li>Building your monitoring and observability efforts with DataSet</li>
</ul>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-2128" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-13.png" alt="" width="1200" height="500" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-13.png 1200w, https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-13-300x125.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-13-1024x427.png 1024w, https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-13-768x320.png 768w" sizes="auto, (max-width: 1200px) 100vw, 1200px" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h1><b>Observability vs. Monitoring</b></h1>
<p>&nbsp;</p>
<p>While observability and monitoring sound vaguely similar, they are related but not in the ways you may think. Monitoring helps teams identify problems and receive notifications about them, while observability follows through to aid with problem identification, improving debugging and cause analysis. Additionally, monitoring uses observability tools to track known metrics and failure points while observability provides tools to resolve unknown or unexpected issues. They go hand-in-hand together where you actually need both monitoring and observability if you want to build reliable systems.</p>
<p><a href="https://cloud.google.com/architecture/devops/devops-measurement-monitoring-and-observability"><b>Monitoring</b></a> is tooling or a technical solution that allows teams to watch and understand the state of their systems. Monitoring is based on gathering predefined sets of metrics or logs.</p>
<p><a href="https://cloud.google.com/architecture/devops/devops-measurement-monitoring-and-observability"><b>Observability</b></a> is tooling or a technical solution that allows teams to actively debug their system. Observability is based on exploring properties and patterns not defined in advance.</p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-2129" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-11.png" alt="" width="1200" height="500" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-11.png 1200w, https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-11-300x125.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-11-1024x427.png 1024w, https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-11-768x320.png 768w" sizes="auto, (max-width: 1200px) 100vw, 1200px" /></p>
<h2><b>Observability</b></h2>
<p>With observability, you are able to infer the internal state of a system based on its outputs. Since we cannot predict what we will want to know about our system, we want to track enough data to make sure we can analyze problems from different angles and different aggregates when problems inevitably occur.</p>
<p>There are three main pillars that observability encompasses: metrics, logs, and traces. These three solutions should provide insights into what is going on inside the system.</p>
<p><b>Metrics</b></p>
<p>Metrics typically aggregate numeric data about your system and application. For example, you can have metrics around your available CPU and memory and track metrics like response codes, traffic, latency, and errors.</p>
<p>Once system metrics are defined, you can also add on <a href="https://app.scalyr.com/solutions/custom-metrics"><b>custom metrics</b></a> that provide relevant business or domain metrics. This allows you to track types of payments, shopping cart size, and a number of abandoned carts, to name a few. For instance with DataSet, you can log simple metrics, or complex multi-field events, with equal ease. Then use your metrics for searching, graphing, alerting, and more.</p>
<p><b>Metric Types</b></p>
<p>There are many types of metrics, but the following are the most common:</p>
<ul>
<li><strong><span style="text-decoration: underline">Gauge</span></strong> &#8211; Gauges represent measurements at a particular point in time. Metrics like CPU, memory, or queue counts use gauges.</li>
<li><strong><span style="text-decoration: underline">Counter</span></strong> &#8211; Counters measure events that occur. For example, you may count the number of requests your API receives, the number of errors that result, or the number of visitors to your application site.</li>
<li><strong><span style="text-decoration: underline">Histogram</span></strong> &#8211; Histograms measure the distributions of events. One of the most common uses for histograms is latency. And instead of using just an average or max, you can determine the 50th, 90th, or 99th percentile of latency that your customers experience.</li>
<li><strong><span style="text-decoration: underline">Gauge Histogram</span></strong> &#8211; As a combination of the gauge and histogram, here you can see the distribution of gauge data. So if we take queue counts as an example gauge, we could plot how long the data has been in the queue with a histogram.</li>
<li><span style="text-decoration: underline"><strong>Info</strong></span> &#8211; For information that doesn’t change during a process, you can use info. This can indicate an application version number or dependency version numbers.</li>
</ul>
<p>With metrics, you have the potential to measure anything that occurs in your system.</p>
<p><b>Logs</b></p>
<p>Logs provide textual data regarding events that occur in your system. Some logs can provide the crucial piece of information to resolving issues, but most logs do not add much value, increasing unnecessary noise volume. It is worth aggregating logs because they provide context to recreate and investigate issues, but it can also be a nuance to reduce log clutter.</p>
<p>It is important to consider leveraging <a href="https://www.dataset.com/solutions/full-stack-log-analytics/">log analytics tools</a> that can help scale data without slowing performance. If you would like to avoid having to query different sources of information when troubleshooting,  you want to have your database logs in the same location as your application logs. In other words, you need to have centralized logging, which is provided by solutions like DataSet.  Instantly aggregate, search and analyze log data across the entire stack. No matter where an anomaly occurs, you can detect, triage, root cause and resolve.</p>
<p><b>Traces</b></p>
<p>Both logs and metrics can relate to particular events that occur within the system, but they do not provide the ability to trace one particular transaction or customer until we add tracing.</p>
<p>For example, if you want to follow a customer’s experience for a particular transaction that failed, you can look at traces and tie relevant metrics, errors, and logs together to show the path through the code that a particular transaction took. With traces, we gain the ability to trace one process, transaction, or experience through our system.</p>
<h2><img loading="lazy" decoding="async" class="alignleft size-full wp-image-2130" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-12.png" alt="" width="1200" height="500" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-12.png 1200w, https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-12-300x125.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-12-1024x427.png 1024w, https://www.dataset.com/wp-content/uploads/sites/10/2022/11/blog-embed-12-768x320.png 768w" sizes="auto, (max-width: 1200px) 100vw, 1200px" /><b>Pitfalls: Three Pillars</b></h2>
<p>Businesses should take some caution when determining whether observability is the solution to their problems. Many wrongfully assume that if they have monitoring, logging, and traceability, they have observability. But that’s not always the case.</p>
<p>In fact, common pitfalls can add more pain and make debugging more complex. For example, if you have three disparate systems that provide the logging, metrics, and traces, your engineers will have to context switch and attempt to correlate the data in those systems themselves. That can lead to errors, a longer time to debug, and frustration.</p>
<p>Additionally, some companies have the “silver bullet” pitfall. Observability isn’t just about throwing a tool or dashboards at your application teams. It is also about building a solid foundation of good logging and metric fundamentals.</p>
<p>Even if teams have all the tools at their disposal, if their application reliability and availability aren’t improving, there may not be any observability, no matter how many fancy dashboards you may have.</p>
<h2><b>Monitoring</b></h2>
<p>Now that we have a good understanding of observability, what about monitoring? With monitoring, we use some of our observability tools to identify issues, notify the software team of those issues, and even predict potential trends in our system’s reliability.</p>
<p>Dashboard monitoring becomes important when tracking metrics and logs, but it should incite actionable steps. <a href="https://app.scalyr.com/help/alerts">Automated alerts</a> should be set up to provide notifications when things need to be looked at or when systems experience issues – and the <a href="https://app.scalyr.com/help/dashboards">dashboards</a> should provide relevant data for investigative purposes. DataSet unifies multiple functions into a single tool: log aggregation, search, and analysis; server metrics; dashboards and alerts, external monitoring, and more. At the heart of all this is the event database, a universal repository for logs, metrics, and other operational data, hosted on our servers.</p>
<p>Now this doesn’t mean that you always need an incident to review dashboards. You can also explore the current health of the system or the activities taking place. Then you can start to see how different types of traffic or load affect other parts of the system. From there, you can start to predict when issues may crop up in the future.</p>
<p><b>Reaching Observability with Centralized Logging </b></p>
<p>Observability and monitoring go hand in hand. Dedicate the time to understand your system and its architecture and components to know where reliability is lacking within. You can use tools like DataSet to start aggregating your system’s logs in a centralized location and troubleshoot in a better way.</p>
<p>Thousands of <a href="https://assets.sentinelone.com/dataset/dataset-cs-za-1?utm_source=linkedin&amp;utm_medium=social&amp;utm_campaign=splunk-value-wb">Zalando engineers</a> use DataSet for application observability to proactively monitor their end-to-end system health, detect potential problems before they arise, and quickly troubleshoot incidents.</p>
<p>How can you get started?<a href="https://www.dataset.com/try-dataset/"><b> Start a free trial with DataSet </b></a>and see how you can combine observability and monitoring to ensure your teams can not only detect issues but also resolve them quickly:</p>
<ul>
<li>Free for 30-days</li>
<li>All features enabled</li>
<li>Unlimited Users, Queries, Dashboards, Real-time alerts</li>
<li>No credit card required</li>
<li>Scale to petabytes of data</li>
</ul>
<p>The post <a href="https://www.dataset.com/blog/observability-vs-monitoring/">Observability vs. Monitoring: Everything You Need To Know</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></content:encoded>
					
		
		
		<enclosure url="https://www.dataset.com/wp-content/uploads/sites/10/2022/02/9f7c900bb0d855fc79e55a76050bf212-1.jpg" length="150827" type="image/jpeg" />	</item>
		<item>
		<title>Introducing DataSet KubeiQ</title>
		<link>https://www.dataset.com/blog/introducing-dataset-kubeiq/</link>
		
		<dc:creator><![CDATA[Amit Sharma]]></dc:creator>
		<pubDate>Tue, 25 Oct 2022 11:49:44 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://www.dataset.com/?p=2082</guid>

					<description><![CDATA[<p>We are excited to announce the preview of DataSet KubeiQ, an algorithmic approach to automatically detect anomalies no matter where they occur across the Kubernetes cluster &#8211; the underlying infrastructure, the Kubernetes platform, or deployed workloads. The innovation enables DevOps and Site Reliability Engineering (SRE) teams to expedite investigations related to Kubernetes, reduce mean-time-to-resolve (MTTR), [&#8230;]</p>
<p>The post <a href="https://www.dataset.com/blog/introducing-dataset-kubeiq/">Introducing DataSet KubeiQ</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We are excited to announce the preview of DataSet Kube<i>iQ, </i>an algorithmic approach to automatically detect anomalies no matter where they occur across the Kubernetes cluster &#8211; the underlying infrastructure, the Kubernetes platform, or deployed workloads. The innovation enables DevOps and Site Reliability Engineering (SRE) teams to expedite investigations related to Kubernetes, reduce mean-time-to-resolve (MTTR), and improve end-user experience.</p>
<p>DevOps engineers and SREs use static thresholds based alerts, heuristics, or triangulation based on trial and error to investigate incidents within dynamic, containerized environments in an effort to find the most meaningful signals. Now, teams can streamline this process with DataSet Kube<i>iQ</i>, which automatically bubbles up anomalies in Kubernetes clusters.</p>
<h3>Quickly Detect and Resolve Anomalies No Matter Where They Occur in Kubernetes Cluster</h3>
<p>DataSet continuously observes the entire cluster and automatically surfaces meaningful insights related to anomalies, such as</p>
<ul>
<li>A high number of unhealthy nodes due to memory, disk, or CPU pressure</li>
<li>A high number of unhealthy pods remain in the Pending status</li>
<li>A high number of unavailable Kubernetes Deployments</li>
<li>A high number of restarted containers</li>
</ul>
<p>Due to the ephemeral nature of containerized infrastructure, some of the scenarios mentioned above are expected, such as container restarts. Kubernetes is self-healing and automatically corrects when anomalies occur unless there is a system-wide issue such as resource starvation. The challenge is to determine when a performance signal indeed becomes an anomaly.</p>
<p>DataSet continuously analyzes your Kubernetes cluster and leverages machine learning to understand when activity deviates from its historical baseline to be considered anomalous.</p>
<p>Using DataSet, engineers can effectively resolve performance incidents faster than ever before, regardless of their prior knowledge of Kubernetes technology.</p>
<p>For example, if you are an  SRE who recently joined an e-commerce company that runs several services on Kubernetes, you want to get notified when the latency of a service exceeds a threshold. What threshold would you like to set, so you get alerted when there is an anomaly? Many variables can affect the latency of a particular service, such as the rate of requests, errors, or even infrastructure performance, for several reasons. Creating an alert on a static threshold is simplistic and almost always results in alert storms.</p>
<p>Kube<i>iQ </i>uses machine learning to automatically determine truly anomalous patterns and surface those up so that you can get alerted when there might be a systematic issue. In this example, you can see spikes in a frontend service&#8217;s latency.</p>
<p>You&#8217;d have gotten false alerts multiple times if an alert was set based on static thresholds. KubeiQ dynamically sets thresholds and calculates a performance metric&#8217;s expected range.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2084" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/10/anomalies.png" alt="" width="2904" height="998" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/10/anomalies.png 2904w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/anomalies-300x103.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/anomalies-1024x352.png 1024w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/anomalies-768x264.png 768w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/anomalies-1536x528.png 1536w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/anomalies-2048x704.png 2048w" sizes="auto, (max-width: 2904px) 100vw, 2904px" /></p>
<p>You are alerted only when the actual value exceeds the confidence interval, which is dynamically created based on historical performance, thus minimizing alerts and the cognitive overload associated with triaging such incidents.</p>
<p>A quick pivot to logs indicates that infrastructure was starved of resources, and one of the replicas of this service was evicted.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2085" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/10/logs-kubeiq.png" alt="" width="3536" height="712" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/10/logs-kubeiq.png 3536w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/logs-kubeiq-300x60.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/logs-kubeiq-1024x206.png 1024w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/logs-kubeiq-768x155.png 768w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/logs-kubeiq-1536x309.png 1536w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/logs-kubeiq-2048x412.png 2048w" sizes="auto, (max-width: 3536px) 100vw, 3536px" /></p>
<p>You can automate the response and resolution for such conditions using an auto-scaler that dynamically provisions just the right compute resources to handle your cluster&#8217;s applications.</p>
<p>Another pertinent consideration is the ephemerality in dynamic Kubernetes environments. You want to monitor pod restarts to proactively get alerted about a system wide issue. However, you know that not every occurrence of these events indicates an anomaly. Kubernetes is self-healing, so if a pod is evicted or stopped, Kubernetes will reschedule or restart it to match the desired state.</p>
<p>So should you be alerted on pod restarts? Again, static thresholds no longer work in the dynamic Kubernetes and container environments. Kube<i>iQ </i>correctly analyzes these dynamic events and alerts you only when it is determined that pod restart exhibit anomalous patterns and warrants your attention.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2086" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/10/pod-restarts.png" alt="" width="3270" height="880" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/10/pod-restarts.png 3270w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/pod-restarts-300x81.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/pod-restarts-1024x276.png 1024w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/pod-restarts-768x207.png 768w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/pod-restarts-1536x413.png 1536w, https://www.dataset.com/wp-content/uploads/sites/10/2022/10/pod-restarts-2048x551.png 2048w" sizes="auto, (max-width: 3270px) 100vw, 3270px" /></p>
<p>In this case, even though there is variation in the number of pod restarts across the system, it is within the expected range as predicted by Kube<i>iQ. </i></p>
<p>KubeiQ proactively analyzes the performance of the entirety of the Kubernetes clusters and expedites the process of detecting and troubleshooting performance anomalies. Engineering teams can now effectively identify anomalies in far less time, regardless of their prior knowledge of the Kubernetes platform or the underlying infrastructure.</p>
<h2>Get Started with DataSet to Automate Kubernetes Monitoring</h2>
<p>DataSet Kube<em>iQ, </em>a part of Kubernetes Explorer is deployed as a one-step helm installation and works with all flavors of Kubernetes &#8211; native upstream distribution, Amazon EKS, Google Cloud GKE, Microsoft Azure AKS, or Red Hat OpenShift.</p>
<p>Powered by unique architecture, DataSet combines high performance, low overhead, index-free design, and massively parallel processing that unlocks an unmatched analytics experience at a fraction of the cost.</p>
<p>If you haven’t started with DataSet yet, we invite you to try fully-functional DataSet for 30 days, completely free. Request a demo; we’d love to show you how DataSet can enable all your teams to troubleshoot Kubernetes efficiently.</p>
<p><a href="https://www.dataset.com/try-dataset/"><img loading="lazy" decoding="async" class="wp-image-1667 aligncenter" src="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/dataset-banner.png" alt="" width="460" height="127" srcset="https://www.dataset.com/wp-content/uploads/sites/10/2022/05/dataset-banner.png 920w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/dataset-banner-300x83.png 300w, https://www.dataset.com/wp-content/uploads/sites/10/2022/05/dataset-banner-768x212.png 768w" sizes="auto, (max-width: 460px) 100vw, 460px" /></a></p>
<h2>Meet us at KubeCon or SREcon Europe</h2>
<p>Heading to <a href="https://www.dataset.com/blog/kubecon-2022/" target="_blank" rel="noopener">KubeCon + CloudNativeCon</a> North America in Detroit or <a href="https://www.dataset.com/blog/srecon-europe-2022/" target="_blank" rel="noopener">SRECon Europe</a> in Amsterdam? The DataSet team will be in full force to greet you there. Meet us to get a personalized demo, collect awesome swag, and win exciting prizes!</p>
<p>The post <a href="https://www.dataset.com/blog/introducing-dataset-kubeiq/">Introducing DataSet KubeiQ</a> appeared first on <a href="https://www.dataset.com">Dataset</a>.</p>
]]></content:encoded>
					
		
		
		<enclosure url="https://www.dataset.com/wp-content/uploads/sites/10/2022/03/Log4Net-blog-featured.png" length="72388" type="image/png" />	</item>
	</channel>
</rss>
