diff --git a/ecosystem-explorer/public/schemas/javaagent-instrumentation.schema.json b/ecosystem-explorer/public/schemas/javaagent-instrumentation.schema.json index 839e06ba..4ac7fa86 100644 --- a/ecosystem-explorer/public/schemas/javaagent-instrumentation.schema.json +++ b/ecosystem-explorer/public/schemas/javaagent-instrumentation.schema.json @@ -30,13 +30,6 @@ "description": "Minimum Java version required by this instrumentation.", "type": "number" }, - "tags": { - "description": "Searchable tags associated with this instrumentation.", - "type": "array", - "items": { - "type": "string" - } - }, "semantic_conventions": { "description": "List of semantic conventions followed by this instrumentation.", "type": "array", @@ -277,7 +270,6 @@ "library_link", "source_path", "minimum_java_version", - "tags", "semantic_conventions", "features", "scope", diff --git a/ecosystem-explorer/src/features/java-agent/utils/group-instrumentations.test.ts b/ecosystem-explorer/src/features/java-agent/utils/group-instrumentations.test.ts index 6d77d850..409ffd1f 100644 --- a/ecosystem-explorer/src/features/java-agent/utils/group-instrumentations.test.ts +++ b/ecosystem-explorer/src/features/java-agent/utils/group-instrumentations.test.ts @@ -167,7 +167,6 @@ describe("groupInstrumentationsByDisplayName", () => { display_name: "Apache Kafka Client", description: "Kafka instrumentation", scope: { name: "io.opentelemetry.kafka-clients-0.11" }, - tags: ["kafka"], has_javaagent: true, javaagent_target_versions: ["Java 8+"], has_standalone_library: true, diff --git a/ecosystem-explorer/src/types/javaagent.ts b/ecosystem-explorer/src/types/javaagent.ts index b115b5d2..e1d75cae 100644 --- a/ecosystem-explorer/src/types/javaagent.ts +++ b/ecosystem-explorer/src/types/javaagent.ts @@ -46,8 +46,6 @@ export interface InstrumentationData { source_path?: string; /** Minimum Java version required by this instrumentation. */ minimum_java_version?: number; - /** Searchable tags associated with this instrumentation. */ - tags?: string[]; /** List of semantic conventions followed by this instrumentation. */ semantic_conventions?: string[]; /** List of telemetry features provided (e.g., TRACING, METRICS). */