Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
webinar: Autometrics app observability
Browse files Browse the repository at this point in the history
  • Loading branch information
Susmita-Dey committed Dec 4, 2023
1 parent d121efc commit e434a8b
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 1 deletion.
Binary file added src/assets/webinars/autometrics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions src/content/Webinars/AutometricsWebinar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import Poster from '@/assets/webinars/autometrics.png';

import {
IndividualWebinarCompletedPageHeader,
IndividualWebinarPageFAQ,
} from './IndividualWebinarPageContent';

const AutometricsWebinar = {
header: IndividualWebinarCompletedPageHeader,
name: 'Application observability with Autometrics & Beyond',
description:
'Explore the world of application observability with Autometrics! Join our webinar to discover how function-level metrics, including latency, request rate, and error rate, can enhance your application’s performance. Learn how Autometrics, an open-source microframework based on Prometheus and OpenTelemetry, enables quick setup of function-based metrics directly from your code. Unleash the power of metrics to improve debugging efficiency, establish Service Level Objectives (SLOs), and ensure a seamless user experience. Don’t miss out on the key insights for cost-efficiently enhancing observability in your applications.',
poster: Poster,
videoUrl: 'https://www.youtube.com/embed/roQX2HJODb0',
takeaways: [
'Basics around application observability',
'The benefits of using open-source tooling for implementing an observability strategy',
'Deeper dive into the topic of application metrics',
'Introduction to OpenTelemetry and Prometheus',
'How to leverage the open-source microframework Autometrics',
],
time: '06 December 2023 10:00:00 GMT',
speakers: [
{
name: 'Nele Lea',
description: 'Fiberplane',
twitter: 'nele_lea',
img: 'https://pbs.twimg.com/profile_images/1657355405037535232/uE_wTa3V_400x400.jpg',
},
],
slug: 'application-observability-with-autometrics',
faq: IndividualWebinarPageFAQ,
};

export default AutometricsWebinar;
2 changes: 1 addition & 1 deletion src/content/Webinars/ManageK8Applications.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const ManageK8Applications = {
header: IndividualWebinarCompletedPageHeader,
name: 'How to Manage and Control Kubernetes Applications Without Kubernetes Expertise',
description:
'Developers have a hard time managing applications deployed to Kubernetes. They need to understand how Kubernetes works, how to access clusters, and how to compose, monitor, and audit applications. As developers’ Kubernetes responsibilities keep growing, learning and maintaining all this takes precious time away from their main responsibility of delivering quality applications and producing business value.\n\nLens AppIQ is designed to help developers address these issues, giving them a platform where they can visualize and support their applications without a deep understanding of Kubernetes. It enables developers to take back control of their time and focus on application development.\n\n In this hands-on webinar, we will demonstrate how developers can use Lens AppIQ to manage their own applications, no matter what stage of the Kubernetes journey they’re in, and how they can take advantage of its app-centric approach.',
'Unlock the power of Kubernetes without the complexity! Join our hands-on webinar to discover how Lens AppIQ empowers developers to effortlessly manage and control their applications at any stage of the Kubernetes journey. Say goodbye to the steep learning curve and reclaim your time for focused application development. Dive into a seamless, app-centric approach with Lens AppIQ - the key to simplifying Kubernetes management for developers.',
poster: Poster,
videoUrl: 'https://www.youtube.com/embed/3ILs0gRtlsU',
takeaways: [
Expand Down
9 changes: 9 additions & 0 deletions src/content/Webinars/index.content.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import AutometricsWebinar from '@/content/Webinars/AutometricsWebinar';
import BiteSizeOtterize from '@/content/Webinars/BiteSizeOtterize';
import ConfigurationAsCode from '@/content/Webinars/ConfigurationAsCode';
import CostOptimizationWebinar from '@/content/Webinars/CostOptimizationWebinar';
Expand Down Expand Up @@ -47,6 +48,14 @@ const WebinarPageContent = {
export default WebinarPageContent;

export const webinar = [
{
img: AutometricsWebinar.poster,
title: AutometricsWebinar.name,
description: AutometricsWebinar.description,
time: AutometricsWebinar.time,
slug: AutometricsWebinar.slug,
details: AutometricsWebinar,
},
{
img: ManageK8Applications.poster,
title: ManageK8Applications.name,
Expand Down

0 comments on commit e434a8b

Please sign in to comment.