Skip to content

Commit

Permalink
Merge branch 'main' into 184084-extensions-for-doc-viewer
Browse files Browse the repository at this point in the history
  • Loading branch information
jughosta authored Jun 17, 2024
2 parents b34ba8d + 34b052c commit eaeac3b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .buildkite/scripts/pipelines/pull_request/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,14 @@ const getPipeline = (filename: string, removeSteps = true) => {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/fips.yml'));
}

if (GITHUB_PR_LABELS.includes('ci:build-serverless-image')) {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/build_project.yml'));
}
if (
GITHUB_PR_LABELS.includes('ci:project-deploy-elasticsearch') ||
GITHUB_PR_LABELS.includes('ci:project-deploy-observability') ||
GITHUB_PR_LABELS.includes('ci:project-deploy-security')
) {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/deploy_project.yml'));
} else if (GITHUB_PR_LABELS.includes('ci:build-serverless-image')) {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/build_project.yml'));
}

if (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ id: kibDevTutorialAddingCustomPerformanceMetrics
slug: /kibana-dev-docs/tutorial/performance/adding_custom_performance_metrics
title: Adding Performance Metrics
summary: Learn how to instrument your code and analyze performance
date: 2023-01-13
tags: ['kibana', 'onboarding', 'setup', 'performance', 'development', 'telemetry']
---

Expand Down Expand Up @@ -241,7 +240,7 @@ const MyApp = () => {
if (fetchedData.status === 'success') {
setData(fetchedData);
// Call onPageReady once the meaningful data has rendered and visible to the user
// Call onPageReady once the meaningful data has rendered and visible to the user
onPageReady();
}
Expand Down
3 changes: 2 additions & 1 deletion nav-kibana-dev.docnav.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@
"label": "Tutorials",
"items": [
{
"id": "kibDevTutorialAddingCustomPerformanceMetrics"
"id": "kibDevTutorialAddingCustomPerformanceMetrics",
"label": "Adding Performance Metrics"
},
{
"id": "kibDevTutorialSetupWindowsDevWSL"
Expand Down

0 comments on commit eaeac3b

Please sign in to comment.