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: specification/ingest/_types/Processors.ts
+58Lines changed: 58 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,12 @@ export class ProcessorContainer {
130
130
* @doc_id gsub-processor
131
131
*/
132
132
gsub?: GsubProcessor
133
+
/**
134
+
* Removes HTML tags from the field.
135
+
* If the field is an array of strings, HTML tags will be removed from all members of the array.
136
+
* @doc_id htmlstrip-processor
137
+
*/
138
+
html_strip?: HtmlStripProcessor
133
139
/**
134
140
* Uses a pre-trained data frame analytics model or a model deployed for natural language processing tasks to infer against the data that is being ingested in the pipeline.
135
141
* @doc_id inference-processor
@@ -230,6 +236,12 @@ export class ProcessorContainer {
230
236
* @doc_id urldecode-processor
231
237
*/
232
238
urldecode?: UrlDecodeProcessor
239
+
/**
240
+
* Parses a Uniform Resource Identifier (URI) string and extracts its components as an object.
241
+
* This URI object includes properties for the URI’s domain, path, fragment, port, query, scheme, user info, username, and password.
242
+
* @doc_id uri-parts-processor
243
+
*/
244
+
uri_parts?: UriPartsProcessor
233
245
/**
234
246
* The `user_agent` processor extracts details from the user agent string a browser sends with its web requests.
235
247
* This processor adds this information by default under the `user_agent` field.
@@ -722,6 +734,24 @@ export class GsubProcessor extends ProcessorBase {
0 commit comments