This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{ | |
| "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", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "github.com/VictoriaMetrics/metrics" | |
| "net/http" | |
| "time" | |
| ) | |
| var ( | |
| fooHistogram = metrics.NewHistogram(`test_histogram_seconds{label_1="foo"}`) |