mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Adds ingest pipeline links to documentation link service (#95837)
This commit is contained in:
parent
8f2db91cc5
commit
32f2409396
4 changed files with 45 additions and 2 deletions
|
@ -144,6 +144,7 @@ readonly links: {
|
|||
putComponentTemplateMetadata: string;
|
||||
putSnapshotLifecyclePolicy: string;
|
||||
putWatch: string;
|
||||
simulatePipeline: string;
|
||||
updateTransform: string;
|
||||
}>;
|
||||
readonly observability: Record<string, string>;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -271,8 +271,10 @@ export class DocLinksService {
|
|||
painlessExecute: `${ELASTIC_WEBSITE_URL}guide/en/elasticsearch/painless/${DOC_LINK_VERSION}/painless-execute-api.html`,
|
||||
painlessExecuteAPIContexts: `${ELASTIC_WEBSITE_URL}guide/en/elasticsearch/painless/${DOC_LINK_VERSION}/painless-execute-api.html#_contexts`,
|
||||
putComponentTemplateMetadata: `${ELASTICSEARCH_DOCS}indices-component-template.html#component-templates-metadata`,
|
||||
putEnrichPolicy: `${ELASTICSEARCH_DOCS}put-enrich-policy-api.html`,
|
||||
putSnapshotLifecyclePolicy: `${ELASTICSEARCH_DOCS}slm-api-put-policy.html`,
|
||||
putWatch: `${ELASTICSEARCH_DOCS}/watcher-api-put-watch.html`,
|
||||
putWatch: `${ELASTICSEARCH_DOCS}watcher-api-put-watch.html`,
|
||||
simulatePipeline: `${ELASTICSEARCH_DOCS}simulate-pipeline-api.html`,
|
||||
updateTransform: `${ELASTICSEARCH_DOCS}update-transform.html`,
|
||||
},
|
||||
plugins: {
|
||||
|
@ -293,9 +295,47 @@ export class DocLinksService {
|
|||
restoreSnapshotApi: `${ELASTICSEARCH_DOCS}restore-snapshot-api.html#restore-snapshot-api-request-body`,
|
||||
},
|
||||
ingest: {
|
||||
append: `${ELASTICSEARCH_DOCS}append-processor.html`,
|
||||
bytes: `${ELASTICSEARCH_DOCS}bytes-processor.html`,
|
||||
circle: `${ELASTICSEARCH_DOCS}ingest-circle-processor.html`,
|
||||
convert: `${ELASTICSEARCH_DOCS}convert-processor.html`,
|
||||
csv: `${ELASTICSEARCH_DOCS}csv-processor.html`,
|
||||
date: `${ELASTICSEARCH_DOCS}date-processor.html`,
|
||||
dateIndexName: `${ELASTICSEARCH_DOCS}date-index-name-processor.html`,
|
||||
dissect: `${ELASTICSEARCH_DOCS}dissect-processor.html`,
|
||||
dissectKeyModifiers: `${ELASTICSEARCH_DOCS}dissect-processor.html#dissect-key-modifiers`,
|
||||
dotExpander: `${ELASTICSEARCH_DOCS}dot-expand-processor.html`,
|
||||
drop: `${ELASTICSEARCH_DOCS}drop-processor.html`,
|
||||
enrich: `${ELASTICSEARCH_DOCS}ingest-enriching-data.html`,
|
||||
fail: `${ELASTICSEARCH_DOCS}fail-processor.html`,
|
||||
foreach: `${ELASTICSEARCH_DOCS}foreach-processor.html`,
|
||||
geoIp: `${ELASTICSEARCH_DOCS}geoip-processor.html`,
|
||||
grok: `${ELASTICSEARCH_DOCS}grok-processor.html`,
|
||||
gsub: `${ELASTICSEARCH_DOCS}gsub-processor.html`,
|
||||
htmlString: `${ELASTICSEARCH_DOCS}htmlstrip-processor.html`,
|
||||
inference: `${ELASTICSEARCH_DOCS}inference-processor.html`,
|
||||
inferenceClassification: `${ELASTICSEARCH_DOCS}inference-processor.html#inference-processor-classification-opt`,
|
||||
inferenceRegression: `${ELASTICSEARCH_DOCS}inference-processor.html#inference-processor-regression-opt`,
|
||||
join: `${ELASTICSEARCH_DOCS}join-processor.html`,
|
||||
json: `${ELASTICSEARCH_DOCS}json-processor.html`,
|
||||
kv: `${ELASTICSEARCH_DOCS}kv-processor.html`,
|
||||
lowercase: `${ELASTICSEARCH_DOCS}lowercase-processor.html`,
|
||||
pipeline: `${ELASTICSEARCH_DOCS}pipeline-processor.html`,
|
||||
pipelines: `${ELASTICSEARCH_DOCS}ingest.html`,
|
||||
pipelineFailure: `${ELASTICSEARCH_DOCS}ingest.html#handling-pipeline-failures`,
|
||||
processors: `${ELASTICSEARCH_DOCS}processors.html`,
|
||||
remove: `${ELASTICSEARCH_DOCS}remove-processor.html`,
|
||||
rename: `${ELASTICSEARCH_DOCS}rename-processor.html`,
|
||||
script: `${ELASTICSEARCH_DOCS}script-processor.html`,
|
||||
set: `${ELASTICSEARCH_DOCS}set-processor.html`,
|
||||
setSecurityUser: `${ELASTICSEARCH_DOCS}ingest-node-set-security-user-processor.html`,
|
||||
sort: `${ELASTICSEARCH_DOCS}sort-processor.html`,
|
||||
split: `${ELASTICSEARCH_DOCS}split-processor.html`,
|
||||
trim: `${ELASTICSEARCH_DOCS}trim-processor.html`,
|
||||
uppercase: `${ELASTICSEARCH_DOCS}uppercase-processor.html`,
|
||||
uriParts: `${ELASTICSEARCH_DOCS}uri-parts-processor.html`,
|
||||
urlDecode: `${ELASTICSEARCH_DOCS}urldecode-processor.html`,
|
||||
userAgent: `${ELASTICSEARCH_DOCS}user-agent-processor.html`,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
@ -443,6 +483,7 @@ export interface DocLinksStart {
|
|||
putComponentTemplateMetadata: string;
|
||||
putSnapshotLifecyclePolicy: string;
|
||||
putWatch: string;
|
||||
simulatePipeline: string;
|
||||
updateTransform: string;
|
||||
}>;
|
||||
readonly observability: Record<string, string>;
|
||||
|
|
|
@ -627,6 +627,7 @@ export interface DocLinksStart {
|
|||
putComponentTemplateMetadata: string;
|
||||
putSnapshotLifecyclePolicy: string;
|
||||
putWatch: string;
|
||||
simulatePipeline: string;
|
||||
updateTransform: string;
|
||||
}>;
|
||||
readonly observability: Record<string, string>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue