I created 2 MongoDB triggers for 2 collections from one Mongo cluster and 1 trigger for a collection from another cluster. So altogether 3 triggers. I used AWS Event Bridge to send trigger events to AWS
Here are the Event Bridges that were created as seen from the AWS console
My problem is how do I identify to which collection and cluster each of these belong to. For example if I had only 1 trigger in the list I would have known, but when I go on creating triggers for multiple collections is the problem
Does 61d2ac6f624571ca88cfd71a
in aws.partner/mongodb.com/stitch.trigger/61d2ac6f624571ca88cfd71a
mean anything which can be used to identify the collection name.
The identifier "61d2ac6f624571ca88cfd71a" in the AWS Event Bridge rule ARN does not inherently provide information about the associated collection name or cluster. It appears to be a unique identifier for the specific trigger or rule.
To identify the collection and cluster associated with each trigger, you may need to adopt a naming convention or documentation strategy when creating triggers. Here are a few suggestions:
1- Naming Convention:
2- Metadata in Rule Description:
Rule Name: Trigger1
Description: Collection: Collection1, Cluster: Cluster1
3- Use Tags:
Tag: Collection=Collection1
Tag: Cluster=Cluster1
4- Documentation:
Trigger ID: 61d2ac6f624571ca88cfd71a
Collection: Collection1
Cluster: Cluster1
Choose the method that best fits your workflow and provides the necessary information for managing and identifying triggers in your setup. It's essential to establish a consistent and documented approach to avoid confusion as the number of triggers increases.