<?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>DEV Community: Measurely</title>
    <description>The latest articles on DEV Community by Measurely (@measurely).</description>
    <link>https://dev.to/measurely</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2626286%2F61704393-8ba2-46e6-92e7-73310a348636.png</url>
      <title>DEV Community: Measurely</title>
      <link>https://dev.to/measurely</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/measurely"/>
    <language>en</language>
    <item>
      <title>Quickstart Guide: Getting Started with Measurely</title>
      <dc:creator>Measurely</dc:creator>
      <pubDate>Sun, 29 Dec 2024 00:50:44 +0000</pubDate>
      <link>https://dev.to/measurely/quickstart-guide-getting-started-with-measurely-32cg</link>
      <guid>https://dev.to/measurely/quickstart-guide-getting-started-with-measurely-32cg</guid>
      <description>&lt;p&gt;Welcome to Measurely! This guide will walk you through creating your first application, setting up your first metric, and sending data programmatically using our API. Let’s get started!&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1: Create Your First Application
&lt;/h2&gt;

&lt;p&gt;Log in to the Measurely Dashboard:Head to Measurely Dashboard and log in using your preferred authentication method (GitHub, Google, etc.).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Create an Application:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Provide a name for your new application&lt;/li&gt;
&lt;li&gt;Add an image (optional)&lt;/li&gt;
&lt;li&gt;Click on the Create Application button.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzj3w6qaml6i4idxqibb9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzj3w6qaml6i4idxqibb9.png" alt="Create application" width="800" height="349"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2: Define Your First Metric
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Navigate to the Metrics Section:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Within your application, click on Create Metric.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Create a Metric:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Click on Add Metric and define the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Type:&lt;/strong&gt; Select a metric type (e.g., basic, dual). More are on the way&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Metric Name:&lt;/strong&gt; Choose a meaningful name (e.g., users).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Base Value:&lt;/strong&gt; Provide a base value for your metric. (optional)&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Click Create to add the metric.&lt;/p&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fngl91phbrm155ek7fdtl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fngl91phbrm155ek7fdtl.png" alt="Create metric" width="800" height="409"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3: Set Up Your Code to Send Metrics
&lt;/h2&gt;

&lt;p&gt;Now that your application and metric are ready, it’s time to integrate Measurely into your codebase.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Get Your API Key&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click on the API Key button at the top of the page.&lt;/li&gt;
&lt;li&gt;Copy the API Key provided there.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Get Your Metric Id&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Navigate to the metrics page&lt;/li&gt;
&lt;li&gt;Click on the 3 dots of your newly created metric&lt;/li&gt;
&lt;li&gt;Click on Copy ID&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Example: Sending Metrics Using cURL
&lt;/h3&gt;

&lt;p&gt;Here’s a simple example of how to send data to Measurely:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST https://api.measurely.dev/event/v1/YOUR_METRIC_ID &lt;span class="se"&gt;\&lt;/span&gt;
&lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer YOUR_API_KEY"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
&lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
&lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{
  "value": 42
}'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Example: Sending Metrics Using Javascript
&lt;/h3&gt;

&lt;p&gt;If you’re using javascript, here’s an example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;updateMetric&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;API_KEY&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;METRIC_ID&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;fetch&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;`https://api.measurely.dev/event/v1/&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;METRIC_ID&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="na"&gt;method&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;POST&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;headers&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Authorization&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;`Bearer &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;API_KEY&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;
      &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Content-Type&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;application/json&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="p"&gt;},&lt;/span&gt;
    &lt;span class="na"&gt;body&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;JSON&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;stringify&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt; &lt;span class="na"&gt;value&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="p"&gt;}),&lt;/span&gt;
  &lt;span class="p"&gt;});&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;status&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can find more language examples in the &lt;a href="https://measurely.dev/docs/api-reference/v1" rel="noopener noreferrer"&gt;documentation&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 4: View Your Metrics in the Dashboard
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Go to the Metrics Tab:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Navigate to your application’s Metrics tab.&lt;/li&gt;
&lt;li&gt;You should see your metric and the value you just sent.
&lt;strong&gt;Visualize Your Data:&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Use the built-in charts and filters to analyze your metrics over time.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0u9dqv6qlf15uebjyf6h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0u9dqv6qlf15uebjyf6h.png" alt="Metric page" width="800" height="377"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;You’ve successfully set up your first application, created a metric, and sent data to Measurely. From here, you can start adding more metrics, integrating Measurely deeper into your workflow, and gaining valuable insights.&lt;/p&gt;

&lt;p&gt;Don't hesitate to leave a feedback :)&lt;br&gt;
Need help? Check out our documentation or contact support at &lt;a href="mailto:support@measurely.dev"&gt;support@measurely.dev&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>tutorial</category>
      <category>analytics</category>
      <category>saas</category>
      <category>measurely</category>
    </item>
    <item>
      <title>Top 5 Analytics Dashboards to Track Metrics for Your App</title>
      <dc:creator>Measurely</dc:creator>
      <pubDate>Sat, 28 Dec 2024 23:51:02 +0000</pubDate>
      <link>https://dev.to/measurely/top-5-analytics-dashboards-to-track-metrics-for-your-app-5hbg</link>
      <guid>https://dev.to/measurely/top-5-analytics-dashboards-to-track-metrics-for-your-app-5hbg</guid>
      <description>&lt;h2&gt;
  
  
  1. &lt;a href="https://mixpanel.com/" rel="noopener noreferrer"&gt;Mixpanel&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Overview&lt;/strong&gt;: Mixpanel focuses on tracking user behavior and engagement, making it a great choice for understanding how users interact with your product. It’s particularly useful for product teams aiming to optimize their user journey.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Advanced funnel analysis.&lt;/li&gt;
&lt;li&gt;Cohort tracking and segmentation.&lt;/li&gt;
&lt;li&gt;A/B testing integration.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Best For&lt;/strong&gt;: Teams focused on product analytics and improving user engagement.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. &lt;a href="https://www.datadoghq.com/dg/monitor/datadog-free-trial/?utm_source=google&amp;amp;utm_medium=paid-search&amp;amp;utm_campaign=dg-brand-ww&amp;amp;utm_keyword=datadog&amp;amp;utm_matchtype=b&amp;amp;igaag=95325237782&amp;amp;igaat=&amp;amp;igacm=9551169254&amp;amp;igacr=678976642985&amp;amp;igakw=datadog&amp;amp;igamt=b&amp;amp;igant=g&amp;amp;utm_campaignid=9551169254&amp;amp;utm_adgroupid=95325237782&amp;amp;gad_source=1" rel="noopener noreferrer"&gt;Datadog&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Overview&lt;/strong&gt;: Datadog is a comprehensive monitoring and analytics platform designed for applications, databases, and infrastructure. It's ideal for DevOps teams looking to maintain high uptime and performance.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key Features&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Real-time dashboards for infrastructure and application performance.&lt;/li&gt;
&lt;li&gt;Custom metric monitoring with APIs.&lt;/li&gt;
&lt;li&gt;Logs and traces for debugging.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Best For&lt;/strong&gt;: DevOps teams needing robust monitoring for cloud-based apps.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. &lt;a href="https://amplitude.com/get-started?utm_source=google-ads&amp;amp;utm_medium=cpc&amp;amp;utm_campaign=Search_AMER_Brand&amp;amp;utm_content=707830940836&amp;amp;utm_term=amplitude&amp;amp;gad_source=1" rel="noopener noreferrer"&gt;Amplitude&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Overview&lt;/strong&gt;: Amplitude is a product analytics tool designed to help teams understand user behavior and optimize the customer journey. It’s perfect for businesses focused on user growth and retention.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Behavioral cohort analysis.&lt;/li&gt;
&lt;li&gt;Retention analysis.&lt;/li&gt;
&lt;li&gt;Built-in collaboration tools for teams.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Best For&lt;/strong&gt;: Product managers and marketers focusing on user growth and retention.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. &lt;a href="https://marketingplatform.google.com/about/analytics/" rel="noopener noreferrer"&gt;Google Analytics&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Overview&lt;/strong&gt;: Google Analytics is a free tool for tracking website traffic, user interactions, and app performance. While it's popular for website analytics, it also provides app tracking capabilities.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Easy integration with websites and apps.&lt;/li&gt;
&lt;li&gt;Real-time tracking of traffic and user activity.&lt;/li&gt;
&lt;li&gt;Extensive reporting capabilities.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Best For&lt;/strong&gt;: Small to medium businesses looking for a no-cost analytics solution.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. &lt;a href="https://measurely.dev" rel="noopener noreferrer"&gt;Measurely&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Overview&lt;/strong&gt;: Measurely is a highly customizable analytics platform tailored for businesses to define and track their unique metrics. Unlike traditional dashboards, it gives you the freedom to design what matters most for your application.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fully customizable metrics tracking.&lt;/li&gt;
&lt;li&gt;Easy-to-use API for programmatic updates.&lt;/li&gt;
&lt;li&gt;Integration with popular auth providers like GitHub and Google.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Best For&lt;/strong&gt;: Businesses or developers who need a flexible, tailored analytics solution without the bloat of generic tools.&lt;/p&gt;

&lt;p&gt;Why Measurely Stands Out&lt;/p&gt;

&lt;p&gt;While tools like Mixpanel, Amplitude, and Google Analytics focus on predefined metrics, Measurely offers a unique advantage: complete flexibility. It’s designed for businesses that need to track metrics specific to their operations. Measurely’s API allows you to programmatically send and update real-time metrics, making it the perfect solution for apps with unique data needs.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Choosing the right analytics dashboard depends on your specific requirements. Tools like Mixpanel and Amplitude excel at user behavior tracking, while Datadog shines in infrastructure monitoring. Google Analytics offers a reliable free solution for basic needs, and Measurely provides unmatched flexibility for businesses with unique metrics.&lt;/p&gt;

&lt;p&gt;If you’re looking for a tailored solution, give Measurely a try! Its customizable approach might be exactly what you need to unlock deeper insights into your app's performance.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://measurely.dev" rel="noopener noreferrer"&gt;Explore Measurely here&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Feh5em7yrqrwd2049o3uk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Feh5em7yrqrwd2049o3uk.png" alt="Measurely 1.0" width="800" height="509"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>analytics</category>
      <category>saas</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
