Skip to content

Commit

Permalink
Merge pull request #63 from nairobi-gophers/bug-fix
Browse files Browse the repository at this point in the history
bugfix
  • Loading branch information
nutcas3 authored Oct 17, 2024
2 parents 5a35624 + cbedc44 commit 148ca8d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 116 deletions.
95 changes: 0 additions & 95 deletions frontend/src/utils/sessions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,55 +59,6 @@ const SessionsList = (): Array<ISession> => {
titleDescription: "",
day: "18th"
},
// {
// startTime: '9:00AM',
// date: '9:00AM - 11:00AM EAT, Fri Oct 18th',
// duration: 'Workshop 2h',
// title: 'Hands-On Observability: Monitoring Go Applications with OpenTelemetry and Grafana',
// room: 'Boardroom I, iHub',
// description: `<h1>Workshop Agenda</h1>

// <h2>Setting the Stage:</h2>
// <ul>
// <li>Introduction to observability and its importance in Go applications.</li>
// <li>Overview of OpenTelemetry and Grafana and their roles in observability.</li>
// </ul>

// <h2>Instrumenting Your Go Code:</h2>
// <ul>
// <li>Hands-on exercise: Instrumenting a Go application with OpenTelemetry.</li>
// <li>Generating and exporting metrics, traces, and logs.</li>
// </ul>

// <h2>Visualizing Insights with Grafana:</h2>
// <ul>
// <li>Setting up Grafana for visualizing telemetry data.</li>
// <li>Creating dashboards to monitor key metrics and traces.</li>
// </ul>

// <h2>Logging for Contextual Observability:</h2>
// <ul>
// <li>Hands-on exercise: Implementing structured logging in Go with OpenTelemetry.</li>
// <li>Enhancing logs with contextual information for better traceability.</li>
// </ul>

// <h2>Error Handling and Alerting:</h2>
// <ul>
// <li>Strategies for effective error handling in Go applications.</li>
// <li>Configuring alerts based on metrics and traces in Grafana.</li>
// </ul>

// <h2>Q&A Session and Open Discussion:</h2>
// <ul>
// <li>Best practices and challenges</li>
// </ul>`,
// level: "All attendees",
// name: "Desmond Obisi",
// role: "Software Engineer",
// company: "Resilis",
// titleDescription: "",
// day: "18th"
// },
{
startTime: '11:30AM',
date: '11:30AM - 11:45AM EAT, Fri Oct 18th',
Expand Down Expand Up @@ -379,52 +330,6 @@ const SessionsList = (): Array<ISession> => {
titleDescription: "",
day: "19th"
},
// {
// startTime: '11:00AM',
// date: '11:00AM - 11:40AM EAT, Sat Oct 19th',
// duration: 'Main Talk 40 Min',
// title: 'Hands-On Observability: Monitoring Go Applications with OpenTelemetry and Grafana',
// room: 'Main Conference Hall, iHub',
// description: "<h1>Workshop Agenda</h1>\n" +
// " <br> " +
// " <h2>Setting the Stage:</h2>\n" +
// " <ul>\n" +
// " <li>- Introduction to observability and its importance in Go applications.</li>\n" +
// " <li>- Overview of OpenTelemetry and Grafana and their roles in observability.</li>\n" +
// " </ul>\n" +
// "<br>" +
// " <h2>Instrumenting Your Go Code:</h2>\n" +
// " <ul>\n" +
// " <li>- Hands-on exercise: Instrumenting a Go application with OpenTelemetry.</li>\n" +
// " <li>- Generating and exporting metrics, traces, and logs.</li>\n" +
// " </ul>\n" +
// "<br>" +
// " <h2>Visualizing Insights with Grafana:</h2>\n" +
// " <ul>\n" +
// " <li>Setting up Grafana for visualizing telemetry data.</li>\n" +
// " <li>Creating dashboards to monitor key metrics and traces.</li>\n" +
// " </ul>\n" +
// "<br>" +
// " <h2>Logging for Contextual Observability:</h2>\n" +
// " <ul>\n" +
// " <li>- Hands-on exercise: Implementing structured logging in Go with OpenTelemetry.</li>\n" +
// " <li>- Enhancing logs with contextual information for better traceability.</li>\n" +
// " </ul>\n" +
// "<br>" +
// " <h2>Error Handling and Alerting:</h2>\n" +
// " <ul>\n" +
// " <li>- Strategies for effective error handling in Go applications.</li>\n" +
// " <li>- Configuring alerts based on metrics and traces in Grafana.</li>\n" +
// " </ul>\n" +
// "\n" +
// " <h2>Q&A Session and Open Discussion:</h2>",
// level: "All attendees",
// name: "Desmond Obisi",
// role: "S/W Engineer",
// company: "",
// titleDescription: "",
// day: "19th"
// },
{
startTime: '11:00AM',
date: '11:00AM - 11:40AM EAT, Sat Oct 19th',
Expand Down
39 changes: 18 additions & 21 deletions frontend/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* eslint-disable no-undef */
/* eslint-disable @typescript-eslint/no-var-requires */
const plugin = require('tailwindcss/plugin')
import plugin from 'tailwindcss/plugin';

/** @type {import('tailwindcss').Config} */
export default {
Expand All @@ -10,29 +8,28 @@ export default {
],
theme: {
extend: {
textShadow: {
sm: '0 1px 2px var(--tw-shadow-color)',
DEFAULT: '0 2px 4px var(--tw-shadow-color)',
lg: '0 8px 6px var(--tw-shadow-color)',
},
colors: {
textShadow: {
sm: '0 1px 2px var(--tw-shadow-color)',
DEFAULT: '0 2px 4px var(--tw-shadow-color)',
lg: '0 8px 6px var(--tw-shadow-color)',
},
colors: {
primary: "#0055E9",
secondary: "#0A0047",
accent: "#EDF6FF",
},
},
},
plugins: [
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
'text-shadow': (value) => ({
textShadow: value,
}),
},
{ values: theme('textShadow') }
)
}),
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
'text-shadow': (value) => ({
textShadow: value,
}),
},
{ values: theme('textShadow') }
);
}),
],
}

};

0 comments on commit 148ca8d

Please sign in to comment.