test("create rule with non existent destination key fails", async () => {
    const aggregation = new Aggregation(AggregationType.COUNT, 50000);
    await expect(rtsClient.createRule("rule1", "rule3", aggregation)).rejects.toThrow();
});