Skip to content

Commit 56587ff

Browse files
chore(javaagent): remove unused tags field (#412)
1 parent 6040dfc commit 56587ff

3 files changed

Lines changed: 0 additions & 11 deletions

File tree

ecosystem-explorer/public/schemas/javaagent-instrumentation.schema.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,6 @@
3030
"description": "Minimum Java version required by this instrumentation.",
3131
"type": "number"
3232
},
33-
"tags": {
34-
"description": "Searchable tags associated with this instrumentation.",
35-
"type": "array",
36-
"items": {
37-
"type": "string"
38-
}
39-
},
4033
"semantic_conventions": {
4134
"description": "List of semantic conventions followed by this instrumentation.",
4235
"type": "array",
@@ -277,7 +270,6 @@
277270
"library_link",
278271
"source_path",
279272
"minimum_java_version",
280-
"tags",
281273
"semantic_conventions",
282274
"features",
283275
"scope",

ecosystem-explorer/src/features/java-agent/utils/group-instrumentations.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ describe("groupInstrumentationsByDisplayName", () => {
167167
display_name: "Apache Kafka Client",
168168
description: "Kafka instrumentation",
169169
scope: { name: "io.opentelemetry.kafka-clients-0.11" },
170-
tags: ["kafka"],
171170
has_javaagent: true,
172171
javaagent_target_versions: ["Java 8+"],
173172
has_standalone_library: true,

ecosystem-explorer/src/types/javaagent.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ export interface InstrumentationData {
4646
source_path?: string;
4747
/** Minimum Java version required by this instrumentation. */
4848
minimum_java_version?: number;
49-
/** Searchable tags associated with this instrumentation. */
50-
tags?: string[];
5149
/** List of semantic conventions followed by this instrumentation. */
5250
semantic_conventions?: string[];
5351
/** List of telemetry features provided (e.g., TRACING, METRICS). */

0 commit comments

Comments
 (0)