diff --git a/app/(protected)/project/[project_id]/annotations/annotations.tsx b/app/(protected)/project/[project_id]/annotations/annotations.tsx
index 8061f241..78c9d47e 100644
--- a/app/(protected)/project/[project_id]/annotations/annotations.tsx
+++ b/app/(protected)/project/[project_id]/annotations/annotations.tsx
@@ -68,28 +68,22 @@ export default function Annotations({ email }: { email: string }) {
const filters = {
filters: [
{
- operation: "OR",
+ operation: "AND",
filters: [
- {
- key: "llm.prompts",
- operation: "NOT_EQUALS",
- value: "",
- type: "attribute",
- },
{
key: "name",
operation: "EQUALS",
value: "gen_ai.content.completion",
type: "event",
},
+ {
+ key: "status_code",
+ operation: "EQUALS",
+ value: "STATUS_CODE_OK",
+ type: "property",
+ },
],
},
- {
- key: "status_code",
- operation: "EQUALS",
- value: "OK",
- type: "property",
- },
],
operation: "AND",
};
diff --git a/components/shared/vendor-metadata.tsx b/components/shared/vendor-metadata.tsx
index 98c23fca..3656e20e 100644
--- a/components/shared/vendor-metadata.tsx
+++ b/components/shared/vendor-metadata.tsx
@@ -146,6 +146,10 @@ export function vendorColor(vendor: string) {
return "bg-black";
}
+ if (vendor.includes("mongodb")) {
+ return "bg-green-200";
+ }
+
return "bg-gray-800";
}
@@ -487,6 +491,22 @@ export function VendorLogo({
);
}
+ if (vendor.includes("mongodb")) {
+ const color = vendorColor("mongodb");
+ return (
+