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

DatabaseGuardrails webinar page #829

Merged
merged 2 commits into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/assets/webinars/DatabaseGuardrails.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions src/content/Webinars/DatabaseGuardrails.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import Poster from '@/assets/webinars/DatabaseGuardrails.png';

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

const DatabaseGuardrails = {
header: IndividualWebinarCompletedPageHeader,
name: 'Database Guardrails - New Age For Developers and Databases',
description:
'Today’s industry standard for developing and maintaining databases is less than ideal. We don’t have a good way of preventing the bad code from reaching production. Once we deploy, we lack good tooling for observability and monitoring. Furthermore, we don’t have a way of troubleshooting and resolving issues reliably and automatically. Developers often don’t know how to proceed with their databases, and also often don’t own the solutions. We need something new. We need a paradigm shift and a completely novel approach: database guardrails.',
poster: Poster,
videoUrl: 'https://www.youtube.com/embed/MvU1wGeA2w8',
takeaways: [
'Today’s industry standard for database maintenance is unacceptable. We can’t prevent the bad code from reaching production, we lack observability, and we can’t troubleshoot automatically.',
'Developers need to own their databases. They need database guardrails - novel approach for developing and maintaining everything around the databases.',
'Database guardrails focus on preventing the bad code from reaching production, provide monitoring and observability focusing on semantics instead of raw metrics, and utilize signals from the whole SDLC loop to automatically identify and fix issues.',
],
time: '22 November 2023 11:00:00 GMT',
speakers: [
{
name: 'Adam Furmanek',
description: 'Software Development Engineer',
twitter: 'furmanekadam',
img: 'https://pbs.twimg.com/profile_images/1343686092642508806/feeMNpbc_400x400.jpg',
},
],
slug: 'database-guardrails',
faq: IndividualWebinarPageFAQ,
};

export default DatabaseGuardrails;
9 changes: 9 additions & 0 deletions src/content/Webinars/index.content.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import BiteSizeOtterize from '@/content/Webinars/BiteSizeOtterize';
import ConfigurationAsCode from '@/content/Webinars/ConfigurationAsCode';
import CostOptimizationWebinar from '@/content/Webinars/CostOptimizationWebinar';
import DatabaseGuardrails from '@/content/Webinars/DatabaseGuardrails';
import DeployWithFeatureFlags from '@/content/Webinars/DeployWithFeatureFlags';
import HeadlessBrowser from '@/content/Webinars/HeadlessBrowser';
import { IndividualWebinarPageFAQ } from '@/content/Webinars/IndividualWebinarPageContent';
Expand Down Expand Up @@ -45,6 +46,14 @@ const WebinarPageContent = {
export default WebinarPageContent;

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