You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/extend/plugin-list.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -175,6 +175,7 @@ mapped_pages:
175
175
|[inference](https://github.com/elastic/kibana/blob/main/x-pack/platform/plugins/shared/inference/README.md)| The inference plugin is a central place to handle all interactions with the Elasticsearch Inference API and external LLM APIs. Its goals are: |
176
176
|[inferenceEndpoint](https://github.com/elastic/kibana/blob/main/x-pack/platform/plugins/shared/inference_endpoint/README.md)| A Kibana plugin |
177
177
|[infra](https://github.com/elastic/kibana/blob/main/x-pack/solutions/observability/plugins/infra/README.md)| This is the home of the infra plugin, which aims to provide a solution for the infrastructure monitoring use-case within Kibana. |
178
+
|[ingestHub](https://github.com/elastic/kibana/blob/main/x-pack/platform/plugins/shared/ingest_hub/README.md)| Cross-solution onboarding page for adding data sources and integrations. Gated behind the ingestHub.enabled feature flag. |
178
179
|[ingestPipelines](https://github.com/elastic/kibana/blob/main/x-pack/platform/plugins/shared/ingest_pipelines/README.md)| The ingest_pipelines plugin provides Kibana support for Elasticsearch's ingest pipelines. |
179
180
|[intercepts](https://github.com/elastic/kibana/blob/main/x-pack/platform/plugins/private/intercepts/README.md)| Contains business logic and orchestration for displaying the intercept dialog suited to the needs of Kibana, and is made available so that other solution teams might leverage this to register and schedule an intercept of their choosing |
180
181
|[kubernetesSecurity](https://github.com/elastic/kibana/blob/main/x-pack/solutions/security/plugins/kubernetes_security/README.md)| This plugin provides interactive visualizations of your Kubernetes workload and session data. |
Computes a buffer area around the input geometry at the specified distance. The distance is in the units of the input spatial reference system. Positive distances expand the geometry, negative distances shrink it. Points and lines become polygons when buffered.
2603
+
2604
+
\`\`\`esql
2605
+
ROW wkt = "POLYGON ((0 0, 4 0, 4 4, 0 4, 0 0))"
2606
+
| EVAL buffered = ST_BUFFER(TO_GEOSHAPE(wkt), -1)
2607
+
\`\`\`
2608
+
`,
2609
+
description:
2610
+
'Text is in markdown. Do not translate function names, special characters, or field names like sum(bytes)',
2611
+
ignoreTag: true,
2612
+
}
2613
+
),
2614
+
},
2615
+
},
2616
+
// Do not edit manually... automatically generated by scripts/generate_esql_docs.ts
Simplifies the input geometry by applying a topology-preserving variant of the Douglas-Peucker algorithm with a specified tolerance. Vertices that fall within the tolerance distance from the simplified shape are removed. Unlike \`ST_SIMPLIFY\`, the resulting geometry is guaranteed to be topologically valid.
Copy file name to clipboardExpand all lines: src/platform/packages/shared/kbn-esql-language/src/commands/definitions/generated/aggregation_functions.ts
0 commit comments