From 995701587f101bac004723e3c6c05b74846d154d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Mon, 27 Nov 2023 20:21:11 -1000 Subject: [PATCH 1/8] Improve detection of Time-Zone inconsistencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We have a track record of Time-Zone inconsistencies in the events of the project website (e.g. #1616, #1805, #2288, #2418, #2422, #2431, #2449). In order to detect these inconsistencies earlier, make the `tz` mandatory and check that the Time-Zone offset match the Time-Zone name. These checks require a working bundle so run it on GitHub actions and keep the old pre-commit check to only check date formatting using basic UNIX tooling. Adjust the events templates to match what we expect. While here, also check that non-online events have the needed `location.city` and `location.country`. Signed-off-by: Romain Tartière --- .github/workflows/jekyll-build.yml | 7 +- Gemfile | 4 ++ ...00-0000-communitymeeting-template.markdown | 3 +- ...0-0000-dev-officehours-dashboards.markdown | 3 +- _events/_sample.markdown | 6 +- _scripts/_malformeddates.sh | 8 +-- _scripts/_malformedevents.rb | 67 +++++++++++++++++++ 7 files changed, 81 insertions(+), 17 deletions(-) create mode 100755 _scripts/_malformedevents.rb diff --git a/.github/workflows/jekyll-build.yml b/.github/workflows/jekyll-build.yml index c79f55b937..5e170bd301 100644 --- a/.github/workflows/jekyll-build.yml +++ b/.github/workflows/jekyll-build.yml @@ -13,10 +13,5 @@ jobs: ruby-version: '3.0' bundler-cache: true - run: | - malformed_event_dates=$(grep -Er --files-without-match '^eventdate: [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2} [-+][0-9]{4}$' _events) - if [ -n "${malformed_event_dates}" ]; then - echo "Malformed event date in:" >&2 - echo "${malformed_event_dates}" >&2 - exit 1 - fi + bundle exec _scripts/_malformedevents.rb bundle exec jekyll build --future diff --git a/Gemfile b/Gemfile index 489b65fed6..ae42b12ef6 100644 --- a/Gemfile +++ b/Gemfile @@ -22,6 +22,10 @@ group :jekyll_plugins do gem "jekyll-sitemap" end +group :test do + gem "activesupport" +end + # Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem # and associated library. platforms :mingw, :x64_mingw, :mswin, :jruby do diff --git a/_events/_0000-0000-communitymeeting-template.markdown b/_events/_0000-0000-communitymeeting-template.markdown index 6458dd58fb..bdac32826d 100644 --- a/_events/_0000-0000-communitymeeting-template.markdown +++ b/_events/_0000-0000-communitymeeting-template.markdown @@ -5,8 +5,7 @@ calendar_date: '2023-02-28' eventdate: 2023-02-28 15:00:00 -0800 title: OpenSearch Community Meeting - 2023-02-28 online: true -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/290444926/ title: Join on Meetup diff --git a/_events/_0000-0000-dev-officehours-dashboards.markdown b/_events/_0000-0000-dev-officehours-dashboards.markdown index eb2dc5108f..b879022011 100644 --- a/_events/_0000-0000-dev-officehours-dashboards.markdown +++ b/_events/_0000-0000-dev-officehours-dashboards.markdown @@ -6,8 +6,7 @@ eventdate: 2023-05-05 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - YYYY-MM-DD # if your event has an online component, put it here (mind the time-zone and daylight saving time!): online: true -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/_sample.markdown b/_events/_sample.markdown index 4ba9fd0051..8330e047ea 100644 --- a/_events/_sample.markdown +++ b/_events/_sample.markdown @@ -2,15 +2,15 @@ # The date of the event, without time, as a string to appear in the calendar view in the format of YYYY-MM-DD. calendar_date: '2021-01-01' # put your event date and time (24 hr) here (mind the time-zone and daylight saving time!): -eventdate: 2021-01-01 12:34:00 -0700 +eventdate: 2021-01-01 12:34:00 -0800 # If the event last multiple day, also add the end date: -# enddate: 2021-01-03 20:00:00 -0700 +# enddate: 2021-01-03 20:00:00 -0800 # the title - this is how it will show up in listing and headings on the site: title: Your Event Title online: true +tz: America/Los_Angeles # If the event is online, remove the next lines, otherwise uncomment and adjust: -# tz: Pacific/Tahiti # location: # city: Papeete # country: French Polynesia diff --git a/_scripts/_malformeddates.sh b/_scripts/_malformeddates.sh index 14da02e1b6..9b6f0020ae 100755 --- a/_scripts/_malformeddates.sh +++ b/_scripts/_malformeddates.sh @@ -1,8 +1,8 @@ -#!/bin/bash +#!/bin/sh malformed_event_dates=$(grep -Er --files-without-match '^eventdate: [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2} [-+][0-9]{4}$' _events) if [ -n "${malformed_event_dates}" ]; then -echo "Malformed event date in:" >&2 -echo "${malformed_event_dates}" >&2 -exit 1 + echo "Malformed event date in:" >&2 + echo "${malformed_event_dates}" >&2 + exit 1 fi diff --git a/_scripts/_malformedevents.rb b/_scripts/_malformedevents.rb new file mode 100755 index 0000000000..5004a9bc58 --- /dev/null +++ b/_scripts/_malformedevents.rb @@ -0,0 +1,67 @@ +#!/usr/bin/env ruby + +require 'active_support' +require 'active_support/time' + +require 'yaml' + +issues = 0 + +Dir['_events/*'].each do |filename| + data = YAML.safe_load_file(filename, permitted_classes: [Time]) + start_date = data['eventdate'] + end_date = data['enddate'] + tz = data['tz'] + + if tz.nil? + message = "#{filename}: All events must have a 'tz' key" + if start_date + message += %{ (based on the time-zone offset of 'eventdate' (#{start_date}), it may be "#{ActiveSupport::TimeZone[start_date.utc_offset].tzinfo.identifier}")} + end + + warn message + issues += 1 + end + + if data['online'] == false + if data.dig('location', 'city').nil? + warn "#{filename}: non-online events must have a 'location.city' key" + issues += 1 + end + + if data.dig('location', 'country').nil? + warn "#{filename}: non-online events must have a 'location.country' key" + issues += 1 + end + end + + if start_date.nil? + warn "#{filename}: All events must have an 'eventdate' key" + issues += 1 + elsif start_date.is_a?(Time) + x = start_date.in_time_zone(tz) + if x.utc_offset != start_date.utc_offset + warn %{#{filename}: event 'eventdate' (#{start_date}) in not in 'tz' (#{tz}) (did you mean "#{x}"?)} + issues += 1 + end + else + warn "#{filename}: event 'eventdate' (#{start_date}) is not a valid RFC822 date" + issues += 1 + end + + if end_date.is_a?(Time) + x = end_date.in_time_zone(tz) + if x.utc_offset != start_date.utc_offset + warn %{#{filename}: event 'enddate' (#{end_date}) in not in 'tz' (#{tz}) (did you mean "#{x}"?)} + issues += 1 + end + elsif end_date + warn "#{filename}: event 'enddate' (#{end_date}) is not a valid RFC822 date" + issues += 1 + end +end + +if issues > 0 + warn "#{issues} problems found in events." + exit 1 +end From 1d37616716b01c9098e2eac0c2a377f4291bc8eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Mon, 27 Nov 2023 21:44:09 -1000 Subject: [PATCH 2/8] Add `tz` to all events without one MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Most of these events have a Time-Zone offset of -0700 or -0800 which makes me think they are all using the America/Los_Angeles Time-Zone (sometimes with the wrong offset, which will be fixed in another commit). Updated with: ``` grep -r --files-without-match '^tz:' _events | xargs sed -i '' -E -e'/^online:/a\ tz: America/Los_Angeles' ``` Signed-off-by: Romain Tartière --- _events/2021-early-july.markdown | 1 + _events/2021-early-june.markdown | 1 + _events/2021-late-july.markdown | 1 + _events/2021-late-june.markdown | 1 + _events/2021-may-late.markdown | 1 + _events/2021-mid-june.markdown | 3 ++- _events/2021-opensearch_community_meeting_dec.markdown | 1 + .../2021-opensearch_community_meeting_early_august.markdown | 1 + _events/2021-opensearch_community_meeting_early_nov.markdown | 1 + _events/2021-opensearch_community_meeting_early_oct.markdown | 1 + _events/2021-opensearch_community_meeting_early_sept.markdown | 1 + _events/2021-opensearch_community_meeting_late_august.markdown | 1 + _events/2021-opensearch_community_meeting_late_nov.markdown | 1 + _events/2021-opensearch_community_meeting_late_oct.markdown | 1 + _events/2021-opensearch_community_meeting_late_sept.markdown | 1 + _events/2022-0104.markdown | 1 + _events/2022-0111.markdown | 1 + _events/2022-0118.markdown | 1 + _events/2022-0124.markdown | 1 + _events/2022-0201.markdown | 1 + _events/2022-0208.markdown | 1 + _events/2022-0214.markdown | 1 + _events/2022-0221.markdown | 1 + _events/2022-0301.markdown | 1 + _events/2022-0308.markdown | 1 + _events/2022-0314.markdown | 1 + _events/2022-0321.markdown | 1 + _events/2022-0329.markdown | 1 + _events/2022-0405.markdown | 1 + _events/2022-0411.markdown | 1 + _events/2022-0418.markdown | 1 + _events/2022-0426.markdown | 1 + _events/2022-0503.markdown | 1 + _events/2022-0509.markdown | 1 + _events/2022-0516.markdown | 1 + _events/2022-0524.markdown | 1 + _events/2022-0531.markdown | 1 + _events/2022-0606.markdown | 1 + _events/2022-0613.markdown | 1 + _events/2022-0621.markdown | 1 + _events/2022-0628.markdown | 1 + _events/2022-0705.markdown | 1 + _events/2022-0712.markdown | 1 + _events/2022-0719.markdown | 1 + _events/2022-0802.markdown | 1 + _events/2022-0816.markdown | 1 + _events/2022-0830.markdown | 1 + _events/2022-0913.markdown | 1 + _events/2022-0927.markdown | 1 + _events/2022-1011.markdown | 1 + _events/2022-1017-dev-triage-security.markdown | 1 + _events/2022-1024-dev-triage-security.markdown | 1 + _events/2022-1025.markdown | 1 + _events/2022-1031-dev-triage-security.markdown | 1 + _events/2022-1107-dev-triage-security.markdown | 1 + _events/2022-1114-dev-triage-security.markdown | 1 + _events/2022-1122.markdown | 1 + _events/2022-1128-dev-triage-security.markdown | 1 + _events/2022-1205-dev-triage-security.markdown | 1 + _events/2022-1206.markdown | 1 + _events/2022-1212-dev-triage-security.markdown | 1 + _events/2022-1219-dev-triage-security.markdown | 1 + _events/2022-1220.markdown | 1 + _events/2023-0109-dev-triage-security.markdown | 1 + _events/2023-0116-dev-triage-security.markdown | 1 + _events/2023-0117.markdown | 1 + _events/2023-0123-dev-triage-security.markdown | 1 + _events/2023-0124-finding-the-right-things.markdown | 1 + _events/2023-0130-dev-triage-security.markdown | 1 + _events/2023-0131.markdown | 1 + _events/2023-0206-dev-triage-security.markdown | 1 + _events/2023-0213-dev-triage-security.markdown | 1 + _events/2023-0214.markdown | 1 + _events/2023-0220-dev-triage-security.markdown | 1 + _events/2023-0227-dev-triage-security.markdown | 1 + _events/2023-0228.markdown | 1 + _events/2023-0306-dev-triage-security.markdown | 1 + _events/2023-0313-dev-triage-security.markdown | 1 + _events/2023-0314.markdown | 1 + _events/2023-0320-dev-triage-security.markdown | 1 + _events/2023-0323-fluent-community.markdown | 1 + _events/2023-0327-dev-triage-security.markdown | 1 + _events/2023-0328.markdown | 1 + _events/2023-0403-dev-triage-security.markdown | 1 + _events/2023-0406-dev-integrations-apache-spark.markdown | 1 + _events/2023-0406-fluent-community.markdown | 1 + _events/2023-0410-dev-triage-security.markdown | 1 + _events/2023-0411.markdown | 1 + _events/2023-0417-dev-triage-security.markdown | 1 + _events/2023-0420-dev-integrations-apache-spark.markdown | 1 + _events/2023-0424-dev-triage-security.markdown | 1 + _events/2023-0424-haystack-us-2023.markdown | 1 + _events/2023-0425.markdown | 1 + _events/2023-0501-dev-triage-security.markdown | 1 + _events/2023-0504-dev-integrations-apache-spark.markdown | 1 + _events/2023-0504-dev-officehours-dashboards.markdown | 1 + _events/2023-0508-dev-triage-security.markdown | 1 + _events/2023-0515-dev-triage-security.markdown | 1 + _events/2023-0518-dev-integrations-apache-spark.markdown | 1 + _events/2023-0518-dev-officehours-dashboards.markdown | 1 + _events/2023-0522-dev-triage-security.markdown | 1 + _events/2023-0523.markdown | 1 + _events/2023-0529-dev-triage-security.markdown | 1 + _events/2023-0601-dev-officehours-dashboards.markdown | 1 + _events/2023-0605-dev-triage-security.markdown | 1 + _events/2023-0606.markdown | 1 + _events/2023-0611-cfp-workshop.markdown | 1 + _events/2023-0612-dev-triage-security.markdown | 1 + _events/2023-0615-dev-integrations-apache-spark.markdown | 1 + _events/2023-0615-dev-officehours-dashboards.markdown | 1 + _events/2023-0619-dev-triage-security.markdown | 1 + _events/2023-0626-dev-triage-security.markdown | 1 + _events/2023-0627.markdown | 1 + _events/2023-0628-search-relevance-triage-backlog.markdown | 1 + _events/2023-0629-dev-integrations-apache-spark.markdown | 1 + _events/2023-0710-dev-triage-security.markdown | 1 + _events/2023-0711.markdown | 1 + _events/2023-0712-search-relevance-triage-backlog.markdown | 1 + _events/2023-0713-dev-integrations-apache-spark.markdown | 1 + _events/2023-0713-dev-officehours-dashboards.markdown | 1 + _events/2023-0717-dev-triage-security.markdown | 1 + _events/2023-0718-2-9-release-meetings.markdown | 1 + _events/2023-0724-dev-triage-security.markdown | 1 + _events/2023-0725-efficient-vector-search-opensearch.markdown | 1 + _events/2023-0725.markdown | 1 + _events/2023-0726-search-relevance-triage-backlog.markdown | 1 + _events/2023-0727-dev-integrations-apache-spark.markdown | 1 + _events/2023-0727-dev-officehours-dashboards.markdown | 1 + _events/2023-0728-generative-ai-brainstorm.markdown | 1 + _events/2023-0731-dev-triage-security.markdown | 1 + _events/2023-0807-dev-triage-security.markdown | 1 + _events/2023-0808.markdown | 1 + _events/2023-0809-search-relevance-triage-backlog.markdown | 1 + _events/2023-0810-dev-officehours-dashboards.markdown | 1 + _events/2023-0814-dev-triage-security.markdown | 1 + _events/2023-0816-search-relevance-triage-backlog.markdown | 1 + _events/2023-0821-dev-triage-security.markdown | 1 + _events/2023-0822.markdown | 1 + _events/2023-0823-search-relevance-triage-backlog.markdown | 1 + _events/2023-0824-dev-officehours-dashboards.markdown | 1 + _events/2023-0825-dev-triage-ml-commons.markdown | 1 + _events/2023-0828-dev-triage-security.markdown | 1 + _events/2023-0830-search-relevance-triage-backlog.markdown | 1 + _events/2023-0901-dev-triage-ml-commons.markdown | 1 + _events/2023-0905-community-meeting.markdown | 1 + _events/2023-0906-search-relevance-triage-backlog.markdown | 1 + _events/2023-0907-dev-officehours-dashboards.markdown | 1 + _events/2023-0911-dev-triage-security.markdown | 1 + _events/2023-0913-search-relevance-triage-backlog.markdown | 1 + _events/2023-0915-dev-triage-ml-commons.markdown | 1 + _events/2023-0918-dev-triage-security.markdown | 1 + _events/2023-0919-community-meeting.markdown | 1 + _events/2023-0920-search-relevance-triage-backlog.markdown | 1 + _events/2023-0921-dev-officehours-dashboards.markdown | 1 + _events/2023-0925-2-10-release-meetings.markdown | 1 + _events/2023-0925-dev-triage-security.markdown | 1 + _events/2023-1003-community-meeting.markdown | 1 + _events/2023-1004-search-relevance-triage-backlog.markdown | 1 + _events/2023-1011-search-relevance-triage-backlog.markdown | 1 + _events/2023-1016-dev-triage-security.markdown | 1 + _events/2023-1017-community-meeting.markdown | 1 + _events/2023-1018-2-11-release-meetings.markdown | 1 + _events/2023-1018-search-relevance-triage-backlog.markdown | 1 + _events/2023-1019-dev-officehours-dashboards.markdown | 1 + _events/2023-1019-fluent-community-meetup.markdown | 1 + _events/2023-1020-dev-triage-ml-commons.markdown | 1 + _events/2023-1023-dev-triage-security.markdown | 1 + _events/2023-1025-search-relevance-triage-backlog.markdown | 1 + _events/2023-1026-fluent-bit-v2-webinar.markdown | 1 + _events/2023-1030-dev-triage-security.markdown | 1 + _events/2023-1031-community-meeting.markdown | 1 + _events/2023-1102-dev-officehours-dashboards.markdown | 1 + _events/2023-1102-fluent-community-meetup.markdown | 1 + _events/2023-1103-dev-triage-ml-commons.markdown | 1 + _events/2023-1106-dev-triage-security.markdown | 1 + _events/2023-1113-dev-triage-security.markdown | 1 + _events/2023-1114-community-meeting.markdown | 1 + _events/2023-1116-dev-officehours-dashboards.markdown | 1 + _events/2023-1116-fluent-community-meetup.markdown | 1 + _events/2023-1117-dev-triage-ml-commons.markdown | 1 + _events/2023-1120-dev-triage-security.markdown | 1 + _events/2023-1128-community-meeting.markdown | 1 + _events/2023-1130-dev-officehours-dashboards.markdown | 1 + _events/2023-1130-fluent-community-meetup.markdown | 1 + _events/2023-1201-dev-triage-ml-commons.markdown | 1 + _events/2023-1207-fluent-bit-for-windows-webinar.markdown | 3 +-- ...023-1208-open-compliance-summit-security-analytics.markdown | 1 + _events/2023-1212-community-meeting.markdown | 1 + _events/2023-1214-dev-officehours-dashboards.markdown | 1 + _events/2023-1214-fluent-community-meetup.markdown | 1 + ...4-getting-started-fluent-bit-opentelemetry-webinar.markdown | 3 +-- _events/2023-1216-pyohio.markdown | 1 + _events/2023-1219-dev-triage-ml-commons.markdown | 1 + _events/2023-1228-fluent-community-meetup.markdown | 3 +-- _events/2024-0116-community-meeting.markdown | 1 + _events/2024-0119-dev-triage-ml-commons.markdown | 1 + _events/2024-0130-community-meeting.markdown | 1 + _events/2024-0131-fluent-bit-opensearch-webinar.markdown | 3 +-- _events/2024-0131-opensearch-core-triage.markdown | 1 + _events/2024-0202-dev-triage-ml-commons.markdown | 1 + _events/2024-0207-opensearch-core-triage.markdown | 1 + _events/2024-0208-fluent-community-meetup.markdown | 3 +-- _events/2024-0213-community-meeting.markdown | 1 + _events/2024-0213-dev-triage-ml-commons.markdown | 1 + _events/2024-0214-2-12-release-meetings.markdown | 1 + _events/2024-0214-opensearch-core-triage.markdown | 1 + _events/2024-0221-opensearch-core-triage.markdown | 1 + _events/2024-0222-fluent-community-meetup.markdown | 3 +-- _events/2024-0227-community-meeting.markdown | 1 + _events/2024-0227-dev-triage-ml-commons.markdown | 1 + _events/2024-0228-opensearch-core-triage.markdown | 1 + _events/2024-0306-foss-backstage.markdown | 1 + _events/2024-0306-opensearch-core-triage.markdown | 1 + _events/2024-0312-community-meeting.markdown | 1 + _events/2024-0312-dev-triage-ml-commons.markdown | 1 + _events/2024-0313-opensearch-core-triage.markdown | 1 + _events/2024-0320-opensearch-core-triage.markdown | 1 + _events/2024-0326-community-meeting.markdown | 1 + _events/2024-0327-opensearch-core-triage.markdown | 1 + _events/2024-0409-community-meeting.markdown | 1 + _events/2024-0423-community-meeting.markdown | 1 + 221 files changed, 222 insertions(+), 13 deletions(-) diff --git a/_events/2021-early-july.markdown b/_events/2021-early-july.markdown index c7e2887289..9c8d2dca00 100644 --- a/_events/2021-early-july.markdown +++ b/_events/2021-early-july.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-07-12' eventdate: 2021-07-12 10:00:00 -0700 title: OpenSearch Community Meeting - Early July online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/thmcwrycckbqb/ title: Join on Meetup diff --git a/_events/2021-early-june.markdown b/_events/2021-early-june.markdown index ffc361cc4f..2ec7c23ce1 100644 --- a/_events/2021-early-june.markdown +++ b/_events/2021-early-june.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-06-01' eventdate: 2021-06-01 09:00:00 -0700 title: OpenSearch Community Meeting - Early June online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/thmcwrycchbpc/ title: Join on Meetup diff --git a/_events/2021-late-july.markdown b/_events/2021-late-july.markdown index 05ebc40536..718a076b41 100644 --- a/_events/2021-late-july.markdown +++ b/_events/2021-late-july.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-07-27' eventdate: 2021-07-27 09:00:00 -0700 title: OpenSearch Community Meeting - Late July online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/thmcwrycckbjc/ title: Join on Meetup diff --git a/_events/2021-late-june.markdown b/_events/2021-late-june.markdown index 1dbcefe949..abcf7a2264 100644 --- a/_events/2021-late-june.markdown +++ b/_events/2021-late-june.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-06-29' eventdate: 2021-06-29 09:00:00 -0700 title: OpenSearch Community Meeting - Late June online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/thmcwryccjblc/ title: Join on Meetup diff --git a/_events/2021-may-late.markdown b/_events/2021-may-late.markdown index 6fbe910ed5..0d94a5c1a4 100644 --- a/_events/2021-may-late.markdown +++ b/_events/2021-may-late.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-05-18' eventdate: 2021-05-18 09:00:00 -0700 title: OpenSearch Community Meeting - Late May online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/thmcwrycchbwb/ title: Join on Meetup diff --git a/_events/2021-mid-june.markdown b/_events/2021-mid-june.markdown index 4f629d76c3..59f4d544f1 100644 --- a/_events/2021-mid-june.markdown +++ b/_events/2021-mid-june.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-06-14' eventdate: 2021-06-14 10:00:00 -0700 title: OpenSearch Community Meeting - Mid June online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/thmcwryccjbsb/ title: Join on Meetup @@ -15,4 +16,4 @@ Join us for our our biweekly online community meeting. Agenda: - Beats & Logstash with OpenSearch - Q&A -We have a [collaborative agenda](https://hackmd.io/sIHrRWP-TniED7RgEGfZnQ) on HackMD. Feel free to comment on the agenda before the meeting if you want to add an item or have a question. During the meeting the agenda will be unlocked for collaborative editing / note taking. After the meeting the agenda will be set to read-only mode. \ No newline at end of file +We have a [collaborative agenda](https://hackmd.io/sIHrRWP-TniED7RgEGfZnQ) on HackMD. Feel free to comment on the agenda before the meeting if you want to add an item or have a question. During the meeting the agenda will be unlocked for collaborative editing / note taking. After the meeting the agenda will be set to read-only mode. diff --git a/_events/2021-opensearch_community_meeting_dec.markdown b/_events/2021-opensearch_community_meeting_dec.markdown index e78c99aa34..3a78fc2f72 100644 --- a/_events/2021-opensearch_community_meeting_dec.markdown +++ b/_events/2021-opensearch_community_meeting_dec.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-12-14' eventdate: 2021-12-14 09:00:00 -0800 title: OpenSearch Community Meeting - Dec online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/279756957/ title: Join on Meetup diff --git a/_events/2021-opensearch_community_meeting_early_august.markdown b/_events/2021-opensearch_community_meeting_early_august.markdown index b4e4b0825a..f7bbe9edc6 100644 --- a/_events/2021-opensearch_community_meeting_early_august.markdown +++ b/_events/2021-opensearch_community_meeting_early_august.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-08-09' eventdate: 2021-08-09 10:00:00 -0700 title: OpenSearch Community Meeting - Early August online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/279756529/ title: Join on Meetup diff --git a/_events/2021-opensearch_community_meeting_early_nov.markdown b/_events/2021-opensearch_community_meeting_early_nov.markdown index f75344bde0..c3f7a661fb 100644 --- a/_events/2021-opensearch_community_meeting_early_nov.markdown +++ b/_events/2021-opensearch_community_meeting_early_nov.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-11-01' eventdate: 2021-11-01 10:00:00 -0700 title: OpenSearch Community Meeting - Early Nov online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/279756926/ title: Join on Meetup diff --git a/_events/2021-opensearch_community_meeting_early_oct.markdown b/_events/2021-opensearch_community_meeting_early_oct.markdown index ef48c8cae9..f36bf76d51 100644 --- a/_events/2021-opensearch_community_meeting_early_oct.markdown +++ b/_events/2021-opensearch_community_meeting_early_oct.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-10-04' eventdate: 2021-10-04 10:00:00 -0700 title: OpenSearch Community Meeting - Early Oct online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/279756846/ title: Join on Meetup diff --git a/_events/2021-opensearch_community_meeting_early_sept.markdown b/_events/2021-opensearch_community_meeting_early_sept.markdown index 513e2f0e25..3c5fac760c 100644 --- a/_events/2021-opensearch_community_meeting_early_sept.markdown +++ b/_events/2021-opensearch_community_meeting_early_sept.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-09-07' eventdate: 2021-09-07 09:00:00 -0700 title: OpenSearch Community Meeting - Early Sept online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/279756712/ title: Join on Meetup diff --git a/_events/2021-opensearch_community_meeting_late_august.markdown b/_events/2021-opensearch_community_meeting_late_august.markdown index 13fefa8aa4..5d51066b97 100644 --- a/_events/2021-opensearch_community_meeting_late_august.markdown +++ b/_events/2021-opensearch_community_meeting_late_august.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-08-24' eventdate: 2021-08-24 09:00:00 -0700 title: OpenSearch Community Meeting - Late August online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/279756656/ title: Join on Meetup diff --git a/_events/2021-opensearch_community_meeting_late_nov.markdown b/_events/2021-opensearch_community_meeting_late_nov.markdown index a656bf4f33..24da97cdb1 100644 --- a/_events/2021-opensearch_community_meeting_late_nov.markdown +++ b/_events/2021-opensearch_community_meeting_late_nov.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-11-16' eventdate: 2021-11-16 09:00:00 -0800 title: OpenSearch Community Meeting - Late Nov online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/279756945/ title: Join on Meetup diff --git a/_events/2021-opensearch_community_meeting_late_oct.markdown b/_events/2021-opensearch_community_meeting_late_oct.markdown index 88e6f0a73e..6be31b69d1 100644 --- a/_events/2021-opensearch_community_meeting_late_oct.markdown +++ b/_events/2021-opensearch_community_meeting_late_oct.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-10-19' eventdate: 2021-10-19 09:00:00 -0700 title: OpenSearch Community Meeting - Late Oct online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/279756880/ title: Join on Meetup diff --git a/_events/2021-opensearch_community_meeting_late_sept.markdown b/_events/2021-opensearch_community_meeting_late_sept.markdown index 872134b4b3..2899b4af27 100644 --- a/_events/2021-opensearch_community_meeting_late_sept.markdown +++ b/_events/2021-opensearch_community_meeting_late_sept.markdown @@ -3,6 +3,7 @@ calendar_date: '2021-09-21' eventdate: 2021-09-21 09:00:00 -0700 title: OpenSearch Community Meeting - Late Sept online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/279756774/ title: Join on Meetup diff --git a/_events/2022-0104.markdown b/_events/2022-0104.markdown index 21f0fde0bf..536e790783 100644 --- a/_events/2022-0104.markdown +++ b/_events/2022-0104.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-01-04' eventdate: 2022-01-04 07:00:00 -0800 title: OpenSearch Community Meeting - 2022-01-04 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/282612916/ title: Join on Meetup diff --git a/_events/2022-0111.markdown b/_events/2022-0111.markdown index 9926373221..b6371324fc 100644 --- a/_events/2022-0111.markdown +++ b/_events/2022-0111.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-01-11' eventdate: 2022-01-11 07:00:00 -0800 title: OpenSearch Community Meeting - 2022-01-11 - open office hour online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/282612997/ title: Join on Meetup diff --git a/_events/2022-0118.markdown b/_events/2022-0118.markdown index e42e655059..c26016ef68 100644 --- a/_events/2022-0118.markdown +++ b/_events/2022-0118.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-01-18' eventdate: 2022-01-18 09:00:00 -0800 title: OpenSearch Community Meeting - 2022-01-18 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/282613028/ title: Join on Meetup diff --git a/_events/2022-0124.markdown b/_events/2022-0124.markdown index 79992fed4c..89173cf44e 100644 --- a/_events/2022-0124.markdown +++ b/_events/2022-0124.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-01-24' eventdate: 2022-01-24 09:00:00 -0800 title: OpenSearch Community Meeting - 2022-01-24 - open office hour online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/282613041/ title: Join on Meetup diff --git a/_events/2022-0201.markdown b/_events/2022-0201.markdown index 4b83db9a62..cf608896e6 100644 --- a/_events/2022-0201.markdown +++ b/_events/2022-0201.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-02-01' eventdate: 2022-02-01 07:00:00 -0800 title: OpenSearch Community Meeting - 2022-02-01 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/283124122 title: Join on Meetup diff --git a/_events/2022-0208.markdown b/_events/2022-0208.markdown index e682d23e0c..e0a537c716 100644 --- a/_events/2022-0208.markdown +++ b/_events/2022-0208.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-02-08' eventdate: 2022-02-08 07:00:00 -0800 title: OpenSearch Community Meeting - 2022-02-08 - open office hour online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/283124167 title: Join on Meetup diff --git a/_events/2022-0214.markdown b/_events/2022-0214.markdown index 44ea335575..cc6fe4915c 100644 --- a/_events/2022-0214.markdown +++ b/_events/2022-0214.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-02-14' eventdate: 2022-02-14 09:00:00 -0800 title: OpenSearch Community Meeting - 2022-02-14 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/283124190 title: Join on Meetup diff --git a/_events/2022-0221.markdown b/_events/2022-0221.markdown index 74a612e7e8..7a15605c9a 100644 --- a/_events/2022-0221.markdown +++ b/_events/2022-0221.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-02-21' eventdate: 2022-02-21 09:00:00 -0800 title: OpenSearch Community Meeting - 2022-02-21 - open office hour online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/283124214 title: Join on Meetup diff --git a/_events/2022-0301.markdown b/_events/2022-0301.markdown index 9d5966f1b7..c3081d54dc 100644 --- a/_events/2022-0301.markdown +++ b/_events/2022-0301.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-03-01' eventdate: 2022-03-01 15:00:00 -0800 title: OpenSearch Community Meeting - 2022-03-01 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/283833513/ title: Join on Meetup diff --git a/_events/2022-0308.markdown b/_events/2022-0308.markdown index 3b0d55c268..018a73bf17 100644 --- a/_events/2022-0308.markdown +++ b/_events/2022-0308.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-03-08' eventdate: 2022-03-08 15:00:00 -0800 title: OpenSearch Community Meeting - 2022-03-08 - open office hour online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/283833565 title: Join on Meetup diff --git a/_events/2022-0314.markdown b/_events/2022-0314.markdown index f34b3c4cc2..0ad80d7520 100644 --- a/_events/2022-0314.markdown +++ b/_events/2022-0314.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-03-14' eventdate: 2022-03-14 09:00:00 -0800 title: OpenSearch Community Meeting - 2022-03-14 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/283833607/ title: Join on Meetup diff --git a/_events/2022-0321.markdown b/_events/2022-0321.markdown index 28cb6a2f2f..8db67193e3 100644 --- a/_events/2022-0321.markdown +++ b/_events/2022-0321.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-03-21' eventdate: 2022-03-21 09:00:00 -0800 title: OpenSearch Community Meeting - 2022-03-21 - open office hour online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/283833634/ title: Join on Meetup diff --git a/_events/2022-0329.markdown b/_events/2022-0329.markdown index c31c210b75..48926d1315 100644 --- a/_events/2022-0329.markdown +++ b/_events/2022-0329.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-03-29' eventdate: 2022-03-29 07:00:00 -0800 title: OpenSearch Community Meeting - 2022-03-29 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/283833666/ title: Join on Meetup diff --git a/_events/2022-0405.markdown b/_events/2022-0405.markdown index c4429c6a15..8bd1d79589 100644 --- a/_events/2022-0405.markdown +++ b/_events/2022-0405.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-04-05' eventdate: 2022-04-05 07:00:00 -0800 title: OpenSearch Community Meeting - 2022-04-05 - open office hour online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/284560334/ title: Join on Meetup diff --git a/_events/2022-0411.markdown b/_events/2022-0411.markdown index 6ae9ef5863..ae988d8ecd 100644 --- a/_events/2022-0411.markdown +++ b/_events/2022-0411.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-04-11' eventdate: 2022-04-11 09:00:00 -0800 title: OpenSearch Community Meeting - 2022-04-11 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/284560530/ title: Join on Meetup diff --git a/_events/2022-0418.markdown b/_events/2022-0418.markdown index 3c4411a1ee..b4805263b7 100644 --- a/_events/2022-0418.markdown +++ b/_events/2022-0418.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-04-18' eventdate: 2022-04-18 09:00:00 -0800 title: OpenSearch Community Meeting - 2022-04-18 - open office hour online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/284560717/ title: Join on Meetup diff --git a/_events/2022-0426.markdown b/_events/2022-0426.markdown index f406f524f2..e9389233de 100644 --- a/_events/2022-0426.markdown +++ b/_events/2022-0426.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-04-26' eventdate: 2022-04-26 15:00:00 -0800 title: OpenSearch Community Meeting - 2022-04-26 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/284560738/ title: Join on Meetup diff --git a/_events/2022-0503.markdown b/_events/2022-0503.markdown index 2fb9f85e75..ea4879fda3 100644 --- a/_events/2022-0503.markdown +++ b/_events/2022-0503.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-05-03' eventdate: 2022-05-03 15:00:00 -0700 title: OpenSearch Community Meeting - 2022-05-03 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/285396685 title: Join on Meetup diff --git a/_events/2022-0509.markdown b/_events/2022-0509.markdown index 5e103f0be7..4be3e2f783 100644 --- a/_events/2022-0509.markdown +++ b/_events/2022-0509.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-05-09' eventdate: 2022-05-09 09:00:00 -0700 title: OpenSearch Community Meeting - 2022-05-09 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/285396734/ title: Join on Meetup diff --git a/_events/2022-0516.markdown b/_events/2022-0516.markdown index 915d001ea1..029b1157cd 100644 --- a/_events/2022-0516.markdown +++ b/_events/2022-0516.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-05-16' eventdate: 2022-05-16 09:00:00 -0700 title: OpenSearch Community Meeting - 2022-05-16 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/285397453 title: Join on Meetup diff --git a/_events/2022-0524.markdown b/_events/2022-0524.markdown index bb3798f6fa..0f439a63f3 100644 --- a/_events/2022-0524.markdown +++ b/_events/2022-0524.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-05-24' eventdate: 2022-05-24 07:00:00 -0700 title: OpenSearch Community Meeting - 2022-05-24 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/285398214 title: Join on Meetup diff --git a/_events/2022-0531.markdown b/_events/2022-0531.markdown index ae09aeacf8..449e90638b 100644 --- a/_events/2022-0531.markdown +++ b/_events/2022-0531.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-05-31' eventdate: 2022-05-31 07:00:00 -0700 title: OpenSearch Community Meeting - 2022-05-31 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/285398325/ title: Join on Meetup diff --git a/_events/2022-0606.markdown b/_events/2022-0606.markdown index 906088115d..4b1f4b1674 100644 --- a/_events/2022-0606.markdown +++ b/_events/2022-0606.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-06-06' eventdate: 2022-06-06 09:00:00 -0700 title: OpenSearch Community Meeting - 2022-06-06 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/286123321/ title: Join on Meetup diff --git a/_events/2022-0613.markdown b/_events/2022-0613.markdown index bbc6ce9bb7..d33e1e0ad1 100644 --- a/_events/2022-0613.markdown +++ b/_events/2022-0613.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-06-13' eventdate: 2022-06-13 09:00:00 -0700 title: OpenSearch Community Meeting - 2022-06-13 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/286123366/ title: Join on Meetup diff --git a/_events/2022-0621.markdown b/_events/2022-0621.markdown index 21cbdbb215..137b9fc1e4 100644 --- a/_events/2022-0621.markdown +++ b/_events/2022-0621.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-06-22' eventdate: 2022-06-22 15:00:00 -0700 title: OpenSearch Community Meeting - 2022-06-22 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/286123419/ title: Join on Meetup diff --git a/_events/2022-0628.markdown b/_events/2022-0628.markdown index 46973399dd..5ef1ab273a 100644 --- a/_events/2022-0628.markdown +++ b/_events/2022-0628.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-06-28' eventdate: 2022-06-28 15:00:00 -0700 title: OpenSearch Community Meeting - 2022-06-28 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/OpenSearch/events/286123685/ title: Join on Meetup diff --git a/_events/2022-0705.markdown b/_events/2022-0705.markdown index 1172cfd6fd..88986bc5c6 100644 --- a/_events/2022-0705.markdown +++ b/_events/2022-0705.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-07-05' eventdate: 2022-07-05 09:00:00 -0700 title: OpenSearch Community Meeting - 2022-07-05 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/286883284/ title: Join on Meetup diff --git a/_events/2022-0712.markdown b/_events/2022-0712.markdown index 7079fcb0e6..edb8253cd8 100644 --- a/_events/2022-0712.markdown +++ b/_events/2022-0712.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-07-12' eventdate: 2022-07-12 09:00:00 -0700 title: OpenSearch Community Meeting - 2022-07-12 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/286883354/ title: Join on Meetup diff --git a/_events/2022-0719.markdown b/_events/2022-0719.markdown index e74544cede..1593ed6c18 100644 --- a/_events/2022-0719.markdown +++ b/_events/2022-0719.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-07-19' eventdate: 2022-07-19 07:00:00 -0700 title: OpenSearch Community Meeting - 2022-07-19 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/286884095/ title: Join on Meetup diff --git a/_events/2022-0802.markdown b/_events/2022-0802.markdown index d36d76c187..23e5ad8c90 100644 --- a/_events/2022-0802.markdown +++ b/_events/2022-0802.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-08-02' eventdate: 2022-08-02 08:00:00 -0700 title: OpenSearch Community Meeting - 2022-08-02 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/287311714/ title: Join on Meetup diff --git a/_events/2022-0816.markdown b/_events/2022-0816.markdown index a65b4683f3..41e6454300 100644 --- a/_events/2022-0816.markdown +++ b/_events/2022-0816.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-08-16' eventdate: 2022-08-16 15:00:00 -0700 title: OpenSearch Community Meeting - 2022-08-16 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/287311797 title: Join on Meetup diff --git a/_events/2022-0830.markdown b/_events/2022-0830.markdown index cf746b8817..3c24b2fd9d 100644 --- a/_events/2022-0830.markdown +++ b/_events/2022-0830.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-08-30' eventdate: 2022-08-30 08:00:00 -0700 title: OpenSearch Community Meeting - 2022-08-30 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/287311925/ title: Join on Meetup diff --git a/_events/2022-0913.markdown b/_events/2022-0913.markdown index ae8a24cdc5..77512f835e 100644 --- a/_events/2022-0913.markdown +++ b/_events/2022-0913.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-09-13' eventdate: 2022-09-13 15:00:00 -0700 title: OpenSearch Community Meeting - 2022-09-13 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/287871186/ title: Join on Meetup diff --git a/_events/2022-0927.markdown b/_events/2022-0927.markdown index 8738000f4e..c37433b918 100644 --- a/_events/2022-0927.markdown +++ b/_events/2022-0927.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-09-27' eventdate: 2022-09-27 08:00:00 -0700 title: OpenSearch Community Meeting - 2022-09-27 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/287871251/ title: Join on Meetup diff --git a/_events/2022-1011.markdown b/_events/2022-1011.markdown index 7c6e8aab08..e851ab26cb 100644 --- a/_events/2022-1011.markdown +++ b/_events/2022-1011.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-10-11' eventdate: 2022-10-11 15:00:00 -0700 title: OpenSearch Community Meeting - 2022-10-11 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/288532665/ title: Join on Meetup diff --git a/_events/2022-1017-dev-triage-security.markdown b/_events/2022-1017-dev-triage-security.markdown index 6deea2e55f..98046325a9 100644 --- a/_events/2022-1017-dev-triage-security.markdown +++ b/_events/2022-1017-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-10-17' eventdate: 2022-10-17 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2022-10-17 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/289119806/ title: Join on Meetup diff --git a/_events/2022-1024-dev-triage-security.markdown b/_events/2022-1024-dev-triage-security.markdown index bc1b4bdd49..a9e082417c 100644 --- a/_events/2022-1024-dev-triage-security.markdown +++ b/_events/2022-1024-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-10-24' eventdate: 2022-10-24 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2022-10-24 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/289215823/ title: Join on Meetup diff --git a/_events/2022-1025.markdown b/_events/2022-1025.markdown index d71d8c2280..24667a8891 100644 --- a/_events/2022-1025.markdown +++ b/_events/2022-1025.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-10-25' eventdate: 2022-10-25 08:00:00 -0700 title: OpenSearch Community Meeting - 2022-10-25 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/288532843/ title: Join on Meetup diff --git a/_events/2022-1031-dev-triage-security.markdown b/_events/2022-1031-dev-triage-security.markdown index fcab821cb6..6edb2adb10 100644 --- a/_events/2022-1031-dev-triage-security.markdown +++ b/_events/2022-1031-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-10-31' eventdate: 2022-10-31 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2022-10-31 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/289215860/ title: Join on Meetup diff --git a/_events/2022-1107-dev-triage-security.markdown b/_events/2022-1107-dev-triage-security.markdown index cb97152c8f..4b4e1f641a 100644 --- a/_events/2022-1107-dev-triage-security.markdown +++ b/_events/2022-1107-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-11-07' eventdate: 2022-11-07 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2022-11-07 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/bbrkzsydcpbkb/ title: Join on Meetup diff --git a/_events/2022-1114-dev-triage-security.markdown b/_events/2022-1114-dev-triage-security.markdown index 89b715e354..e5accb8d18 100644 --- a/_events/2022-1114-dev-triage-security.markdown +++ b/_events/2022-1114-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-11-14' eventdate: 2022-11-14 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2022-11-14 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/bbrkzsydcpbkb/ title: Join on Meetup diff --git a/_events/2022-1122.markdown b/_events/2022-1122.markdown index 255d6d115c..3c6838bdda 100644 --- a/_events/2022-1122.markdown +++ b/_events/2022-1122.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-11-22' eventdate: 2022-11-22 08:00:00 -0700 title: OpenSearch Community Meeting - 2022-11-22 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/289216679 title: Join on Meetup diff --git a/_events/2022-1128-dev-triage-security.markdown b/_events/2022-1128-dev-triage-security.markdown index 12abc90ed9..c5d0d7fd63 100644 --- a/_events/2022-1128-dev-triage-security.markdown +++ b/_events/2022-1128-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-11-28' eventdate: 2022-11-28 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2022-11-28 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/bbrkzsydcpbkb/ title: Join on Meetup diff --git a/_events/2022-1205-dev-triage-security.markdown b/_events/2022-1205-dev-triage-security.markdown index e13b65d1d2..a68fff75b8 100644 --- a/_events/2022-1205-dev-triage-security.markdown +++ b/_events/2022-1205-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-12-05' eventdate: 2022-12-05 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2022-12-05 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/bbrkzsydcpbkb/ title: Join on Meetup diff --git a/_events/2022-1206.markdown b/_events/2022-1206.markdown index 7d97830226..f208cb95d5 100644 --- a/_events/2022-1206.markdown +++ b/_events/2022-1206.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-12-06' eventdate: 2022-12-06 15:00:00 -0800 title: OpenSearch Community Meeting - 2022-12-06 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/289915764/ title: Join on Meetup diff --git a/_events/2022-1212-dev-triage-security.markdown b/_events/2022-1212-dev-triage-security.markdown index 81e3887ed7..edebd42327 100644 --- a/_events/2022-1212-dev-triage-security.markdown +++ b/_events/2022-1212-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-12-12' eventdate: 2022-12-12 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2022-12-12 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/bbrkzsydcpbkb/ title: Join on Meetup diff --git a/_events/2022-1219-dev-triage-security.markdown b/_events/2022-1219-dev-triage-security.markdown index 8777700bb4..d317e451d4 100644 --- a/_events/2022-1219-dev-triage-security.markdown +++ b/_events/2022-1219-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-12-19' eventdate: 2022-12-19 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2022-12-19 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/bbrkzsydcpbkb/ title: Join on Meetup diff --git a/_events/2022-1220.markdown b/_events/2022-1220.markdown index 4f740335f3..959d388ae9 100644 --- a/_events/2022-1220.markdown +++ b/_events/2022-1220.markdown @@ -3,6 +3,7 @@ calendar_date: '2022-12-20' eventdate: 2022-12-20 08:00:00 -0800 title: OpenSearch Community Meeting - 2022-12-20 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/289915836 title: Join on Meetup diff --git a/_events/2023-0109-dev-triage-security.markdown b/_events/2023-0109-dev-triage-security.markdown index 9fa51a3bd0..e5c50c6303 100644 --- a/_events/2023-0109-dev-triage-security.markdown +++ b/_events/2023-0109-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-01-09' eventdate: 2023-01-09 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-01-09 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/xkggbtyfccbmb title: Join on Meetup diff --git a/_events/2023-0116-dev-triage-security.markdown b/_events/2023-0116-dev-triage-security.markdown index 45651dc07b..a773512e1f 100644 --- a/_events/2023-0116-dev-triage-security.markdown +++ b/_events/2023-0116-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-01-17' eventdate: 2023-01-17 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-01-17 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/xkggbtyfccbmb title: Join on Meetup diff --git a/_events/2023-0117.markdown b/_events/2023-0117.markdown index cbb22f4e23..dce89d3233 100644 --- a/_events/2023-0117.markdown +++ b/_events/2023-0117.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-01-17' eventdate: 2023-01-17 08:00:00 -0800 title: OpenSearch Community Meeting - 2023-01-17 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/290443462/ title: Join on Meetup diff --git a/_events/2023-0123-dev-triage-security.markdown b/_events/2023-0123-dev-triage-security.markdown index dac5c320f2..56e4e45ca5 100644 --- a/_events/2023-0123-dev-triage-security.markdown +++ b/_events/2023-0123-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-01-23' eventdate: 2023-01-23 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-01-23 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/xkggbtyfccbmb title: Join on Meetup diff --git a/_events/2023-0124-finding-the-right-things.markdown b/_events/2023-0124-finding-the-right-things.markdown index e108660001..66813dd69f 100644 --- a/_events/2023-0124-finding-the-right-things.markdown +++ b/_events/2023-0124-finding-the-right-things.markdown @@ -6,6 +6,7 @@ eventdate: 2023-01-24 13:00:00 -0500 title: Data Ops Poland - Finding the Right Things with OpenSearch # if your event has an online component, put it here: online: True +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0130-dev-triage-security.markdown b/_events/2023-0130-dev-triage-security.markdown index 12a606876d..9ee060d670 100644 --- a/_events/2023-0130-dev-triage-security.markdown +++ b/_events/2023-0130-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-01-30' eventdate: 2023-01-30 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-01-30 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/xkggbtyfccbmb title: Join on Meetup diff --git a/_events/2023-0131.markdown b/_events/2023-0131.markdown index 8ce0e6aedb..1509e50f31 100644 --- a/_events/2023-0131.markdown +++ b/_events/2023-0131.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-01-31' eventdate: 2023-01-31 15:00:00 -0800 title: OpenSearch Community Meeting - 2023-01-31 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/290444410/ title: Join on Meetup diff --git a/_events/2023-0206-dev-triage-security.markdown b/_events/2023-0206-dev-triage-security.markdown index e225a03035..0e152501da 100644 --- a/_events/2023-0206-dev-triage-security.markdown +++ b/_events/2023-0206-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-02-06' eventdate: 2023-02-06 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-02-06 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/xkggbtyfccbmb title: Join on Meetup diff --git a/_events/2023-0213-dev-triage-security.markdown b/_events/2023-0213-dev-triage-security.markdown index e983a86935..b3ef22d93e 100644 --- a/_events/2023-0213-dev-triage-security.markdown +++ b/_events/2023-0213-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-02-13' eventdate: 2023-02-13 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-02-13 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/xkggbtyfccbmb title: Join on Meetup diff --git a/_events/2023-0214.markdown b/_events/2023-0214.markdown index 703228ccfe..1761451548 100644 --- a/_events/2023-0214.markdown +++ b/_events/2023-0214.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-02-14' eventdate: 2023-02-14 08:00:00 -0800 title: OpenSearch Community Meeting - 2023-02-14 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/290444856 title: Join on Meetup diff --git a/_events/2023-0220-dev-triage-security.markdown b/_events/2023-0220-dev-triage-security.markdown index 76be84936c..e4cd39707e 100644 --- a/_events/2023-0220-dev-triage-security.markdown +++ b/_events/2023-0220-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-02-20' eventdate: 2023-02-20 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-02-20 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/xkggbtyfccbmb title: Join on Meetup diff --git a/_events/2023-0227-dev-triage-security.markdown b/_events/2023-0227-dev-triage-security.markdown index efa58c73a1..cd6e213e6d 100644 --- a/_events/2023-0227-dev-triage-security.markdown +++ b/_events/2023-0227-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-02-27' eventdate: 2023-02-27 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-02-27 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/xkggbtyfccbmb title: Join on Meetup diff --git a/_events/2023-0228.markdown b/_events/2023-0228.markdown index 92fdac9a7e..575e105a24 100644 --- a/_events/2023-0228.markdown +++ b/_events/2023-0228.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-02-28' eventdate: 2023-02-28 15:00:00 -0800 title: OpenSearch Community Meeting - 2023-02-28 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/290444926/ title: Join on Meetup diff --git a/_events/2023-0306-dev-triage-security.markdown b/_events/2023-0306-dev-triage-security.markdown index aac2d735de..ff12b6d389 100644 --- a/_events/2023-0306-dev-triage-security.markdown +++ b/_events/2023-0306-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-03-06' eventdate: 2023-03-06 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-03-06 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291645606/ title: Join on Meetup diff --git a/_events/2023-0313-dev-triage-security.markdown b/_events/2023-0313-dev-triage-security.markdown index 35a4393901..cda02d3866 100644 --- a/_events/2023-0313-dev-triage-security.markdown +++ b/_events/2023-0313-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-03-13' eventdate: 2023-03-13 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-03-13 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291645612/ title: Join on Meetup diff --git a/_events/2023-0314.markdown b/_events/2023-0314.markdown index e4b64366ff..934733fa7d 100644 --- a/_events/2023-0314.markdown +++ b/_events/2023-0314.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-03-14' eventdate: 2023-03-14 08:00:00 -0800 title: OpenSearch Community Meeting - 2023-03-14 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291646681/ title: Join on Meetup diff --git a/_events/2023-0320-dev-triage-security.markdown b/_events/2023-0320-dev-triage-security.markdown index fe2d7bc0d6..ea1bfb86fe 100644 --- a/_events/2023-0320-dev-triage-security.markdown +++ b/_events/2023-0320-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-03-20' eventdate: 2023-03-20 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-03-20 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291645617/ title: Join on Meetup diff --git a/_events/2023-0323-fluent-community.markdown b/_events/2023-0323-fluent-community.markdown index 49d686fc10..e333daa6f8 100644 --- a/_events/2023-0323-fluent-community.markdown +++ b/_events/2023-0323-fluent-community.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-03-23' eventdate: 2023-03-23 16:00:00 -0400 title: Fluent Community Meeting online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/fluent-community-meeting/events/gtnftsyfcfbfc/ title: Join on Meetup diff --git a/_events/2023-0327-dev-triage-security.markdown b/_events/2023-0327-dev-triage-security.markdown index d8c47d72b3..15bfdbd245 100644 --- a/_events/2023-0327-dev-triage-security.markdown +++ b/_events/2023-0327-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-03-27' eventdate: 2023-03-27 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-03-27 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291645619/ title: Join on Meetup diff --git a/_events/2023-0328.markdown b/_events/2023-0328.markdown index 6f43a24fef..8273e23f2f 100644 --- a/_events/2023-0328.markdown +++ b/_events/2023-0328.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-03-28' eventdate: 2023-03-28 15:00:00 -0800 title: OpenSearch Community Meeting - 2023-03-28 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291647392/ title: Join on Meetup diff --git a/_events/2023-0403-dev-triage-security.markdown b/_events/2023-0403-dev-triage-security.markdown index e02c7c178e..6e6c2d1427 100644 --- a/_events/2023-0403-dev-triage-security.markdown +++ b/_events/2023-0403-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-04-03' eventdate: 2023-04-03 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-04-03 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291645632/ title: Join on Meetup diff --git a/_events/2023-0406-dev-integrations-apache-spark.markdown b/_events/2023-0406-dev-integrations-apache-spark.markdown index 2d46d2ba82..a909e463df 100644 --- a/_events/2023-0406-dev-integrations-apache-spark.markdown +++ b/_events/2023-0406-dev-integrations-apache-spark.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-04-06' eventdate: 2023-04-06 08:00:00 -0800 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0406 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/292609983/ title: Join on Meetup diff --git a/_events/2023-0406-fluent-community.markdown b/_events/2023-0406-fluent-community.markdown index 773f0f5083..693aead6fe 100644 --- a/_events/2023-0406-fluent-community.markdown +++ b/_events/2023-0406-fluent-community.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-04-06' eventdate: 2023-04-06 16:00:00 -0400 title: Fluent Community Meeting online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/fluent-community-meeting/events/gtnftsyfcgbjb/ title: Join on Meetup diff --git a/_events/2023-0410-dev-triage-security.markdown b/_events/2023-0410-dev-triage-security.markdown index e2ae123fa5..ea663453d7 100644 --- a/_events/2023-0410-dev-triage-security.markdown +++ b/_events/2023-0410-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-04-10' eventdate: 2023-04-10 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-04-10 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291645638/ title: Join on Meetup diff --git a/_events/2023-0411.markdown b/_events/2023-0411.markdown index e64124e7fb..a9d0036c82 100644 --- a/_events/2023-0411.markdown +++ b/_events/2023-0411.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-04-11' eventdate: 2023-04-11 08:00:00 -0800 title: OpenSearch Community Meeting - 2023-04-11 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291647521 title: Join on Meetup diff --git a/_events/2023-0417-dev-triage-security.markdown b/_events/2023-0417-dev-triage-security.markdown index 2489c2f1b4..ee378ce245 100644 --- a/_events/2023-0417-dev-triage-security.markdown +++ b/_events/2023-0417-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-04-17' eventdate: 2023-04-17 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-04-17 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291645641/ title: Join on Meetup diff --git a/_events/2023-0420-dev-integrations-apache-spark.markdown b/_events/2023-0420-dev-integrations-apache-spark.markdown index fa1e9f357a..8e835e0e80 100644 --- a/_events/2023-0420-dev-integrations-apache-spark.markdown +++ b/_events/2023-0420-dev-integrations-apache-spark.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-04-20' eventdate: 2023-04-20 08:00:00 -0800 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0420 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/292610039 title: Join on Meetup diff --git a/_events/2023-0424-dev-triage-security.markdown b/_events/2023-0424-dev-triage-security.markdown index ed69b3db7e..5ec67a21ce 100644 --- a/_events/2023-0424-dev-triage-security.markdown +++ b/_events/2023-0424-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-04-24' eventdate: 2023-04-24 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-04-24 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291645647/ title: Join on Meetup diff --git a/_events/2023-0424-haystack-us-2023.markdown b/_events/2023-0424-haystack-us-2023.markdown index 4b37567fcf..b2f6891346 100644 --- a/_events/2023-0424-haystack-us-2023.markdown +++ b/_events/2023-0424-haystack-us-2023.markdown @@ -6,6 +6,7 @@ eventdate: 2023-04-24 09:00:00 -0500 title: Haystack US 2023 - The Search Relevance Conference # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0425.markdown b/_events/2023-0425.markdown index 997209546c..a5bb23b0e0 100644 --- a/_events/2023-0425.markdown +++ b/_events/2023-0425.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-04-25' eventdate: 2023-04-25 15:00:00 -0800 title: OpenSearch Community Meeting - 2023-04-25 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/291647572/ title: Join on Meetup diff --git a/_events/2023-0501-dev-triage-security.markdown b/_events/2023-0501-dev-triage-security.markdown index efc1e67421..b4f44498bc 100644 --- a/_events/2023-0501-dev-triage-security.markdown +++ b/_events/2023-0501-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-05-01' eventdate: 2023-05-01 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-05-01 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/vldpdtyfchbcb/ title: Join on Meetup diff --git a/_events/2023-0504-dev-integrations-apache-spark.markdown b/_events/2023-0504-dev-integrations-apache-spark.markdown index e20bf34869..a0c4f80b52 100644 --- a/_events/2023-0504-dev-integrations-apache-spark.markdown +++ b/_events/2023-0504-dev-integrations-apache-spark.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-05-04' eventdate: 2023-05-04 08:00:00 -0800 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0504 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/292610048/ title: Join on Meetup diff --git a/_events/2023-0504-dev-officehours-dashboards.markdown b/_events/2023-0504-dev-officehours-dashboards.markdown index e3ed458fde..f2b636dbda 100644 --- a/_events/2023-0504-dev-officehours-dashboards.markdown +++ b/_events/2023-0504-dev-officehours-dashboards.markdown @@ -6,6 +6,7 @@ eventdate: 2023-05-04 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-05-04 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0508-dev-triage-security.markdown b/_events/2023-0508-dev-triage-security.markdown index 4825b040cc..65b78b5f7e 100644 --- a/_events/2023-0508-dev-triage-security.markdown +++ b/_events/2023-0508-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-05-08' eventdate: 2023-05-08 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-05-08 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/vldpdtyfchblb/ title: Join on Meetup diff --git a/_events/2023-0515-dev-triage-security.markdown b/_events/2023-0515-dev-triage-security.markdown index 58a7bb192b..26787fd2d7 100644 --- a/_events/2023-0515-dev-triage-security.markdown +++ b/_events/2023-0515-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-05-15' eventdate: 2023-05-15 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-05-15 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/vldpdtyfchbtb/ title: Join on Meetup diff --git a/_events/2023-0518-dev-integrations-apache-spark.markdown b/_events/2023-0518-dev-integrations-apache-spark.markdown index fbf7ab2202..7116de227c 100644 --- a/_events/2023-0518-dev-integrations-apache-spark.markdown +++ b/_events/2023-0518-dev-integrations-apache-spark.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-05-18' eventdate: 2023-05-18 08:00:00 -0800 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0518 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/292610052 title: Join on Meetup diff --git a/_events/2023-0518-dev-officehours-dashboards.markdown b/_events/2023-0518-dev-officehours-dashboards.markdown index b0872ff126..044bb697e3 100644 --- a/_events/2023-0518-dev-officehours-dashboards.markdown +++ b/_events/2023-0518-dev-officehours-dashboards.markdown @@ -6,6 +6,7 @@ eventdate: 2023-05-18 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-05-18 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0522-dev-triage-security.markdown b/_events/2023-0522-dev-triage-security.markdown index 68f464a6c2..74649bc9a3 100644 --- a/_events/2023-0522-dev-triage-security.markdown +++ b/_events/2023-0522-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-05-22' eventdate: 2023-05-22 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-05-22 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/vldpdtyfchbdc/ title: Join on Meetup diff --git a/_events/2023-0523.markdown b/_events/2023-0523.markdown index 9d9ae150db..e47182a75f 100644 --- a/_events/2023-0523.markdown +++ b/_events/2023-0523.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-05-23' eventdate: 2023-05-23 15:00:00 -0700 title: OpenSearch Community Meeting - 2023-05-23 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/293178461/ title: Join on Meetup diff --git a/_events/2023-0529-dev-triage-security.markdown b/_events/2023-0529-dev-triage-security.markdown index d48cffc78f..b7e513e772 100644 --- a/_events/2023-0529-dev-triage-security.markdown +++ b/_events/2023-0529-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-05-29' eventdate: 2023-05-29 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-05-29 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/vldpdtyfchbmc/ title: Join on Meetup diff --git a/_events/2023-0601-dev-officehours-dashboards.markdown b/_events/2023-0601-dev-officehours-dashboards.markdown index 2a12e93dbf..0cbee6445b 100644 --- a/_events/2023-0601-dev-officehours-dashboards.markdown +++ b/_events/2023-0601-dev-officehours-dashboards.markdown @@ -6,6 +6,7 @@ eventdate: 2023-06-01 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-06-01 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0605-dev-triage-security.markdown b/_events/2023-0605-dev-triage-security.markdown index 36fd2203ac..affc204fcc 100644 --- a/_events/2023-0605-dev-triage-security.markdown +++ b/_events/2023-0605-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-06-05' eventdate: 2023-06-05 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-06-05 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/vldpdtyfcjbhb/ title: Join on Meetup diff --git a/_events/2023-0606.markdown b/_events/2023-0606.markdown index 7b2a1a501d..c8e2b81d92 100644 --- a/_events/2023-0606.markdown +++ b/_events/2023-0606.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-06-06' eventdate: 2023-06-06 08:00:00 -0800 title: OpenSearch Community Meeting - 2023-06-06 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/293178501/ title: Join on Meetup diff --git a/_events/2023-0611-cfp-workshop.markdown b/_events/2023-0611-cfp-workshop.markdown index 2ddaa6fdb5..a99909625e 100644 --- a/_events/2023-0611-cfp-workshop.markdown +++ b/_events/2023-0611-cfp-workshop.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-06-13' eventdate: 2023-06-13 09:00:00 -0700 title: Submitting your first CFP workshop online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/294042369/ title: Join on Meetup diff --git a/_events/2023-0612-dev-triage-security.markdown b/_events/2023-0612-dev-triage-security.markdown index c15f5970c4..49e45d01d4 100644 --- a/_events/2023-0612-dev-triage-security.markdown +++ b/_events/2023-0612-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-06-12' eventdate: 2023-06-12 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-06-12 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/vldpdtyfcjbqb/ title: Join on Meetup diff --git a/_events/2023-0615-dev-integrations-apache-spark.markdown b/_events/2023-0615-dev-integrations-apache-spark.markdown index 5880e75a3f..e621154eca 100644 --- a/_events/2023-0615-dev-integrations-apache-spark.markdown +++ b/_events/2023-0615-dev-integrations-apache-spark.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-06-15' eventdate: 2023-06-15 08:00:00 -0800 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0615 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/293180024/ title: Join on Meetup diff --git a/_events/2023-0615-dev-officehours-dashboards.markdown b/_events/2023-0615-dev-officehours-dashboards.markdown index 704c620a34..41458fb112 100644 --- a/_events/2023-0615-dev-officehours-dashboards.markdown +++ b/_events/2023-0615-dev-officehours-dashboards.markdown @@ -6,6 +6,7 @@ eventdate: 2023-06-15 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-06-15 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0619-dev-triage-security.markdown b/_events/2023-0619-dev-triage-security.markdown index fe5e4f1180..4f36ae3579 100644 --- a/_events/2023-0619-dev-triage-security.markdown +++ b/_events/2023-0619-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-06-19' eventdate: 2023-06-19 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-06-19 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/vldpdtyfcjbzb/ title: Join on Meetup diff --git a/_events/2023-0626-dev-triage-security.markdown b/_events/2023-0626-dev-triage-security.markdown index 0e1cab63df..e00ad2a1e6 100644 --- a/_events/2023-0626-dev-triage-security.markdown +++ b/_events/2023-0626-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-06-26' eventdate: 2023-06-26 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-06-26 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/vldpdtyfcjbjc/ title: Join on Meetup diff --git a/_events/2023-0627.markdown b/_events/2023-0627.markdown index 22fb94328c..7d362dfbf0 100644 --- a/_events/2023-0627.markdown +++ b/_events/2023-0627.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-06-20' eventdate: 2023-06-20 15:00:00 -0800 title: OpenSearch Community Meeting - 2023-06-27 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/293178523 title: Join on Meetup diff --git a/_events/2023-0628-search-relevance-triage-backlog.markdown b/_events/2023-0628-search-relevance-triage-backlog.markdown index bc5fe2e0b0..da7fbcdc40 100644 --- a/_events/2023-0628-search-relevance-triage-backlog.markdown +++ b/_events/2023-0628-search-relevance-triage-backlog.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-06-28' eventdate: 2023-06-28 09:00:00 -0800 title: Search Relevance - Triage & Backlog Review - 2023-06-28 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/294451523 title: Join on Meetup diff --git a/_events/2023-0629-dev-integrations-apache-spark.markdown b/_events/2023-0629-dev-integrations-apache-spark.markdown index b3fd248840..9742ccd1d0 100644 --- a/_events/2023-0629-dev-integrations-apache-spark.markdown +++ b/_events/2023-0629-dev-integrations-apache-spark.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-06-29' eventdate: 2023-06-29 08:00:00 -0800 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0629 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/293180035/ title: Join on Meetup diff --git a/_events/2023-0710-dev-triage-security.markdown b/_events/2023-0710-dev-triage-security.markdown index 5fae88b888..d2cfac1973 100644 --- a/_events/2023-0710-dev-triage-security.markdown +++ b/_events/2023-0710-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-07-10' eventdate: 2023-07-10 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-07-10 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfckbnb/ title: Join on Meetup diff --git a/_events/2023-0711.markdown b/_events/2023-0711.markdown index 6d787548c5..9d625167e3 100644 --- a/_events/2023-0711.markdown +++ b/_events/2023-0711.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-07-11' eventdate: 2023-07-11 08:00:00 -0700 title: OpenSearch Community Meeting - 2023-07-11 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/294165775 title: Join on Meetup diff --git a/_events/2023-0712-search-relevance-triage-backlog.markdown b/_events/2023-0712-search-relevance-triage-backlog.markdown index e9e19a0efd..3d36e0ac70 100644 --- a/_events/2023-0712-search-relevance-triage-backlog.markdown +++ b/_events/2023-0712-search-relevance-triage-backlog.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-07-12' eventdate: 2023-07-12 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-07-12 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/294451568 title: Join on Meetup diff --git a/_events/2023-0713-dev-integrations-apache-spark.markdown b/_events/2023-0713-dev-integrations-apache-spark.markdown index 7c240dbf9f..495986f910 100644 --- a/_events/2023-0713-dev-integrations-apache-spark.markdown +++ b/_events/2023-0713-dev-integrations-apache-spark.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-07-13' eventdate: 2023-07-13 08:00:00 -0700 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0713 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/293180042/ title: Join on Meetup diff --git a/_events/2023-0713-dev-officehours-dashboards.markdown b/_events/2023-0713-dev-officehours-dashboards.markdown index e1edb0cbb1..0f27894ba3 100644 --- a/_events/2023-0713-dev-officehours-dashboards.markdown +++ b/_events/2023-0713-dev-officehours-dashboards.markdown @@ -6,6 +6,7 @@ eventdate: 2023-07-13 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-07-13 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0717-dev-triage-security.markdown b/_events/2023-0717-dev-triage-security.markdown index d7edd9eec8..72891f4d10 100644 --- a/_events/2023-0717-dev-triage-security.markdown +++ b/_events/2023-0717-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-07-17' eventdate: 2023-07-17 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-07-17 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfckbwb/ title: Join on Meetup diff --git a/_events/2023-0718-2-9-release-meetings.markdown b/_events/2023-0718-2-9-release-meetings.markdown index 0bafe7aff9..3a8f3bf1b3 100644 --- a/_events/2023-0718-2-9-release-meetings.markdown +++ b/_events/2023-0718-2-9-release-meetings.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-08-08' eventdate: 2023-08-08 11:30:00 -0700 title: OpenSearch 2.9.0 Release Meetings - 2023-07-24 online: true +tz: America/Los_Angeles signup: url: https://us02web.zoom.us/j/83030994833 title: Join on Meetup diff --git a/_events/2023-0724-dev-triage-security.markdown b/_events/2023-0724-dev-triage-security.markdown index 83e36bd7fe..1d88783a23 100644 --- a/_events/2023-0724-dev-triage-security.markdown +++ b/_events/2023-0724-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-07-24' eventdate: 2023-07-24 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-07-24 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfckbgc/ title: Join on Meetup diff --git a/_events/2023-0725-efficient-vector-search-opensearch.markdown b/_events/2023-0725-efficient-vector-search-opensearch.markdown index 3892eb47c0..6c7675b0e4 100644 --- a/_events/2023-0725-efficient-vector-search-opensearch.markdown +++ b/_events/2023-0725-efficient-vector-search-opensearch.markdown @@ -7,6 +7,7 @@ eventdate: 2023-07-25 10:00:00 -0700 title: Efficient Vector Search with OpenSearch - Webinar with BigData Boutique and MyPart # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0725.markdown b/_events/2023-0725.markdown index f41880352a..885dfd3cf7 100644 --- a/_events/2023-0725.markdown +++ b/_events/2023-0725.markdown @@ -4,6 +4,7 @@ eventdate: 2023-07-25 15:00:00 -0700 title: OpenSearch Community Meeting - 2023-07-25 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/294165788/ title: Join on Meetup diff --git a/_events/2023-0726-search-relevance-triage-backlog.markdown b/_events/2023-0726-search-relevance-triage-backlog.markdown index ca6ab3112e..34f0cc54a3 100644 --- a/_events/2023-0726-search-relevance-triage-backlog.markdown +++ b/_events/2023-0726-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-07-26 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-07-26 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/294451571 title: Join on Meetup diff --git a/_events/2023-0727-dev-integrations-apache-spark.markdown b/_events/2023-0727-dev-integrations-apache-spark.markdown index 8005d71fc0..40f89f0634 100644 --- a/_events/2023-0727-dev-integrations-apache-spark.markdown +++ b/_events/2023-0727-dev-integrations-apache-spark.markdown @@ -4,6 +4,7 @@ eventdate: 2023-07-27 08:00:00 -0700 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0727 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/293180050/ title: Join on Meetup diff --git a/_events/2023-0727-dev-officehours-dashboards.markdown b/_events/2023-0727-dev-officehours-dashboards.markdown index c1f0ed5d60..d7efecb36e 100644 --- a/_events/2023-0727-dev-officehours-dashboards.markdown +++ b/_events/2023-0727-dev-officehours-dashboards.markdown @@ -8,6 +8,7 @@ eventdate: 2023-07-27 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-07-27 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0728-generative-ai-brainstorm.markdown b/_events/2023-0728-generative-ai-brainstorm.markdown index b492f04b0b..379321224b 100644 --- a/_events/2023-0728-generative-ai-brainstorm.markdown +++ b/_events/2023-0728-generative-ai-brainstorm.markdown @@ -4,6 +4,7 @@ eventdate: 2023-07-28 09:00:00 -0700 title: Brainstorm about OpenSearch and generative AI online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/294625118/ title: Join on Meetup diff --git a/_events/2023-0731-dev-triage-security.markdown b/_events/2023-0731-dev-triage-security.markdown index cce4c71ef7..d02c9cab77 100644 --- a/_events/2023-0731-dev-triage-security.markdown +++ b/_events/2023-0731-dev-triage-security.markdown @@ -4,6 +4,7 @@ eventdate: 2023-07-31 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-07-31 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfckbpc/ title: Join on Meetup diff --git a/_events/2023-0807-dev-triage-security.markdown b/_events/2023-0807-dev-triage-security.markdown index 02db0d8a65..b34e7417ee 100644 --- a/_events/2023-0807-dev-triage-security.markdown +++ b/_events/2023-0807-dev-triage-security.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-07 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-08-07 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfclbkb/ title: Join on Meetup diff --git a/_events/2023-0808.markdown b/_events/2023-0808.markdown index ad71af92dc..1e700703ad 100644 --- a/_events/2023-0808.markdown +++ b/_events/2023-0808.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-08 08:00:00 -0700 title: OpenSearch Community Meeting - 2023-08-08 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/294165800/ title: Join on Meetup diff --git a/_events/2023-0809-search-relevance-triage-backlog.markdown b/_events/2023-0809-search-relevance-triage-backlog.markdown index 699411602f..9ee26648fb 100644 --- a/_events/2023-0809-search-relevance-triage-backlog.markdown +++ b/_events/2023-0809-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-09 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-08-09 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/294451577 title: Join on Meetup diff --git a/_events/2023-0810-dev-officehours-dashboards.markdown b/_events/2023-0810-dev-officehours-dashboards.markdown index 08719c776d..223bf61e94 100644 --- a/_events/2023-0810-dev-officehours-dashboards.markdown +++ b/_events/2023-0810-dev-officehours-dashboards.markdown @@ -8,6 +8,7 @@ eventdate: 2023-08-10 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-08-10 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0814-dev-triage-security.markdown b/_events/2023-0814-dev-triage-security.markdown index 87cc6246db..8652a90099 100644 --- a/_events/2023-0814-dev-triage-security.markdown +++ b/_events/2023-0814-dev-triage-security.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-14 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-08-14 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfclbsb/ title: Join on Meetup diff --git a/_events/2023-0816-search-relevance-triage-backlog.markdown b/_events/2023-0816-search-relevance-triage-backlog.markdown index 10935166f7..c33303ad1f 100644 --- a/_events/2023-0816-search-relevance-triage-backlog.markdown +++ b/_events/2023-0816-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-16 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-08-16 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295393153 title: Join on Meetup diff --git a/_events/2023-0821-dev-triage-security.markdown b/_events/2023-0821-dev-triage-security.markdown index 2aedd997ec..5eb51af520 100644 --- a/_events/2023-0821-dev-triage-security.markdown +++ b/_events/2023-0821-dev-triage-security.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-21 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-08-21 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfclbcc/ title: Join on Meetup diff --git a/_events/2023-0822.markdown b/_events/2023-0822.markdown index a5cdc633b8..287c7d5bdd 100644 --- a/_events/2023-0822.markdown +++ b/_events/2023-0822.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-22 15:00:00 -0700 title: OpenSearch Community Meeting - 2023-08-22 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/294165816/ title: Join on Meetup diff --git a/_events/2023-0823-search-relevance-triage-backlog.markdown b/_events/2023-0823-search-relevance-triage-backlog.markdown index 5318ad445b..ab148e64d7 100644 --- a/_events/2023-0823-search-relevance-triage-backlog.markdown +++ b/_events/2023-0823-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-23 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-08-23 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295393157/ title: Join on Meetup diff --git a/_events/2023-0824-dev-officehours-dashboards.markdown b/_events/2023-0824-dev-officehours-dashboards.markdown index d1829502d9..6e1055d00d 100644 --- a/_events/2023-0824-dev-officehours-dashboards.markdown +++ b/_events/2023-0824-dev-officehours-dashboards.markdown @@ -8,6 +8,7 @@ eventdate: 2023-08-24 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-08-24 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0825-dev-triage-ml-commons.markdown b/_events/2023-0825-dev-triage-ml-commons.markdown index 21c812ff14..558fb44f84 100644 --- a/_events/2023-0825-dev-triage-ml-commons.markdown +++ b/_events/2023-0825-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-25 09:00:00 -0700 title: Development Backlog & Triage Meeting - ml-commons - 2023-08-25 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295655379/ title: Join on Meetup diff --git a/_events/2023-0828-dev-triage-security.markdown b/_events/2023-0828-dev-triage-security.markdown index faccacaef3..c265489ec1 100644 --- a/_events/2023-0828-dev-triage-security.markdown +++ b/_events/2023-0828-dev-triage-security.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-28 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-08-28 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfclblc/ title: Join on Meetup diff --git a/_events/2023-0830-search-relevance-triage-backlog.markdown b/_events/2023-0830-search-relevance-triage-backlog.markdown index 1463d5795a..32a0a8a427 100644 --- a/_events/2023-0830-search-relevance-triage-backlog.markdown +++ b/_events/2023-0830-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-08-30 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-08-30 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295393170 title: Join on Meetup diff --git a/_events/2023-0901-dev-triage-ml-commons.markdown b/_events/2023-0901-dev-triage-ml-commons.markdown index f20c7a2ad7..2ebbdd1bbe 100644 --- a/_events/2023-0901-dev-triage-ml-commons.markdown +++ b/_events/2023-0901-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2023-09-01 09:00:00 -0700 title: Development Backlog & Triage Meeting - ml-commons - 2023-09-01 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295744439/ title: Join on Meetup diff --git a/_events/2023-0905-community-meeting.markdown b/_events/2023-0905-community-meeting.markdown index c0f9c60b78..62eda18d45 100644 --- a/_events/2023-0905-community-meeting.markdown +++ b/_events/2023-0905-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2023-09-05 08:00:00 -0700 title: OpenSearch Community Meeting - 2023-09-05 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295643879 title: Join on Meetup diff --git a/_events/2023-0906-search-relevance-triage-backlog.markdown b/_events/2023-0906-search-relevance-triage-backlog.markdown index 2db085de1a..de29e4022b 100644 --- a/_events/2023-0906-search-relevance-triage-backlog.markdown +++ b/_events/2023-0906-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-09-06 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-09-06 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295393174/ title: Join on Meetup diff --git a/_events/2023-0907-dev-officehours-dashboards.markdown b/_events/2023-0907-dev-officehours-dashboards.markdown index 1c25340e37..48da3d2beb 100644 --- a/_events/2023-0907-dev-officehours-dashboards.markdown +++ b/_events/2023-0907-dev-officehours-dashboards.markdown @@ -8,6 +8,7 @@ eventdate: 2023-09-07 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-09-07 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0911-dev-triage-security.markdown b/_events/2023-0911-dev-triage-security.markdown index 606b9844f0..1f41f6bee4 100644 --- a/_events/2023-0911-dev-triage-security.markdown +++ b/_events/2023-0911-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-09-11' eventdate: 2023-09-11 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-09-11 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfcmbpb/ title: Join on Meetup diff --git a/_events/2023-0913-search-relevance-triage-backlog.markdown b/_events/2023-0913-search-relevance-triage-backlog.markdown index 693d1fa1c1..5723828df1 100644 --- a/_events/2023-0913-search-relevance-triage-backlog.markdown +++ b/_events/2023-0913-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-09-13 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-09-13 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295393181 title: Join on Meetup diff --git a/_events/2023-0915-dev-triage-ml-commons.markdown b/_events/2023-0915-dev-triage-ml-commons.markdown index f3ff4a4fe6..3b0d168b9b 100644 --- a/_events/2023-0915-dev-triage-ml-commons.markdown +++ b/_events/2023-0915-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2023-09-15 09:00:00 -0700 title: Development Backlog & Triage Meeting - ml-commons - 2023-09-15 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295744474/ title: Join on Meetup diff --git a/_events/2023-0918-dev-triage-security.markdown b/_events/2023-0918-dev-triage-security.markdown index 38efc486e0..9578316038 100644 --- a/_events/2023-0918-dev-triage-security.markdown +++ b/_events/2023-0918-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-09-18' eventdate: 2023-09-18 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-09-18 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfcmbxb/ title: Join on Meetup diff --git a/_events/2023-0919-community-meeting.markdown b/_events/2023-0919-community-meeting.markdown index de393d29e4..797be1b78f 100644 --- a/_events/2023-0919-community-meeting.markdown +++ b/_events/2023-0919-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2023-09-19 15:00:00 -0700 title: OpenSearch Community Meeting - 2023-09-19 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295644282 title: Join on Meetup diff --git a/_events/2023-0920-search-relevance-triage-backlog.markdown b/_events/2023-0920-search-relevance-triage-backlog.markdown index 75647c1d0e..62b90c28e8 100644 --- a/_events/2023-0920-search-relevance-triage-backlog.markdown +++ b/_events/2023-0920-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-09-20 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-09-20 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295393186/ title: Join on Meetup diff --git a/_events/2023-0921-dev-officehours-dashboards.markdown b/_events/2023-0921-dev-officehours-dashboards.markdown index aacd2b5f77..a6cd572fef 100644 --- a/_events/2023-0921-dev-officehours-dashboards.markdown +++ b/_events/2023-0921-dev-officehours-dashboards.markdown @@ -7,6 +7,7 @@ eventdate: 2023-09-21 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-09-21 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-0925-2-10-release-meetings.markdown b/_events/2023-0925-2-10-release-meetings.markdown index 240c90c9a4..78b862f51a 100644 --- a/_events/2023-0925-2-10-release-meetings.markdown +++ b/_events/2023-0925-2-10-release-meetings.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-09-25' eventdate: 2023-09-25 11:30:00 -0700 title: OpenSearch 2.10.0 Release Meetings - 2023-07-19 online: true +tz: America/Los_Angeles signup: url: https://chime.aws/5359048054 title: Join on Chime diff --git a/_events/2023-0925-dev-triage-security.markdown b/_events/2023-0925-dev-triage-security.markdown index 92045144d8..bb2d5d767b 100644 --- a/_events/2023-0925-dev-triage-security.markdown +++ b/_events/2023-0925-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-09-25' eventdate: 2023-09-25 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-09-25 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/tvcvftyfcmbhc/ title: Join on Meetup diff --git a/_events/2023-1003-community-meeting.markdown b/_events/2023-1003-community-meeting.markdown index 516fbbf97e..b5283a72c2 100644 --- a/_events/2023-1003-community-meeting.markdown +++ b/_events/2023-1003-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2023-10-03 08:00:00 -0700 title: OpenSearch Community Meeting - 2023-10-03 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295644289/ title: Join on Meetup diff --git a/_events/2023-1004-search-relevance-triage-backlog.markdown b/_events/2023-1004-search-relevance-triage-backlog.markdown index 8cc79f7579..f3a0775c28 100644 --- a/_events/2023-1004-search-relevance-triage-backlog.markdown +++ b/_events/2023-1004-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-10-04 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-10-04 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295393198/ title: Join on Meetup diff --git a/_events/2023-1011-search-relevance-triage-backlog.markdown b/_events/2023-1011-search-relevance-triage-backlog.markdown index 7460a3fd59..372922df10 100644 --- a/_events/2023-1011-search-relevance-triage-backlog.markdown +++ b/_events/2023-1011-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-10-11 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-10-11 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295393200/ title: Join on Meetup diff --git a/_events/2023-1016-dev-triage-security.markdown b/_events/2023-1016-dev-triage-security.markdown index 9150e90002..1cde7e4e8e 100644 --- a/_events/2023-1016-dev-triage-security.markdown +++ b/_events/2023-1016-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-10-16' eventdate: 2023-10-16 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-10-16 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/cwtmhtyfcnbvb/ title: Join on Meetup diff --git a/_events/2023-1017-community-meeting.markdown b/_events/2023-1017-community-meeting.markdown index 808354a224..9e196a5edc 100644 --- a/_events/2023-1017-community-meeting.markdown +++ b/_events/2023-1017-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2023-10-17 15:00:00 -0700 title: OpenSearch Community Meeting - 2023-10-17 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295644295/ title: Join on Meetup diff --git a/_events/2023-1018-2-11-release-meetings.markdown b/_events/2023-1018-2-11-release-meetings.markdown index 9a51607ae8..ffbbc32268 100644 --- a/_events/2023-1018-2-11-release-meetings.markdown +++ b/_events/2023-1018-2-11-release-meetings.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-10-18' eventdate: 2023-11-07 11:00:00 -0700 title: OpenSearch 2.11.0 Release Meetings online: true +tz: America/Los_Angeles signup: url: https://chime.aws/4325833489 title: Join on Chime diff --git a/_events/2023-1018-search-relevance-triage-backlog.markdown b/_events/2023-1018-search-relevance-triage-backlog.markdown index dce8d6c290..34139c4dbd 100644 --- a/_events/2023-1018-search-relevance-triage-backlog.markdown +++ b/_events/2023-1018-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-10-18 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-10-18 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295393206/ title: Join on Meetup diff --git a/_events/2023-1019-dev-officehours-dashboards.markdown b/_events/2023-1019-dev-officehours-dashboards.markdown index ae3cee4385..99322f1af8 100644 --- a/_events/2023-1019-dev-officehours-dashboards.markdown +++ b/_events/2023-1019-dev-officehours-dashboards.markdown @@ -7,6 +7,7 @@ eventdate: 2023-10-19 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-10-19 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-1019-fluent-community-meetup.markdown b/_events/2023-1019-fluent-community-meetup.markdown index 0b72fe3c23..8f9b2277fc 100644 --- a/_events/2023-1019-fluent-community-meetup.markdown +++ b/_events/2023-1019-fluent-community-meetup.markdown @@ -5,6 +5,7 @@ eventdate: 2023-10-19 12:00:00 -0400 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true +tz: America/Los_Angeles # If the event is online, remove the next line, otherwise uncomment and adjust it: # tz: Pacific/Tahiti diff --git a/_events/2023-1020-dev-triage-ml-commons.markdown b/_events/2023-1020-dev-triage-ml-commons.markdown index 0fd6bf7108..ab45414ae2 100644 --- a/_events/2023-1020-dev-triage-ml-commons.markdown +++ b/_events/2023-1020-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2023-10-20 09:00:00 -0700 title: Development Backlog & Triage Meeting - ml-commons - 2023-10-20 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/296823928 title: Join on Meetup diff --git a/_events/2023-1023-dev-triage-security.markdown b/_events/2023-1023-dev-triage-security.markdown index 0bc921a9cb..21993e8516 100644 --- a/_events/2023-1023-dev-triage-security.markdown +++ b/_events/2023-1023-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-10-23' eventdate: 2023-10-23 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-10-23 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/cwtmhtyfcnbvb/ title: Join on Meetup diff --git a/_events/2023-1025-search-relevance-triage-backlog.markdown b/_events/2023-1025-search-relevance-triage-backlog.markdown index c9271c833e..4426697183 100644 --- a/_events/2023-1025-search-relevance-triage-backlog.markdown +++ b/_events/2023-1025-search-relevance-triage-backlog.markdown @@ -4,6 +4,7 @@ eventdate: 2023-10-25 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-10-25 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295393207/ title: Join on Meetup diff --git a/_events/2023-1026-fluent-bit-v2-webinar.markdown b/_events/2023-1026-fluent-bit-v2-webinar.markdown index f37ed22d09..e027eda8ca 100644 --- a/_events/2023-1026-fluent-bit-v2-webinar.markdown +++ b/_events/2023-1026-fluent-bit-v2-webinar.markdown @@ -5,6 +5,7 @@ eventdate: 2023-10-26 12:00:00 -0400 # the title - this is how it will show up in listing and headings on the site: title: Fluent Bit v2 Webinar online: true +tz: America/Los_Angeles # If the event is online, remove the next line, otherwise uncomment and adjust it: # tz: Pacific/Tahiti diff --git a/_events/2023-1030-dev-triage-security.markdown b/_events/2023-1030-dev-triage-security.markdown index e41ce3f1b0..2f132d662c 100644 --- a/_events/2023-1030-dev-triage-security.markdown +++ b/_events/2023-1030-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-10-30' eventdate: 2023-10-30 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-10-30 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/cwtmhtyfcnbvb/ title: Join on Meetup diff --git a/_events/2023-1031-community-meeting.markdown b/_events/2023-1031-community-meeting.markdown index 525d052067..eb8f1fa1e6 100644 --- a/_events/2023-1031-community-meeting.markdown +++ b/_events/2023-1031-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2023-10-31 08:00:00 -0700 title: OpenSearch Community Meeting - 2023-10-31 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/295644302/ title: Join on Meetup diff --git a/_events/2023-1102-dev-officehours-dashboards.markdown b/_events/2023-1102-dev-officehours-dashboards.markdown index 778ae005c4..2144c9bd70 100644 --- a/_events/2023-1102-dev-officehours-dashboards.markdown +++ b/_events/2023-1102-dev-officehours-dashboards.markdown @@ -7,6 +7,7 @@ eventdate: 2023-11-02 10:00:00 -0700 title: OpenSearch Dashboards Developer Office Hours - 2023-11-02 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-1102-fluent-community-meetup.markdown b/_events/2023-1102-fluent-community-meetup.markdown index 48d43b62e3..784eea2c63 100644 --- a/_events/2023-1102-fluent-community-meetup.markdown +++ b/_events/2023-1102-fluent-community-meetup.markdown @@ -5,6 +5,7 @@ eventdate: 2023-11-02 12:00:00 -0400 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true +tz: America/Los_Angeles # If the event is online, remove the next line, otherwise uncomment and adjust it: # tz: Pacific/Tahiti diff --git a/_events/2023-1103-dev-triage-ml-commons.markdown b/_events/2023-1103-dev-triage-ml-commons.markdown index e6e9d49e06..3f3ed7fd22 100644 --- a/_events/2023-1103-dev-triage-ml-commons.markdown +++ b/_events/2023-1103-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2023-11-03 09:00:00 -0700 title: Development Backlog & Triage Meeting - ml-commons - 2023-11-03 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/296823951 title: Join on Meetup diff --git a/_events/2023-1106-dev-triage-security.markdown b/_events/2023-1106-dev-triage-security.markdown index 5af951174c..a82424fbd1 100644 --- a/_events/2023-1106-dev-triage-security.markdown +++ b/_events/2023-1106-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-11-06' eventdate: 2023-11-06 09:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-11-06 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/297055511/ title: Join on Meetup diff --git a/_events/2023-1113-dev-triage-security.markdown b/_events/2023-1113-dev-triage-security.markdown index 598abb20e7..63a2bd396a 100644 --- a/_events/2023-1113-dev-triage-security.markdown +++ b/_events/2023-1113-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-11-13' eventdate: 2023-11-13 09:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-11-13 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/297055511/ title: Join on Meetup diff --git a/_events/2023-1114-community-meeting.markdown b/_events/2023-1114-community-meeting.markdown index 4315fbb154..c08838e4ff 100644 --- a/_events/2023-1114-community-meeting.markdown +++ b/_events/2023-1114-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2023-11-14 15:00:00 -0800 title: OpenSearch Community Meeting - 2023-11-14 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/297276340/ title: Join on Meetup diff --git a/_events/2023-1116-dev-officehours-dashboards.markdown b/_events/2023-1116-dev-officehours-dashboards.markdown index 7483b6883c..8635b78c56 100644 --- a/_events/2023-1116-dev-officehours-dashboards.markdown +++ b/_events/2023-1116-dev-officehours-dashboards.markdown @@ -7,6 +7,7 @@ eventdate: 2023-11-16 10:00:00 -0800 title: OpenSearch Dashboards Developer Office Hours - 2023-11-16 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-1116-fluent-community-meetup.markdown b/_events/2023-1116-fluent-community-meetup.markdown index d95f55e9a1..71d103d658 100644 --- a/_events/2023-1116-fluent-community-meetup.markdown +++ b/_events/2023-1116-fluent-community-meetup.markdown @@ -4,6 +4,7 @@ eventdate: 2023-11-16 12:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true +tz: America/Los_Angeles # If the event is online, remove the next line, otherwise uncomment and adjust it: # tz: Pacific/Tahiti diff --git a/_events/2023-1117-dev-triage-ml-commons.markdown b/_events/2023-1117-dev-triage-ml-commons.markdown index aec4a907b9..bc9b8ec176 100644 --- a/_events/2023-1117-dev-triage-ml-commons.markdown +++ b/_events/2023-1117-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2023-11-17 09:00:00 -0700 title: Development Backlog & Triage Meeting - ml-commons - 2023-11-17 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/296823969 title: Join on Meetup diff --git a/_events/2023-1120-dev-triage-security.markdown b/_events/2023-1120-dev-triage-security.markdown index 2714a97d65..ae658cce4b 100644 --- a/_events/2023-1120-dev-triage-security.markdown +++ b/_events/2023-1120-dev-triage-security.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-11-20' eventdate: 2023-11-20 09:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-11-20 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/297055511/ title: Join on Meetup diff --git a/_events/2023-1128-community-meeting.markdown b/_events/2023-1128-community-meeting.markdown index 427b0a753d..b3573c4165 100644 --- a/_events/2023-1128-community-meeting.markdown +++ b/_events/2023-1128-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2023-11-28 08:00:00 -0700 title: OpenSearch Community Meeting - 2023-11-28 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/297276360/ title: Join on Meetup diff --git a/_events/2023-1130-dev-officehours-dashboards.markdown b/_events/2023-1130-dev-officehours-dashboards.markdown index 6a8ae20347..28ea7cfd01 100644 --- a/_events/2023-1130-dev-officehours-dashboards.markdown +++ b/_events/2023-1130-dev-officehours-dashboards.markdown @@ -7,6 +7,7 @@ eventdate: 2023-11-30 10:00:00 -0800 title: OpenSearch Dashboards Developer Office Hours - 2023-11-30 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-1130-fluent-community-meetup.markdown b/_events/2023-1130-fluent-community-meetup.markdown index 3cd5c81673..ea00191530 100644 --- a/_events/2023-1130-fluent-community-meetup.markdown +++ b/_events/2023-1130-fluent-community-meetup.markdown @@ -5,6 +5,7 @@ eventdate: 2023-11-30 12:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true +tz: America/Los_Angeles # If the event is online, remove the next line, otherwise uncomment and adjust it: # tz: Pacific/Tahiti diff --git a/_events/2023-1201-dev-triage-ml-commons.markdown b/_events/2023-1201-dev-triage-ml-commons.markdown index 5df160973c..7796b752b6 100644 --- a/_events/2023-1201-dev-triage-ml-commons.markdown +++ b/_events/2023-1201-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2023-12-01 09:00:00 -0700 title: Development Backlog & Triage Meeting - ml-commons - 2023-12-01 primary_title: Development Backlog & Triage Meeting - ml-commons - 2023-12-01 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/296823978 title: Join on Meetup diff --git a/_events/2023-1207-fluent-bit-for-windows-webinar.markdown b/_events/2023-1207-fluent-bit-for-windows-webinar.markdown index f229da2fe3..04e042f537 100644 --- a/_events/2023-1207-fluent-bit-for-windows-webinar.markdown +++ b/_events/2023-1207-fluent-bit-for-windows-webinar.markdown @@ -4,8 +4,7 @@ eventdate: 2023-12-07 15:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Fluent Bit For Windows [Webinar] online: true -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2023-1208-open-compliance-summit-security-analytics.markdown b/_events/2023-1208-open-compliance-summit-security-analytics.markdown index 9e05820a4b..134174b655 100644 --- a/_events/2023-1208-open-compliance-summit-security-analytics.markdown +++ b/_events/2023-1208-open-compliance-summit-security-analytics.markdown @@ -3,6 +3,7 @@ calendar_date: '2023-12-08' eventdate: 2023-12-08 00:00:00 +0900 title: Open Compliance Summit 2023 - 2023-12-08 online: true +tz: Asia/Tokyo signup: url: https://ocs2023.sched.com/event/1Ttz9 title: Learn more diff --git a/_events/2023-1212-community-meeting.markdown b/_events/2023-1212-community-meeting.markdown index 4810b91f8b..aba519514b 100644 --- a/_events/2023-1212-community-meeting.markdown +++ b/_events/2023-1212-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2023-12-12 15:00:00 -0700 title: OpenSearch Community Meeting - 2023-12-12 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/297276382/ title: Join on Meetup diff --git a/_events/2023-1214-dev-officehours-dashboards.markdown b/_events/2023-1214-dev-officehours-dashboards.markdown index 773e1856eb..9d6ca03896 100644 --- a/_events/2023-1214-dev-officehours-dashboards.markdown +++ b/_events/2023-1214-dev-officehours-dashboards.markdown @@ -7,6 +7,7 @@ eventdate: 2023-12-14 10:00:00 -0800 title: OpenSearch Dashboards Developer Office Hours - 2023-12-14 # if your event has an online component, put it here: online: true +tz: America/Los_Angeles # This is for the sign up button signup: # the link URL diff --git a/_events/2023-1214-fluent-community-meetup.markdown b/_events/2023-1214-fluent-community-meetup.markdown index 1e0eac68cb..692593824e 100644 --- a/_events/2023-1214-fluent-community-meetup.markdown +++ b/_events/2023-1214-fluent-community-meetup.markdown @@ -5,6 +5,7 @@ eventdate: 2023-12-14 12:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true +tz: America/Los_Angeles # If the event is online, remove the next line, otherwise uncomment and adjust it: # tz: Pacific/Tahiti diff --git a/_events/2023-1214-getting-started-fluent-bit-opentelemetry-webinar.markdown b/_events/2023-1214-getting-started-fluent-bit-opentelemetry-webinar.markdown index 3ec6192cc7..bbf82a337f 100644 --- a/_events/2023-1214-getting-started-fluent-bit-opentelemetry-webinar.markdown +++ b/_events/2023-1214-getting-started-fluent-bit-opentelemetry-webinar.markdown @@ -4,8 +4,7 @@ eventdate: 2023-12-14 14:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Getting Started with Fluent Bit and OpenTelemetry [Webinar] online: true -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2023-1216-pyohio.markdown b/_events/2023-1216-pyohio.markdown index d2071d947b..2f60cf7076 100644 --- a/_events/2023-1216-pyohio.markdown +++ b/_events/2023-1216-pyohio.markdown @@ -3,6 +3,7 @@ eventdate: 2023-12-16 10:00:00 -0500 title: PyOhio 2023 - 2023-12-16 online: true +tz: America/New_York signup: url: https://www.pyohio.org/2023/ title: Join the conference diff --git a/_events/2023-1219-dev-triage-ml-commons.markdown b/_events/2023-1219-dev-triage-ml-commons.markdown index db150a798c..43c167c6a2 100644 --- a/_events/2023-1219-dev-triage-ml-commons.markdown +++ b/_events/2023-1219-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2023-12-19 10:30:00 -0800 title: Development Backlog & Triage Meeting - ml-commons - 2023-12-19 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/297972773/ title: Join on Meetup diff --git a/_events/2023-1228-fluent-community-meetup.markdown b/_events/2023-1228-fluent-community-meetup.markdown index 6ff17dd50f..afe3c76b68 100644 --- a/_events/2023-1228-fluent-community-meetup.markdown +++ b/_events/2023-1228-fluent-community-meetup.markdown @@ -4,8 +4,7 @@ eventdate: 2023-12-28 12:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2024-0116-community-meeting.markdown b/_events/2024-0116-community-meeting.markdown index 6dd299b622..47708798ef 100644 --- a/_events/2024-0116-community-meeting.markdown +++ b/_events/2024-0116-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2024-01-16 15:00:00 -0700 title: OpenSearch Community Meeting - 2024-01-16 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298210906/ title: Join on Meetup diff --git a/_events/2024-0119-dev-triage-ml-commons.markdown b/_events/2024-0119-dev-triage-ml-commons.markdown index ad048e00e9..7e0e0af13f 100644 --- a/_events/2024-0119-dev-triage-ml-commons.markdown +++ b/_events/2024-0119-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2024-01-19 13:30:00 -0700 title: Development Backlog & Triage Meeting - ml-commons - 2024-01-19 primary_title: Development Backlog & Triage Meeting - ml-commons - 2024-01-19 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298594973 title: Join on Meetup diff --git a/_events/2024-0130-community-meeting.markdown b/_events/2024-0130-community-meeting.markdown index 02ed9af6ce..b8140247ba 100644 --- a/_events/2024-0130-community-meeting.markdown +++ b/_events/2024-0130-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2024-01-30 08:00:00 -0700 title: OpenSearch Community Meeting - 2024-01-30 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298210967/ title: Join on Meetup diff --git a/_events/2024-0131-fluent-bit-opensearch-webinar.markdown b/_events/2024-0131-fluent-bit-opensearch-webinar.markdown index e14e2d8de7..d7466b6aee 100644 --- a/_events/2024-0131-fluent-bit-opensearch-webinar.markdown +++ b/_events/2024-0131-fluent-bit-opensearch-webinar.markdown @@ -6,8 +6,7 @@ eventdate: 2024-01-31 15:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Getting Started with Fluent Bit and OpenSearch online: true -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2024-0131-opensearch-core-triage.markdown b/_events/2024-0131-opensearch-core-triage.markdown index eefe91e8ee..db57f41edb 100644 --- a/_events/2024-0131-opensearch-core-triage.markdown +++ b/_events/2024-0131-opensearch-core-triage.markdown @@ -4,6 +4,7 @@ eventdate: 2024-01-31 10:00:00 -0600 title: OpenSearch Core Triage - 2024-01-31 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298606132/ title: Join on Meetup diff --git a/_events/2024-0202-dev-triage-ml-commons.markdown b/_events/2024-0202-dev-triage-ml-commons.markdown index 5f55981c72..257bd3bb7b 100644 --- a/_events/2024-0202-dev-triage-ml-commons.markdown +++ b/_events/2024-0202-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2024-02-02 09:30:00 -0700 title: Development Backlog & Triage Meeting - ml-commons - 2024-02-02 primary_title: Development Backlog & Triage Meeting - ml-commons - 2024-02-02 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298908074 title: Join on Meetup diff --git a/_events/2024-0207-opensearch-core-triage.markdown b/_events/2024-0207-opensearch-core-triage.markdown index a4e8bf3b39..812c71bd17 100644 --- a/_events/2024-0207-opensearch-core-triage.markdown +++ b/_events/2024-0207-opensearch-core-triage.markdown @@ -4,6 +4,7 @@ eventdate: 2024-02-07 10:00:00 -0600 title: OpenSearch Core Triage online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298606134/ title: Join on Meetup diff --git a/_events/2024-0208-fluent-community-meetup.markdown b/_events/2024-0208-fluent-community-meetup.markdown index 16667942eb..0a19c0a95b 100644 --- a/_events/2024-0208-fluent-community-meetup.markdown +++ b/_events/2024-0208-fluent-community-meetup.markdown @@ -6,8 +6,7 @@ eventdate: 2024-02-08 12:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2024-0213-community-meeting.markdown b/_events/2024-0213-community-meeting.markdown index 6ea987314b..db5c74553c 100644 --- a/_events/2024-0213-community-meeting.markdown +++ b/_events/2024-0213-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2024-02-13 15:00:00 -0700 title: OpenSearch Community Meeting - 2024-02-13 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298211086/ title: Join on Meetup diff --git a/_events/2024-0213-dev-triage-ml-commons.markdown b/_events/2024-0213-dev-triage-ml-commons.markdown index c9ff7f682d..9526e6068e 100644 --- a/_events/2024-0213-dev-triage-ml-commons.markdown +++ b/_events/2024-0213-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2024-02-13 10:30:00 -0800 primary_title: Development Backlog & Triage Meeting - ml-commons - 2024-02-13 title: Development Backlog & Triage Meeting - ml-commons - 2024-02-13 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/299165833 title: Join on Meetup diff --git a/_events/2024-0214-2-12-release-meetings.markdown b/_events/2024-0214-2-12-release-meetings.markdown index c7d1c0edea..319388336e 100644 --- a/_events/2024-0214-2-12-release-meetings.markdown +++ b/_events/2024-0214-2-12-release-meetings.markdown @@ -3,6 +3,7 @@ calendar_date: '2024-02-14' eventdate: 2024-02-20 15:00:00 -0700 title: OpenSearch 2.12.0 Release Meetings online: true +tz: America/Los_Angeles signup: url: https://chime.aws/1158383332 title: Join on Chime diff --git a/_events/2024-0214-opensearch-core-triage.markdown b/_events/2024-0214-opensearch-core-triage.markdown index a4b1316a3f..f7aaf8e125 100644 --- a/_events/2024-0214-opensearch-core-triage.markdown +++ b/_events/2024-0214-opensearch-core-triage.markdown @@ -4,6 +4,7 @@ eventdate: 2024-02-14 10:00:00 -0600 title: OpenSearch Core Triage online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298606135/ title: Join on Meetup diff --git a/_events/2024-0221-opensearch-core-triage.markdown b/_events/2024-0221-opensearch-core-triage.markdown index e77e3e4968..bef712dbf5 100644 --- a/_events/2024-0221-opensearch-core-triage.markdown +++ b/_events/2024-0221-opensearch-core-triage.markdown @@ -4,6 +4,7 @@ eventdate: 2024-02-21 10:00:00 -0600 title: OpenSearch Core Triage online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298606136/ title: Join on Meetup diff --git a/_events/2024-0222-fluent-community-meetup.markdown b/_events/2024-0222-fluent-community-meetup.markdown index 8270e9e990..635cc31b65 100644 --- a/_events/2024-0222-fluent-community-meetup.markdown +++ b/_events/2024-0222-fluent-community-meetup.markdown @@ -6,8 +6,7 @@ eventdate: 2024-02-22 12:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2024-0227-community-meeting.markdown b/_events/2024-0227-community-meeting.markdown index 27bf721bde..6b545451f3 100644 --- a/_events/2024-0227-community-meeting.markdown +++ b/_events/2024-0227-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2024-02-27 08:00:00 -0700 title: OpenSearch Community Meeting - 2024-02-27 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298211123/ title: Join on Meetup diff --git a/_events/2024-0227-dev-triage-ml-commons.markdown b/_events/2024-0227-dev-triage-ml-commons.markdown index d308487d0e..4f7d280cc3 100644 --- a/_events/2024-0227-dev-triage-ml-commons.markdown +++ b/_events/2024-0227-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2024-02-27 10:30:00 -0800 primary_title: Development Backlog & Triage Meeting - ml-commons - 2024-02-27 title: Development Backlog & Triage Meeting - ml-commons - 2024-02-27 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/299450448 title: Join on Meetup diff --git a/_events/2024-0228-opensearch-core-triage.markdown b/_events/2024-0228-opensearch-core-triage.markdown index 5a33ca913f..00d94933a2 100644 --- a/_events/2024-0228-opensearch-core-triage.markdown +++ b/_events/2024-0228-opensearch-core-triage.markdown @@ -4,6 +4,7 @@ eventdate: 2024-02-28 10:00:00 -0600 title: OpenSearch Core Triage online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/298606137/ title: Join on Meetup diff --git a/_events/2024-0306-foss-backstage.markdown b/_events/2024-0306-foss-backstage.markdown index 704cc7f7a7..dc23f85abe 100644 --- a/_events/2024-0306-foss-backstage.markdown +++ b/_events/2024-0306-foss-backstage.markdown @@ -4,6 +4,7 @@ eventdate: 2024-03-06 10:00:00 -0600 title: FOSS Backstage & FOSS Backstage Design online: false +tz: Europe/Berlin signup: url: https://24.foss-backstage.de/ title: Visit the booth diff --git a/_events/2024-0306-opensearch-core-triage.markdown b/_events/2024-0306-opensearch-core-triage.markdown index d5a42e3dc3..bdebe83a72 100644 --- a/_events/2024-0306-opensearch-core-triage.markdown +++ b/_events/2024-0306-opensearch-core-triage.markdown @@ -4,6 +4,7 @@ eventdate: 2024-03-06 10:00:00 -0600 title: OpenSearch Core Triage online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/kvdzjtygcfbjb/ title: Join on Meetup diff --git a/_events/2024-0312-community-meeting.markdown b/_events/2024-0312-community-meeting.markdown index db7cce10fc..36fe02a236 100644 --- a/_events/2024-0312-community-meeting.markdown +++ b/_events/2024-0312-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2024-03-12 15:00:00 -0700 title: OpenSearch Community Meeting - 2024-03-12 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/299470162 title: Join on Meetup diff --git a/_events/2024-0312-dev-triage-ml-commons.markdown b/_events/2024-0312-dev-triage-ml-commons.markdown index c7e876176e..7c3ed865c3 100644 --- a/_events/2024-0312-dev-triage-ml-commons.markdown +++ b/_events/2024-0312-dev-triage-ml-commons.markdown @@ -4,6 +4,7 @@ eventdate: 2024-03-12 10:30:00 -0800 primary_title: Development Backlog & Triage Meeting - ml-commons - 2024-03-12 title: Development Backlog & Triage Meeting - ml-commons - 2024-03-12 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/299663373 title: Join on Meetup diff --git a/_events/2024-0313-opensearch-core-triage.markdown b/_events/2024-0313-opensearch-core-triage.markdown index c31f079bc3..642731545d 100644 --- a/_events/2024-0313-opensearch-core-triage.markdown +++ b/_events/2024-0313-opensearch-core-triage.markdown @@ -4,6 +4,7 @@ eventdate: 2024-03-13 10:00:00 -0600 title: OpenSearch Core Triage online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/kvdzjtygcfbrb/ title: Join on Meetup diff --git a/_events/2024-0320-opensearch-core-triage.markdown b/_events/2024-0320-opensearch-core-triage.markdown index a6b68d699d..d0f51ae731 100644 --- a/_events/2024-0320-opensearch-core-triage.markdown +++ b/_events/2024-0320-opensearch-core-triage.markdown @@ -4,6 +4,7 @@ eventdate: 2024-03-20 10:00:00 -0600 title: OpenSearch Core Triage online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/kvdzjtygcfbbc/ title: Join on Meetup diff --git a/_events/2024-0326-community-meeting.markdown b/_events/2024-0326-community-meeting.markdown index e992d3ed56..b2b7b99a70 100644 --- a/_events/2024-0326-community-meeting.markdown +++ b/_events/2024-0326-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2024-03-26 08:00:00 -0700 title: OpenSearch Community Meeting - 2024-03-26 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/299470175/ title: Join on Meetup diff --git a/_events/2024-0327-opensearch-core-triage.markdown b/_events/2024-0327-opensearch-core-triage.markdown index e8dc15bd89..52e3d50405 100644 --- a/_events/2024-0327-opensearch-core-triage.markdown +++ b/_events/2024-0327-opensearch-core-triage.markdown @@ -4,6 +4,7 @@ eventdate: 2024-03-27 10:00:00 -0600 title: OpenSearch Core Triage online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/kvdzjtygcfbkc/ title: Join on Meetup diff --git a/_events/2024-0409-community-meeting.markdown b/_events/2024-0409-community-meeting.markdown index c430ae7021..6b54f42dc2 100644 --- a/_events/2024-0409-community-meeting.markdown +++ b/_events/2024-0409-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2024-04-09 15:00:00 -0700 title: OpenSearch Community Meeting - 2024-04-09 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/299470189/ title: Join on Meetup diff --git a/_events/2024-0423-community-meeting.markdown b/_events/2024-0423-community-meeting.markdown index c8535105a5..b3f7629d43 100644 --- a/_events/2024-0423-community-meeting.markdown +++ b/_events/2024-0423-community-meeting.markdown @@ -4,6 +4,7 @@ eventdate: 2024-04-23 08:00:00 -0700 title: OpenSearch Community Meeting - 2024-04-23 online: true +tz: America/Los_Angeles signup: url: https://www.meetup.com/opensearch/events/299470199/ title: Join on Meetup From 919fbdb113e1fe30c4ab583c4fcba90abaa8add8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Mon, 27 Nov 2023 21:54:55 -1000 Subject: [PATCH 3/8] Fix daylight-saving offset errors of America/Los_Angeles events MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These inconsistencies are now being reported, when -0700 and -0800 are used incorectly. Signed-off-by: Romain Tartière --- _events/2022-0314.markdown | 2 +- _events/2022-0321.markdown | 2 +- _events/2022-0329.markdown | 2 +- _events/2022-0405.markdown | 2 +- _events/2022-0411.markdown | 2 +- _events/2022-0418.markdown | 2 +- _events/2022-0426.markdown | 2 +- _events/2022-1107-dev-triage-security.markdown | 2 +- _events/2022-1114-dev-triage-security.markdown | 2 +- _events/2022-1122.markdown | 2 +- _events/2022-1128-dev-triage-security.markdown | 2 +- _events/2022-1205-dev-triage-security.markdown | 2 +- _events/2022-1212-dev-triage-security.markdown | 2 +- _events/2022-1219-dev-triage-security.markdown | 2 +- _events/2023-0313-dev-triage-security.markdown | 2 +- _events/2023-0314.markdown | 2 +- _events/2023-0320-dev-triage-security.markdown | 2 +- _events/2023-0327-dev-triage-security.markdown | 2 +- _events/2023-0328.markdown | 2 +- _events/2023-0403-dev-triage-security.markdown | 2 +- _events/2023-0406-dev-integrations-apache-spark.markdown | 2 +- _events/2023-0410-dev-triage-security.markdown | 2 +- _events/2023-0411.markdown | 2 +- _events/2023-0417-dev-triage-security.markdown | 2 +- _events/2023-0420-dev-integrations-apache-spark.markdown | 2 +- _events/2023-0424-dev-triage-security.markdown | 2 +- _events/2023-0425.markdown | 2 +- _events/2023-0501-dev-triage-security.markdown | 2 +- _events/2023-0504-dev-integrations-apache-spark.markdown | 2 +- _events/2023-0508-dev-triage-security.markdown | 2 +- _events/2023-0515-dev-triage-security.markdown | 2 +- _events/2023-0518-dev-integrations-apache-spark.markdown | 2 +- _events/2023-0522-dev-triage-security.markdown | 2 +- _events/2023-0529-dev-triage-security.markdown | 2 +- _events/2023-0605-dev-triage-security.markdown | 2 +- _events/2023-0606.markdown | 2 +- _events/2023-0612-dev-triage-security.markdown | 2 +- _events/2023-0615-dev-integrations-apache-spark.markdown | 2 +- _events/2023-0619-dev-triage-security.markdown | 2 +- _events/2023-0626-dev-triage-security.markdown | 2 +- _events/2023-0627.markdown | 2 +- _events/2023-0628-search-relevance-triage-backlog.markdown | 2 +- _events/2023-0629-dev-integrations-apache-spark.markdown | 2 +- _events/2023-1018-2-11-release-meetings.markdown | 2 +- _events/2023-1106-dev-triage-security.markdown | 2 +- _events/2023-1113-dev-triage-security.markdown | 2 +- _events/2023-1117-dev-triage-ml-commons.markdown | 2 +- _events/2023-1120-dev-triage-security.markdown | 2 +- _events/2023-1128-community-meeting.markdown | 2 +- _events/2023-1201-dev-triage-ml-commons.markdown | 2 +- _events/2023-1212-community-meeting.markdown | 3 +-- _events/2024-0116-community-meeting.markdown | 2 +- _events/2024-0119-dev-triage-ml-commons.markdown | 2 +- _events/2024-0130-community-meeting.markdown | 2 +- _events/2024-0131-opensearch-core-triage.markdown | 2 +- _events/2024-0202-dev-triage-ml-commons.markdown | 2 +- _events/2024-0207-opensearch-core-triage.markdown | 2 +- _events/2024-0213-community-meeting.markdown | 2 +- _events/2024-0214-2-12-release-meetings.markdown | 2 +- _events/2024-0214-opensearch-core-triage.markdown | 2 +- _events/2024-0221-opensearch-core-triage.markdown | 2 +- _events/2024-0227-community-meeting.markdown | 2 +- _events/2024-0228-opensearch-core-triage.markdown | 2 +- _events/2024-0306-opensearch-core-triage.markdown | 2 +- _events/2024-0312-dev-triage-ml-commons.markdown | 2 +- _events/2024-0313-opensearch-core-triage.markdown | 2 +- _events/2024-0320-opensearch-core-triage.markdown | 2 +- _events/2024-0327-opensearch-core-triage.markdown | 2 +- 68 files changed, 68 insertions(+), 69 deletions(-) diff --git a/_events/2022-0314.markdown b/_events/2022-0314.markdown index 0ad80d7520..b43fc8be8f 100644 --- a/_events/2022-0314.markdown +++ b/_events/2022-0314.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-03-14' -eventdate: 2022-03-14 09:00:00 -0800 +eventdate: 2022-03-14 09:00:00 -0700 title: OpenSearch Community Meeting - 2022-03-14 online: true tz: America/Los_Angeles diff --git a/_events/2022-0321.markdown b/_events/2022-0321.markdown index 8db67193e3..1b8db2164c 100644 --- a/_events/2022-0321.markdown +++ b/_events/2022-0321.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-03-21' -eventdate: 2022-03-21 09:00:00 -0800 +eventdate: 2022-03-21 09:00:00 -0700 title: OpenSearch Community Meeting - 2022-03-21 - open office hour online: true tz: America/Los_Angeles diff --git a/_events/2022-0329.markdown b/_events/2022-0329.markdown index 48926d1315..120838831b 100644 --- a/_events/2022-0329.markdown +++ b/_events/2022-0329.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-03-29' -eventdate: 2022-03-29 07:00:00 -0800 +eventdate: 2022-03-29 07:00:00 -0700 title: OpenSearch Community Meeting - 2022-03-29 online: true tz: America/Los_Angeles diff --git a/_events/2022-0405.markdown b/_events/2022-0405.markdown index 8bd1d79589..c810096a15 100644 --- a/_events/2022-0405.markdown +++ b/_events/2022-0405.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-04-05' -eventdate: 2022-04-05 07:00:00 -0800 +eventdate: 2022-04-05 07:00:00 -0700 title: OpenSearch Community Meeting - 2022-04-05 - open office hour online: true tz: America/Los_Angeles diff --git a/_events/2022-0411.markdown b/_events/2022-0411.markdown index ae988d8ecd..ec514cf547 100644 --- a/_events/2022-0411.markdown +++ b/_events/2022-0411.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-04-11' -eventdate: 2022-04-11 09:00:00 -0800 +eventdate: 2022-04-11 09:00:00 -0700 title: OpenSearch Community Meeting - 2022-04-11 online: true tz: America/Los_Angeles diff --git a/_events/2022-0418.markdown b/_events/2022-0418.markdown index b4805263b7..e801ab642b 100644 --- a/_events/2022-0418.markdown +++ b/_events/2022-0418.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-04-18' -eventdate: 2022-04-18 09:00:00 -0800 +eventdate: 2022-04-18 09:00:00 -0700 title: OpenSearch Community Meeting - 2022-04-18 - open office hour online: true tz: America/Los_Angeles diff --git a/_events/2022-0426.markdown b/_events/2022-0426.markdown index e9389233de..c5228c8852 100644 --- a/_events/2022-0426.markdown +++ b/_events/2022-0426.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-04-26' -eventdate: 2022-04-26 15:00:00 -0800 +eventdate: 2022-04-26 15:00:00 -0700 title: OpenSearch Community Meeting - 2022-04-26 online: true tz: America/Los_Angeles diff --git a/_events/2022-1107-dev-triage-security.markdown b/_events/2022-1107-dev-triage-security.markdown index 4b4e1f641a..8fd75ecf9c 100644 --- a/_events/2022-1107-dev-triage-security.markdown +++ b/_events/2022-1107-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-11-07' -eventdate: 2022-11-07 12:00:00 -0700 +eventdate: 2022-11-07 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2022-11-07 online: true tz: America/Los_Angeles diff --git a/_events/2022-1114-dev-triage-security.markdown b/_events/2022-1114-dev-triage-security.markdown index e5accb8d18..84ccd5318e 100644 --- a/_events/2022-1114-dev-triage-security.markdown +++ b/_events/2022-1114-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-11-14' -eventdate: 2022-11-14 12:00:00 -0700 +eventdate: 2022-11-14 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2022-11-14 online: true tz: America/Los_Angeles diff --git a/_events/2022-1122.markdown b/_events/2022-1122.markdown index 3c6838bdda..96e7e319a8 100644 --- a/_events/2022-1122.markdown +++ b/_events/2022-1122.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-11-22' -eventdate: 2022-11-22 08:00:00 -0700 +eventdate: 2022-11-22 08:00:00 -0800 title: OpenSearch Community Meeting - 2022-11-22 online: true tz: America/Los_Angeles diff --git a/_events/2022-1128-dev-triage-security.markdown b/_events/2022-1128-dev-triage-security.markdown index c5d0d7fd63..6a8e8f8ad3 100644 --- a/_events/2022-1128-dev-triage-security.markdown +++ b/_events/2022-1128-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-11-28' -eventdate: 2022-11-28 12:00:00 -0700 +eventdate: 2022-11-28 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2022-11-28 online: true tz: America/Los_Angeles diff --git a/_events/2022-1205-dev-triage-security.markdown b/_events/2022-1205-dev-triage-security.markdown index a68fff75b8..b467c2cca7 100644 --- a/_events/2022-1205-dev-triage-security.markdown +++ b/_events/2022-1205-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-12-05' -eventdate: 2022-12-05 12:00:00 -0700 +eventdate: 2022-12-05 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2022-12-05 online: true tz: America/Los_Angeles diff --git a/_events/2022-1212-dev-triage-security.markdown b/_events/2022-1212-dev-triage-security.markdown index edebd42327..feedcf0717 100644 --- a/_events/2022-1212-dev-triage-security.markdown +++ b/_events/2022-1212-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-12-12' -eventdate: 2022-12-12 12:00:00 -0700 +eventdate: 2022-12-12 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2022-12-12 online: true tz: America/Los_Angeles diff --git a/_events/2022-1219-dev-triage-security.markdown b/_events/2022-1219-dev-triage-security.markdown index d317e451d4..a45f742ff9 100644 --- a/_events/2022-1219-dev-triage-security.markdown +++ b/_events/2022-1219-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2022-12-19' -eventdate: 2022-12-19 12:00:00 -0700 +eventdate: 2022-12-19 12:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2022-12-19 online: true tz: America/Los_Angeles diff --git a/_events/2023-0313-dev-triage-security.markdown b/_events/2023-0313-dev-triage-security.markdown index cda02d3866..a5a6ba209b 100644 --- a/_events/2023-0313-dev-triage-security.markdown +++ b/_events/2023-0313-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-03-13' -eventdate: 2023-03-13 12:00:00 -0800 +eventdate: 2023-03-13 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-03-13 online: true tz: America/Los_Angeles diff --git a/_events/2023-0314.markdown b/_events/2023-0314.markdown index 934733fa7d..f0e71d4e79 100644 --- a/_events/2023-0314.markdown +++ b/_events/2023-0314.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-03-14' -eventdate: 2023-03-14 08:00:00 -0800 +eventdate: 2023-03-14 08:00:00 -0700 title: OpenSearch Community Meeting - 2023-03-14 online: true tz: America/Los_Angeles diff --git a/_events/2023-0320-dev-triage-security.markdown b/_events/2023-0320-dev-triage-security.markdown index ea1bfb86fe..4acc1ec8b3 100644 --- a/_events/2023-0320-dev-triage-security.markdown +++ b/_events/2023-0320-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-03-20' -eventdate: 2023-03-20 12:00:00 -0800 +eventdate: 2023-03-20 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-03-20 online: true tz: America/Los_Angeles diff --git a/_events/2023-0327-dev-triage-security.markdown b/_events/2023-0327-dev-triage-security.markdown index 15bfdbd245..ba7435a4ee 100644 --- a/_events/2023-0327-dev-triage-security.markdown +++ b/_events/2023-0327-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-03-27' -eventdate: 2023-03-27 12:00:00 -0800 +eventdate: 2023-03-27 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-03-27 online: true tz: America/Los_Angeles diff --git a/_events/2023-0328.markdown b/_events/2023-0328.markdown index 8273e23f2f..fb61dd781e 100644 --- a/_events/2023-0328.markdown +++ b/_events/2023-0328.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-03-28' -eventdate: 2023-03-28 15:00:00 -0800 +eventdate: 2023-03-28 15:00:00 -0700 title: OpenSearch Community Meeting - 2023-03-28 online: true tz: America/Los_Angeles diff --git a/_events/2023-0403-dev-triage-security.markdown b/_events/2023-0403-dev-triage-security.markdown index 6e6c2d1427..c4006d514a 100644 --- a/_events/2023-0403-dev-triage-security.markdown +++ b/_events/2023-0403-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-04-03' -eventdate: 2023-04-03 12:00:00 -0800 +eventdate: 2023-04-03 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-04-03 online: true tz: America/Los_Angeles diff --git a/_events/2023-0406-dev-integrations-apache-spark.markdown b/_events/2023-0406-dev-integrations-apache-spark.markdown index a909e463df..e005de8780 100644 --- a/_events/2023-0406-dev-integrations-apache-spark.markdown +++ b/_events/2023-0406-dev-integrations-apache-spark.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-04-06' -eventdate: 2023-04-06 08:00:00 -0800 +eventdate: 2023-04-06 08:00:00 -0700 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0406 online: true tz: America/Los_Angeles diff --git a/_events/2023-0410-dev-triage-security.markdown b/_events/2023-0410-dev-triage-security.markdown index ea663453d7..7f5a7294f1 100644 --- a/_events/2023-0410-dev-triage-security.markdown +++ b/_events/2023-0410-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-04-10' -eventdate: 2023-04-10 12:00:00 -0800 +eventdate: 2023-04-10 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-04-10 online: true tz: America/Los_Angeles diff --git a/_events/2023-0411.markdown b/_events/2023-0411.markdown index a9d0036c82..482cb4807f 100644 --- a/_events/2023-0411.markdown +++ b/_events/2023-0411.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-04-11' -eventdate: 2023-04-11 08:00:00 -0800 +eventdate: 2023-04-11 08:00:00 -0700 title: OpenSearch Community Meeting - 2023-04-11 online: true tz: America/Los_Angeles diff --git a/_events/2023-0417-dev-triage-security.markdown b/_events/2023-0417-dev-triage-security.markdown index ee378ce245..faea24c03d 100644 --- a/_events/2023-0417-dev-triage-security.markdown +++ b/_events/2023-0417-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-04-17' -eventdate: 2023-04-17 12:00:00 -0800 +eventdate: 2023-04-17 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-04-17 online: true tz: America/Los_Angeles diff --git a/_events/2023-0420-dev-integrations-apache-spark.markdown b/_events/2023-0420-dev-integrations-apache-spark.markdown index 8e835e0e80..5cdb8088e7 100644 --- a/_events/2023-0420-dev-integrations-apache-spark.markdown +++ b/_events/2023-0420-dev-integrations-apache-spark.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-04-20' -eventdate: 2023-04-20 08:00:00 -0800 +eventdate: 2023-04-20 08:00:00 -0700 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0420 online: true tz: America/Los_Angeles diff --git a/_events/2023-0424-dev-triage-security.markdown b/_events/2023-0424-dev-triage-security.markdown index 5ec67a21ce..6a2e41671a 100644 --- a/_events/2023-0424-dev-triage-security.markdown +++ b/_events/2023-0424-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-04-24' -eventdate: 2023-04-24 12:00:00 -0800 +eventdate: 2023-04-24 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-04-24 online: true tz: America/Los_Angeles diff --git a/_events/2023-0425.markdown b/_events/2023-0425.markdown index a5bb23b0e0..50481db61e 100644 --- a/_events/2023-0425.markdown +++ b/_events/2023-0425.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-04-25' -eventdate: 2023-04-25 15:00:00 -0800 +eventdate: 2023-04-25 15:00:00 -0700 title: OpenSearch Community Meeting - 2023-04-25 online: true tz: America/Los_Angeles diff --git a/_events/2023-0501-dev-triage-security.markdown b/_events/2023-0501-dev-triage-security.markdown index b4f44498bc..98b539b176 100644 --- a/_events/2023-0501-dev-triage-security.markdown +++ b/_events/2023-0501-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-05-01' -eventdate: 2023-05-01 12:00:00 -0800 +eventdate: 2023-05-01 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-05-01 online: true tz: America/Los_Angeles diff --git a/_events/2023-0504-dev-integrations-apache-spark.markdown b/_events/2023-0504-dev-integrations-apache-spark.markdown index a0c4f80b52..611805964b 100644 --- a/_events/2023-0504-dev-integrations-apache-spark.markdown +++ b/_events/2023-0504-dev-integrations-apache-spark.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-05-04' -eventdate: 2023-05-04 08:00:00 -0800 +eventdate: 2023-05-04 08:00:00 -0700 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0504 online: true tz: America/Los_Angeles diff --git a/_events/2023-0508-dev-triage-security.markdown b/_events/2023-0508-dev-triage-security.markdown index 65b78b5f7e..540b2cbf61 100644 --- a/_events/2023-0508-dev-triage-security.markdown +++ b/_events/2023-0508-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-05-08' -eventdate: 2023-05-08 12:00:00 -0800 +eventdate: 2023-05-08 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-05-08 online: true tz: America/Los_Angeles diff --git a/_events/2023-0515-dev-triage-security.markdown b/_events/2023-0515-dev-triage-security.markdown index 26787fd2d7..8ec16e0f71 100644 --- a/_events/2023-0515-dev-triage-security.markdown +++ b/_events/2023-0515-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-05-15' -eventdate: 2023-05-15 12:00:00 -0800 +eventdate: 2023-05-15 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-05-15 online: true tz: America/Los_Angeles diff --git a/_events/2023-0518-dev-integrations-apache-spark.markdown b/_events/2023-0518-dev-integrations-apache-spark.markdown index 7116de227c..80a1b943f4 100644 --- a/_events/2023-0518-dev-integrations-apache-spark.markdown +++ b/_events/2023-0518-dev-integrations-apache-spark.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-05-18' -eventdate: 2023-05-18 08:00:00 -0800 +eventdate: 2023-05-18 08:00:00 -0700 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0518 online: true tz: America/Los_Angeles diff --git a/_events/2023-0522-dev-triage-security.markdown b/_events/2023-0522-dev-triage-security.markdown index 74649bc9a3..4e4e657c01 100644 --- a/_events/2023-0522-dev-triage-security.markdown +++ b/_events/2023-0522-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-05-22' -eventdate: 2023-05-22 12:00:00 -0800 +eventdate: 2023-05-22 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-05-22 online: true tz: America/Los_Angeles diff --git a/_events/2023-0529-dev-triage-security.markdown b/_events/2023-0529-dev-triage-security.markdown index b7e513e772..c96e293866 100644 --- a/_events/2023-0529-dev-triage-security.markdown +++ b/_events/2023-0529-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-05-29' -eventdate: 2023-05-29 12:00:00 -0800 +eventdate: 2023-05-29 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-05-29 online: true tz: America/Los_Angeles diff --git a/_events/2023-0605-dev-triage-security.markdown b/_events/2023-0605-dev-triage-security.markdown index affc204fcc..57ceca7918 100644 --- a/_events/2023-0605-dev-triage-security.markdown +++ b/_events/2023-0605-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-06-05' -eventdate: 2023-06-05 12:00:00 -0800 +eventdate: 2023-06-05 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-06-05 online: true tz: America/Los_Angeles diff --git a/_events/2023-0606.markdown b/_events/2023-0606.markdown index c8e2b81d92..a9898c5579 100644 --- a/_events/2023-0606.markdown +++ b/_events/2023-0606.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-06-06' -eventdate: 2023-06-06 08:00:00 -0800 +eventdate: 2023-06-06 08:00:00 -0700 title: OpenSearch Community Meeting - 2023-06-06 online: true tz: America/Los_Angeles diff --git a/_events/2023-0612-dev-triage-security.markdown b/_events/2023-0612-dev-triage-security.markdown index 49e45d01d4..f3275ca017 100644 --- a/_events/2023-0612-dev-triage-security.markdown +++ b/_events/2023-0612-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-06-12' -eventdate: 2023-06-12 12:00:00 -0800 +eventdate: 2023-06-12 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-06-12 online: true tz: America/Los_Angeles diff --git a/_events/2023-0615-dev-integrations-apache-spark.markdown b/_events/2023-0615-dev-integrations-apache-spark.markdown index e621154eca..e9b966350e 100644 --- a/_events/2023-0615-dev-integrations-apache-spark.markdown +++ b/_events/2023-0615-dev-integrations-apache-spark.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-06-15' -eventdate: 2023-06-15 08:00:00 -0800 +eventdate: 2023-06-15 08:00:00 -0700 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0615 online: true tz: America/Los_Angeles diff --git a/_events/2023-0619-dev-triage-security.markdown b/_events/2023-0619-dev-triage-security.markdown index 4f36ae3579..49eab52d43 100644 --- a/_events/2023-0619-dev-triage-security.markdown +++ b/_events/2023-0619-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-06-19' -eventdate: 2023-06-19 12:00:00 -0800 +eventdate: 2023-06-19 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-06-19 online: true tz: America/Los_Angeles diff --git a/_events/2023-0626-dev-triage-security.markdown b/_events/2023-0626-dev-triage-security.markdown index e00ad2a1e6..0089953cd2 100644 --- a/_events/2023-0626-dev-triage-security.markdown +++ b/_events/2023-0626-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-06-26' -eventdate: 2023-06-26 12:00:00 -0800 +eventdate: 2023-06-26 12:00:00 -0700 title: Development Backlog & Triage Meeting - Security - 2023-06-26 online: true tz: America/Los_Angeles diff --git a/_events/2023-0627.markdown b/_events/2023-0627.markdown index 7d362dfbf0..e382672ed6 100644 --- a/_events/2023-0627.markdown +++ b/_events/2023-0627.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-06-20' -eventdate: 2023-06-20 15:00:00 -0800 +eventdate: 2023-06-20 15:00:00 -0700 title: OpenSearch Community Meeting - 2023-06-27 online: true tz: America/Los_Angeles diff --git a/_events/2023-0628-search-relevance-triage-backlog.markdown b/_events/2023-0628-search-relevance-triage-backlog.markdown index da7fbcdc40..ef32004450 100644 --- a/_events/2023-0628-search-relevance-triage-backlog.markdown +++ b/_events/2023-0628-search-relevance-triage-backlog.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-06-28' -eventdate: 2023-06-28 09:00:00 -0800 +eventdate: 2023-06-28 09:00:00 -0700 title: Search Relevance - Triage & Backlog Review - 2023-06-28 online: true tz: America/Los_Angeles diff --git a/_events/2023-0629-dev-integrations-apache-spark.markdown b/_events/2023-0629-dev-integrations-apache-spark.markdown index 9742ccd1d0..7666a397fd 100644 --- a/_events/2023-0629-dev-integrations-apache-spark.markdown +++ b/_events/2023-0629-dev-integrations-apache-spark.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-06-29' -eventdate: 2023-06-29 08:00:00 -0800 +eventdate: 2023-06-29 08:00:00 -0700 title: Planning for Simple Schema Based Integrations and Apache Spark - 2023-0629 online: true tz: America/Los_Angeles diff --git a/_events/2023-1018-2-11-release-meetings.markdown b/_events/2023-1018-2-11-release-meetings.markdown index ffbbc32268..611d8496da 100644 --- a/_events/2023-1018-2-11-release-meetings.markdown +++ b/_events/2023-1018-2-11-release-meetings.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-10-18' -eventdate: 2023-11-07 11:00:00 -0700 +eventdate: 2023-11-07 11:00:00 -0800 title: OpenSearch 2.11.0 Release Meetings online: true tz: America/Los_Angeles diff --git a/_events/2023-1106-dev-triage-security.markdown b/_events/2023-1106-dev-triage-security.markdown index a82424fbd1..2cd926c746 100644 --- a/_events/2023-1106-dev-triage-security.markdown +++ b/_events/2023-1106-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-11-06' -eventdate: 2023-11-06 09:00:00 -0700 +eventdate: 2023-11-06 09:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-11-06 online: true tz: America/Los_Angeles diff --git a/_events/2023-1113-dev-triage-security.markdown b/_events/2023-1113-dev-triage-security.markdown index 63a2bd396a..3a74d7903b 100644 --- a/_events/2023-1113-dev-triage-security.markdown +++ b/_events/2023-1113-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-11-13' -eventdate: 2023-11-13 09:00:00 -0700 +eventdate: 2023-11-13 09:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-11-13 online: true tz: America/Los_Angeles diff --git a/_events/2023-1117-dev-triage-ml-commons.markdown b/_events/2023-1117-dev-triage-ml-commons.markdown index bc9b8ec176..99bc215297 100644 --- a/_events/2023-1117-dev-triage-ml-commons.markdown +++ b/_events/2023-1117-dev-triage-ml-commons.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-11-17' -eventdate: 2023-11-17 09:00:00 -0700 +eventdate: 2023-11-17 09:00:00 -0800 title: Development Backlog & Triage Meeting - ml-commons - 2023-11-17 online: true diff --git a/_events/2023-1120-dev-triage-security.markdown b/_events/2023-1120-dev-triage-security.markdown index ae658cce4b..9885198719 100644 --- a/_events/2023-1120-dev-triage-security.markdown +++ b/_events/2023-1120-dev-triage-security.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-11-20' -eventdate: 2023-11-20 09:00:00 -0700 +eventdate: 2023-11-20 09:00:00 -0800 title: Development Backlog & Triage Meeting - Security - 2023-11-20 online: true tz: America/Los_Angeles diff --git a/_events/2023-1128-community-meeting.markdown b/_events/2023-1128-community-meeting.markdown index b3573c4165..e4ed07710d 100644 --- a/_events/2023-1128-community-meeting.markdown +++ b/_events/2023-1128-community-meeting.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-11-28' -eventdate: 2023-11-28 08:00:00 -0700 +eventdate: 2023-11-28 08:00:00 -0800 title: OpenSearch Community Meeting - 2023-11-28 online: true diff --git a/_events/2023-1201-dev-triage-ml-commons.markdown b/_events/2023-1201-dev-triage-ml-commons.markdown index 7796b752b6..b1fc7cb9d6 100644 --- a/_events/2023-1201-dev-triage-ml-commons.markdown +++ b/_events/2023-1201-dev-triage-ml-commons.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2023-12-01' -eventdate: 2023-12-01 09:00:00 -0700 +eventdate: 2023-12-01 09:00:00 -0800 title: Development Backlog & Triage Meeting - ml-commons - 2023-12-01 primary_title: Development Backlog & Triage Meeting - ml-commons - 2023-12-01 online: true diff --git a/_events/2023-1212-community-meeting.markdown b/_events/2023-1212-community-meeting.markdown index aba519514b..a15a2c2caa 100644 --- a/_events/2023-1212-community-meeting.markdown +++ b/_events/2023-1212-community-meeting.markdown @@ -1,7 +1,6 @@ --- calendar_date: '2023-12-12' -eventdate: 2023-12-12 15:00:00 -0700 - +eventdate: 2023-12-12 15:00:00 -0800 title: OpenSearch Community Meeting - 2023-12-12 online: true tz: America/Los_Angeles diff --git a/_events/2024-0116-community-meeting.markdown b/_events/2024-0116-community-meeting.markdown index 47708798ef..0b071bacf5 100644 --- a/_events/2024-0116-community-meeting.markdown +++ b/_events/2024-0116-community-meeting.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-01-16' -eventdate: 2024-01-16 15:00:00 -0700 +eventdate: 2024-01-16 15:00:00 -0800 title: OpenSearch Community Meeting - 2024-01-16 online: true diff --git a/_events/2024-0119-dev-triage-ml-commons.markdown b/_events/2024-0119-dev-triage-ml-commons.markdown index 7e0e0af13f..846e98bf12 100644 --- a/_events/2024-0119-dev-triage-ml-commons.markdown +++ b/_events/2024-0119-dev-triage-ml-commons.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-01-19' -eventdate: 2024-01-19 13:30:00 -0700 +eventdate: 2024-01-19 13:30:00 -0800 title: Development Backlog & Triage Meeting - ml-commons - 2024-01-19 primary_title: Development Backlog & Triage Meeting - ml-commons - 2024-01-19 online: true diff --git a/_events/2024-0130-community-meeting.markdown b/_events/2024-0130-community-meeting.markdown index b8140247ba..5d548fe286 100644 --- a/_events/2024-0130-community-meeting.markdown +++ b/_events/2024-0130-community-meeting.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-01-30' -eventdate: 2024-01-30 08:00:00 -0700 +eventdate: 2024-01-30 08:00:00 -0800 title: OpenSearch Community Meeting - 2024-01-30 online: true diff --git a/_events/2024-0131-opensearch-core-triage.markdown b/_events/2024-0131-opensearch-core-triage.markdown index db57f41edb..47894336c0 100644 --- a/_events/2024-0131-opensearch-core-triage.markdown +++ b/_events/2024-0131-opensearch-core-triage.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-01-31' -eventdate: 2024-01-31 10:00:00 -0600 +eventdate: 2024-01-31 10:00:00 -0800 title: OpenSearch Core Triage - 2024-01-31 online: true diff --git a/_events/2024-0202-dev-triage-ml-commons.markdown b/_events/2024-0202-dev-triage-ml-commons.markdown index 257bd3bb7b..69bb185898 100644 --- a/_events/2024-0202-dev-triage-ml-commons.markdown +++ b/_events/2024-0202-dev-triage-ml-commons.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-02-02' -eventdate: 2024-02-02 09:30:00 -0700 +eventdate: 2024-02-02 09:30:00 -0800 title: Development Backlog & Triage Meeting - ml-commons - 2024-02-02 primary_title: Development Backlog & Triage Meeting - ml-commons - 2024-02-02 online: true diff --git a/_events/2024-0207-opensearch-core-triage.markdown b/_events/2024-0207-opensearch-core-triage.markdown index 812c71bd17..f1106f7001 100644 --- a/_events/2024-0207-opensearch-core-triage.markdown +++ b/_events/2024-0207-opensearch-core-triage.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-02-07' -eventdate: 2024-02-07 10:00:00 -0600 +eventdate: 2024-02-07 10:00:00 -0800 title: OpenSearch Core Triage online: true diff --git a/_events/2024-0213-community-meeting.markdown b/_events/2024-0213-community-meeting.markdown index db5c74553c..5a98d8d21e 100644 --- a/_events/2024-0213-community-meeting.markdown +++ b/_events/2024-0213-community-meeting.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-02-13' -eventdate: 2024-02-13 15:00:00 -0700 +eventdate: 2024-02-13 15:00:00 -0800 title: OpenSearch Community Meeting - 2024-02-13 online: true diff --git a/_events/2024-0214-2-12-release-meetings.markdown b/_events/2024-0214-2-12-release-meetings.markdown index 319388336e..6dae98af71 100644 --- a/_events/2024-0214-2-12-release-meetings.markdown +++ b/_events/2024-0214-2-12-release-meetings.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-02-14' -eventdate: 2024-02-20 15:00:00 -0700 +eventdate: 2024-02-20 15:00:00 -0800 title: OpenSearch 2.12.0 Release Meetings online: true tz: America/Los_Angeles diff --git a/_events/2024-0214-opensearch-core-triage.markdown b/_events/2024-0214-opensearch-core-triage.markdown index f7aaf8e125..386873e37f 100644 --- a/_events/2024-0214-opensearch-core-triage.markdown +++ b/_events/2024-0214-opensearch-core-triage.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-02-14' -eventdate: 2024-02-14 10:00:00 -0600 +eventdate: 2024-02-14 10:00:00 -0800 title: OpenSearch Core Triage online: true diff --git a/_events/2024-0221-opensearch-core-triage.markdown b/_events/2024-0221-opensearch-core-triage.markdown index bef712dbf5..33719504c0 100644 --- a/_events/2024-0221-opensearch-core-triage.markdown +++ b/_events/2024-0221-opensearch-core-triage.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-02-21' -eventdate: 2024-02-21 10:00:00 -0600 +eventdate: 2024-02-21 10:00:00 -0800 title: OpenSearch Core Triage online: true diff --git a/_events/2024-0227-community-meeting.markdown b/_events/2024-0227-community-meeting.markdown index 6b545451f3..75eed3dfa0 100644 --- a/_events/2024-0227-community-meeting.markdown +++ b/_events/2024-0227-community-meeting.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-02-27' -eventdate: 2024-02-27 08:00:00 -0700 +eventdate: 2024-02-27 08:00:00 -0800 title: OpenSearch Community Meeting - 2024-02-27 online: true diff --git a/_events/2024-0228-opensearch-core-triage.markdown b/_events/2024-0228-opensearch-core-triage.markdown index 00d94933a2..5eed512e70 100644 --- a/_events/2024-0228-opensearch-core-triage.markdown +++ b/_events/2024-0228-opensearch-core-triage.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-02-28' -eventdate: 2024-02-28 10:00:00 -0600 +eventdate: 2024-02-28 10:00:00 -0800 title: OpenSearch Core Triage online: true diff --git a/_events/2024-0306-opensearch-core-triage.markdown b/_events/2024-0306-opensearch-core-triage.markdown index bdebe83a72..6f89bacb7f 100644 --- a/_events/2024-0306-opensearch-core-triage.markdown +++ b/_events/2024-0306-opensearch-core-triage.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-03-06' -eventdate: 2024-03-06 10:00:00 -0600 +eventdate: 2024-03-06 10:00:00 -0800 title: OpenSearch Core Triage online: true diff --git a/_events/2024-0312-dev-triage-ml-commons.markdown b/_events/2024-0312-dev-triage-ml-commons.markdown index 7c3ed865c3..0d0f5d1168 100644 --- a/_events/2024-0312-dev-triage-ml-commons.markdown +++ b/_events/2024-0312-dev-triage-ml-commons.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-03-12' -eventdate: 2024-03-12 10:30:00 -0800 +eventdate: 2024-03-12 10:30:00 -0700 primary_title: Development Backlog & Triage Meeting - ml-commons - 2024-03-12 title: Development Backlog & Triage Meeting - ml-commons - 2024-03-12 online: true diff --git a/_events/2024-0313-opensearch-core-triage.markdown b/_events/2024-0313-opensearch-core-triage.markdown index 642731545d..adc8e507a3 100644 --- a/_events/2024-0313-opensearch-core-triage.markdown +++ b/_events/2024-0313-opensearch-core-triage.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-03-13' -eventdate: 2024-03-13 10:00:00 -0600 +eventdate: 2024-03-13 10:00:00 -0700 title: OpenSearch Core Triage online: true diff --git a/_events/2024-0320-opensearch-core-triage.markdown b/_events/2024-0320-opensearch-core-triage.markdown index d0f51ae731..d190a6aa05 100644 --- a/_events/2024-0320-opensearch-core-triage.markdown +++ b/_events/2024-0320-opensearch-core-triage.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-03-20' -eventdate: 2024-03-20 10:00:00 -0600 +eventdate: 2024-03-20 10:00:00 -0700 title: OpenSearch Core Triage online: true diff --git a/_events/2024-0327-opensearch-core-triage.markdown b/_events/2024-0327-opensearch-core-triage.markdown index 52e3d50405..c3b6c580f0 100644 --- a/_events/2024-0327-opensearch-core-triage.markdown +++ b/_events/2024-0327-opensearch-core-triage.markdown @@ -1,6 +1,6 @@ --- calendar_date: '2024-03-27' -eventdate: 2024-03-27 10:00:00 -0600 +eventdate: 2024-03-27 10:00:00 -0700 title: OpenSearch Core Triage online: true From f81b0c85beb1123dd9d049786aa867e57568858b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Mon, 27 Nov 2023 22:10:14 -1000 Subject: [PATCH 4/8] Fix Data Ops Poland date MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to the meetup page, the event was on 24.01.2023 at 19:00 local time. The Time-Zone offset then correspond to Europe/Warsaw. Signed-off-by: Romain Tartière --- _events/2023-0124-finding-the-right-things.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_events/2023-0124-finding-the-right-things.markdown b/_events/2023-0124-finding-the-right-things.markdown index 66813dd69f..cf3bb4a32d 100644 --- a/_events/2023-0124-finding-the-right-things.markdown +++ b/_events/2023-0124-finding-the-right-things.markdown @@ -1,12 +1,12 @@ --- calendar_date: '2023-01-24' # put your event date and time (24 hr) here: -eventdate: 2023-01-24 13:00:00 -0500 +eventdate: 2023-01-24 19:00:00 +0100 # the title - this is how it will show up in listing and headings on the site: title: Data Ops Poland - Finding the Right Things with OpenSearch # if your event has an online component, put it here: online: True -tz: America/Los_Angeles +tz: Europe/Warsaw # This is for the sign up button signup: # the link URL @@ -19,4 +19,4 @@ category: events Check out Data Ops Poland where David will be presenting, "Finding the Right Things with OpenSearch": -As our data grows it’s become increasingly challenging to find what you need. In comes OpenSearch to help out. Whether you are searching through terabytes of logs, hundreds of thousands of products online, or even security events OpenSearch can help you find the right information. Learn how OpenSearch uses search techniques to find you the data that is relevant to you. \ No newline at end of file +As our data grows it’s become increasingly challenging to find what you need. In comes OpenSearch to help out. Whether you are searching through terabytes of logs, hundreds of thousands of products online, or even security events OpenSearch can help you find the right information. Learn how OpenSearch uses search techniques to find you the data that is relevant to you. From 4669bc2919aa8be7a802b98aa222824b4c15b9f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Mon, 27 Nov 2023 22:13:23 -1000 Subject: [PATCH 5/8] Fix Haystack US 2023 date MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The website says it started on the 25th and not the 24th in Charlottesville, same Time-Zone as New York (America/Charlottesville not being a valid Time-Zone name). Signed-off-by: Romain Tartière --- _events/2023-0424-haystack-us-2023.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_events/2023-0424-haystack-us-2023.markdown b/_events/2023-0424-haystack-us-2023.markdown index b2f6891346..72943d22c6 100644 --- a/_events/2023-0424-haystack-us-2023.markdown +++ b/_events/2023-0424-haystack-us-2023.markdown @@ -1,12 +1,12 @@ --- calendar_date: '2023-04-24' # put your event date and time (24 hr) here: -eventdate: 2023-04-24 09:00:00 -0500 +eventdate: 2023-04-25 09:00:00 -0400 # the title - this is how it will show up in listing and headings on the site: title: Haystack US 2023 - The Search Relevance Conference # if your event has an online component, put it here: online: true -tz: America/Los_Angeles +tz: America/New_York # This is for the sign up button signup: # the link URL From 025b750d9e3c0638e6cc25cbfe3f58794465daa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Mon, 27 Nov 2023 22:26:44 -1000 Subject: [PATCH 6/8] Adjust Fluent Community Meeting TZ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These one have the correct offset, but when adding `tz` we did not took this into account. Use the America/New_York offset which match the events. Signed-off-by: Romain Tartière --- _events/2023-0323-fluent-community.markdown | 4 ++-- _events/2023-0406-fluent-community.markdown | 4 ++-- _events/2023-1019-fluent-community-meetup.markdown | 4 +--- _events/2023-1026-fluent-bit-v2-webinar.markdown | 4 +--- _events/2023-1102-fluent-community-meetup.markdown | 4 +--- _events/2023-1116-fluent-community-meetup.markdown | 4 +--- _events/2023-1130-fluent-community-meetup.markdown | 4 +--- _events/2023-1214-fluent-community-meetup.markdown | 4 +--- 8 files changed, 10 insertions(+), 22 deletions(-) diff --git a/_events/2023-0323-fluent-community.markdown b/_events/2023-0323-fluent-community.markdown index e333daa6f8..cd0b48f8e0 100644 --- a/_events/2023-0323-fluent-community.markdown +++ b/_events/2023-0323-fluent-community.markdown @@ -3,7 +3,7 @@ calendar_date: '2023-03-23' eventdate: 2023-03-23 16:00:00 -0400 title: Fluent Community Meeting online: true -tz: America/Los_Angeles +tz: America/New_York signup: url: https://www.meetup.com/fluent-community-meeting/events/gtnftsyfcfbfc/ title: Join on Meetup @@ -14,4 +14,4 @@ The Fluent Community meeting is an online meetup centered around the Fluentd and Users who are interested in discussing the projects, communicating with maintainers, or who are eager to learn about the technologies should join. New users are welcomed. -Our agenda for the meeting is an [open document](https://docs.google.com/document/d/1vJvsn8E0SanLO1R0X3RC1qTw0XQK_7q75sZ8IbWAu-g/edit). \ No newline at end of file +Our agenda for the meeting is an [open document](https://docs.google.com/document/d/1vJvsn8E0SanLO1R0X3RC1qTw0XQK_7q75sZ8IbWAu-g/edit). diff --git a/_events/2023-0406-fluent-community.markdown b/_events/2023-0406-fluent-community.markdown index 693aead6fe..c82a9ed735 100644 --- a/_events/2023-0406-fluent-community.markdown +++ b/_events/2023-0406-fluent-community.markdown @@ -3,7 +3,7 @@ calendar_date: '2023-04-06' eventdate: 2023-04-06 16:00:00 -0400 title: Fluent Community Meeting online: true -tz: America/Los_Angeles +tz: America/New_York signup: url: https://www.meetup.com/fluent-community-meeting/events/gtnftsyfcgbjb/ title: Join on Meetup @@ -14,4 +14,4 @@ The Fluent Community meeting is an online meetup centered around the Fluentd and Users who are interested in discussing the projects, communicating with maintainers, or who are eager to learn about the technologies should join. New users are welcomed. -Our agenda for the meeting is an [open document](https://docs.google.com/document/d/1vJvsn8E0SanLO1R0X3RC1qTw0XQK_7q75sZ8IbWAu-g/edit). \ No newline at end of file +Our agenda for the meeting is an [open document](https://docs.google.com/document/d/1vJvsn8E0SanLO1R0X3RC1qTw0XQK_7q75sZ8IbWAu-g/edit). diff --git a/_events/2023-1019-fluent-community-meetup.markdown b/_events/2023-1019-fluent-community-meetup.markdown index 8f9b2277fc..75cb230d30 100644 --- a/_events/2023-1019-fluent-community-meetup.markdown +++ b/_events/2023-1019-fluent-community-meetup.markdown @@ -5,9 +5,7 @@ eventdate: 2023-10-19 12:00:00 -0400 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true -tz: America/Los_Angeles -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2023-1026-fluent-bit-v2-webinar.markdown b/_events/2023-1026-fluent-bit-v2-webinar.markdown index e027eda8ca..2a58a70c93 100644 --- a/_events/2023-1026-fluent-bit-v2-webinar.markdown +++ b/_events/2023-1026-fluent-bit-v2-webinar.markdown @@ -5,9 +5,7 @@ eventdate: 2023-10-26 12:00:00 -0400 # the title - this is how it will show up in listing and headings on the site: title: Fluent Bit v2 Webinar online: true -tz: America/Los_Angeles -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2023-1102-fluent-community-meetup.markdown b/_events/2023-1102-fluent-community-meetup.markdown index 784eea2c63..7655c32354 100644 --- a/_events/2023-1102-fluent-community-meetup.markdown +++ b/_events/2023-1102-fluent-community-meetup.markdown @@ -5,9 +5,7 @@ eventdate: 2023-11-02 12:00:00 -0400 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true -tz: America/Los_Angeles -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2023-1116-fluent-community-meetup.markdown b/_events/2023-1116-fluent-community-meetup.markdown index 71d103d658..f4a760fa5c 100644 --- a/_events/2023-1116-fluent-community-meetup.markdown +++ b/_events/2023-1116-fluent-community-meetup.markdown @@ -4,9 +4,7 @@ eventdate: 2023-11-16 12:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true -tz: America/Los_Angeles -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2023-1130-fluent-community-meetup.markdown b/_events/2023-1130-fluent-community-meetup.markdown index ea00191530..35df07f8cf 100644 --- a/_events/2023-1130-fluent-community-meetup.markdown +++ b/_events/2023-1130-fluent-community-meetup.markdown @@ -5,9 +5,7 @@ eventdate: 2023-11-30 12:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true -tz: America/Los_Angeles -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: diff --git a/_events/2023-1214-fluent-community-meetup.markdown b/_events/2023-1214-fluent-community-meetup.markdown index 692593824e..ff503aa29d 100644 --- a/_events/2023-1214-fluent-community-meetup.markdown +++ b/_events/2023-1214-fluent-community-meetup.markdown @@ -5,9 +5,7 @@ eventdate: 2023-12-14 12:00:00 -0500 # the title - this is how it will show up in listing and headings on the site: title: Fluent Community Meeting online: true -tz: America/Los_Angeles -# If the event is online, remove the next line, otherwise uncomment and adjust it: -# tz: Pacific/Tahiti +tz: America/New_York # This is for the sign up button signup: From 7447dbaf67cbf37a168d0c3a80cd5bfef2d0c0c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Mon, 27 Nov 2023 22:31:49 -1000 Subject: [PATCH 7/8] Improve wording for invalid YAML timestamps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These are not RFC822 time representations. So do not call them that name, it just add confusion. Signed-off-by: Romain Tartière --- _scripts/_malformedevents.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_scripts/_malformedevents.rb b/_scripts/_malformedevents.rb index 5004a9bc58..e57df3921b 100755 --- a/_scripts/_malformedevents.rb +++ b/_scripts/_malformedevents.rb @@ -45,7 +45,7 @@ issues += 1 end else - warn "#{filename}: event 'eventdate' (#{start_date}) is not a valid RFC822 date" + warn "#{filename}: event 'eventdate' (#{start_date}) is not a valid YAML timestamp" issues += 1 end @@ -56,7 +56,7 @@ issues += 1 end elsif end_date - warn "#{filename}: event 'enddate' (#{end_date}) is not a valid RFC822 date" + warn "#{filename}: event 'enddate' (#{end_date}) is not a valid YAML timestamp" issues += 1 end end From eb126738b00dd3d5fd154b06c2cf03f2106416b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Tue, 12 Mar 2024 14:08:58 -1000 Subject: [PATCH 8/8] Fix missing location for on-site events MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Romain Tartière --- _events/2024-0306-foss-backstage.markdown | 7 +++++-- .../2024-0319-kubecon-cloudnativecon-europe-2024.markdown | 3 +++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/_events/2024-0306-foss-backstage.markdown b/_events/2024-0306-foss-backstage.markdown index dc23f85abe..b6b363d0ee 100644 --- a/_events/2024-0306-foss-backstage.markdown +++ b/_events/2024-0306-foss-backstage.markdown @@ -1,10 +1,13 @@ --- calendar_date: '2024-03-06' -eventdate: 2024-03-06 10:00:00 -0600 +eventdate: 2024-03-04 10:00:00 +0100 title: FOSS Backstage & FOSS Backstage Design online: false tz: Europe/Berlin +location: + city: Berlin + country: Germany signup: url: https://24.foss-backstage.de/ title: Visit the booth @@ -15,4 +18,4 @@ category: community The OpenSearch Project is a main partner at this year’s [FOSS Backstage](https://24.foss-backstage.de/); The two day conference dedicated to everything related to FOSS governance and open collaboration. Be sure to stop by our booth. We’re looking forward to seeing the open-source community this year in Berlin! **March 6 - FOSS Backstage Design** -As part of the week FOSS Backstage Design will take a deep dive into UX Design in FOSS. On March 6th, Aparna Sundar will be giving a talk **[Increasing the human element in open source software](https://24.foss-backstage.de/sessions-ux24/?id=SD9WAM)** where she will share her experience about building open source software while maintaining a good balance of community input. Come discuss the ways in which software engineers or developers, designers, community and product managers can adopt and incorporate research practices in software design. \ No newline at end of file +As part of the week FOSS Backstage Design will take a deep dive into UX Design in FOSS. On March 6th, Aparna Sundar will be giving a talk **[Increasing the human element in open source software](https://24.foss-backstage.de/sessions-ux24/?id=SD9WAM)** where she will share her experience about building open source software while maintaining a good balance of community input. Come discuss the ways in which software engineers or developers, designers, community and product managers can adopt and incorporate research practices in software design. diff --git a/_events/2024-0319-kubecon-cloudnativecon-europe-2024.markdown b/_events/2024-0319-kubecon-cloudnativecon-europe-2024.markdown index 0c9c3ccbcf..b9961f5c7e 100644 --- a/_events/2024-0319-kubecon-cloudnativecon-europe-2024.markdown +++ b/_events/2024-0319-kubecon-cloudnativecon-europe-2024.markdown @@ -5,6 +5,9 @@ eventdate: 2024-03-19 08:00:00 +0100 online: false tz: Europe/Paris +location: + city: Paris + country: France signup: url: https://events.linuxfoundation.org/kubecon-cloudnativecon-europe/ title: Register to Attend!