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: packages/azure/data_stream/eventhub/manifest.yml
+88Lines changed: 88 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,94 @@ streams:
74
74
type: bool
75
75
multi: false
76
76
default: false
77
+
78
+
#
79
+
# Processor v2 only settings
80
+
#
81
+
- name: processor_version
82
+
type: text
83
+
title: Processor version
84
+
multi: false
85
+
required: false
86
+
show_user: false
87
+
default: v1
88
+
description: "The processor version that the integration should use. Possible values are `v1` and `v2` (preview). \nThe v2 event hub processor is in preview, so using the v1 processor is recommended for typical use cases.\nDefault is `v1`."
89
+
- name: processor_update_interval
90
+
type: text
91
+
title: Processor update interval
92
+
multi: false
93
+
required: false
94
+
show_user: false
95
+
default: 10s
96
+
description: >-
97
+
(Processor v2 only) How often the processor should attempt to claim partitions.
98
+
99
+
Default is `10` seconds.
100
+
- name: processor_start_position
101
+
type: text
102
+
title: Processor start position
103
+
multi: false
104
+
required: false
105
+
show_user: false
106
+
default: earliest
107
+
description: >-
108
+
(Processor v2 only) Controls from what position in the event hub the processor should start processing messages for all partitions.
109
+
110
+
Possible values are `earliest` and `latest`.
111
+
112
+
`earliest` starts processing messages from the last checkpoint, or the beginning of the event hub if no checkpoint is available.
113
+
114
+
`latest` starts processing messages from the the latest event in the event hub and continues to process new events as they arrive.
115
+
116
+
Default is `earliest`.
117
+
- name: partition_receive_timeout
118
+
type: text
119
+
title: Partition receive timeout
120
+
multi: false
121
+
required: false
122
+
show_user: false
123
+
default: 5s
124
+
description: >-
125
+
(Processor v2 only) Maximum time to wait before processing the messages received from the event hub.
126
+
127
+
The partition consumer waits up to a "receive count" or a "receive timeout", whichever comes first.
128
+
129
+
Default is `5` seconds.
130
+
- name: partition_receive_count
131
+
type: text
132
+
title: Partition receive count
133
+
multi: false
134
+
required: false
135
+
show_user: false
136
+
default: 100
137
+
description: >-
138
+
(Processor v2 only) Maximum number of messages from the event hub to wait for before processing them.
139
+
140
+
The partition consumer waits up to a "receive count" or a "receive timeout", whichever comes first.
141
+
142
+
Default is `100` messages.
143
+
- name: migrate_checkpoint
144
+
type: bool
145
+
title: Migrate checkpoint information
146
+
multi: false
147
+
required: false
148
+
show_user: false
149
+
default: true
150
+
description: >-
151
+
(Processor v2 only) Flag to control if the processor should perform the checkpoint information migration from processor v1 to v2 at startup.
152
+
153
+
The checkpoint migration converts the checkpoint information from the v1 format to the v2 format.
154
+
155
+
Default is `false`, which means the processor will not perform the checkpoint migration.
156
+
- name: endpoint_suffix
157
+
type: text
158
+
default: core.windows.net
159
+
required: true
160
+
title: Storage account endpoint suffix
161
+
show_user: false
162
+
description: >-
163
+
(Processor v2 only) Override the default storage account endpoint suffix.
164
+
77
165
# Ensures agents have permissions to write data to `logs-*-*`
0 commit comments