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
"Ingest events into an event type. This is useful for ingesting events into an event type, and then using the get_events tool to get the events for a specific time bucket. The events are stored in time buckets, and can be fetched by using the get_time_buckets tool. When you fetch events from a time bucket, you can use the cursor to paginate through the events. When ingesting events, you can ingest a single event or an array of events. The format of the event can be anything you want, as long as it's valid JSON. It will be the payload of the event.",
208
+
{
209
+
tenant: z.string().describe("The tenant name to ingest events for"),
210
+
dataCoreId: z.string().describe("The data core ID to ingest events for"),
211
+
flowTypeName: z.string().describe("The flow type name to ingest events for"),
212
+
eventTypeName: z.string().describe("The event type name to ingest events for"),
213
+
events: z
214
+
.union([z.array(z.unknown()),z.unknown()])
215
+
.describe("The events to ingest in the format of an array of events or a single event"),
0 commit comments