Skip to content

Instantly share code, notes, and snippets.

View jiekun's full-sized avatar
🔭
Observability: Achieving production excellence.

Zhu Jiekun jiekun

🔭
Observability: Achieving production excellence.
View GitHub Profile
import os
import requests
from bs4 import BeautifulSoup
import re
import concurrent.futures
from urllib.parse import unquote
import json
# edit this map with the event name and the link
# the link format MUST be <https://your_event_name.sched.com/list/descriptions/?iframe=no>
[{
"event_name": "KubeCon + CloudNativeCon Europe 2026",
"description": "Observability Day schedule is now LIVE!\n\nObservability Day fosters collaboration, discussion, and knowledge sharing of cloud-native observability projects (including but not necessarily limited to Prometheus, Fluentd, Fluent Bit, OpenTelemetry, and OpenMetrics), as well as vendor-neutral best practices for addressing observability challenges. To learn more please visit the event's\u00a0website.\n\nFor questions regarding this event, please reach out to\u00a0[email\u00a0protected].",
"title": "Observability Day Hosted by CNCF - Full-Day Event | ALL ACCESS PASS REQUIRED",
"speakers": [],
"starttime": "Monday March 23, 2026 09:00 - 17:30CET",
"room": "TBA",
"link": "https://kccnceu2026.sched.com/event/2Cidt/observability-day-hosted-by-cncf-full-day-event-all-access-pass-required"
}, {
"event_name": "KubeCon + CloudNativeCon Europe 2026",
package main
import (
"github.com/VictoriaMetrics/metrics"
"net/http"
"time"
)
var (
fooHistogram = metrics.NewHistogram(`test_histogram_seconds{label_1="foo"}`)