Skip to content

Commit

Permalink
Add ingest links to doc link service
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl committed Mar 30, 2021
1 parent 1bfa719 commit b854191
Showing 1 changed file with 42 additions and 1 deletion.
43 changes: 42 additions & 1 deletion src/core/public/doc_links/doc_links_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand All @@ -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`,
},
},
});
Expand Down Expand Up @@ -443,6 +483,7 @@ export interface DocLinksStart {
putComponentTemplateMetadata: string;
putSnapshotLifecyclePolicy: string;
putWatch: string;
simulatePipeline: string;
updateTransform: string;
}>;
readonly observability: Record<string, string>;
Expand Down

0 comments on commit b854191

Please sign in to comment.