Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -277,7 +270,6 @@
"library_link",
"source_path",
"minimum_java_version",
"tags",
"semantic_conventions",
"features",
"scope",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 0 additions & 2 deletions ecosystem-explorer/src/types/javaagent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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). */
Expand Down
Loading