@@ -558,62 +558,62 @@ export class CircleProcessor extends ProcessorBase {
558558export class CommunityIDProcessor extends ProcessorBase {
559559 /**
560560 * Field containing the source IP address.
561- * @server -default source.ip
561+ * @server_default source.ip
562562 */
563563 source_ip ?: Field
564564 /**
565565 * Field containing the source port.
566- * @server -default source.port
566+ * @server_default source.port
567567 */
568568 source_port ?: Field
569569 /**
570570 * Field containing the destination IP address.
571- * @server -default destination.ip
571+ * @server_default destination.ip
572572 */
573573 destination_ip ?: Field
574574 /**
575575 * Field containing the destination port.
576- * @server -default destination.port
576+ * @server_default destination.port
577577 */
578578 destination_port ?: Field
579579 /**
580580 * Field containing the IANA number.
581- * @server -default network.iana_number
581+ * @server_default network.iana_number
582582 */
583583 iana_number ?: Field
584584 /**
585585 * Field containing the ICMP type.
586- * @server -default icmp.type
586+ * @server_default icmp.type
587587 */
588588 icmp_type ?: Field
589589 /**
590590 * Field containing the ICMP code.
591- * @server -default icmp.code
591+ * @server_default icmp.code
592592 */
593593 icmp_code ?: Field
594594 /**
595595 * Field containing the transport protocol name or number. Used only when the
596596 * iana_number field is not present. The following protocol names are currently
597597 * supported: eigrp, gre, icmp, icmpv6, igmp, ipv6-icmp, ospf, pim, sctp, tcp, udp
598- * @server -default network.transport
598+ * @server_default network.transport
599599 */
600600 transport ?: Field
601601 /**
602602 * Output field for the community ID.
603- * @server -default network.community_id
603+ * @server_default network.community_id
604604 */
605605 target_field ?: Field
606606 /**
607607 * Seed for the community ID hash. Must be between 0 and 65535 (inclusive). The
608608 * seed can prevent hash collisions between network domains, such as a staging
609609 * and production network that use the same addressing scheme.
610- * @server -default 0
610+ * @server_default 0
611611 */
612612 seed ?: integer
613613 /**
614614 * If true and any required fields are missing, the processor quietly exits
615615 * without modifying the document.
616- * @server -default true
616+ * @server_default true
617617 */
618618 ignore_missing ?: boolean
619619}
@@ -756,7 +756,7 @@ export class DateProcessor extends ProcessorBase {
756756 /**
757757 * The format to use when writing the date to target_field. Must be a valid
758758 * java time pattern.
759- * @server -default yyyy-MM-dd'T'HH:mm:ss.SSSXXX
759+ * @server_default yyyy-MM-dd'T'HH:mm:ss.SSSXXX
760760 */
761761 output_format ?: string
762762}
@@ -870,7 +870,7 @@ export class FingerprintProcessor extends ProcessorBase {
870870 fields : Fields
871871 /**
872872 * Output field for the fingerprint.
873- * @server -default fingerprint
873+ * @server_default fingerprint
874874 */
875875 target_field ?: Field
876876 /**
@@ -880,13 +880,13 @@ export class FingerprintProcessor extends ProcessorBase {
880880 /**
881881 * The hash method used to compute the fingerprint. Must be one of MD5, SHA-1,
882882 * SHA-256, SHA-512, or MurmurHash3.
883- * @server -default SHA-1
883+ * @server_default SHA-1
884884 */
885885 method ?: FingerprintDigest
886886 /**
887887 * If true, the processor ignores any missing fields. If all fields are
888888 * missing, the processor silently exits without modifying the document.
889- * @server -default false
889+ * @server_default false
890890 */
891891 ignore_missing ?: boolean
892892}
@@ -911,7 +911,7 @@ export class GrokProcessor extends ProcessorBase {
911911 /**
912912 * Must be disabled or v1. If v1, the processor uses patterns with Elastic
913913 * Common Schema (ECS) field names.
914- * @server -default disabled
914+ * @server_default disabled
915915 */
916916 ecs_compatibility ?: string
917917 /**
@@ -1190,17 +1190,17 @@ export class LowercaseProcessor extends ProcessorBase {
11901190export class NetworkDirectionProcessor extends ProcessorBase {
11911191 /**
11921192 * Field containing the source IP address.
1193- * @server -default source.ip
1193+ * @server_default source.ip
11941194 */
11951195 source_ip ?: Field
11961196 /**
11971197 * Field containing the destination IP address.
1198- * @server -default destination.ip
1198+ * @server_default destination.ip
11991199 */
12001200 destination_ip ?: Field
12011201 /**
12021202 * Output field for the network direction.
1203- * @server -default network.direction
1203+ * @server_default network.direction
12041204 */
12051205 target_field ?: Field
12061206 /**
@@ -1218,7 +1218,7 @@ export class NetworkDirectionProcessor extends ProcessorBase {
12181218 /**
12191219 * If true and any required fields are missing, the processor quietly exits
12201220 * without modifying the document.
1221- * @server -default true
1221+ * @server_default true
12221222 */
12231223 ignore_missing ?: boolean
12241224}
@@ -1287,13 +1287,13 @@ export class RegisteredDomainProcessor extends ProcessorBase {
12871287 /**
12881288 * Object field containing extracted domain components. If an empty string,
12891289 * the processor adds components to the document’s root.
1290- * @server -default <empty string>
1290+ * @server_default <empty string>
12911291 */
12921292 target_field ?: Field
12931293 /**
12941294 * If true and any required fields are missing, the processor quietly exits
12951295 * without modifying the document.
1296- * @server -default true
1296+ * @server_default true
12971297 */
12981298 ignore_missing ?: boolean
12991299}
0 commit comments