Skip to content

add events page under community #7212

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
86 changes: 86 additions & 0 deletions content/en/community/events.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
---
title: Events
---

The OpenTelemetry community participates in and organizes various events
throughout the year to bring together contributors, maintainers, and end users.
These events provide opportunities to learn, share experiences, collaborate on
the project, and connect with the broader observability community.

## Upcoming Events

{{< community-event-list >}}

## Key Community Events

### SIG End-User Virtual Events

The OpenTelemetry SIG End-User group organizes regular virtual events to bring
together end users, share experiences, and discuss real-world implementation
challenges and successes. These events include:

- Virtual meetups and discussions
- End-user case studies and presentations
- Q&A sessions with the community

Find all SIG End-User virtual events and join the community at
[community.cncf.io/opentelemetry/](https://community.cncf.io/opentelemetry/).

### KubeCon + CloudNativeCon

OpenTelemetry has a strong presence at KubeCon + CloudNativeCon events
worldwide. These events feature:

- OpenTelemetry maintainer talks and workshops
- Community meetups at the OpenTelemetry Observatory
- Hands-on sessions and tutorials
- Networking opportunities with contributors and end users

### OpenTelemetry Community Day

OpenTelemetry Community Day is a dedicated event focused entirely on
OpenTelemetry, featuring:

- Deep-dive technical sessions
- End user case studies and success stories
- Hands-on workshops and tutorials
- Community roadmap discussions
- Networking with maintainers and contributors

Check the [CNCF Events page](https://events.linuxfoundation.org/) for the latest
OpenTelemetry Community Day announcements.

### Kubernetes Community Days (KCD)

OpenTelemetry contributors regularly speak at local Kubernetes Community Days
around the world. These events offer:

- Local community networking
- OpenTelemetry adoption stories
- Technical deep-dives and best practices
- Hands-on workshops

Find your local KCD at [community.cncf.io](https://community.cncf.io/).

### Open Observability Summit

The Open Observability Summit brings together the observability community,
including OpenTelemetry contributors and users, to discuss:

- Latest developments in observability
- OpenTelemetry integration patterns
- Industry best practices
- Future of observability standards

## Special Event Content

### Humans of OpenTelemetry

At major events, we conduct "Humans of OpenTelemetry" interviews with
contributors, maintainers, and end users to share their stories and experiences
with the project. These provide insights into:

- How people got involved with OpenTelemetry
- Real-world usage patterns and success stories
- Community perspectives on observability
- The human side of the OpenTelemetry project
37 changes: 37 additions & 0 deletions layouts/_shortcodes/community-event-list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{{/* Get announcements and filter for current/upcoming events */}}
{{ $announcements := site.GetPage "announcements" -}}
{{ $now := now -}}

{{ if $announcements -}}
{{ $currentEvents := slice -}}

{{/* Collect current announcements that haven't expired */}}
{{ range $announcements.RegularPages -}}
{{ $expiryDate := .Params.expiryDate -}}
{{ $isValid := true -}}

{{ if $expiryDate -}}
{{ $expiry := time $expiryDate -}}
{{ if $now.After $expiry -}}
{{ $isValid = false -}}
{{ end -}}
{{ end -}}

{{ if $isValid -}}
{{ $currentEvents = $currentEvents | append . -}}
{{ end -}}
{{ end -}}

{{ if $currentEvents -}}
{{ range $currentEvents.ByWeight -}}
<div class="alert alert-primary" role="alert">
<div class="h5 alert-heading">{{ .Title }}</div>
{{ .Content }}
</div>
{{ end -}}
{{ else -}}
<p><em>No upcoming events at this time. Check back soon or subscribe to our <a href="/index.xml">RSS feed</a> for the latest announcements!</em></p>
{{ end -}}
{{ else -}}
<p><em>No events currently available. Subscribe to our <a href="/index.xml">RSS feed</a> for the latest announcements!</em></p>
{{ end -}}
12 changes: 12 additions & 0 deletions static/refcache.json
Original file line number Diff line number Diff line change
Expand Up @@ -619,10 +619,18 @@
"StatusCode": 206,
"LastSeen": "2025-01-30T16:59:54.034804-05:00"
},
"https://community.cncf.io/": {
"StatusCode": 200,
"LastSeen": "2025-07-01T14:51:19.820849+05:30"
},
"https://community.cncf.io/events/details/cncf-cloud-native-community-japan-presents-japan-community-day-at-kubecon-cloudnativecon-japan-2025/": {
"StatusCode": 200,
"LastSeen": "2025-05-16T10:23:42.024759425-07:00"
},
"https://community.cncf.io/opentelemetry/": {
"StatusCode": 200,
"LastSeen": "2025-07-08T14:16:49.991955+05:30"
},
"https://communityinviter.com/apps/cloud-native/cncf": {
"StatusCode": 200,
"LastSeen": "2024-12-18T05:52:44.610968-05:00"
Expand Down Expand Up @@ -2339,6 +2347,10 @@
"StatusCode": 200,
"LastSeen": "2025-07-02T07:32:05.210275202Z"
},
"https://events.linuxfoundation.org/": {
"StatusCode": 200,
"LastSeen": "2025-07-01T14:51:18.768974+05:30"
},
"https://events.linuxfoundation.org/kubecon-cloudnativecon-china/": {
"StatusCode": 200,
"LastSeen": "2025-05-20T16:34:07.716464164-07:00"
Expand Down