diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index d480475e..c7795991 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -8,6 +8,8 @@ ignores: - "**/tmp_repos/**" - "**/node_modules/**" - ".claude/**" + - "ecosystem-explorer/public/data/**" + - "ecosystem-explorer/dist/**" config: default: true diff --git a/SEMCONV_INTEGRATION_DETAIL.md b/SEMCONV_INTEGRATION_DETAIL.md new file mode 100644 index 00000000..0b9229a9 --- /dev/null +++ b/SEMCONV_INTEGRATION_DETAIL.md @@ -0,0 +1,100 @@ +# Technical Detail: Semantic Convention Integration (Issue #97) + +This document provides a technical deep-dive into the implementation of the Semantic Convention +compliance pipeline in the `explorer-db-builder`. + +## 1. Architectural Overview + +The integration follows a "sidecar" enrichment pattern. Instead of modifying the core data +structures, we introduce a `SemconvEnricher` that evaluates telemetry metadata against +standard OTel registries using the **OpenTelemetry Weaver** engine. + +### Data Flow + +1. **Extraction**: Retrieve metrics and spans from the normalized `InstrumentationData`. +2. **Translation**: Map OTel signals to a Weaver-compatible "Application Registry". +3. **Evaluation**: Execute `weaver registry check` against a specific semconv version. +4. **Annotation**: Persist compliance status back to the telemetry metadata. + +## 2. Component: `SemconvEnricher` + +**Location**: `explorer_db_builder/semconv_enricher.py` + +This is the primary orchestrator for compliance checking. + +### Transformation Logic + +The enricher generates a temporary directory containing: + +- **`manifest.yaml`**: Defines the instrumentation name and the dependency on the official + OTel semantic convention registry (e.g., `github.com/open-telemetry/semantic-conventions@v1.37.0`). +- **`telemetry.yaml`**: Translates internal metadata into Weaver's definition format. + - **Metrics**: Defined with `type: metric` and attributes using the `ref` keyword to ensure + Weaver validates them against the registry's definitions. + - **Spans**: Defined with `type: span`, using synthetic IDs based on the instrumentation + name and span kind (e.g., `activej-http.SERVER`). + +### Weaver Invocation + +The enricher calls the `weaver` CLI via a subprocess. + +- **Success Condition**: If `weaver registry check` exits with code 0, all signals defined in + the registry are considered compliant. +- **Error Handling**: If errors are reported (return code 1), the enricher parses the `stderr` + output to identify specific signals that failed validation and marks them accordingly. + +## 3. Pipeline Integration + +**Location**: `explorer_db_builder/main.py` + +The enrichment stage is integrated into `process_version` immediately after the +`transform_instrumentation_format` call. + +```python +transformed_inventory = transform_instrumentation_format(inventory) + +# Enrich with semantic convention compliance +try: + enricher = SemconvEnricher() + enricher.enrich_inventory(transformed_inventory) +except Exception as e: + logger.warning(f"Semantic convention enrichment failed: {e}") +``` + +This placement ensures that: + +- Enrichment works on normalized, clean data. +- The pipeline remains resilient (a Weaver failure does not crash the build). + +## 4. Frontend & Metadata Schema + +**Location**: `ecosystem-explorer/src/types/javaagent.ts` + +The compliance status is persisted as a `semconv_compliance` array on individual telemetry signals: + +```json +{ + "name": "http.server.request.duration", + "unit": "s", + "semconv_compliance": ["1.37.0"] +} +``` + +This structure is extensible, allowing an instrumentation to be marked as compliant with multiple +semantic convention versions over time. + +## 5. Verification & Testing + +**Location**: `tests/test_semconv_enricher.py` + +A dedicated test suite validates the following: + +- **YAML Generation**: Ensures the generated `manifest.yaml` and `telemetry.yaml` are valid and + follow Weaver's specification. +- **Version Extraction**: Tests the regex-based extraction of versions from OTel schema URLs. +- **Mocked CLI Interactions**: Simulates various Weaver output scenarios (total success, partial + failure, and system errors) to verify that the metadata is updated correctly. + +--- +**Branch**: `feat/97-semconv-integration` +**PR Title**: `feat(db-builder): integrate Weaver for semconv compliance checking (#97)` diff --git a/ecosystem-automation/collector-watcher/src/collector_watcher/__init__.py b/ecosystem-automation/collector-watcher/src/collector_watcher/__init__.py index d248de14..023cc46b 100644 --- a/ecosystem-automation/collector-watcher/src/collector_watcher/__init__.py +++ b/ecosystem-automation/collector-watcher/src/collector_watcher/__init__.py @@ -16,4 +16,7 @@ import importlib.metadata -__version__ = importlib.metadata.version("collector-watcher") +try: + __version__ = importlib.metadata.version("collector-watcher") +except importlib.metadata.PackageNotFoundError: + __version__ = "0.0.0-dev" diff --git a/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/__init__.py b/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/__init__.py index ecc22fab..052d3b02 100644 --- a/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/__init__.py +++ b/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/__init__.py @@ -16,4 +16,7 @@ import importlib.metadata -__version__ = importlib.metadata.version("explorer-db-builder") +try: + __version__ = importlib.metadata.version("explorer-db-builder") +except importlib.metadata.PackageNotFoundError: + __version__ = "0.0.0-dev" diff --git a/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/database_writer.py b/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/database_writer.py index ed58cfe6..fdd55c13 100644 --- a/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/database_writer.py +++ b/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/database_writer.py @@ -16,6 +16,7 @@ import json import logging +import re import shutil from pathlib import Path from typing import Any @@ -203,6 +204,35 @@ def write_version_list(self, versions: list[Version]) -> None: logger.error(f"Failed to write version list: {e}") raise + def write_markdown(self, library_name: str, markdown_hash: str, content: str) -> None: + """Write markdown file to the database. + + Args: + library_name: Name of the library + markdown_hash: Hash of the markdown content + content: Markdown content string + """ + # Sanitize library name to prevent path traversal + safe_name = re.sub(r"[^a-zA-Z0-9_\-]", "_", library_name) + markdown_dir = self.database_dir / "markdown" + markdown_dir.mkdir(parents=True, exist_ok=True) + file_path = markdown_dir / f"{safe_name}-{markdown_hash}.md" + + if file_path.exists(): + logger.debug(f"Markdown for '{library_name}' with hash {markdown_hash} already exists, skipping write") + return + + try: + with open(file_path, "w", encoding="utf-8") as f: + f.write(content) + file_size = len(content.encode("utf-8")) + self.files_written += 1 + self.total_bytes += file_size + logger.debug(f"Wrote markdown for '{library_name}' with hash {markdown_hash}") + except OSError as e: + logger.error(f"Failed to write markdown for '{library_name}': {e}") + # README publishing failures must never fail DB generation as per requirements + def get_stats(self) -> dict[str, Any]: """Get statistics about files written during this session. diff --git a/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/main.py b/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/main.py index c092b314..c542103c 100644 --- a/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/main.py +++ b/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/main.py @@ -27,6 +27,7 @@ from explorer_db_builder.database_writer import DatabaseWriter from explorer_db_builder.instrumentation_transformer import transform_instrumentation_format from explorer_db_builder.metadata_backfiller import backfill_metadata +from explorer_db_builder.semconv_enricher import SemconvEnricher logger = logging.getLogger(__name__) @@ -97,6 +98,13 @@ def process_version( transformed_inventory = transform_instrumentation_format(inventory) + # Enrich with semantic convention compliance + try: + enricher = SemconvEnricher() + enricher.enrich_inventory(transformed_inventory) + except Exception as e: + logger.warning(f"Semantic convention enrichment failed for version {version}: {e}") + if "libraries" not in transformed_inventory and "custom" not in transformed_inventory: raise KeyError(f"Inventory for version {version} missing 'libraries' and 'custom' keys") @@ -139,9 +147,33 @@ def run_javaagent_builder( versions = get_release_versions(inventory_manager) logger.info(f"Processing {len(versions)} release versions") + # Pre-load README maps for all versions to enable augmentation and backfilling + readme_maps = {v: inventory_manager.load_library_readme_map(v) for v in versions} + + # Publish all READMEs to the database + for version, readme_map in readme_maps.items(): + for library_name, markdown_hash in readme_map.items(): + content = inventory_manager.load_library_readme_content(version, library_name, markdown_hash) + if content: + db_writer.write_markdown(library_name, markdown_hash, content) + + def load_and_augment_inventory(version: Version) -> dict: + inventory = inventory_manager.load_versioned_inventory(version) + readme_map = readme_maps.get(version, {}) + + # Augment libraries and custom instrumentations with markdown_hash + for key in ["libraries", "custom"]: + if key in inventory: + for item in inventory[key]: + name = item.get("name") + if name and name in readme_map: + item["markdown_hash"] = readme_map[name] + + return inventory + backfilled_libraries = backfill_metadata( versions, - inventory_manager.load_versioned_inventory, + load_and_augment_inventory, item_key="libraries", ) backfilled_inventories = backfill_metadata( diff --git a/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/metadata_backfiller.py b/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/metadata_backfiller.py index 5dba637f..51027b1f 100644 --- a/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/metadata_backfiller.py +++ b/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/metadata_backfiller.py @@ -22,7 +22,7 @@ logger = logging.getLogger(__name__) -BACKFILLABLE_FIELDS = ["display_name", "description", "library_link", "has_javaagent"] +BACKFILLABLE_FIELDS = ["display_name", "description", "library_link", "has_javaagent", "markdown_hash"] NESTED_BACKFILLABLE_FIELDS: dict[str, list[str]] = { "configurations": ["declarative_name", "examples"], } diff --git a/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/semconv_enricher.py b/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/semconv_enricher.py new file mode 100644 index 00000000..92b87313 --- /dev/null +++ b/ecosystem-automation/explorer-db-builder/src/explorer_db_builder/semconv_enricher.py @@ -0,0 +1,217 @@ +# Copyright The OpenTelemetry Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +"""Enriches instrumentation metadata with Semantic Convention compliance information.""" + +import logging +import os +import re +import subprocess +import tempfile +from typing import Any, Dict, Optional + +import yaml + +logger = logging.getLogger(__name__) + + +class SemconvEnricher: + """Enriches instrumentation metadata with Semantic Convention compliance information using Weaver.""" + + def __init__(self, weaver_path: str = "weaver"): + """ + Args: + weaver_path: Path to the weaver executable. + """ + self.weaver_path = weaver_path + + def enrich_inventory(self, inventory_data: Dict[str, Any]) -> None: + """Enriches an entire inventory (libraries and custom instrumentations). + + Args: + inventory_data: Transformed inventory data. + """ + for key in ["libraries", "custom"]: + if key in inventory_data and inventory_data[key]: + for instrumentation in inventory_data[key]: + self.enrich_instrumentation(instrumentation) + + def enrich_instrumentation(self, instrumentation: Dict[str, Any]) -> None: + """Enriches a single instrumentation with semconv compliance metadata. + + Args: + instrumentation: Instrumentation data dictionary. + """ + telemetry_entries = instrumentation.get("telemetry", []) + if not telemetry_entries: + return + + # POC: For now, we only support a single semconv version per instrumentation based on its schema_url + schema_url = instrumentation.get("scope", {}).get("schema_url", "") + version = self._extract_version(schema_url) or "1.37.0" + + # Create temporary registry for Weaver + with tempfile.TemporaryDirectory() as temp_dir: + self._prepare_weaver_registry(temp_dir, instrumentation, version) + + # Run Weaver and parse results + try: + compliance_results = self._run_weaver_check(temp_dir) + self._apply_compliance_metadata(instrumentation, compliance_results, version) + except Exception as e: + logger.warning(f"Failed to run semconv compliance check for {instrumentation.get('name')}: {e}") + + def _extract_version(self, schema_url: str) -> Optional[str]: + """Extracts the version from an OpenTelemetry schema URL.""" + if not schema_url: + return None + # Format: https://opentelemetry.io/schemas/1.37.0 + match = re.search(r"/schemas/(\d+\.\d+\.\d+)", schema_url) + return match.group(1) if match else None + + def _prepare_weaver_registry(self, registry_dir: str, instrumentation: Dict[str, Any], version: str) -> None: + """Prepares a Weaver-compatible registry directory. + + Args: + registry_dir: Temporary directory to create the registry in. + instrumentation: Instrumentation data. + version: Semantic Convention version to check against. + """ + # manifest.yaml + manifest = { + "name": instrumentation.get("name", "check"), + "schema_url": instrumentation.get("scope", {}).get( + "schema_url", f"https://opentelemetry.io/schemas/{version}" + ), + "dependencies": [ + { + "name": "otel", + "registry_path": f"https://github.com/open-telemetry/semantic-conventions@v{version}", + } + ], + } + with open(os.path.join(registry_dir, "manifest.yaml"), "w") as f: + yaml.dump(manifest, f) + + # telemetry.yaml + groups = [] + telemetry_entries = instrumentation.get("telemetry", []) + for entry in telemetry_entries: + # Metrics + for metric in entry.get("metrics", []): + metric_name = metric.get("name") + group = { + "id": metric_name, + "type": "metric", + "attributes": [{"ref": attr.get("name")} for attr in metric.get("attributes", [])], + "metrics": [ + { + "name": metric_name, + "brief": metric.get("description", "POC metric"), + "instrument": metric.get("instrument", "histogram"), + "unit": metric.get("unit", "s"), + } + ], + } + groups.append(group) + + # Spans + for span in entry.get("spans", []): + # Use a synthetic ID for the span group if name is missing + span_id = f"{instrumentation.get('name')}.{span.get('span_kind', 'unknown')}" + group = { + "id": span_id, + "type": "span", + "brief": "POC span", + "span_kind": span.get("span_kind", "SERVER").lower(), + "attributes": [{"ref": attr.get("name")} for attr in span.get("attributes", [])], + } + groups.append(group) + + if groups: + telemetry_data = {"file_format": "definition/2", "groups": groups} + with open(os.path.join(registry_dir, "telemetry.yaml"), "w") as f: + yaml.dump(telemetry_data, f) + + def _run_weaver_check(self, registry_dir: str) -> Dict[str, bool]: + """Runs weaver registry check and returns a map of signal ID to compliance status. + + Args: + registry_dir: Path to the Weaver registry. + + Returns: + Dict mapping signal IDs to a boolean (True if compliant). + """ + # In a real environment, this would call 'weaver registry check -r ' + # For this POC, we'll implement the subprocess call and handle the output. + # If weaver is not found, it will raise an exception which is caught in enrich_instrumentation. + + cmd = [self.weaver_path, "registry", "check", "-r", registry_dir] + try: + result = subprocess.run(cmd, capture_output=True, text=True, timeout=60) + except subprocess.TimeoutExpired: + logger.warning( + f"Weaver registry check timed out after 60 seconds for {registry_dir}; " + "skipping semconv enrichment for this instrumentation." + ) + return {} + + compliance_map = {} + + # Initially assume all are compliant if Weaver succeeded + # We need to know which signals we defined to populate the map. + # We'll read them back from the generated yaml. + try: + with open(os.path.join(registry_dir, "telemetry.yaml")) as f: + telemetry_data = yaml.safe_load(f) + for group in telemetry_data.get("groups", []): + compliance_map[group["id"]] = result.returncode == 0 + except Exception as e: + logger.error(f"Failed to read telemetry.yaml from {registry_dir}: {e}") + return {} + + if result.returncode != 0: + # Parse errors to mark specific signals as non-compliant + # Example error line: [Error] groups[0].attributes[1]: attribute 'foo' not found in registry + # This is complex to parse robustly without a stable Weaver output format. + # For the POC, if Weaver fails, we mark everything as non-compliant or log it. + logger.debug(f"Weaver reported errors (exit code {result.returncode}):\n{result.stderr}") + + # Simple heuristic: if an ID appears in an error line, mark it as non-compliant + for signal_id in compliance_map.keys(): + if signal_id in result.stderr: + compliance_map[signal_id] = False + + return compliance_map + + def _apply_compliance_metadata( + self, instrumentation: Dict[str, Any], results: Dict[str, bool], version: str + ) -> None: + """Applies compliance results back to the instrumentation data. + + Args: + instrumentation: The instrumentation dict to modify. + results: Map of signal ID to compliance status. + version: The semconv version checked. + """ + telemetry_entries = instrumentation.get("telemetry", []) + for entry in telemetry_entries: + for metric in entry.get("metrics", []): + if results.get(metric.get("name"), False): + metric.setdefault("semconv_compliance", []).append(version) + + for span in entry.get("spans", []): + span_id = f"{instrumentation.get('name')}.{span.get('span_kind', 'unknown')}" + if results.get(span_id, False): + span.setdefault("semconv_compliance", []).append(version) diff --git a/ecosystem-automation/explorer-db-builder/tests/test_database_writer.py b/ecosystem-automation/explorer-db-builder/tests/test_database_writer.py index fa879541..a4889ae3 100644 --- a/ecosystem-automation/explorer-db-builder/tests/test_database_writer.py +++ b/ecosystem-automation/explorer-db-builder/tests/test_database_writer.py @@ -440,3 +440,40 @@ def test_multiple_versions_workflow(self, db_writer, temp_db_dir): # Verify structure assert (temp_db_dir / "versions" / "1.0.0-index.json").exists() assert (temp_db_dir / "versions" / "2.0.0-index.json").exists() + + +class TestWriteMarkdown: + def test_write_markdown_success(self, db_writer, temp_db_dir): + content = "# Test Markdown" + db_writer.write_markdown("test-lib", "hash123", content) + + expected_path = temp_db_dir / "markdown" / "test-lib-hash123.md" + assert expected_path.exists() + assert expected_path.read_text(encoding="utf-8") == content + + def test_write_markdown_sanitization(self, db_writer, temp_db_dir): + content = "content" + # Test path traversal attempt in library name + db_writer.write_markdown("../invalid/path", "hash", content) + + # Should be sanitized to ___invalid_path-hash.md + # re.sub(r"[^a-zA-Z0-9_\-]", "_", "../invalid/path") -> "___invalid_path" + expected_path = temp_db_dir / "markdown" / "___invalid_path-hash.md" + assert expected_path.exists() + assert not (temp_db_dir / "invalid").exists() + + def test_write_markdown_skip_existing(self, db_writer, temp_db_dir, caplog): + import logging + + caplog.set_level(logging.DEBUG) + + content = "content" + db_writer.write_markdown("lib", "hash", content) + caplog.clear() + + # Write again + db_writer.write_markdown("lib", "hash", "new content") + + # Should skip and NOT overwrite + assert "already exists" in caplog.text + assert (temp_db_dir / "markdown" / "lib-hash.md").read_text(encoding="utf-8") == content diff --git a/ecosystem-automation/explorer-db-builder/tests/test_main.py b/ecosystem-automation/explorer-db-builder/tests/test_main.py index 8bc8794c..27d57762 100644 --- a/ecosystem-automation/explorer-db-builder/tests/test_main.py +++ b/ecosystem-automation/explorer-db-builder/tests/test_main.py @@ -292,6 +292,29 @@ def test_run_builder_clean_before_processing(self, mock_inventory_manager, mock_ assert call_order[0] == "clean" assert call_order[1] == "list_versions" + def test_run_builder_processes_readmes(self, mock_inventory_manager, mock_db_writer): + versions = [Version("1.0.0")] + readme_map = {"lib1": "hash123"} + readme_content = "# README content" + inventory_data = {"file_format": 0.2, "libraries": [{"name": "lib1"}]} + + mock_inventory_manager.list_versions.return_value = versions + mock_inventory_manager.load_library_readme_map.return_value = readme_map + mock_inventory_manager.load_library_readme_content.return_value = readme_content + mock_inventory_manager.load_versioned_inventory.return_value = inventory_data + mock_db_writer.write_libraries.return_value = {"lib1": "jsonhash"} + + exit_code = run_javaagent_builder(mock_inventory_manager, mock_db_writer) + + assert exit_code == 0 + # Verify README was published + mock_db_writer.write_markdown.assert_called_once_with("lib1", "hash123", readme_content) + + # Verify inventory was augmented with markdown_hash before writing + write_calls = mock_db_writer.write_libraries.call_args_list + augmented_libs = write_calls[0][0][0] + assert augmented_libs[0]["markdown_hash"] == "hash123" + class TestMain: @patch("explorer_db_builder.main.run_builder") diff --git a/ecosystem-automation/explorer-db-builder/tests/test_semconv_enricher.py b/ecosystem-automation/explorer-db-builder/tests/test_semconv_enricher.py new file mode 100644 index 00000000..292fc505 --- /dev/null +++ b/ecosystem-automation/explorer-db-builder/tests/test_semconv_enricher.py @@ -0,0 +1,129 @@ +# Copyright The OpenTelemetry Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +import os +import unittest +from unittest.mock import MagicMock, patch + +import yaml +from explorer_db_builder.semconv_enricher import SemconvEnricher + + +class TestSemconvEnricher(unittest.TestCase): + def setUp(self): + self.enricher = SemconvEnricher() + self.sample_instrumentation = { + "name": "test-lib", + "scope": {"schema_url": "https://opentelemetry.io/schemas/1.37.0"}, + "telemetry": [ + { + "metrics": [ + { + "name": "http.server.request.duration", + "attributes": [{"name": "http.request.method"}], + } + ], + "spans": [ + { + "span_kind": "SERVER", + "attributes": [{"name": "http.request.method"}], + } + ], + } + ], + } + + def test_extract_version(self): + self.assertEqual(self.enricher._extract_version("https://opentelemetry.io/schemas/1.37.0"), "1.37.0") + self.assertEqual(self.enricher._extract_version("invalid-url"), None) + self.assertEqual(self.enricher._extract_version(""), None) + + def test_prepare_weaver_registry(self): + import tempfile + + with tempfile.TemporaryDirectory() as temp_dir: + self.enricher._prepare_weaver_registry(temp_dir, self.sample_instrumentation, "1.37.0") + + # Check manifest.yaml + with open(os.path.join(temp_dir, "manifest.yaml")) as f: + manifest = yaml.safe_load(f) + self.assertEqual(manifest["name"], "test-lib") + self.assertEqual(manifest["dependencies"][0]["name"], "otel") + self.assertIn("v1.37.0", manifest["dependencies"][0]["registry_path"]) + + # Check telemetry.yaml + with open(os.path.join(temp_dir, "telemetry.yaml")) as f: + telemetry = yaml.safe_load(f) + self.assertEqual(telemetry["file_format"], "definition/2") + groups = telemetry["groups"] + self.assertEqual(len(groups), 2) + + # Metric group + metric_group = next(g for g in groups if g["type"] == "metric") + self.assertEqual(metric_group["id"], "http.server.request.duration") + self.assertEqual(metric_group["metrics"][0]["name"], "http.server.request.duration") + self.assertEqual(metric_group["attributes"][0]["ref"], "http.request.method") + + # Span group + span_group = next(g for g in groups if g["type"] == "span") + self.assertEqual(span_group["id"], "test-lib.SERVER") + self.assertEqual(span_group["span_kind"], "server") + self.assertEqual(span_group["attributes"][0]["ref"], "http.request.method") + + @patch("subprocess.run") + def test_run_weaver_check_success(self, mock_run): + mock_run.return_value = MagicMock(returncode=0, stderr="") + + import tempfile + + with tempfile.TemporaryDirectory() as temp_dir: + self.enricher._prepare_weaver_registry(temp_dir, self.sample_instrumentation, "1.37.0") + results = self.enricher._run_weaver_check(temp_dir) + + self.assertTrue(results["http.server.request.duration"]) + self.assertTrue(results["test-lib.SERVER"]) + + @patch("subprocess.run") + def test_run_weaver_check_failure(self, mock_run): + # Simulate an error for the metric but not the span (simplified parser check) + mock_run.return_value = MagicMock( + returncode=1, + stderr="[Error] signals/telemetry.yaml: http.server.request.duration attribute 'foo' not found", + ) + + import tempfile + + with tempfile.TemporaryDirectory() as temp_dir: + self.enricher._prepare_weaver_registry(temp_dir, self.sample_instrumentation, "1.37.0") + results = self.enricher._run_weaver_check(temp_dir) + + self.assertFalse(results["http.server.request.duration"]) + self.assertFalse(results["test-lib.SERVER"]) + + @patch.object(SemconvEnricher, "_run_weaver_check") + def test_enrich_instrumentation(self, mock_check): + mock_check.return_value = {"http.server.request.duration": True, "test-lib.SERVER": False} + + self.enricher.enrich_instrumentation(self.sample_instrumentation) + + metric = self.sample_instrumentation["telemetry"][0]["metrics"][0] + self.assertEqual(metric["semconv_compliance"], ["1.37.0"]) + + span = self.sample_instrumentation["telemetry"][0]["spans"][0] + self.assertNotIn("semconv_compliance", span) + + def test_enrich_instrumentation_no_telemetry(self): + instrumentation = {"name": "empty"} + self.enricher.enrich_instrumentation(instrumentation) + self.assertEqual(instrumentation, {"name": "empty"}) diff --git a/ecosystem-automation/java-instrumentation-watcher/src/java_instrumentation_watcher/__init__.py b/ecosystem-automation/java-instrumentation-watcher/src/java_instrumentation_watcher/__init__.py index 07daaff6..381a903a 100644 --- a/ecosystem-automation/java-instrumentation-watcher/src/java_instrumentation_watcher/__init__.py +++ b/ecosystem-automation/java-instrumentation-watcher/src/java_instrumentation_watcher/__init__.py @@ -16,4 +16,7 @@ import importlib.metadata -__version__ = importlib.metadata.version("java-instrumentation-watcher") +try: + __version__ = importlib.metadata.version("java-instrumentation-watcher") +except importlib.metadata.PackageNotFoundError: + __version__ = "0.0.0-dev" diff --git a/ecosystem-automation/java-instrumentation-watcher/src/java_instrumentation_watcher/inventory_manager.py b/ecosystem-automation/java-instrumentation-watcher/src/java_instrumentation_watcher/inventory_manager.py index 06d110f0..213fcfbd 100644 --- a/ecosystem-automation/java-instrumentation-watcher/src/java_instrumentation_watcher/inventory_manager.py +++ b/ecosystem-automation/java-instrumentation-watcher/src/java_instrumentation_watcher/inventory_manager.py @@ -14,6 +14,8 @@ # """Inventory management for Java instrumentation tracking.""" +import logging +import re from collections.abc import Iterable from typing import Any @@ -107,9 +109,72 @@ def save_library_readmes( written = 0 for name, content in readmes: digest = compute_content_hash(content) - file_path = target_dir / f"{name}-{digest}.md" + # Sanitize name to prevent path traversal + safe_name = re.sub(r"[^a-zA-Z0-9_\-]", "_", name) + file_path = target_dir / f"{safe_name}-{digest}.md" if file_path.exists(): continue file_path.write_text(content, encoding="utf-8") written += 1 return written + + def load_library_readme_map(self, version: Version) -> dict[str, str]: + """ + Scan library_readmes/ and build a map of library_name -> markdown_hash. + + Args: + version: Version to scan + + Returns: + Dictionary mapping library names to their markdown content hashes + """ + readme_dir = self.get_version_dir(version) / self.README_DIR + if not readme_dir.exists(): + return {} + + readme_map = {} + for item in readme_dir.iterdir(): + if item.is_file() and item.suffix == ".md": + parsed = self._parse_readme_filename(item.name) + if parsed: + library_name, markdown_hash = parsed + readme_map[library_name] = markdown_hash + else: + logging.getLogger(__name__).warning(f"Malformed README filename in {version}: {item.name}") + + return readme_map + + def load_library_readme_content(self, version: Version, library_name: str, markdown_hash: str) -> str | None: + """ + Load the content of a specific library README. + + Args: + version: Version to load from + library_name: Name of the library + markdown_hash: Content hash of the markdown + + Returns: + The markdown content, or None if it doesn't exist or cannot be read + """ + # Sanitize name and hash to prevent path traversal + safe_name = re.sub(r"[^a-zA-Z0-9_\-]", "_", library_name) + safe_hash = re.sub(r"[^a-f0-9]", "", markdown_hash) + file_path = self.get_version_dir(version) / self.README_DIR / f"{safe_name}-{safe_hash}.md" + if not file_path.exists(): + return None + + try: + return file_path.read_text(encoding="utf-8") + except OSError: + logging.getLogger(__name__).error(f"Failed to read README file: {file_path}") + return None + + def _parse_readme_filename(self, filename: str) -> tuple[str, str] | None: + """ + Parse a README filename into (library_name, markdown_hash). + Format: {library-name}-{hash}.md + """ + match = re.match(r"^(.*)-([a-f0-9]+)\.md$", filename) + if match: + return match.group(1), match.group(2) + return None diff --git a/ecosystem-automation/java-instrumentation-watcher/tests/test_inventory_manager.py b/ecosystem-automation/java-instrumentation-watcher/tests/test_inventory_manager.py index 5ae8395c..633ce160 100644 --- a/ecosystem-automation/java-instrumentation-watcher/tests/test_inventory_manager.py +++ b/ecosystem-automation/java-instrumentation-watcher/tests/test_inventory_manager.py @@ -276,7 +276,8 @@ def test_save_library_readmes_filename_format(self, inventory_manager): inventory_manager.save_library_readmes(version, [("mylib-1.0", content)]) readme_dir = inventory_manager.get_version_dir(version) / "library_readmes" - expected_file = readme_dir / f"mylib-1.0-{expected_hash}.md" + # "." is replaced with "_" by sanitization + expected_file = readme_dir / f"mylib-1_0-{expected_hash}.md" assert expected_file.exists() assert expected_file.read_text(encoding="utf-8") == content diff --git a/ecosystem-explorer/public/data/collector/components/contrib-ackextension/contrib-ackextension-a09872ca22ec.json b/ecosystem-explorer/public/data/collector/components/contrib-ackextension/contrib-ackextension-a09872ca22ec.json index 7916c224..9faaee66 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-ackextension/contrib-ackextension-a09872ca22ec.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-ackextension/contrib-ackextension-a09872ca22ec.json @@ -9,22 +9,13 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "splunkericl" - ], - "emeritus": [ - "zpzhuSplunk" - ] + "active": ["splunkericl"], + "emeritus": ["zpzhuSplunk"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-activedirectorydsreceiver/contrib-activedirectorydsreceiver-b024f2e8abfc.json b/ecosystem-explorer/public/data/collector/components/contrib-activedirectorydsreceiver/contrib-activedirectorydsreceiver-b024f2e8abfc.json index 19216c0e..b2c2bf46 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-activedirectorydsreceiver/contrib-activedirectorydsreceiver-b024f2e8abfc.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-activedirectorydsreceiver/contrib-activedirectorydsreceiver-b024f2e8abfc.json @@ -2,65 +2,42 @@ "attributes": { "bind_type": { "description": "The type of bind to the domain server.", - "enum": [ - "client", - "server" - ], + "enum": ["client", "server"], "name_override": "type", "type": "string" }, "direction": { "description": "The direction of data flow.", - "enum": [ - "received", - "sent" - ], + "enum": ["received", "sent"], "type": "string" }, "network_data_type": { "description": "The type of network data sent.", - "enum": [ - "compressed", - "uncompressed" - ], + "enum": ["compressed", "uncompressed"], "name_override": "type", "type": "string" }, "operation_type": { "description": "The type of operation.", - "enum": [ - "read", - "search", - "write" - ], + "enum": ["read", "search", "write"], "name_override": "type", "type": "string" }, "suboperation_type": { "description": "The type of suboperation.", - "enum": [ - "search", - "security_descriptor_propagations_event" - ], + "enum": ["search", "security_descriptor_propagations_event"], "name_override": "type", "type": "string" }, "sync_result": { "description": "The result status of the sync request.", - "enum": [ - "other", - "schema_mismatch", - "success" - ], + "enum": ["other", "schema_mismatch", "success"], "name_override": "result", "type": "string" }, "value_type": { "description": "The type of value sent.", - "enum": [ - "distinguished_names", - "other" - ], + "enum": ["distinguished_names", "other"], "name_override": "type", "type": "string" } @@ -72,9 +49,7 @@ "id": "contrib-activedirectorydsreceiver", "metrics": { "active_directory.ds.bind.rate": { - "attributes": [ - "bind_type" - ], + "attributes": ["bind_type"], "description": "The number of binds per second serviced by this domain controller.", "enabled": true, "stability": "development", @@ -148,9 +123,7 @@ "unit": "{notifications}" }, "active_directory.ds.operation.rate": { - "attributes": [ - "operation_type" - ], + "attributes": ["operation_type"], "description": "The number of operations performed per second.", "enabled": true, "stability": "development", @@ -162,10 +135,7 @@ "unit": "{operations}/s" }, "active_directory.ds.replication.network.io": { - "attributes": [ - "direction", - "network_data_type" - ], + "attributes": ["direction", "network_data_type"], "description": "The amount of network data transmitted by the Directory Replication Agent.", "enabled": true, "stability": "development", @@ -177,9 +147,7 @@ "unit": "By" }, "active_directory.ds.replication.object.rate": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "The number of objects transmitted by the Directory Replication Agent per second.", "enabled": true, "stability": "development", @@ -202,9 +170,7 @@ "unit": "{operations}" }, "active_directory.ds.replication.property.rate": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "The number of properties transmitted by the Directory Replication Agent per second.", "enabled": true, "stability": "development", @@ -227,9 +193,7 @@ "unit": "{objects}" }, "active_directory.ds.replication.sync.request.count": { - "attributes": [ - "sync_result" - ], + "attributes": ["sync_result"], "description": "The number of sync requests made by the Directory Replication Agent.", "enabled": true, "stability": "development", @@ -241,10 +205,7 @@ "unit": "{requests}" }, "active_directory.ds.replication.value.rate": { - "attributes": [ - "direction", - "value_type" - ], + "attributes": ["direction", "value_type"], "description": "The number of values transmitted by the Directory Replication Agent per second.", "enabled": true, "stability": "development", @@ -267,9 +228,7 @@ "unit": "{events}" }, "active_directory.ds.suboperation.rate": { - "attributes": [ - "suboperation_type" - ], + "attributes": ["suboperation_type"], "description": "The rate of sub-operations performed.", "enabled": true, "stability": "development", @@ -297,23 +256,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "pjanotti" - ], + "active": ["pjanotti"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] }, - "unsupported_platforms": [ - "darwin", - "linux" - ] + "unsupported_platforms": ["darwin", "linux"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-aerospikereceiver/contrib-aerospikereceiver-49067942be17.json b/ecosystem-explorer/public/data/collector/components/contrib-aerospikereceiver/contrib-aerospikereceiver-49067942be17.json index fc88d6b9..d38b504d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-aerospikereceiver/contrib-aerospikereceiver-49067942be17.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-aerospikereceiver/contrib-aerospikereceiver-49067942be17.json @@ -2,51 +2,31 @@ "attributes": { "connection_op": { "description": "Operation performed with a connection (open or close)", - "enum": [ - "close", - "open" - ], + "enum": ["close", "open"], "name_override": "operation", "type": "string" }, "connection_type": { "description": "Type of connection to an Aerospike node", - "enum": [ - "client", - "fabric", - "heartbeat" - ], + "enum": ["client", "fabric", "heartbeat"], "name_override": "type", "type": "string" }, "index_type": { "description": "Type of index the operation was performed on", - "enum": [ - "primary", - "secondary" - ], + "enum": ["primary", "secondary"], "name_override": "index", "type": "string" }, "namespace_component": { "description": "Individual component of a namespace", - "enum": [ - "data", - "index", - "secondary_index", - "set_index" - ], + "enum": ["data", "index", "secondary_index", "set_index"], "name_override": "component", "type": "string" }, "query_result": { "description": "Result of a query operation performed on a namespace", - "enum": [ - "abort", - "complete", - "error", - "timeout" - ], + "enum": ["abort", "complete", "error", "timeout"], "name_override": "result", "type": "string" }, @@ -66,45 +46,25 @@ }, "scan_result": { "description": "Result of a scan operation performed on a namespace", - "enum": [ - "abort", - "complete", - "error" - ], + "enum": ["abort", "complete", "error"], "name_override": "result", "type": "string" }, "scan_type": { "description": "Type of scan operation performed on a namespace", - "enum": [ - "aggregation", - "basic", - "ops_background", - "udf_background" - ], + "enum": ["aggregation", "basic", "ops_background", "udf_background"], "name_override": "type", "type": "string" }, "transaction_result": { "description": "Result of a transaction performed on a namespace", - "enum": [ - "error", - "filtered_out", - "not_found", - "success", - "timeout" - ], + "enum": ["error", "filtered_out", "not_found", "success", "timeout"], "name_override": "result", "type": "string" }, "transaction_type": { "description": "Type of transaction performed on a namespace", - "enum": [ - "delete", - "read", - "udf", - "write" - ], + "enum": ["delete", "read", "udf", "write"], "name_override": "type", "type": "string" } @@ -184,9 +144,7 @@ "unit": "%" }, "aerospike.namespace.memory.usage": { - "attributes": [ - "namespace_component" - ], + "attributes": ["namespace_component"], "description": "Memory currently used by each component of the namespace", "enabled": true, "stability": "development", @@ -199,11 +157,7 @@ "unit": "By" }, "aerospike.namespace.query.count": { - "attributes": [ - "index_type", - "query_result", - "query_type" - ], + "attributes": ["index_type", "query_result", "query_type"], "description": "Number of query operations performed on the namespace", "enabled": true, "stability": "development", @@ -216,10 +170,7 @@ "unit": "{queries}" }, "aerospike.namespace.scan.count": { - "attributes": [ - "scan_result", - "scan_type" - ], + "attributes": ["scan_result", "scan_type"], "description": "Number of scan operations performed on the namespace", "enabled": true, "stability": "development", @@ -232,10 +183,7 @@ "unit": "{scans}" }, "aerospike.namespace.transaction.count": { - "attributes": [ - "transaction_result", - "transaction_type" - ], + "attributes": ["transaction_result", "transaction_type"], "description": "Number of transactions performed on the namespace", "enabled": true, "stability": "development", @@ -248,10 +196,7 @@ "unit": "{transactions}" }, "aerospike.node.connection.count": { - "attributes": [ - "connection_op", - "connection_type" - ], + "attributes": ["connection_op", "connection_type"], "description": "Number of connections opened and closed to the node", "enabled": true, "stability": "development", @@ -264,9 +209,7 @@ "unit": "{connections}" }, "aerospike.node.connection.open": { - "attributes": [ - "connection_type" - ], + "attributes": ["connection_type"], "description": "Current number of open connections to the node", "enabled": true, "stability": "development", @@ -306,19 +249,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "antonblock" - ], + "active": ["antonblock"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-alertmanagerexporter/contrib-alertmanagerexporter-94f11dd35636.json b/ecosystem-explorer/public/data/collector/components/contrib-alertmanagerexporter/contrib-alertmanagerexporter-94f11dd35636.json index dfe46547..a107f33b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-alertmanagerexporter/contrib-alertmanagerexporter-94f11dd35636.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-alertmanagerexporter/contrib-alertmanagerexporter-94f11dd35636.json @@ -9,17 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "sokoide", - "mcube8" - ] + "active": ["sokoide", "mcube8"] }, "distributions": [], "stability": { - "development": [ - "traces" - ] + "development": ["traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-alibabacloudlogserviceexporter/contrib-alibabacloudlogserviceexporter-eb4dbf0dd57f.json b/ecosystem-explorer/public/data/collector/components/contrib-alibabacloudlogserviceexporter/contrib-alibabacloudlogserviceexporter-eb4dbf0dd57f.json index 5efaa00d..93257a5e 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-alibabacloudlogserviceexporter/contrib-alibabacloudlogserviceexporter-eb4dbf0dd57f.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-alibabacloudlogserviceexporter/contrib-alibabacloudlogserviceexporter-eb4dbf0dd57f.json @@ -9,22 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "shabicheng", - "kongluoxing", - "qiansheng91" - ] + "active": ["shabicheng", "kongluoxing", "qiansheng91"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "unmaintained": [ - "logs", - "metrics", - "traces" - ] + "unmaintained": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-apachereceiver/contrib-apachereceiver-87fa5fd5f83e.json b/ecosystem-explorer/public/data/collector/components/contrib-apachereceiver/contrib-apachereceiver-87fa5fd5f83e.json index 056728eb..964ae9de 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-apachereceiver/contrib-apachereceiver-87fa5fd5f83e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-apachereceiver/contrib-apachereceiver-87fa5fd5f83e.json @@ -2,28 +2,18 @@ "attributes": { "connection_state": { "description": "The asynchronous connection state reported by Apache's server-status.", - "enum": [ - "closing", - "keepalive", - "writing" - ], + "enum": ["closing", "keepalive", "writing"], "type": "string" }, "cpu_level": { "description": "Level of processes.", - "enum": [ - "children", - "self" - ], + "enum": ["children", "self"], "name_override": "level", "type": "string" }, "cpu_mode": { "description": "Mode of processes.", - "enum": [ - "system", - "user" - ], + "enum": ["system", "user"], "name_override": "mode", "type": "string" }, @@ -48,10 +38,7 @@ }, "workers_state": { "description": "The state of workers.", - "enum": [ - "busy", - "idle" - ], + "enum": ["busy", "idle"], "name_override": "state", "type": "string" } @@ -63,9 +50,7 @@ "id": "contrib-apachereceiver", "metrics": { "apache.connections.async": { - "attributes": [ - "connection_state" - ], + "attributes": ["connection_state"], "description": "The number of connections in different asynchronous states reported by Apache's server-status.", "enabled": true, "gauge": { @@ -87,10 +72,7 @@ "unit": "%" }, "apache.cpu.time": { - "attributes": [ - "cpu_level", - "cpu_mode" - ], + "attributes": ["cpu_level", "cpu_mode"], "description": "Jiffs used by processes of given category.", "enabled": true, "stability": "development", @@ -175,9 +157,7 @@ "unit": "{requests}" }, "apache.scoreboard": { - "attributes": [ - "scoreboard_state" - ], + "attributes": ["scoreboard_state"], "description": "The number of workers in each state.", "enabled": true, "stability": "development", @@ -214,9 +194,7 @@ "unit": "s" }, "apache.workers": { - "attributes": [ - "workers_state" - ], + "attributes": ["workers_state"], "description": "The number of workers currently attached to the HTTP server.", "enabled": true, "stability": "development", @@ -234,22 +212,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "colelaven", - "ishleenk17" - ], - "emeritus": [ - "djaglowski" - ] + "active": ["colelaven", "ishleenk17"], + "emeritus": ["djaglowski"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-apachesparkreceiver/contrib-apachesparkreceiver-4de9e0ff8970.json b/ecosystem-explorer/public/data/collector/components/contrib-apachesparkreceiver/contrib-apachesparkreceiver-4de9e0ff8970.json index 56278361..f404a6c3 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-apachesparkreceiver/contrib-apachesparkreceiver-4de9e0ff8970.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-apachesparkreceiver/contrib-apachesparkreceiver-4de9e0ff8970.json @@ -2,71 +2,46 @@ "attributes": { "direction": { "description": "Whether the metric is in regards to input or output operations.", - "enum": [ - "in", - "out" - ], + "enum": ["in", "out"], "type": "string" }, "executor_task_result": { "description": "The result of the executor tasks for which the metric was recorded.", - "enum": [ - "completed", - "failed" - ], + "enum": ["completed", "failed"], "name_override": "result", "type": "string" }, "gc_type": { "description": "The type of the garbage collection performed for the metric.", - "enum": [ - "major", - "minor" - ], + "enum": ["major", "minor"], "type": "string" }, "job_result": { "description": "The result of the job stages or tasks for which the metric was recorded.", - "enum": [ - "completed", - "failed", - "skipped" - ], + "enum": ["completed", "failed", "skipped"], "name_override": "result", "type": "string" }, "location": { "description": "The location of the memory for which the metric was recorded..", - "enum": [ - "off_heap", - "on_heap" - ], + "enum": ["off_heap", "on_heap"], "type": "string" }, "pool_memory_type": { "description": "The type of pool memory for which the metric was recorded.", - "enum": [ - "direct", - "mapped" - ], + "enum": ["direct", "mapped"], "name_override": "type", "type": "string" }, "scheduler_status": { "description": "The status of the DAGScheduler stages for which the metric was recorded.", - "enum": [ - "running", - "waiting" - ], + "enum": ["running", "waiting"], "name_override": "status", "type": "string" }, "source": { "description": "The source from which data was fetched for the metric.", - "enum": [ - "local", - "remote" - ], + "enum": ["local", "remote"], "type": "string" }, "stage_active": { @@ -91,20 +66,13 @@ }, "stage_task_result": { "description": "The result of the stage tasks for which the metric was recorded.", - "enum": [ - "completed", - "failed", - "killed" - ], + "enum": ["completed", "failed", "killed"], "name_override": "result", "type": "string" }, "state": { "description": "The state of the memory for which the metric was recorded.", - "enum": [ - "free", - "used" - ], + "enum": ["free", "used"], "type": "string" } }, @@ -127,10 +95,7 @@ "unit": "mb" }, "spark.driver.block_manager.memory.usage": { - "attributes": [ - "location", - "state" - ], + "attributes": ["location", "state"], "description": "Memory usage for the driver's BlockManager.", "enabled": true, "stability": "development", @@ -254,9 +219,7 @@ "unit": "{ job }" }, "spark.driver.dag_scheduler.stage.count": { - "attributes": [ - "scheduler_status" - ], + "attributes": ["scheduler_status"], "description": "Number of stages the DAGScheduler is either running or needs to run.", "enabled": true, "stability": "development", @@ -280,9 +243,7 @@ "unit": "{ stage }" }, "spark.driver.executor.gc.operations": { - "attributes": [ - "gc_type" - ], + "attributes": ["gc_type"], "description": "Number of garbage collection operations performed by the driver.", "enabled": true, "stability": "development", @@ -294,9 +255,7 @@ "unit": "{ gc_operation }" }, "spark.driver.executor.gc.time": { - "attributes": [ - "gc_type" - ], + "attributes": ["gc_type"], "description": "Total elapsed time during garbage collection operations performed by the driver.", "enabled": true, "stability": "development", @@ -308,9 +267,7 @@ "unit": "ms" }, "spark.driver.executor.memory.execution": { - "attributes": [ - "location" - ], + "attributes": ["location"], "description": "Amount of execution memory currently used by the driver.", "enabled": true, "stability": "development", @@ -322,9 +279,7 @@ "unit": "bytes" }, "spark.driver.executor.memory.jvm": { - "attributes": [ - "location" - ], + "attributes": ["location"], "description": "Amount of memory used by the driver's JVM.", "enabled": true, "stability": "development", @@ -336,9 +291,7 @@ "unit": "bytes" }, "spark.driver.executor.memory.pool": { - "attributes": [ - "pool_memory_type" - ], + "attributes": ["pool_memory_type"], "description": "Amount of pool memory currently used by the driver.", "enabled": true, "stability": "development", @@ -350,9 +303,7 @@ "unit": "bytes" }, "spark.driver.executor.memory.storage": { - "attributes": [ - "location" - ], + "attributes": ["location"], "description": "Amount of storage memory currently used by the driver.", "enabled": true, "stability": "development", @@ -530,9 +481,7 @@ "unit": "bytes" }, "spark.executor.shuffle.io.size": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "Amount of data written and read during shuffle operations for this executor.", "enabled": true, "stability": "development", @@ -544,10 +493,7 @@ "unit": "bytes" }, "spark.executor.storage_memory.usage": { - "attributes": [ - "location", - "state" - ], + "attributes": ["location", "state"], "description": "The executor's storage memory usage.", "enabled": true, "stability": "development", @@ -583,9 +529,7 @@ "unit": "{ task }" }, "spark.executor.task.result": { - "attributes": [ - "executor_task_result" - ], + "attributes": ["executor_task_result"], "description": "Number of tasks with a specific result in this executor.", "enabled": true, "stability": "development", @@ -621,9 +565,7 @@ "unit": "{ stage }" }, "spark.job.stage.result": { - "attributes": [ - "job_result" - ], + "attributes": ["job_result"], "description": "Number of stages with a specific result in this job.", "enabled": true, "stability": "development", @@ -647,9 +589,7 @@ "unit": "{ task }" }, "spark.job.task.result": { - "attributes": [ - "job_result" - ], + "attributes": ["job_result"], "description": "Number of tasks with a specific result in this job.", "enabled": true, "stability": "development", @@ -697,9 +637,7 @@ "unit": "ms" }, "spark.stage.io.records": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "Number of records written and read in this stage.", "enabled": true, "stability": "development", @@ -711,9 +649,7 @@ "unit": "{ record }" }, "spark.stage.io.size": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "Amount of data written and read at this stage.", "enabled": true, "stability": "development", @@ -761,9 +697,7 @@ "unit": "bytes" }, "spark.stage.shuffle.blocks_fetched": { - "attributes": [ - "source" - ], + "attributes": ["source"], "description": "Number of blocks fetched in shuffle operations in this stage.", "enabled": true, "stability": "development", @@ -799,9 +733,7 @@ "unit": "bytes" }, "spark.stage.shuffle.io.read.size": { - "attributes": [ - "source" - ], + "attributes": ["source"], "description": "Amount of data read in shuffle operations in this stage.", "enabled": true, "stability": "development", @@ -813,9 +745,7 @@ "unit": "bytes" }, "spark.stage.shuffle.io.records": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "Number of records written or read in shuffle operations in this stage.", "enabled": true, "stability": "development", @@ -851,12 +781,7 @@ "unit": "ns" }, "spark.stage.status": { - "attributes": [ - "stage_active", - "stage_complete", - "stage_failed", - "stage_pending" - ], + "attributes": ["stage_active", "stage_complete", "stage_failed", "stage_pending"], "description": "A one-hot encoding representing the status of this stage.", "enabled": true, "stability": "development", @@ -880,9 +805,7 @@ "unit": "{ task }" }, "spark.stage.task.result": { - "attributes": [ - "stage_task_result" - ], + "attributes": ["stage_task_result"], "description": "Number of tasks with a specific result in this stage.", "enabled": true, "stability": "development", @@ -911,19 +834,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "Caleb-Hurshman", - "mrsillydog" - ] - }, - "distributions": [ - "contrib" - ], + "active": ["Caleb-Hurshman", "mrsillydog"] + }, + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-asapauthextension/contrib-asapauthextension-7ff1b3d05490.json b/ecosystem-explorer/public/data/collector/components/contrib-asapauthextension/contrib-asapauthextension-7ff1b3d05490.json index bb8a4e21..bbf55743 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-asapauthextension/contrib-asapauthextension-7ff1b3d05490.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-asapauthextension/contrib-asapauthextension-7ff1b3d05490.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "jamesmoessis", - "MovieStoreGuy" - ] + "active": ["jamesmoessis", "MovieStoreGuy"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-attributesprocessor/contrib-attributesprocessor-b3b94b636198.json b/ecosystem-explorer/public/data/collector/components/contrib-attributesprocessor/contrib-attributesprocessor-b3b94b636198.json index d5de7a75..5fc275ac 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-attributesprocessor/contrib-attributesprocessor-b3b94b636198.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-attributesprocessor/contrib-attributesprocessor-b3b94b636198.json @@ -9,22 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "boostchicken" - ] + "active": ["boostchicken"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-avrologencodingextension/contrib-avrologencodingextension-a327589ea2ce.json b/ecosystem-explorer/public/data/collector/components/contrib-avrologencodingextension/contrib-avrologencodingextension-a327589ea2ce.json index 5b819909..c4eb7111 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-avrologencodingextension/contrib-avrologencodingextension-a327589ea2ce.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-avrologencodingextension/contrib-avrologencodingextension-a327589ea2ce.json @@ -9,16 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "thmshmm" - ] + "active": ["thmshmm"] }, "distributions": [], "stability": { - "development": [ - "extension" - ] + "development": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchlogsexporter/contrib-awscloudwatchlogsexporter-19296b288ed0.json b/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchlogsexporter/contrib-awscloudwatchlogsexporter-19296b288ed0.json index c5743c50..3534a39b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchlogsexporter/contrib-awscloudwatchlogsexporter-19296b288ed0.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchlogsexporter/contrib-awscloudwatchlogsexporter-19296b288ed0.json @@ -9,24 +9,14 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "yaten2302" - ], - "emeritus": [ - "bryan-aguilar", - "boostchicken", - "rapphil" - ], + "active": ["yaten2302"], + "emeritus": ["bryan-aguilar", "boostchicken", "rapphil"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchmetricstreamsencodingextension/contrib-awscloudwatchmetricstreamsencodingextension-2c677a170563.json b/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchmetricstreamsencodingextension/contrib-awscloudwatchmetricstreamsencodingextension-2c677a170563.json index 73577ae3..3cf3dc48 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchmetricstreamsencodingextension/contrib-awscloudwatchmetricstreamsencodingextension-2c677a170563.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchmetricstreamsencodingextension/contrib-awscloudwatchmetricstreamsencodingextension-2c677a170563.json @@ -9,20 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "axw", - "constanca-m", - "Kavindu-Dodan" - ] + "active": ["axw", "constanca-m", "Kavindu-Dodan"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchreceiver/contrib-awscloudwatchreceiver-3019cfb642d3.json b/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchreceiver/contrib-awscloudwatchreceiver-3019cfb642d3.json index af61a480..e6efd3e3 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchreceiver/contrib-awscloudwatchreceiver-3019cfb642d3.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awscloudwatchreceiver/contrib-awscloudwatchreceiver-3019cfb642d3.json @@ -9,23 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "schmikei", - "dyl10s" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["schmikei", "dyl10s"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awscontainerinsightreceiver/contrib-awscontainerinsightreceiver-4c7cd4b03a6e.json b/ecosystem-explorer/public/data/collector/components/contrib-awscontainerinsightreceiver/contrib-awscontainerinsightreceiver-4c7cd4b03a6e.json index 0c6a1a6b..843aba4f 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awscontainerinsightreceiver/contrib-awscontainerinsightreceiver-4c7cd4b03a6e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awscontainerinsightreceiver/contrib-awscontainerinsightreceiver-4c7cd4b03a6e.json @@ -9,19 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "Aneurysm9", - "pxaws" - ] + "active": ["Aneurysm9", "pxaws"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awsecscontainermetricsreceiver/contrib-awsecscontainermetricsreceiver-3fa9a1989714.json b/ecosystem-explorer/public/data/collector/components/contrib-awsecscontainermetricsreceiver/contrib-awsecscontainermetricsreceiver-3fa9a1989714.json index abe1dbcf..e282fc51 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awsecscontainermetricsreceiver/contrib-awsecscontainermetricsreceiver-3fa9a1989714.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awsecscontainermetricsreceiver/contrib-awsecscontainermetricsreceiver-3fa9a1989714.json @@ -9,18 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "Aneurysm9" - ] + "active": ["Aneurysm9"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awsemfexporter/contrib-awsemfexporter-b0414107c0e2.json b/ecosystem-explorer/public/data/collector/components/contrib-awsemfexporter/contrib-awsemfexporter-b0414107c0e2.json index bc8654e6..3a1addb2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awsemfexporter/contrib-awsemfexporter-b0414107c0e2.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awsemfexporter/contrib-awsemfexporter-b0414107c0e2.json @@ -9,23 +9,13 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "Aneurysm9", - "mxiamxia" - ], - "emeritus": [ - "shaochengwang", - "bryan-aguilar" - ] + "active": ["Aneurysm9", "mxiamxia"], + "emeritus": ["shaochengwang", "bryan-aguilar"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awsfirehosereceiver/contrib-awsfirehosereceiver-36fe79ae02e5.json b/ecosystem-explorer/public/data/collector/components/contrib-awsfirehosereceiver/contrib-awsfirehosereceiver-36fe79ae02e5.json index e4270437..5c86d71b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awsfirehosereceiver/contrib-awsfirehosereceiver-36fe79ae02e5.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awsfirehosereceiver/contrib-awsfirehosereceiver-36fe79ae02e5.json @@ -9,20 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "Aneurysm9", - "axw" - ] + "active": ["Aneurysm9", "axw"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics" - ] + "alpha": ["logs", "metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awskinesisexporter/contrib-awskinesisexporter-f36a20204905.json b/ecosystem-explorer/public/data/collector/components/contrib-awskinesisexporter/contrib-awskinesisexporter-f36a20204905.json index 0fde70e9..a8f63125 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awskinesisexporter/contrib-awskinesisexporter-f36a20204905.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awskinesisexporter/contrib-awskinesisexporter-f36a20204905.json @@ -9,21 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "Aneurysm9", - "MovieStoreGuy" - ] + "active": ["Aneurysm9", "MovieStoreGuy"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awslambdareceiver/contrib-awslambdareceiver-6e28c85c6d08.json b/ecosystem-explorer/public/data/collector/components/contrib-awslambdareceiver/contrib-awslambdareceiver-6e28c85c6d08.json index 7503695f..8584a503 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awslambdareceiver/contrib-awslambdareceiver-6e28c85c6d08.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awslambdareceiver/contrib-awslambdareceiver-6e28c85c6d08.json @@ -9,22 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "MichaelKatsoulis", - "Kavindu-Dodan", - "axw", - "pjanotti" - ] + "active": ["MichaelKatsoulis", "Kavindu-Dodan", "axw", "pjanotti"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics" - ] + "alpha": ["logs", "metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awslogsencodingextension/contrib-awslogsencodingextension-b5856264e5b6.json b/ecosystem-explorer/public/data/collector/components/contrib-awslogsencodingextension/contrib-awslogsencodingextension-b5856264e5b6.json index 23d5a12d..89e5896b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awslogsencodingextension/contrib-awslogsencodingextension-b5856264e5b6.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awslogsencodingextension/contrib-awslogsencodingextension-b5856264e5b6.json @@ -9,20 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "axw", - "constanca-m", - "Kavindu-Dodan" - ] + "active": ["axw", "constanca-m", "Kavindu-Dodan"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awsproxy/contrib-awsproxy-62af1333a007.json b/ecosystem-explorer/public/data/collector/components/contrib-awsproxy/contrib-awsproxy-62af1333a007.json index 933ace4f..6005a424 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awsproxy/contrib-awsproxy-62af1333a007.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awsproxy/contrib-awsproxy-62af1333a007.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "Aneurysm9", - "mxiamxia" - ] + "active": ["Aneurysm9", "mxiamxia"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awss3exporter/contrib-awss3exporter-7fff48882690.json b/ecosystem-explorer/public/data/collector/components/contrib-awss3exporter/contrib-awss3exporter-7fff48882690.json index d70ca010..689fbf9b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awss3exporter/contrib-awss3exporter-7fff48882690.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awss3exporter/contrib-awss3exporter-7fff48882690.json @@ -9,22 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "atoulme", - "pdelewski", - "Erog38" - ] + "active": ["atoulme", "pdelewski", "Erog38"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awss3receiver/contrib-awss3receiver-0259f4ec282d.json b/ecosystem-explorer/public/data/collector/components/contrib-awss3receiver/contrib-awss3receiver-0259f4ec282d.json index 6d8c5e7e..2d5c3e81 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awss3receiver/contrib-awss3receiver-0259f4ec282d.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awss3receiver/contrib-awss3receiver-0259f4ec282d.json @@ -9,21 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme", - "adcharre" - ] + "active": ["atoulme", "adcharre"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awsxrayexporter/contrib-awsxrayexporter-0106330f1e26.json b/ecosystem-explorer/public/data/collector/components/contrib-awsxrayexporter/contrib-awsxrayexporter-0106330f1e26.json index e07ce709..23564b06 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awsxrayexporter/contrib-awsxrayexporter-0106330f1e26.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awsxrayexporter/contrib-awsxrayexporter-0106330f1e26.json @@ -9,19 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "wangzlei", - "srprash" - ] + "active": ["wangzlei", "srprash"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "traces" - ] + "beta": ["traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-awsxrayreceiver/contrib-awsxrayreceiver-73c0354563f3.json b/ecosystem-explorer/public/data/collector/components/contrib-awsxrayreceiver/contrib-awsxrayreceiver-73c0354563f3.json index 700f46dc..b23a0ebd 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-awsxrayreceiver/contrib-awsxrayreceiver-73c0354563f3.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-awsxrayreceiver/contrib-awsxrayreceiver-73c0354563f3.json @@ -9,19 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "wangzlei", - "srprash" - ] + "active": ["wangzlei", "srprash"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "traces" - ] + "beta": ["traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-azureauthextension/contrib-azureauthextension-94556a6e5891.json b/ecosystem-explorer/public/data/collector/components/contrib-azureauthextension/contrib-azureauthextension-94556a6e5891.json index d176e994..d847ba8d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-azureauthextension/contrib-azureauthextension-94556a6e5891.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-azureauthextension/contrib-azureauthextension-94556a6e5891.json @@ -9,18 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "constanca-m" - ] + "active": ["constanca-m"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-azureblobexporter/contrib-azureblobexporter-fd61dcb3272a.json b/ecosystem-explorer/public/data/collector/components/contrib-azureblobexporter/contrib-azureblobexporter-fd61dcb3272a.json index 2517ab7a..51af327d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-azureblobexporter/contrib-azureblobexporter-fd61dcb3272a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-azureblobexporter/contrib-azureblobexporter-fd61dcb3272a.json @@ -9,21 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "hgaol", - "MovieStoreGuy" - ] + "active": ["hgaol", "MovieStoreGuy"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-azureblobreceiver/contrib-azureblobreceiver-45c3bfb0d587.json b/ecosystem-explorer/public/data/collector/components/contrib-azureblobreceiver/contrib-azureblobreceiver-45c3bfb0d587.json index 91da7f56..3ef1e7d1 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-azureblobreceiver/contrib-azureblobreceiver-45c3bfb0d587.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-azureblobreceiver/contrib-azureblobreceiver-45c3bfb0d587.json @@ -9,21 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "eedorenko", - "mx-psi", - "dyl10s" - ] + "active": ["eedorenko", "mx-psi", "dyl10s"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "traces" - ] + "alpha": ["logs", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-azuredataexplorerexporter/contrib-azuredataexplorerexporter-ae0796a6f4f3.json b/ecosystem-explorer/public/data/collector/components/contrib-azuredataexplorerexporter/contrib-azuredataexplorerexporter-ae0796a6f4f3.json index 9fa0e874..1b6c5d34 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-azuredataexplorerexporter/contrib-azuredataexplorerexporter-ae0796a6f4f3.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-azuredataexplorerexporter/contrib-azuredataexplorerexporter-ae0796a6f4f3.json @@ -9,23 +9,13 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "ag-ramachandran" - ], - "emeritus": [ - "asaharn" - ] + "active": ["ag-ramachandran"], + "emeritus": ["asaharn"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-azureencodingextension/contrib-azureencodingextension-93013c943e44.json b/ecosystem-explorer/public/data/collector/components/contrib-azureencodingextension/contrib-azureencodingextension-93013c943e44.json index 3063b567..4fd0b0d3 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-azureencodingextension/contrib-azureencodingextension-93013c943e44.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-azureencodingextension/contrib-azureencodingextension-93013c943e44.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "axw", - "constanca-m" - ] + "active": ["axw", "constanca-m"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-azureeventhubreceiver/contrib-azureeventhubreceiver-3b9218bb5c67.json b/ecosystem-explorer/public/data/collector/components/contrib-azureeventhubreceiver/contrib-azureeventhubreceiver-3b9218bb5c67.json index ed17f410..8e59b3eb 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-azureeventhubreceiver/contrib-azureeventhubreceiver-3b9218bb5c67.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-azureeventhubreceiver/contrib-azureeventhubreceiver-3b9218bb5c67.json @@ -9,26 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme", - "cparkins", - "dyl10s" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["atoulme", "cparkins", "dyl10s"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-azurefunctionsreceiver/contrib-azurefunctionsreceiver-c00fb2994b2e.json b/ecosystem-explorer/public/data/collector/components/contrib-azurefunctionsreceiver/contrib-azurefunctionsreceiver-c00fb2994b2e.json index 428d8df0..0c03aca9 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-azurefunctionsreceiver/contrib-azurefunctionsreceiver-c00fb2994b2e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-azurefunctionsreceiver/contrib-azurefunctionsreceiver-c00fb2994b2e.json @@ -9,17 +9,11 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "jmacd", - "MichaelKatsoulis", - "constanca-m" - ] + "active": ["jmacd", "MichaelKatsoulis", "constanca-m"] }, "stability": { - "development": [ - "logs" - ] + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-azuremonitorexporter/contrib-azuremonitorexporter-75c0e8e6e0c3.json b/ecosystem-explorer/public/data/collector/components/contrib-azuremonitorexporter/contrib-azuremonitorexporter-75c0e8e6e0c3.json index fd479ef9..cb64941a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-azuremonitorexporter/contrib-azuremonitorexporter-75c0e8e6e0c3.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-azuremonitorexporter/contrib-azuremonitorexporter-75c0e8e6e0c3.json @@ -9,21 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "pcwiese", - "hgaol" - ] + "active": ["pcwiese", "hgaol"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-azuremonitorreceiver/contrib-azuremonitorreceiver-0cde463fbbdb.json b/ecosystem-explorer/public/data/collector/components/contrib-azuremonitorreceiver/contrib-azuremonitorreceiver-0cde463fbbdb.json index 53143b6e..6f3b4d62 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-azuremonitorreceiver/contrib-azuremonitorreceiver-0cde463fbbdb.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-azuremonitorreceiver/contrib-azuremonitorreceiver-0cde463fbbdb.json @@ -9,22 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "celian-garcia", - "ishleenk17" - ], - "emeritus": [ - "nslaughter" - ] + "active": ["celian-garcia", "ishleenk17"], + "emeritus": ["nslaughter"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-basicauthextension/contrib-basicauthextension-1762bb890e70.json b/ecosystem-explorer/public/data/collector/components/contrib-basicauthextension/contrib-basicauthextension-1762bb890e70.json index 2c659529..333adb40 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-basicauthextension/contrib-basicauthextension-1762bb890e70.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-basicauthextension/contrib-basicauthextension-1762bb890e70.json @@ -9,24 +9,14 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "frzifus" - ], - "emeritus": [ - "jpkrohling", - "svrakitin" - ], + "active": ["frzifus"], + "emeritus": ["jpkrohling", "svrakitin"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-bearertokenauthextension/contrib-bearertokenauthextension-892f59c7fe5a.json b/ecosystem-explorer/public/data/collector/components/contrib-bearertokenauthextension/contrib-bearertokenauthextension-892f59c7fe5a.json index 8aa9b6d0..719755d4 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-bearertokenauthextension/contrib-bearertokenauthextension-892f59c7fe5a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-bearertokenauthextension/contrib-bearertokenauthextension-892f59c7fe5a.json @@ -9,24 +9,14 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "frzifus" - ], - "emeritus": [ - "jpkrohling", - "pavankrish123" - ], + "active": ["frzifus"], + "emeritus": ["jpkrohling", "pavankrish123"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-bmchelixexporter/contrib-bmchelixexporter-c43a83901b4f.json b/ecosystem-explorer/public/data/collector/components/contrib-bmchelixexporter/contrib-bmchelixexporter-c43a83901b4f.json index 34fe4fc0..4eb5f1e1 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-bmchelixexporter/contrib-bmchelixexporter-c43a83901b4f.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-bmchelixexporter/contrib-bmchelixexporter-c43a83901b4f.json @@ -9,20 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "bertysentry", - "NassimBtk", - "MovieStoreGuy" - ] + "active": ["bertysentry", "NassimBtk", "MovieStoreGuy"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-carbonreceiver/contrib-carbonreceiver-c0e6095c3153.json b/ecosystem-explorer/public/data/collector/components/contrib-carbonreceiver/contrib-carbonreceiver-c0e6095c3153.json index cf625448..5816f8a1 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-carbonreceiver/contrib-carbonreceiver-c0e6095c3153.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-carbonreceiver/contrib-carbonreceiver-c0e6095c3153.json @@ -9,22 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme" - ], - "emeritus": [ - "aboguszewski-sumo" - ], + "active": ["atoulme"], + "emeritus": ["aboguszewski-sumo"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-cassandraexporter/contrib-cassandraexporter-6c3d965cbd7f.json b/ecosystem-explorer/public/data/collector/components/contrib-cassandraexporter/contrib-cassandraexporter-6c3d965cbd7f.json index 1f01e23c..54d94d66 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-cassandraexporter/contrib-cassandraexporter-6c3d965cbd7f.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-cassandraexporter/contrib-cassandraexporter-6c3d965cbd7f.json @@ -9,20 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "atoulme", - "emreyalvac" - ] + "active": ["atoulme", "emreyalvac"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "traces" - ] + "alpha": ["logs", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-cfgardenobserver/contrib-cfgardenobserver-bd95d15b6156.json b/ecosystem-explorer/public/data/collector/components/contrib-cfgardenobserver/contrib-cfgardenobserver-bd95d15b6156.json index a1d342d8..13833bcf 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-cfgardenobserver/contrib-cfgardenobserver-bd95d15b6156.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-cfgardenobserver/contrib-cfgardenobserver-bd95d15b6156.json @@ -9,20 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "crobert-1", - "jriguera" - ], - "emeritus": [ - "m1rp", - "cemdk" - ] + "active": ["crobert-1", "jriguera"], + "emeritus": ["m1rp", "cemdk"] }, "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-cgroupruntimeextension/contrib-cgroupruntimeextension-4cfea6a9a484.json b/ecosystem-explorer/public/data/collector/components/contrib-cgroupruntimeextension/contrib-cgroupruntimeextension-4cfea6a9a484.json index 3f8db6ab..52b8ff2f 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-cgroupruntimeextension/contrib-cgroupruntimeextension-4cfea6a9a484.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-cgroupruntimeextension/contrib-cgroupruntimeextension-4cfea6a9a484.json @@ -9,23 +9,13 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "mx-psi", - "rogercoll" - ] + "active": ["mx-psi", "rogercoll"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] }, - "unsupported_platforms": [ - "darwin", - "windows" - ] + "unsupported_platforms": ["darwin", "windows"] }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-chronyreceiver/contrib-chronyreceiver-9b73207ff0b7.json b/ecosystem-explorer/public/data/collector/components/contrib-chronyreceiver/contrib-chronyreceiver-9b73207ff0b7.json index 09903bb9..b172ca95 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-chronyreceiver/contrib-chronyreceiver-9b73207ff0b7.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-chronyreceiver/contrib-chronyreceiver-9b73207ff0b7.json @@ -2,12 +2,7 @@ "attributes": { "leap.status": { "description": "how the chrony is handling leap seconds", - "enum": [ - "delete_second", - "insert_second", - "normal", - "unsynchronised" - ], + "enum": ["delete_second", "insert_second", "normal", "unsynchronised"], "type": "string" } }, @@ -18,9 +13,7 @@ "id": "contrib-chronyreceiver", "metrics": { "ntp.frequency.offset": { - "attributes": [ - "leap.status" - ], + "attributes": ["leap.status"], "description": "The frequency is the rate by which the system s clock would be wrong if chronyd was not correcting it.", "enabled": false, "gauge": { @@ -48,9 +41,7 @@ "unit": "{count}" }, "ntp.time.correction": { - "attributes": [ - "leap.status" - ], + "attributes": ["leap.status"], "description": "The number of seconds difference between the system's clock and the reference clock", "enabled": true, "gauge": { @@ -60,9 +51,7 @@ "unit": "seconds" }, "ntp.time.last_offset": { - "attributes": [ - "leap.status" - ], + "attributes": ["leap.status"], "description": "The estimated local offset on the last clock update", "enabled": true, "gauge": { @@ -72,9 +61,7 @@ "unit": "seconds" }, "ntp.time.rms_offset": { - "attributes": [ - "leap.status" - ], + "attributes": ["leap.status"], "description": "the long term average of the offset value", "enabled": false, "gauge": { @@ -84,9 +71,7 @@ "unit": "seconds" }, "ntp.time.root_delay": { - "attributes": [ - "leap.status" - ], + "attributes": ["leap.status"], "description": "This is the total of the network path delays to the stratum-1 system from which the system is ultimately synchronised.", "enabled": false, "gauge": { @@ -101,19 +86,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "MovieStoreGuy", - "jamesmoessis" - ] + "active": ["MovieStoreGuy", "jamesmoessis"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-ciscoosreceiver/contrib-ciscoosreceiver-4bf736b08384.json b/ecosystem-explorer/public/data/collector/components/contrib-ciscoosreceiver/contrib-ciscoosreceiver-4bf736b08384.json index 357f40b2..1a33ecf9 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-ciscoosreceiver/contrib-ciscoosreceiver-4bf736b08384.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-ciscoosreceiver/contrib-ciscoosreceiver-4bf736b08384.json @@ -9,18 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax" - ] + "active": ["dmitryax"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-clickhouseexporter/contrib-clickhouseexporter-9f3a37682135.json b/ecosystem-explorer/public/data/collector/components/contrib-clickhouseexporter/contrib-clickhouseexporter-9f3a37682135.json index 0dbe028b..ee44cfa7 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-clickhouseexporter/contrib-clickhouseexporter-9f3a37682135.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-clickhouseexporter/contrib-clickhouseexporter-9f3a37682135.json @@ -9,27 +9,14 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "hanjm", - "Frapschen", - "SpencerTorres" - ], - "emeritus": [ - "dmitryax" - ] + "active": ["hanjm", "Frapschen", "SpencerTorres"], + "emeritus": ["dmitryax"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ], - "beta": [ - "logs", - "traces" - ] + "alpha": ["metrics"], + "beta": ["logs", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-cloudflarereceiver/contrib-cloudflarereceiver-29866c00f820.json b/ecosystem-explorer/public/data/collector/components/contrib-cloudflarereceiver/contrib-cloudflarereceiver-29866c00f820.json index c49d478e..d016784a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-cloudflarereceiver/contrib-cloudflarereceiver-29866c00f820.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-cloudflarereceiver/contrib-cloudflarereceiver-29866c00f820.json @@ -9,19 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dehaansa" - ], + "active": ["dehaansa"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-cloudfoundryreceiver/contrib-cloudfoundryreceiver-e482e92468e2.json b/ecosystem-explorer/public/data/collector/components/contrib-cloudfoundryreceiver/contrib-cloudfoundryreceiver-e482e92468e2.json index f2071ffe..b7d6a1dc 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-cloudfoundryreceiver/contrib-cloudfoundryreceiver-e482e92468e2.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-cloudfoundryreceiver/contrib-cloudfoundryreceiver-e482e92468e2.json @@ -9,26 +9,15 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "crobert-1" - ], - "emeritus": [ - "agoallikmaa", - "pellared" - ], + "active": ["crobert-1"], + "emeritus": ["agoallikmaa", "pellared"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ], - "development": [ - "logs" - ] + "beta": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-collectdreceiver/contrib-collectdreceiver-e58c6ba01a58.json b/ecosystem-explorer/public/data/collector/components/contrib-collectdreceiver/contrib-collectdreceiver-e58c6ba01a58.json index a805b34e..52ba4072 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-collectdreceiver/contrib-collectdreceiver-e58c6ba01a58.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-collectdreceiver/contrib-collectdreceiver-e58c6ba01a58.json @@ -9,19 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme" - ], + "active": ["atoulme"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-coralogixexporter/contrib-coralogixexporter-e9e824d3e90c.json b/ecosystem-explorer/public/data/collector/components/contrib-coralogixexporter/contrib-coralogixexporter-e9e824d3e90c.json index 7ba7a3f4..7c6be5ea 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-coralogixexporter/contrib-coralogixexporter-e9e824d3e90c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-coralogixexporter/contrib-coralogixexporter-e9e824d3e90c.json @@ -9,25 +9,13 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "povilasv", - "iblancasa", - "douglascamata" - ] + "active": ["povilasv", "iblancasa", "douglascamata"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "profiles" - ], - "beta": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["profiles"], + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-coralogixprocessor/contrib-coralogixprocessor-ff752ae1f153.json b/ecosystem-explorer/public/data/collector/components/contrib-coralogixprocessor/contrib-coralogixprocessor-ff752ae1f153.json index 46a0f859..e992343d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-coralogixprocessor/contrib-coralogixprocessor-ff752ae1f153.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-coralogixprocessor/contrib-coralogixprocessor-ff752ae1f153.json @@ -9,18 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "crobert-1", - "povilasv", - "iblancasa" - ] + "active": ["crobert-1", "povilasv", "iblancasa"] }, "distributions": [], "stability": { - "alpha": [ - "traces" - ] + "alpha": ["traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-couchdbreceiver/contrib-couchdbreceiver-88c413531b00.json b/ecosystem-explorer/public/data/collector/components/contrib-couchdbreceiver/contrib-couchdbreceiver-88c413531b00.json index 60f8ddff..898dbf29 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-couchdbreceiver/contrib-couchdbreceiver-88c413531b00.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-couchdbreceiver/contrib-couchdbreceiver-88c413531b00.json @@ -2,15 +2,7 @@ "attributes": { "http.method": { "description": "An HTTP request method.", - "enum": [ - "COPY", - "DELETE", - "GET", - "HEAD", - "OPTIONS", - "POST", - "PUT" - ], + "enum": ["COPY", "DELETE", "GET", "HEAD", "OPTIONS", "POST", "PUT"], "type": "string" }, "http.status_code": { @@ -19,18 +11,12 @@ }, "operation": { "description": "The operation type.", - "enum": [ - "reads", - "writes" - ], + "enum": ["reads", "writes"], "type": "string" }, "view": { "description": "The view type.", - "enum": [ - "temporary_view_reads", - "view_reads" - ], + "enum": ["temporary_view_reads", "view_reads"], "type": "string" } }, @@ -61,9 +47,7 @@ "unit": "{databases}" }, "couchdb.database.operations": { - "attributes": [ - "operation" - ], + "attributes": ["operation"], "description": "The number of database operations.", "enabled": true, "stability": "development", @@ -97,9 +81,7 @@ "unit": "{requests}" }, "couchdb.httpd.requests": { - "attributes": [ - "http.method" - ], + "attributes": ["http.method"], "description": "The number of HTTP requests by method.", "enabled": true, "stability": "development", @@ -111,9 +93,7 @@ "unit": "{requests}" }, "couchdb.httpd.responses": { - "attributes": [ - "http.status_code" - ], + "attributes": ["http.status_code"], "description": "The number of each HTTP status code.", "enabled": true, "stability": "development", @@ -125,9 +105,7 @@ "unit": "{responses}" }, "couchdb.httpd.views": { - "attributes": [ - "view" - ], + "attributes": ["view"], "description": "The number of views read.", "enabled": true, "stability": "development", @@ -144,22 +122,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "antonblock" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["antonblock"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-countconnector/contrib-countconnector-07f48364a8f0.json b/ecosystem-explorer/public/data/collector/components/contrib-countconnector/contrib-countconnector-07f48364a8f0.json index dc6b2cef..38f22d88 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-countconnector/contrib-countconnector-07f48364a8f0.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-countconnector/contrib-countconnector-07f48364a8f0.json @@ -9,27 +9,14 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "akats7" - ], - "emeritus": [ - "djaglowski", - "jpkrohling" - ], + "active": ["akats7"], + "emeritus": ["djaglowski", "jpkrohling"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "logs_to_metrics", - "metrics_to_metrics", - "profiles_to_metrics", - "traces_to_metrics" - ] + "alpha": ["logs_to_metrics", "metrics_to_metrics", "profiles_to_metrics", "traces_to_metrics"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-cumulativetodeltaprocessor/contrib-cumulativetodeltaprocessor-f605da9d36ba.json b/ecosystem-explorer/public/data/collector/components/contrib-cumulativetodeltaprocessor/contrib-cumulativetodeltaprocessor-f605da9d36ba.json index a087bdac..98f163cc 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-cumulativetodeltaprocessor/contrib-cumulativetodeltaprocessor-f605da9d36ba.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-cumulativetodeltaprocessor/contrib-cumulativetodeltaprocessor-f605da9d36ba.json @@ -9,19 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "TylerHelmuth" - ] + "active": ["TylerHelmuth"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-datadogconnector/contrib-datadogconnector-8ac9c476d5ba.json b/ecosystem-explorer/public/data/collector/components/contrib-datadogconnector/contrib-datadogconnector-8ac9c476d5ba.json index 47f35960..e1a96dac 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-datadogconnector/contrib-datadogconnector-8ac9c476d5ba.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-datadogconnector/contrib-datadogconnector-8ac9c476d5ba.json @@ -9,29 +9,14 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "mx-psi", - "dineshg13", - "jade-guiton-dd", - "IbraheemA" - ], - "emeritus": [ - "gbbr", - "ankitpatel96" - ] + "active": ["mx-psi", "dineshg13", "jade-guiton-dd", "IbraheemA"], + "emeritus": ["gbbr", "ankitpatel96"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "traces_to_metrics", - "traces_to_traces" - ] + "beta": ["traces_to_metrics", "traces_to_traces"] }, - "unsupported_platforms": [ - "aix" - ] + "unsupported_platforms": ["aix"] }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-datadogexporter/contrib-datadogexporter-aa163ae4fc01.json b/ecosystem-explorer/public/data/collector/components/contrib-datadogexporter/contrib-datadogexporter-aa163ae4fc01.json index 31ae7f09..c0c586c7 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-datadogexporter/contrib-datadogexporter-aa163ae4fc01.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-datadogexporter/contrib-datadogexporter-aa163ae4fc01.json @@ -18,25 +18,13 @@ "jade-guiton-dd", "IbraheemA" ], - "emeritus": [ - "gbbr", - "jackgopack4", - "ankitpatel96" - ] + "emeritus": ["gbbr", "jackgopack4", "ankitpatel96"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] }, - "unsupported_platforms": [ - "aix" - ] + "unsupported_platforms": ["aix"] }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-datadogextension/contrib-datadogextension-9ea730771e73.json b/ecosystem-explorer/public/data/collector/components/contrib-datadogextension/contrib-datadogextension-9ea730771e73.json index b81c256d..cd390fcf 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-datadogextension/contrib-datadogextension-9ea730771e73.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-datadogextension/contrib-datadogextension-9ea730771e73.json @@ -9,29 +9,14 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "dineshg13", - "IbraheemA", - "jade-guiton-dd", - "mx-psi", - "songy23" - ], - "emeritus": [ - "jackgopack4", - "ankitpatel96" - ] + "active": ["dineshg13", "IbraheemA", "jade-guiton-dd", "mx-psi", "songy23"], + "emeritus": ["jackgopack4", "ankitpatel96"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] }, - "unsupported_platforms": [ - "aix" - ] + "unsupported_platforms": ["aix"] }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-datadogreceiver/contrib-datadogreceiver-bfa15f86b6ba.json b/ecosystem-explorer/public/data/collector/components/contrib-datadogreceiver/contrib-datadogreceiver-bfa15f86b6ba.json index 7c8a8350..3cd0f0b3 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-datadogreceiver/contrib-datadogreceiver-bfa15f86b6ba.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-datadogreceiver/contrib-datadogreceiver-bfa15f86b6ba.json @@ -9,24 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "boostchicken", - "MovieStoreGuy" - ], - "emeritus": [ - "gouthamve" - ] + "active": ["boostchicken", "MovieStoreGuy"], + "emeritus": ["gouthamve"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-datadogreceiver/contrib-datadogreceiver-c0971d423fff.json b/ecosystem-explorer/public/data/collector/components/contrib-datadogreceiver/contrib-datadogreceiver-c0971d423fff.json index bad0b397..4853f576 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-datadogreceiver/contrib-datadogreceiver-c0971d423fff.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-datadogreceiver/contrib-datadogreceiver-c0971d423fff.json @@ -9,22 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "boostchicken", - "gouthamve", - "MovieStoreGuy" - ] + "active": ["boostchicken", "gouthamve", "MovieStoreGuy"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-datasetexporter/contrib-datasetexporter-cf00c976012c.json b/ecosystem-explorer/public/data/collector/components/contrib-datasetexporter/contrib-datasetexporter-cf00c976012c.json index 0b4736b3..9064b7c6 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-datasetexporter/contrib-datasetexporter-cf00c976012c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-datasetexporter/contrib-datasetexporter-cf00c976012c.json @@ -9,22 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "atoulme", - "martin-majlis-s1", - "zdaratom-s1", - "tomaz-s1" - ] + "active": ["atoulme", "martin-majlis-s1", "zdaratom-s1", "tomaz-s1"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "traces" - ] + "alpha": ["logs", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-dbstorage/contrib-dbstorage-ff33a79c787e.json b/ecosystem-explorer/public/data/collector/components/contrib-dbstorage/contrib-dbstorage-ff33a79c787e.json index bab79e35..ec2ed884 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-dbstorage/contrib-dbstorage-ff33a79c787e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-dbstorage/contrib-dbstorage-ff33a79c787e.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "dmitryax", - "atoulme" - ] + "active": ["dmitryax", "atoulme"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-deltatocumulativeprocessor/contrib-deltatocumulativeprocessor-c00338cdfe36.json b/ecosystem-explorer/public/data/collector/components/contrib-deltatocumulativeprocessor/contrib-deltatocumulativeprocessor-c00338cdfe36.json index 3cae5ab6..2f3e0cb7 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-deltatocumulativeprocessor/contrib-deltatocumulativeprocessor-c00338cdfe36.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-deltatocumulativeprocessor/contrib-deltatocumulativeprocessor-c00338cdfe36.json @@ -9,22 +9,13 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "RichieSams" - ], - "emeritus": [ - "tombrk" - ] + "active": ["RichieSams"], + "emeritus": ["tombrk"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-deltatorateprocessor/contrib-deltatorateprocessor-9c474295e04a.json b/ecosystem-explorer/public/data/collector/components/contrib-deltatorateprocessor/contrib-deltatorateprocessor-9c474295e04a.json index e6d1e57a..0be10967 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-deltatorateprocessor/contrib-deltatorateprocessor-9c474295e04a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-deltatorateprocessor/contrib-deltatorateprocessor-9c474295e04a.json @@ -9,19 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "Aneurysm9" - ] + "active": ["Aneurysm9"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-dnslookupprocessor/contrib-dnslookupprocessor-924af12665a8.json b/ecosystem-explorer/public/data/collector/components/contrib-dnslookupprocessor/contrib-dnslookupprocessor-924af12665a8.json index bf17fa0f..339e25fc 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-dnslookupprocessor/contrib-dnslookupprocessor-924af12665a8.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-dnslookupprocessor/contrib-dnslookupprocessor-924af12665a8.json @@ -9,19 +9,11 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "andrzej-stencel", - "kaisecheng", - "edmocosta" - ] + "active": ["andrzej-stencel", "kaisecheng", "edmocosta"] }, "stability": { - "development": [ - "logs", - "metrics", - "traces" - ] + "development": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-dockerobserver/contrib-dockerobserver-186c69a31564.json b/ecosystem-explorer/public/data/collector/components/contrib-dockerobserver/contrib-dockerobserver-186c69a31564.json index cc5a83bd..896f9cf5 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-dockerobserver/contrib-dockerobserver-186c69a31564.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-dockerobserver/contrib-dockerobserver-186c69a31564.json @@ -9,18 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "MovieStoreGuy" - ] + "active": ["MovieStoreGuy"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-dockerstatsreceiver/contrib-dockerstatsreceiver-2b365726857c.json b/ecosystem-explorer/public/data/collector/components/contrib-dockerstatsreceiver/contrib-dockerstatsreceiver-2b365726857c.json index 90e7d595..d8fcf4ae 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-dockerstatsreceiver/contrib-dockerstatsreceiver-2b365726857c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-dockerstatsreceiver/contrib-dockerstatsreceiver-2b365726857c.json @@ -28,11 +28,7 @@ "id": "contrib-dockerstatsreceiver", "metrics": { "container.blockio.io_merged_recursive": { - "attributes": [ - "device_major", - "device_minor", - "operation" - ], + "attributes": ["device_major", "device_minor", "operation"], "description": "Number of bios/requests merged into requests belonging to this cgroup and its descendant cgroups (Only available with cgroups v1).", "enabled": false, "stability": "development", @@ -44,11 +40,7 @@ "unit": "{operations}" }, "container.blockio.io_queued_recursive": { - "attributes": [ - "device_major", - "device_minor", - "operation" - ], + "attributes": ["device_major", "device_minor", "operation"], "description": "Number of requests queued up for this cgroup and its descendant cgroups (Only available with cgroups v1).", "enabled": false, "stability": "development", @@ -60,11 +52,7 @@ "unit": "{operations}" }, "container.blockio.io_service_bytes_recursive": { - "attributes": [ - "device_major", - "device_minor", - "operation" - ], + "attributes": ["device_major", "device_minor", "operation"], "description": "Number of bytes transferred to/from the disk by the group and descendant groups.", "enabled": true, "stability": "development", @@ -76,11 +64,7 @@ "unit": "By" }, "container.blockio.io_service_time_recursive": { - "attributes": [ - "device_major", - "device_minor", - "operation" - ], + "attributes": ["device_major", "device_minor", "operation"], "description": "Total amount of time in nanoseconds between request dispatch and request completion for the IOs done by this cgroup and descendant cgroups (Only available with cgroups v1).", "enabled": false, "stability": "development", @@ -92,11 +76,7 @@ "unit": "ns" }, "container.blockio.io_serviced_recursive": { - "attributes": [ - "device_major", - "device_minor", - "operation" - ], + "attributes": ["device_major", "device_minor", "operation"], "description": "Number of IOs (bio) issued to the disk by the group and descendant groups (Only available with cgroups v1).", "enabled": false, "stability": "development", @@ -108,11 +88,7 @@ "unit": "{operations}" }, "container.blockio.io_time_recursive": { - "attributes": [ - "device_major", - "device_minor", - "operation" - ], + "attributes": ["device_major", "device_minor", "operation"], "description": "Disk time allocated to cgroup (and descendant cgroups) per device in milliseconds (Only available with cgroups v1).", "enabled": false, "stability": "development", @@ -124,11 +100,7 @@ "unit": "ms" }, "container.blockio.io_wait_time_recursive": { - "attributes": [ - "device_major", - "device_minor", - "operation" - ], + "attributes": ["device_major", "device_minor", "operation"], "description": "Total amount of time the IOs for this cgroup (and descendant cgroups) spent waiting in the scheduler queues for service (Only available with cgroups v1).", "enabled": false, "stability": "development", @@ -140,11 +112,7 @@ "unit": "ns" }, "container.blockio.sectors_recursive": { - "attributes": [ - "device_major", - "device_minor", - "operation" - ], + "attributes": ["device_major", "device_minor", "operation"], "description": "Number of sectors transferred to/from disk by the group and descendant groups (Only available with cgroups v1).", "enabled": false, "stability": "development", @@ -227,9 +195,7 @@ "unit": "ns" }, "container.cpu.usage.percpu": { - "attributes": [ - "core" - ], + "attributes": ["core"], "description": "Per-core CPU usage by the container (Only available with cgroups v1).", "enabled": false, "stability": "development", @@ -710,9 +676,7 @@ "unit": "By" }, "container.network.io.usage.rx_bytes": { - "attributes": [ - "interface" - ], + "attributes": ["interface"], "description": "Bytes received by the container.", "enabled": true, "stability": "development", @@ -724,9 +688,7 @@ "unit": "By" }, "container.network.io.usage.rx_dropped": { - "attributes": [ - "interface" - ], + "attributes": ["interface"], "description": "Incoming packets dropped.", "enabled": true, "stability": "development", @@ -738,9 +700,7 @@ "unit": "{packets}" }, "container.network.io.usage.rx_errors": { - "attributes": [ - "interface" - ], + "attributes": ["interface"], "description": "Received errors. Not supported on Windows.", "enabled": false, "stability": "development", @@ -752,9 +712,7 @@ "unit": "{errors}" }, "container.network.io.usage.rx_packets": { - "attributes": [ - "interface" - ], + "attributes": ["interface"], "description": "Packets received.", "enabled": false, "stability": "development", @@ -766,9 +724,7 @@ "unit": "{packets}" }, "container.network.io.usage.tx_bytes": { - "attributes": [ - "interface" - ], + "attributes": ["interface"], "description": "Bytes sent.", "enabled": true, "stability": "development", @@ -780,9 +736,7 @@ "unit": "By" }, "container.network.io.usage.tx_dropped": { - "attributes": [ - "interface" - ], + "attributes": ["interface"], "description": "Outgoing packets dropped.", "enabled": true, "stability": "development", @@ -794,9 +748,7 @@ "unit": "{packets}" }, "container.network.io.usage.tx_errors": { - "attributes": [ - "interface" - ], + "attributes": ["interface"], "description": "Sent errors. Not supported on Windows.", "enabled": false, "stability": "development", @@ -808,9 +760,7 @@ "unit": "{errors}" }, "container.network.io.usage.tx_packets": { - "attributes": [ - "interface" - ], + "attributes": ["interface"], "description": "Packets sent.", "enabled": false, "stability": "development", @@ -869,25 +819,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "jamesmoessis" - ], - "emeritus": [ - "rmfitzpatrick" - ] - }, - "distributions": [ - "contrib" - ], + "active": ["jamesmoessis"], + "emeritus": ["rmfitzpatrick"] + }, + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] - }, - "unsupported_platforms": [ - "darwin", - "windows" - ] + "alpha": ["metrics"] + }, + "unsupported_platforms": ["darwin", "windows"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-dorisexporter/contrib-dorisexporter-86f89e296644.json b/ecosystem-explorer/public/data/collector/components/contrib-dorisexporter/contrib-dorisexporter-86f89e296644.json index bf67f521..baa2ddfc 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-dorisexporter/contrib-dorisexporter-86f89e296644.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-dorisexporter/contrib-dorisexporter-86f89e296644.json @@ -9,21 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "atoulme", - "joker-star-l" - ] + "active": ["atoulme", "joker-star-l"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-drainprocessor/contrib-drainprocessor-45f54a68e200.json b/ecosystem-explorer/public/data/collector/components/contrib-drainprocessor/contrib-drainprocessor-45f54a68e200.json index 11119bca..85374b21 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-drainprocessor/contrib-drainprocessor-45f54a68e200.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-drainprocessor/contrib-drainprocessor-45f54a68e200.json @@ -9,20 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "MikeGoldsmith", - "atoulme", - "martinjt" - ] + "active": ["MikeGoldsmith", "atoulme", "martinjt"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-ecsobserver/contrib-ecsobserver-6c08fa78d171.json b/ecosystem-explorer/public/data/collector/components/contrib-ecsobserver/contrib-ecsobserver-6c08fa78d171.json index 74b05a48..0399ffbb 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-ecsobserver/contrib-ecsobserver-6c08fa78d171.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-ecsobserver/contrib-ecsobserver-6c08fa78d171.json @@ -9,21 +9,13 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "dmitryax" - ], - "emeritus": [ - "rmfitzpatrick" - ] + "active": ["dmitryax"], + "emeritus": ["rmfitzpatrick"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-elasticsearchexporter/contrib-elasticsearchexporter-803af9dbd09b.json b/ecosystem-explorer/public/data/collector/components/contrib-elasticsearchexporter/contrib-elasticsearchexporter-803af9dbd09b.json index c2a52ec8..0f38e5cc 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-elasticsearchexporter/contrib-elasticsearchexporter-803af9dbd09b.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-elasticsearchexporter/contrib-elasticsearchexporter-803af9dbd09b.json @@ -6,12 +6,7 @@ }, "failure_store": { "description": "The status of the failure store.", - "enum": [ - "failed", - "not_enabled", - "unknown", - "used" - ], + "enum": ["failed", "not_enabled", "unknown", "used"], "type": "string" }, "http.response.status_code": { @@ -42,25 +37,13 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "JaredTan95", - "carsonip", - "lahsivjar" - ] + "active": ["JaredTan95", "carsonip", "lahsivjar"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "traces" - ], - "development": [ - "metrics", - "profiles" - ] + "beta": ["logs", "traces"], + "development": ["metrics", "profiles"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-elasticsearchreceiver/contrib-elasticsearchreceiver-ba8ee9cdae35.json b/ecosystem-explorer/public/data/collector/components/contrib-elasticsearchreceiver/contrib-elasticsearchreceiver-ba8ee9cdae35.json index 794584c6..58b0cf4d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-elasticsearchreceiver/contrib-elasticsearchreceiver-ba8ee9cdae35.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-elasticsearchreceiver/contrib-elasticsearchreceiver-ba8ee9cdae35.json @@ -2,10 +2,7 @@ "attributes": { "cache_name": { "description": "The name of cache.", - "enum": [ - "fielddata", - "query" - ], + "enum": ["fielddata", "query"], "type": "string" }, "circuit_breaker_name": { @@ -15,19 +12,13 @@ }, "cluster_published_difference_state": { "description": "State of the published differences", - "enum": [ - "compatible", - "incompatible" - ], + "enum": ["compatible", "incompatible"], "name_override": "state", "type": "string" }, "cluster_state_queue_state": { "description": "State of the published differences", - "enum": [ - "committed", - "pending" - ], + "enum": ["committed", "pending"], "name_override": "state", "type": "string" }, @@ -56,56 +47,36 @@ }, "direction": { "description": "The direction of network data.", - "enum": [ - "received", - "sent" - ], + "enum": ["received", "sent"], "type": "string" }, "document_state": { "description": "The state of the document.", - "enum": [ - "active", - "deleted" - ], + "enum": ["active", "deleted"], "name_override": "state", "type": "string" }, "get_result": { "description": "Result of get operation", - "enum": [ - "hit", - "miss" - ], + "enum": ["hit", "miss"], "name_override": "result", "type": "string" }, "health_status": { "description": "The health status of the cluster.", - "enum": [ - "green", - "red", - "yellow" - ], + "enum": ["green", "red", "yellow"], "name_override": "status", "type": "string" }, "index_aggregation_type": { "description": "Type of shard aggregation for index statistics", - "enum": [ - "primary_shards", - "total" - ], + "enum": ["primary_shards", "total"], "name_override": "aggregation", "type": "string" }, "indexing_pressure_stage": { "description": "Stage of the indexing pressure", - "enum": [ - "coordinating", - "primary", - "replica" - ], + "enum": ["coordinating", "primary", "replica"], "name_override": "stage", "type": "string" }, @@ -121,10 +92,7 @@ }, "memory_state": { "description": "State of the memory", - "enum": [ - "free", - "used" - ], + "enum": ["free", "used"], "name_override": "state", "type": "string" }, @@ -148,21 +116,13 @@ }, "query_cache_count_type": { "description": "Type of query cache count", - "enum": [ - "hit", - "miss" - ], + "enum": ["hit", "miss"], "name_override": "type", "type": "string" }, "segments_memory_object_type": { "description": "Type of object in segment", - "enum": [ - "doc_value", - "fixed_bit_set", - "index_writer", - "term" - ], + "enum": ["doc_value", "fixed_bit_set", "index_writer", "term"], "name_override": "object", "type": "string" }, @@ -181,10 +141,7 @@ }, "task_state": { "description": "The state of the task.", - "enum": [ - "completed", - "rejected" - ], + "enum": ["completed", "rejected"], "name_override": "state", "type": "string" }, @@ -194,10 +151,7 @@ }, "thread_state": { "description": "The state of the thread.", - "enum": [ - "active", - "idle" - ], + "enum": ["active", "idle"], "name_override": "state", "type": "string" } @@ -209,9 +163,7 @@ "id": "contrib-elasticsearchreceiver", "metrics": { "elasticsearch.breaker.memory.estimated": { - "attributes": [ - "circuit_breaker_name" - ], + "attributes": ["circuit_breaker_name"], "description": "Estimated memory used for the operation.", "enabled": true, "gauge": { @@ -221,9 +173,7 @@ "unit": "By" }, "elasticsearch.breaker.memory.limit": { - "attributes": [ - "circuit_breaker_name" - ], + "attributes": ["circuit_breaker_name"], "description": "Memory limit for the circuit breaker.", "enabled": true, "stability": "development", @@ -235,9 +185,7 @@ "unit": "By" }, "elasticsearch.breaker.tripped": { - "attributes": [ - "circuit_breaker_name" - ], + "attributes": ["circuit_breaker_name"], "description": "Total number of times the circuit breaker has been triggered and prevented an out of memory error.", "enabled": true, "stability": "development", @@ -261,9 +209,7 @@ "unit": "{nodes}" }, "elasticsearch.cluster.health": { - "attributes": [ - "health_status" - ], + "attributes": ["health_status"], "description": "The health status of the cluster.", "enabled": true, "stability": "development", @@ -287,9 +233,7 @@ "unit": "{fetches}" }, "elasticsearch.cluster.indices.cache.evictions": { - "attributes": [ - "cache_name" - ], + "attributes": ["cache_name"], "description": "The number of evictions from the cache for indices in cluster.", "enabled": false, "stability": "development", @@ -325,9 +269,7 @@ "unit": "{tasks}" }, "elasticsearch.cluster.published_states.differences": { - "attributes": [ - "cluster_published_difference_state" - ], + "attributes": ["cluster_published_difference_state"], "description": "Number of differences between published cluster states.", "enabled": true, "stability": "development", @@ -351,9 +293,7 @@ "unit": "1" }, "elasticsearch.cluster.shards": { - "attributes": [ - "shard_state" - ], + "attributes": ["shard_state"], "description": "The number of shards in the cluster.", "enabled": true, "stability": "development", @@ -365,9 +305,7 @@ "unit": "{shards}" }, "elasticsearch.cluster.state_queue": { - "attributes": [ - "cluster_state_queue_state" - ], + "attributes": ["cluster_state_queue_state"], "description": "Number of cluster states in queue.", "enabled": true, "stability": "development", @@ -379,9 +317,7 @@ "unit": "1" }, "elasticsearch.cluster.state_update.count": { - "attributes": [ - "cluster_state_update_state" - ], + "attributes": ["cluster_state_update_state"], "description": "The number of cluster state update attempts that changed the cluster state since the node started.", "enabled": true, "stability": "development", @@ -393,10 +329,7 @@ "unit": "1" }, "elasticsearch.cluster.state_update.time": { - "attributes": [ - "cluster_state_update_state", - "cluster_state_update_type" - ], + "attributes": ["cluster_state_update_state", "cluster_state_update_type"], "description": "The cumulative amount of time updating the cluster state since the node started.", "enabled": true, "stability": "development", @@ -408,10 +341,7 @@ "unit": "ms" }, "elasticsearch.index.cache.evictions": { - "attributes": [ - "cache_name", - "index_aggregation_type" - ], + "attributes": ["cache_name", "index_aggregation_type"], "description": "The number of evictions from the cache for an index.", "enabled": false, "stability": "development", @@ -423,10 +353,7 @@ "unit": "{evictions}" }, "elasticsearch.index.cache.memory.usage": { - "attributes": [ - "cache_name", - "index_aggregation_type" - ], + "attributes": ["cache_name", "index_aggregation_type"], "description": "The size in bytes of the cache for an index.", "enabled": false, "stability": "development", @@ -438,9 +365,7 @@ "unit": "By" }, "elasticsearch.index.cache.size": { - "attributes": [ - "index_aggregation_type" - ], + "attributes": ["index_aggregation_type"], "description": "The number of elements of the query cache for an index.", "enabled": false, "stability": "development", @@ -452,10 +377,7 @@ "unit": "1" }, "elasticsearch.index.documents": { - "attributes": [ - "document_state", - "index_aggregation_type" - ], + "attributes": ["document_state", "index_aggregation_type"], "description": "The number of documents for an index.", "enabled": true, "stability": "development", @@ -467,10 +389,7 @@ "unit": "{documents}" }, "elasticsearch.index.operations.completed": { - "attributes": [ - "index_aggregation_type", - "operation" - ], + "attributes": ["index_aggregation_type", "operation"], "description": "The number of operations completed for an index.", "enabled": true, "stability": "development", @@ -482,9 +401,7 @@ "unit": "{operations}" }, "elasticsearch.index.operations.merge.current": { - "attributes": [ - "index_aggregation_type" - ], + "attributes": ["index_aggregation_type"], "description": "The number of currently active segment merges", "enabled": true, "gauge": { @@ -494,9 +411,7 @@ "unit": "{merges}" }, "elasticsearch.index.operations.merge.docs_count": { - "attributes": [ - "index_aggregation_type" - ], + "attributes": ["index_aggregation_type"], "description": "The total number of documents in merge operations for an index.", "enabled": false, "stability": "development", @@ -508,9 +423,7 @@ "unit": "{documents}" }, "elasticsearch.index.operations.merge.size": { - "attributes": [ - "index_aggregation_type" - ], + "attributes": ["index_aggregation_type"], "description": "The total size of merged segments for an index.", "enabled": false, "stability": "development", @@ -522,10 +435,7 @@ "unit": "By" }, "elasticsearch.index.operations.time": { - "attributes": [ - "index_aggregation_type", - "operation" - ], + "attributes": ["index_aggregation_type", "operation"], "description": "Time spent on operations for an index.", "enabled": true, "stability": "development", @@ -537,9 +447,7 @@ "unit": "ms" }, "elasticsearch.index.segments.count": { - "attributes": [ - "index_aggregation_type" - ], + "attributes": ["index_aggregation_type"], "description": "Number of segments of an index.", "enabled": true, "stability": "development", @@ -551,10 +459,7 @@ "unit": "{segments}" }, "elasticsearch.index.segments.memory": { - "attributes": [ - "index_aggregation_type", - "segments_memory_object_type" - ], + "attributes": ["index_aggregation_type", "segments_memory_object_type"], "description": "Size of memory for segment object of an index.", "enabled": false, "stability": "development", @@ -566,9 +471,7 @@ "unit": "By" }, "elasticsearch.index.segments.size": { - "attributes": [ - "index_aggregation_type" - ], + "attributes": ["index_aggregation_type"], "description": "Size of segments of an index.", "enabled": false, "stability": "development", @@ -580,9 +483,7 @@ "unit": "By" }, "elasticsearch.index.shards.size": { - "attributes": [ - "index_aggregation_type" - ], + "attributes": ["index_aggregation_type"], "description": "The size of the shards assigned to this index.", "enabled": true, "stability": "development", @@ -594,9 +495,7 @@ "unit": "By" }, "elasticsearch.index.translog.operations": { - "attributes": [ - "index_aggregation_type" - ], + "attributes": ["index_aggregation_type"], "description": "Number of transaction log operations for an index.", "enabled": false, "stability": "development", @@ -608,9 +507,7 @@ "unit": "{operations}" }, "elasticsearch.index.translog.size": { - "attributes": [ - "index_aggregation_type" - ], + "attributes": ["index_aggregation_type"], "description": "Size of the transaction log for an index.", "enabled": false, "stability": "development", @@ -656,9 +553,7 @@ "unit": "1" }, "elasticsearch.memory.indexing_pressure": { - "attributes": [ - "indexing_pressure_stage" - ], + "attributes": ["indexing_pressure_stage"], "description": "Memory consumed, in bytes, by indexing requests in the specified stage.", "enabled": true, "stability": "development", @@ -670,9 +565,7 @@ "unit": "By" }, "elasticsearch.node.cache.count": { - "attributes": [ - "query_cache_count_type" - ], + "attributes": ["query_cache_count_type"], "description": "Total count of query cache misses across all shards assigned to selected nodes.", "enabled": true, "stability": "development", @@ -684,9 +577,7 @@ "unit": "{count}" }, "elasticsearch.node.cache.evictions": { - "attributes": [ - "cache_name" - ], + "attributes": ["cache_name"], "description": "The number of evictions from the cache on a node.", "enabled": true, "stability": "development", @@ -698,9 +589,7 @@ "unit": "{evictions}" }, "elasticsearch.node.cache.memory.usage": { - "attributes": [ - "cache_name" - ], + "attributes": ["cache_name"], "description": "The size in bytes of the cache on a node.", "enabled": true, "stability": "development", @@ -736,9 +625,7 @@ "unit": "{connections}" }, "elasticsearch.node.cluster.io": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "The number of bytes sent and received on the network for internal cluster communication.", "enabled": true, "stability": "development", @@ -774,9 +661,7 @@ "unit": "KiBy" }, "elasticsearch.node.documents": { - "attributes": [ - "document_state" - ], + "attributes": ["document_state"], "description": "The number of documents on the node.", "enabled": true, "stability": "development", @@ -884,9 +769,7 @@ "unit": "{files}" }, "elasticsearch.node.operations.completed": { - "attributes": [ - "operation" - ], + "attributes": ["operation"], "description": "The number of operations completed by a node.", "enabled": true, "stability": "development", @@ -898,9 +781,7 @@ "unit": "{operations}" }, "elasticsearch.node.operations.current": { - "attributes": [ - "operation" - ], + "attributes": ["operation"], "description": "Number of query operations currently running.", "enabled": false, "gauge": { @@ -910,9 +791,7 @@ "unit": "{operations}" }, "elasticsearch.node.operations.get.completed": { - "attributes": [ - "get_result" - ], + "attributes": ["get_result"], "description": "The number of hits and misses resulting from GET operations.", "enabled": false, "stability": "development", @@ -924,9 +803,7 @@ "unit": "{operations}" }, "elasticsearch.node.operations.get.time": { - "attributes": [ - "get_result" - ], + "attributes": ["get_result"], "description": "The time spent on hits and misses resulting from GET operations.", "enabled": false, "stability": "development", @@ -938,9 +815,7 @@ "unit": "ms" }, "elasticsearch.node.operations.time": { - "attributes": [ - "operation" - ], + "attributes": ["operation"], "description": "Time spent on operations by a node.", "enabled": true, "stability": "development", @@ -952,9 +827,7 @@ "unit": "ms" }, "elasticsearch.node.pipeline.ingest.documents.current": { - "attributes": [ - "ingest_pipeline_name" - ], + "attributes": ["ingest_pipeline_name"], "description": "Total number of documents currently being ingested by a pipeline.", "enabled": true, "stability": "development", @@ -966,9 +839,7 @@ "unit": "{documents}" }, "elasticsearch.node.pipeline.ingest.documents.preprocessed": { - "attributes": [ - "ingest_pipeline_name" - ], + "attributes": ["ingest_pipeline_name"], "description": "Number of documents preprocessed by the ingest pipeline.", "enabled": true, "stability": "development", @@ -980,9 +851,7 @@ "unit": "{documents}" }, "elasticsearch.node.pipeline.ingest.operations.failed": { - "attributes": [ - "ingest_pipeline_name" - ], + "attributes": ["ingest_pipeline_name"], "description": "Total number of failed operations for the ingest pipeline.", "enabled": true, "stability": "development", @@ -1030,9 +899,7 @@ "unit": "{compilations}" }, "elasticsearch.node.segments.memory": { - "attributes": [ - "segments_memory_object_type" - ], + "attributes": ["segments_memory_object_type"], "description": "Size of memory for segment object of a node.", "enabled": false, "stability": "development", @@ -1080,10 +947,7 @@ "unit": "By" }, "elasticsearch.node.thread_pool.tasks.finished": { - "attributes": [ - "task_state", - "thread_pool_name" - ], + "attributes": ["task_state", "thread_pool_name"], "description": "The number of tasks finished by the thread pool.", "enabled": true, "stability": "development", @@ -1095,9 +959,7 @@ "unit": "{tasks}" }, "elasticsearch.node.thread_pool.tasks.queued": { - "attributes": [ - "thread_pool_name" - ], + "attributes": ["thread_pool_name"], "description": "The number of queued tasks in the thread pool.", "enabled": true, "stability": "development", @@ -1109,10 +971,7 @@ "unit": "{tasks}" }, "elasticsearch.node.thread_pool.threads": { - "attributes": [ - "thread_pool_name", - "thread_state" - ], + "attributes": ["thread_pool_name", "thread_state"], "description": "The number of threads in the thread pool.", "enabled": true, "stability": "development", @@ -1200,9 +1059,7 @@ "unit": "%" }, "elasticsearch.os.memory": { - "attributes": [ - "memory_state" - ], + "attributes": ["memory_state"], "description": "Amount of physical memory.", "enabled": true, "gauge": { @@ -1256,9 +1113,7 @@ "unit": "1" }, "jvm.gc.collections.count": { - "attributes": [ - "collector_name" - ], + "attributes": ["collector_name"], "description": "The total number of garbage collections that have occurred", "enabled": true, "stability": "development", @@ -1270,9 +1125,7 @@ "unit": "1" }, "jvm.gc.collections.elapsed": { - "attributes": [ - "collector_name" - ], + "attributes": ["collector_name"], "description": "The approximate accumulated collection elapsed time", "enabled": true, "stability": "development", @@ -1344,9 +1197,7 @@ "unit": "By" }, "jvm.memory.pool.max": { - "attributes": [ - "memory_pool_name" - ], + "attributes": ["memory_pool_name"], "description": "The maximum amount of memory can be used for the memory pool", "enabled": true, "gauge": { @@ -1356,9 +1207,7 @@ "unit": "By" }, "jvm.memory.pool.used": { - "attributes": [ - "memory_pool_name" - ], + "attributes": ["memory_pool_name"], "description": "The current memory pool memory usage", "enabled": true, "gauge": { @@ -1383,24 +1232,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "jsirianni", - "VihasMakwana", - "rogercoll" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["jsirianni", "VihasMakwana", "rogercoll"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-envoyalsreceiver/contrib-envoyalsreceiver-e34a902b1adf.json b/ecosystem-explorer/public/data/collector/components/contrib-envoyalsreceiver/contrib-envoyalsreceiver-e34a902b1adf.json index 9648a9e0..9e0f9604 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-envoyalsreceiver/contrib-envoyalsreceiver-e34a902b1adf.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-envoyalsreceiver/contrib-envoyalsreceiver-e34a902b1adf.json @@ -9,19 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "evan-bradley", - "zirain" - ] + "active": ["evan-bradley", "zirain"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-exceptionsconnector/contrib-exceptionsconnector-1c160d622740.json b/ecosystem-explorer/public/data/collector/components/contrib-exceptionsconnector/contrib-exceptionsconnector-1c160d622740.json index 468d610f..85b14521 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-exceptionsconnector/contrib-exceptionsconnector-1c160d622740.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-exceptionsconnector/contrib-exceptionsconnector-1c160d622740.json @@ -9,20 +9,12 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "marctc" - ] + "active": ["marctc"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "traces_to_logs", - "traces_to_metrics" - ] + "alpha": ["traces_to_logs", "traces_to_metrics"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-expvarreceiver/contrib-expvarreceiver-76c71096c72c.json b/ecosystem-explorer/public/data/collector/components/contrib-expvarreceiver/contrib-expvarreceiver-76c71096c72c.json index 160667b8..6c026d1e 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-expvarreceiver/contrib-expvarreceiver-76c71096c72c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-expvarreceiver/contrib-expvarreceiver-76c71096c72c.json @@ -293,19 +293,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "jamesmoessis", - "MovieStoreGuy" - ] + "active": ["jamesmoessis", "MovieStoreGuy"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-failoverconnector/contrib-failoverconnector-25b74e141395.json b/ecosystem-explorer/public/data/collector/components/contrib-failoverconnector/contrib-failoverconnector-25b74e141395.json index 3b5e39bd..b9fdf892 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-failoverconnector/contrib-failoverconnector-25b74e141395.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-failoverconnector/contrib-failoverconnector-25b74e141395.json @@ -9,22 +9,12 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "akats7", - "fatsheep9146" - ] + "active": ["akats7", "fatsheep9146"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "logs_to_logs", - "metrics_to_metrics", - "traces_to_traces" - ] + "alpha": ["logs_to_logs", "metrics_to_metrics", "traces_to_traces"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-faroexporter/contrib-faroexporter-013e034b2da0.json b/ecosystem-explorer/public/data/collector/components/contrib-faroexporter/contrib-faroexporter-013e034b2da0.json index d20b6ee0..337f791b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-faroexporter/contrib-faroexporter-013e034b2da0.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-faroexporter/contrib-faroexporter-013e034b2da0.json @@ -9,21 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "dehaansa", - "rlankfo", - "mar4uk" - ] + "active": ["dehaansa", "rlankfo", "mar4uk"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "traces" - ] + "alpha": ["logs", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-faroreceiver/contrib-faroreceiver-d45e0665a5e2.json b/ecosystem-explorer/public/data/collector/components/contrib-faroreceiver/contrib-faroreceiver-d45e0665a5e2.json index 71293fcd..ffb52347 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-faroreceiver/contrib-faroreceiver-d45e0665a5e2.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-faroreceiver/contrib-faroreceiver-d45e0665a5e2.json @@ -9,21 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dehaansa", - "rlankfo", - "mar4uk" - ] + "active": ["dehaansa", "rlankfo", "mar4uk"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "traces" - ] + "alpha": ["logs", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-fileexporter/contrib-fileexporter-40f78937f1a7.json b/ecosystem-explorer/public/data/collector/components/contrib-fileexporter/contrib-fileexporter-40f78937f1a7.json index 666ab325..ec2f9106 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-fileexporter/contrib-fileexporter-40f78937f1a7.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-fileexporter/contrib-fileexporter-40f78937f1a7.json @@ -9,25 +9,13 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "atingchen" - ] + "active": ["atingchen"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ], - "development": [ - "profiles" - ] + "alpha": ["logs", "metrics", "traces"], + "development": ["profiles"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-filelogreceiver/contrib-filelogreceiver-c3eaf3b7f3e4.json b/ecosystem-explorer/public/data/collector/components/contrib-filelogreceiver/contrib-filelogreceiver-c3eaf3b7f3e4.json index 5b91c121..ea904a7e 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-filelogreceiver/contrib-filelogreceiver-c3eaf3b7f3e4.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-filelogreceiver/contrib-filelogreceiver-c3eaf3b7f3e4.json @@ -9,26 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "andrzej-stencel", - "paulojmdias", - "VihasMakwana", - "braydonk" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["andrzej-stencel", "paulojmdias", "VihasMakwana", "braydonk"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs" - ] + "beta": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-filestatsreceiver/contrib-filestatsreceiver-ac2b916665d0.json b/ecosystem-explorer/public/data/collector/components/contrib-filestatsreceiver/contrib-filestatsreceiver-ac2b916665d0.json index b7796bcc..746853c6 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-filestatsreceiver/contrib-filestatsreceiver-ac2b916665d0.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-filestatsreceiver/contrib-filestatsreceiver-ac2b916665d0.json @@ -32,9 +32,7 @@ "unit": "{file}" }, "file.ctime": { - "attributes": [ - "file.permissions" - ], + "attributes": ["file.permissions"], "description": "Elapsed time since the last change of the file or folder, in seconds since Epoch. In addition to `file.mtime`, this metric tracks metadata changes such as permissions or renaming the file.", "enabled": false, "stability": "development", @@ -71,19 +69,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme" - ], + "active": ["atoulme"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-filestorage/contrib-filestorage-95d2a5f86a92.json b/ecosystem-explorer/public/data/collector/components/contrib-filestorage/contrib-filestorage-95d2a5f86a92.json index 2590fead..e5c51b34 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-filestorage/contrib-filestorage-95d2a5f86a92.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-filestorage/contrib-filestorage-95d2a5f86a92.json @@ -9,24 +9,14 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "swiatekm", - "VihasMakwana" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["swiatekm", "VihasMakwana"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-filterprocessor/contrib-filterprocessor-d1e4a5a1c7b0.json b/ecosystem-explorer/public/data/collector/components/contrib-filterprocessor/contrib-filterprocessor-d1e4a5a1c7b0.json index a5eb732a..6091e16b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-filterprocessor/contrib-filterprocessor-d1e4a5a1c7b0.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-filterprocessor/contrib-filterprocessor-d1e4a5a1c7b0.json @@ -9,31 +9,14 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "TylerHelmuth", - "evan-bradley", - "edmocosta", - "bogdandrutu" - ], - "emeritus": [ - "boostchicken" - ] + "active": ["TylerHelmuth", "evan-bradley", "edmocosta", "bogdandrutu"], + "emeritus": ["boostchicken"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ], - "development": [ - "profiles" - ] + "alpha": ["logs", "metrics", "traces"], + "development": ["profiles"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-flinkmetricsreceiver/contrib-flinkmetricsreceiver-9cc3fe34308b.json b/ecosystem-explorer/public/data/collector/components/contrib-flinkmetricsreceiver/contrib-flinkmetricsreceiver-9cc3fe34308b.json index 646dd21b..bb0d00a0 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-flinkmetricsreceiver/contrib-flinkmetricsreceiver-9cc3fe34308b.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-flinkmetricsreceiver/contrib-flinkmetricsreceiver-9cc3fe34308b.json @@ -2,20 +2,12 @@ "attributes": { "checkpoint": { "description": "The number of checkpoints completed or that failed.", - "enum": [ - "completed", - "failed" - ], + "enum": ["completed", "failed"], "type": "string" }, "garbage_collector_name": { "description": "The names for the parallel scavenge and garbage first garbage collectors.", - "enum": [ - "G1_Old_Generation", - "G1_Young_Generation", - "PS_MarkSweep", - "PS_Scavenge" - ], + "enum": ["G1_Old_Generation", "G1_Young_Generation", "PS_MarkSweep", "PS_Scavenge"], "name_override": "name", "type": "string" }, @@ -26,11 +18,7 @@ }, "record": { "description": "The number of records received in, sent out or dropped due to arriving late.", - "enum": [ - "dropped", - "in", - "out" - ], + "enum": ["dropped", "in", "out"], "type": "string" } }, @@ -41,9 +29,7 @@ "id": "contrib-flinkmetricsreceiver", "metrics": { "flink.job.checkpoint.count": { - "attributes": [ - "checkpoint" - ], + "attributes": ["checkpoint"], "description": "The number of checkpoints completed or failed.", "enabled": true, "stability": "development", @@ -143,9 +129,7 @@ "unit": "ns" }, "flink.jvm.gc.collections.count": { - "attributes": [ - "garbage_collector_name" - ], + "attributes": ["garbage_collector_name"], "description": "The total number of collections that have occurred.", "enabled": true, "stability": "development", @@ -158,9 +142,7 @@ "unit": "{collections}" }, "flink.jvm.gc.collections.time": { - "attributes": [ - "garbage_collector_name" - ], + "attributes": ["garbage_collector_name"], "description": "The total time spent performing garbage collection.", "enabled": true, "stability": "development", @@ -381,10 +363,7 @@ "unit": "By" }, "flink.operator.record.count": { - "attributes": [ - "operator_name", - "record" - ], + "attributes": ["operator_name", "record"], "description": "The number of records an operator has.", "enabled": true, "stability": "development", @@ -397,9 +376,7 @@ "unit": "{records}" }, "flink.operator.watermark.output": { - "attributes": [ - "operator_name" - ], + "attributes": ["operator_name"], "description": "The last watermark this operator has emitted.", "enabled": true, "stability": "development", @@ -412,9 +389,7 @@ "unit": "ms" }, "flink.task.record.count": { - "attributes": [ - "record" - ], + "attributes": ["record"], "description": "The number of records a task has.", "enabled": true, "stability": "development", @@ -432,19 +407,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "JonathanWamsley" - ], + "active": ["JonathanWamsley"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-fluentforwardreceiver/contrib-fluentforwardreceiver-7eb3a432a301.json b/ecosystem-explorer/public/data/collector/components/contrib-fluentforwardreceiver/contrib-fluentforwardreceiver-7eb3a432a301.json index bedaf1db..8056f7c8 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-fluentforwardreceiver/contrib-fluentforwardreceiver-7eb3a432a301.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-fluentforwardreceiver/contrib-fluentforwardreceiver-7eb3a432a301.json @@ -9,19 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax" - ] + "active": ["dmitryax"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs" - ] + "beta": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-geoipprocessor/contrib-geoipprocessor-1f050048c4ca.json b/ecosystem-explorer/public/data/collector/components/contrib-geoipprocessor/contrib-geoipprocessor-1f050048c4ca.json index e2697611..3abbaf77 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-geoipprocessor/contrib-geoipprocessor-1f050048c4ca.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-geoipprocessor/contrib-geoipprocessor-1f050048c4ca.json @@ -9,22 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "andrzej-stencel", - "michalpristas", - "rogercoll" - ] + "active": ["andrzej-stencel", "michalpristas", "rogercoll"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-githubreceiver/contrib-githubreceiver-3fd2bc48534c.json b/ecosystem-explorer/public/data/collector/components/contrib-githubreceiver/contrib-githubreceiver-3fd2bc48534c.json index bd694981..d8a86748 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-githubreceiver/contrib-githubreceiver-3fd2bc48534c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-githubreceiver/contrib-githubreceiver-3fd2bc48534c.json @@ -2,18 +2,12 @@ "attributes": { "vcs.change.state": { "description": "The state of a change (pull request)", - "enum": [ - "merged", - "open" - ], + "enum": ["merged", "open"], "type": "string" }, "vcs.line_change.type": { "description": "The type of line change being measured on a ref (branch).", - "enum": [ - "added", - "removed" - ], + "enum": ["added", "removed"], "type": "string" }, "vcs.ref.base.name": { @@ -22,10 +16,7 @@ }, "vcs.ref.base.type": { "description": "The type of the base reference (branch, tag).", - "enum": [ - "branch", - "tag" - ], + "enum": ["branch", "tag"], "type": "string" }, "vcs.ref.head.name": { @@ -34,18 +25,12 @@ }, "vcs.ref.head.type": { "description": "The type of the head reference (branch, tag).", - "enum": [ - "branch", - "tag" - ], + "enum": ["branch", "tag"], "type": "string" }, "vcs.ref.type": { "description": "The type of the reference in the repository.", - "enum": [ - "branch", - "tag" - ], + "enum": ["branch", "tag"], "type": "string" }, "vcs.repository.name": { @@ -58,10 +43,7 @@ }, "vcs.revision_delta.direction": { "description": "The type of revision comparison.", - "enum": [ - "ahead", - "behind" - ], + "enum": ["ahead", "behind"], "type": "string" } }, @@ -72,11 +54,7 @@ "id": "contrib-githubreceiver", "metrics": { "vcs.change.count": { - "attributes": [ - "vcs.change.state", - "vcs.repository.name", - "vcs.repository.url.full" - ], + "attributes": ["vcs.change.state", "vcs.repository.name", "vcs.repository.url.full"], "description": "The number of changes (pull requests) in a repository, categorized by their state (either open or merged).", "enabled": true, "gauge": { @@ -101,11 +79,7 @@ "unit": "s" }, "vcs.change.time_to_approval": { - "attributes": [ - "vcs.ref.head.name", - "vcs.repository.name", - "vcs.repository.url.full" - ], + "attributes": ["vcs.ref.head.name", "vcs.repository.name", "vcs.repository.url.full"], "description": "The amount of time it took a change (pull request) to go from open to approved.", "enabled": true, "gauge": { @@ -115,11 +89,7 @@ "unit": "s" }, "vcs.change.time_to_merge": { - "attributes": [ - "vcs.ref.head.name", - "vcs.repository.name", - "vcs.repository.url.full" - ], + "attributes": ["vcs.ref.head.name", "vcs.repository.name", "vcs.repository.url.full"], "description": "The amount of time it took a change (pull request) to go from open to merged.", "enabled": true, "gauge": { @@ -129,10 +99,7 @@ "unit": "s" }, "vcs.contributor.count": { - "attributes": [ - "vcs.repository.name", - "vcs.repository.url.full" - ], + "attributes": ["vcs.repository.name", "vcs.repository.url.full"], "description": "The number of unique contributors to a repository.", "enabled": false, "gauge": { @@ -142,11 +109,7 @@ "unit": "{contributor}" }, "vcs.ref.count": { - "attributes": [ - "vcs.ref.type", - "vcs.repository.name", - "vcs.repository.url.full" - ], + "attributes": ["vcs.ref.type", "vcs.repository.name", "vcs.repository.url.full"], "description": "The number of refs of type branch in a repository.", "enabled": true, "gauge": { @@ -222,21 +185,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "adrielp", - "crobert-1", - "TylerHelmuth" - ] - }, - "distributions": [ - "contrib" - ], + "active": ["adrielp", "crobert-1", "TylerHelmuth"] + }, + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics", - "traces" - ] + "alpha": ["metrics", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-githubreceiver/contrib-githubreceiver-fee7acee0c35.json b/ecosystem-explorer/public/data/collector/components/contrib-githubreceiver/contrib-githubreceiver-fee7acee0c35.json index ea103d3f..df7f74cf 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-githubreceiver/contrib-githubreceiver-fee7acee0c35.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-githubreceiver/contrib-githubreceiver-fee7acee0c35.json @@ -2,18 +2,12 @@ "attributes": { "vcs.change.state": { "description": "The state of a change (pull request)", - "enum": [ - "merged", - "open" - ], + "enum": ["merged", "open"], "type": "string" }, "vcs.line_change.type": { "description": "The type of line change being measured on a ref (branch).", - "enum": [ - "added", - "removed" - ], + "enum": ["added", "removed"], "type": "string" }, "vcs.ref.base.name": { @@ -22,10 +16,7 @@ }, "vcs.ref.base.type": { "description": "The type of the base reference (branch, tag).", - "enum": [ - "branch", - "tag" - ], + "enum": ["branch", "tag"], "type": "string" }, "vcs.ref.head.name": { @@ -34,18 +25,12 @@ }, "vcs.ref.head.type": { "description": "The type of the head reference (branch, tag).", - "enum": [ - "branch", - "tag" - ], + "enum": ["branch", "tag"], "type": "string" }, "vcs.ref.type": { "description": "The type of the reference in the repository.", - "enum": [ - "branch", - "tag" - ], + "enum": ["branch", "tag"], "type": "string" }, "vcs.repository.name": { @@ -58,10 +43,7 @@ }, "vcs.revision_delta.direction": { "description": "The type of revision comparison.", - "enum": [ - "ahead", - "behind" - ], + "enum": ["ahead", "behind"], "type": "string" } }, @@ -72,11 +54,7 @@ "id": "contrib-githubreceiver", "metrics": { "vcs.change.count": { - "attributes": [ - "vcs.change.state", - "vcs.repository.name", - "vcs.repository.url.full" - ], + "attributes": ["vcs.change.state", "vcs.repository.name", "vcs.repository.url.full"], "description": "The number of changes (pull requests) in a repository, categorized by their state (either open or merged).", "enabled": true, "gauge": { @@ -101,11 +79,7 @@ "unit": "s" }, "vcs.change.time_to_approval": { - "attributes": [ - "vcs.ref.head.name", - "vcs.repository.name", - "vcs.repository.url.full" - ], + "attributes": ["vcs.ref.head.name", "vcs.repository.name", "vcs.repository.url.full"], "description": "The amount of time it took a change (pull request) to go from open to approved.", "enabled": true, "gauge": { @@ -115,11 +89,7 @@ "unit": "s" }, "vcs.change.time_to_merge": { - "attributes": [ - "vcs.ref.head.name", - "vcs.repository.name", - "vcs.repository.url.full" - ], + "attributes": ["vcs.ref.head.name", "vcs.repository.name", "vcs.repository.url.full"], "description": "The amount of time it took a change (pull request) to go from open to merged.", "enabled": true, "gauge": { @@ -129,10 +99,7 @@ "unit": "s" }, "vcs.contributor.count": { - "attributes": [ - "vcs.repository.name", - "vcs.repository.url.full" - ], + "attributes": ["vcs.repository.name", "vcs.repository.url.full"], "description": "The number of unique contributors to a repository.", "enabled": false, "gauge": { @@ -142,11 +109,7 @@ "unit": "{contributor}" }, "vcs.ref.count": { - "attributes": [ - "vcs.ref.type", - "vcs.repository.name", - "vcs.repository.url.full" - ], + "attributes": ["vcs.ref.type", "vcs.repository.name", "vcs.repository.url.full"], "description": "The number of refs of type branch in a repository.", "enabled": true, "gauge": { @@ -222,23 +185,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "adrielp", - "crobert-1", - "TylerHelmuth" - ] - }, - "distributions": [ - "contrib" - ], + "active": ["adrielp", "crobert-1", "TylerHelmuth"] + }, + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ], - "development": [ - "traces" - ] + "alpha": ["metrics"], + "development": ["traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-gitlabreceiver/contrib-gitlabreceiver-98237ff69455.json b/ecosystem-explorer/public/data/collector/components/contrib-gitlabreceiver/contrib-gitlabreceiver-98237ff69455.json index 8465a0c2..1f46a155 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-gitlabreceiver/contrib-gitlabreceiver-98237ff69455.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-gitlabreceiver/contrib-gitlabreceiver-98237ff69455.json @@ -9,20 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "adrielp", - "atoulme", - "niwoerner" - ] + "active": ["adrielp", "atoulme", "niwoerner"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "traces" - ] + "alpha": ["traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googleclientauthextension/contrib-googleclientauthextension-3b1a2aa8ab96.json b/ecosystem-explorer/public/data/collector/components/contrib-googleclientauthextension/contrib-googleclientauthextension-3b1a2aa8ab96.json index 4155379f..980d7b3c 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googleclientauthextension/contrib-googleclientauthextension-3b1a2aa8ab96.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googleclientauthextension/contrib-googleclientauthextension-3b1a2aa8ab96.json @@ -9,23 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "dashpole", - "aabmass", - "braydonk", - "jsuereth", - "psx95", - "ridwanmsharif" - ] + "active": ["dashpole", "aabmass", "braydonk", "jsuereth", "psx95", "ridwanmsharif"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudexporter/contrib-googlecloudexporter-e02124f7b468.json b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudexporter/contrib-googlecloudexporter-e02124f7b468.json index 2da6ce5a..b38bfcbb 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudexporter/contrib-googlecloudexporter-e02124f7b468.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudexporter/contrib-googlecloudexporter-e02124f7b468.json @@ -9,25 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "aabmass", - "dashpole", - "braydonk", - "jsuereth", - "psx95", - "ridwanmsharif" - ] + "active": ["aabmass", "dashpole", "braydonk", "jsuereth", "psx95", "ridwanmsharif"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudlogentryencodingextension/contrib-googlecloudlogentryencodingextension-0e0479f70d9c.json b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudlogentryencodingextension/contrib-googlecloudlogentryencodingextension-0e0479f70d9c.json index 3a46c1e8..515a6bb2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudlogentryencodingextension/contrib-googlecloudlogentryencodingextension-0e0479f70d9c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudlogentryencodingextension/contrib-googlecloudlogentryencodingextension-0e0479f70d9c.json @@ -9,21 +9,13 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "constanca-m" - ], - "emeritus": [ - "alexvanboxel" - ] + "active": ["constanca-m"], + "emeritus": ["alexvanboxel"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudmonitoringreceiver/contrib-googlecloudmonitoringreceiver-a1d4eab9edc8.json b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudmonitoringreceiver/contrib-googlecloudmonitoringreceiver-a1d4eab9edc8.json index 20ffe817..4b42808a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudmonitoringreceiver/contrib-googlecloudmonitoringreceiver-a1d4eab9edc8.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudmonitoringreceiver/contrib-googlecloudmonitoringreceiver-a1d4eab9edc8.json @@ -9,22 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dashpole", - "TylerHelmuth" - ], - "emeritus": [ - "abhishek-at-cloudwerx" - ] + "active": ["dashpole", "TylerHelmuth"], + "emeritus": ["abhishek-at-cloudwerx"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubexporter/contrib-googlecloudpubsubexporter-660e8372639e.json b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubexporter/contrib-googlecloudpubsubexporter-660e8372639e.json index 5a5d8d2c..a1195a27 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubexporter/contrib-googlecloudpubsubexporter-660e8372639e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubexporter/contrib-googlecloudpubsubexporter-660e8372639e.json @@ -9,20 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "alexvanboxel" - ] + "active": ["alexvanboxel"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubpushreceiver/contrib-googlecloudpubsubpushreceiver-b819d13e43af.json b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubpushreceiver/contrib-googlecloudpubsubpushreceiver-b819d13e43af.json index 1c89f58b..dbedf07b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubpushreceiver/contrib-googlecloudpubsubpushreceiver-b819d13e43af.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubpushreceiver/contrib-googlecloudpubsubpushreceiver-b819d13e43af.json @@ -19,16 +19,11 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "axw", - "constanca-m" - ] + "active": ["axw", "constanca-m"] }, "stability": { - "development": [ - "logs" - ] + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubreceiver/contrib-googlecloudpubsubreceiver-d5912d66032a.json b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubreceiver/contrib-googlecloudpubsubreceiver-d5912d66032a.json index 5d7a16a2..d3b199eb 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubreceiver/contrib-googlecloudpubsubreceiver-d5912d66032a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudpubsubreceiver/contrib-googlecloudpubsubreceiver-d5912d66032a.json @@ -9,20 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "alexvanboxel" - ] + "active": ["alexvanboxel"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudspannerreceiver/contrib-googlecloudspannerreceiver-dad5ae073167.json b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudspannerreceiver/contrib-googlecloudspannerreceiver-dad5ae073167.json index b1c20d86..77c59185 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudspannerreceiver/contrib-googlecloudspannerreceiver-dad5ae073167.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudspannerreceiver/contrib-googlecloudspannerreceiver-dad5ae073167.json @@ -9,26 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dashpole", - "KiranmayiB", - "nsj07" - ], - "emeritus": [ - "architjugran", - "varunraiko", - "harishbohara11", - "dsimil" - ] + "active": ["dashpole", "KiranmayiB", "nsj07"], + "emeritus": ["architjugran", "varunraiko", "harishbohara11", "dsimil"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudstorageexporter/contrib-googlecloudstorageexporter-38e037bb1748.json b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudstorageexporter/contrib-googlecloudstorageexporter-38e037bb1748.json index fefb2ead..2e7a8f3b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googlecloudstorageexporter/contrib-googlecloudstorageexporter-38e037bb1748.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googlecloudstorageexporter/contrib-googlecloudstorageexporter-38e037bb1748.json @@ -9,23 +9,14 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "constanca-m", - "braydonk" - ], + "active": ["constanca-m", "braydonk"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ], - "development": [ - "traces" - ] + "alpha": ["logs"], + "development": ["traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googlemanagedprometheusexporter/contrib-googlemanagedprometheusexporter-1e9123f1358b.json b/ecosystem-explorer/public/data/collector/components/contrib-googlemanagedprometheusexporter/contrib-googlemanagedprometheusexporter-1e9123f1358b.json index d0270f65..d668aaf2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googlemanagedprometheusexporter/contrib-googlemanagedprometheusexporter-1e9123f1358b.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googlemanagedprometheusexporter/contrib-googlemanagedprometheusexporter-1e9123f1358b.json @@ -9,23 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "aabmass", - "dashpole", - "braydonk", - "jsuereth", - "psx95", - "ridwanmsharif" - ] + "active": ["aabmass", "dashpole", "braydonk", "jsuereth", "psx95", "ridwanmsharif"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-googlesecopsexporter/contrib-googlesecopsexporter-3cfb3e6a6508.json b/ecosystem-explorer/public/data/collector/components/contrib-googlesecopsexporter/contrib-googlesecopsexporter-3cfb3e6a6508.json index 870a340c..e9557f97 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-googlesecopsexporter/contrib-googlesecopsexporter-3cfb3e6a6508.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-googlesecopsexporter/contrib-googlesecopsexporter-3cfb3e6a6508.json @@ -9,18 +9,11 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "braydonk", - "colelaven", - "dpaasman00", - "mrsillydog" - ] + "active": ["braydonk", "colelaven", "dpaasman00", "mrsillydog"] }, "stability": { - "development": [ - "logs" - ] + "development": ["logs"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-grafanacloudconnector/contrib-grafanacloudconnector-a7c3fb93cb4a.json b/ecosystem-explorer/public/data/collector/components/contrib-grafanacloudconnector/contrib-grafanacloudconnector-a7c3fb93cb4a.json index 1d1ad9dd..5378b3d2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-grafanacloudconnector/contrib-grafanacloudconnector-a7c3fb93cb4a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-grafanacloudconnector/contrib-grafanacloudconnector-a7c3fb93cb4a.json @@ -9,21 +9,14 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "rlankfo", - "jcreixell" - ], + "active": ["rlankfo", "jcreixell"], "emeritus": [], "seeking_new": false }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "traces_to_metrics" - ] + "alpha": ["traces_to_metrics"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-groupbyattrsprocessor/contrib-groupbyattrsprocessor-b05249cf0229.json b/ecosystem-explorer/public/data/collector/components/contrib-groupbyattrsprocessor/contrib-groupbyattrsprocessor-b05249cf0229.json index 69dfa960..bdac2b1a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-groupbyattrsprocessor/contrib-groupbyattrsprocessor-b05249cf0229.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-groupbyattrsprocessor/contrib-groupbyattrsprocessor-b05249cf0229.json @@ -9,25 +9,13 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "rnishtala-sumo", - "amdprophet" - ], - "emeritus": [ - "echlebek" - ] + "active": ["rnishtala-sumo", "amdprophet"], + "emeritus": ["echlebek"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-groupbytraceprocessor/contrib-groupbytraceprocessor-060d4cfc42a6.json b/ecosystem-explorer/public/data/collector/components/contrib-groupbytraceprocessor/contrib-groupbytraceprocessor-060d4cfc42a6.json index e7086383..c68e8f2d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-groupbytraceprocessor/contrib-groupbytraceprocessor-060d4cfc42a6.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-groupbytraceprocessor/contrib-groupbytraceprocessor-060d4cfc42a6.json @@ -9,23 +9,14 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "iblancasa" - ], - "emeritus": [ - "jpkrohling" - ], + "active": ["iblancasa"], + "emeritus": ["jpkrohling"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "traces" - ] + "beta": ["traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-haproxyreceiver/contrib-haproxyreceiver-b25aadf39750.json b/ecosystem-explorer/public/data/collector/components/contrib-haproxyreceiver/contrib-haproxyreceiver-b25aadf39750.json index aa398dea..5834f559 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-haproxyreceiver/contrib-haproxyreceiver-b25aadf39750.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-haproxyreceiver/contrib-haproxyreceiver-b25aadf39750.json @@ -2,14 +2,7 @@ "attributes": { "status_code": { "description": "Status code category, 1xx, 2xx, 3xx, 4xx, 5xx or other", - "enum": [ - "1xx", - "2xx", - "3xx", - "4xx", - "5xx", - "other" - ], + "enum": ["1xx", "2xx", "3xx", "4xx", "5xx", "other"], "type": "string" } }, @@ -272,9 +265,7 @@ "unit": "{requests}" }, "haproxy.requests.total": { - "attributes": [ - "status_code" - ], + "attributes": ["status_code"], "description": "Total number of HTTP requests received. Corresponds to HAProxy's `req_tot`, `hrsp_1xx`, `hrsp_2xx`, `hrsp_3xx`, `hrsp_4xx`, `hrsp_5xx` and `hrsp_other` metrics.", "enabled": true, "stability": "development", @@ -399,19 +390,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme", - "MovieStoreGuy" - ] - }, - "distributions": [ - "contrib" - ], + "active": ["atoulme", "MovieStoreGuy"] + }, + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-headerssetterextension/contrib-headerssetterextension-6225f717ce5c.json b/ecosystem-explorer/public/data/collector/components/contrib-headerssetterextension/contrib-headerssetterextension-6225f717ce5c.json index 09b70971..b2b71897 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-headerssetterextension/contrib-headerssetterextension-6225f717ce5c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-headerssetterextension/contrib-headerssetterextension-6225f717ce5c.json @@ -9,20 +9,13 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "VihasMakwana" - ], + "active": ["VihasMakwana"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-healthcheckextension/contrib-healthcheckextension-d4a6967bdcdb.json b/ecosystem-explorer/public/data/collector/components/contrib-healthcheckextension/contrib-healthcheckextension-d4a6967bdcdb.json index e6fefdfc..6a99715f 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-healthcheckextension/contrib-healthcheckextension-d4a6967bdcdb.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-healthcheckextension/contrib-healthcheckextension-d4a6967bdcdb.json @@ -9,21 +9,13 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "evan-bradley" - ], + "active": ["evan-bradley"], "seeking_new": true }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-healthcheckv2extension/contrib-healthcheckv2extension-dbc0ec09fa79.json b/ecosystem-explorer/public/data/collector/components/contrib-healthcheckv2extension/contrib-healthcheckv2extension-dbc0ec09fa79.json index dedae806..e50e1b82 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-healthcheckv2extension/contrib-healthcheckv2extension-dbc0ec09fa79.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-healthcheckv2extension/contrib-healthcheckv2extension-dbc0ec09fa79.json @@ -9,21 +9,14 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "evan-bradley" - ], - "emeritus": [ - "jpkrohling", - "mwear" - ], + "active": ["evan-bradley"], + "emeritus": ["jpkrohling", "mwear"], "seeking_new": true }, "distributions": [], "stability": { - "development": [ - "extension" - ] + "development": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-honeycombmarkerexporter/contrib-honeycombmarkerexporter-1c89eefa32dd.json b/ecosystem-explorer/public/data/collector/components/contrib-honeycombmarkerexporter/contrib-honeycombmarkerexporter-1c89eefa32dd.json index 1672b0b1..7da72d24 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-honeycombmarkerexporter/contrib-honeycombmarkerexporter-1c89eefa32dd.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-honeycombmarkerexporter/contrib-honeycombmarkerexporter-1c89eefa32dd.json @@ -9,19 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "TylerHelmuth", - "fchikwekwe" - ] + "active": ["TylerHelmuth", "fchikwekwe"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-hostmetricsreceiver/contrib-hostmetricsreceiver-9acc796a822d.json b/ecosystem-explorer/public/data/collector/components/contrib-hostmetricsreceiver/contrib-hostmetricsreceiver-9acc796a822d.json index 6c0d501d..9abfae02 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-hostmetricsreceiver/contrib-hostmetricsreceiver-9acc796a822d.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-hostmetricsreceiver/contrib-hostmetricsreceiver-9acc796a822d.json @@ -9,25 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "braydonk", - "rogercoll" - ] + "active": ["dmitryax", "braydonk", "rogercoll"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "beta": [ - "metrics" - ], - "development": [ - "logs" - ] + "beta": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-hostobserver/contrib-hostobserver-3e918045383f.json b/ecosystem-explorer/public/data/collector/components/contrib-hostobserver/contrib-hostobserver-3e918045383f.json index d8ae3475..7e280f58 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-hostobserver/contrib-hostobserver-3e918045383f.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-hostobserver/contrib-hostobserver-3e918045383f.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "MovieStoreGuy" - ] + "active": ["MovieStoreGuy"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-httpcheckreceiver/contrib-httpcheckreceiver-b2d346be1cd2.json b/ecosystem-explorer/public/data/collector/components/contrib-httpcheckreceiver/contrib-httpcheckreceiver-b2d346be1cd2.json index bbb203aa..dbee7215 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-httpcheckreceiver/contrib-httpcheckreceiver-b2d346be1cd2.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-httpcheckreceiver/contrib-httpcheckreceiver-b2d346be1cd2.json @@ -48,10 +48,7 @@ "id": "contrib-httpcheckreceiver", "metrics": { "httpcheck.client.connection.duration": { - "attributes": [ - "http.url", - "network.transport" - ], + "attributes": ["http.url", "network.transport"], "description": "Time spent establishing TCP connection to the endpoint.", "enabled": false, "gauge": { @@ -61,9 +58,7 @@ "unit": "ms" }, "httpcheck.client.request.duration": { - "attributes": [ - "http.url" - ], + "attributes": ["http.url"], "description": "Time spent sending the HTTP request to the endpoint.", "enabled": false, "gauge": { @@ -73,9 +68,7 @@ "unit": "ms" }, "httpcheck.dns.lookup.duration": { - "attributes": [ - "http.url" - ], + "attributes": ["http.url"], "description": "Time spent performing DNS lookup for the endpoint.", "enabled": false, "gauge": { @@ -85,9 +78,7 @@ "unit": "ms" }, "httpcheck.duration": { - "attributes": [ - "http.url" - ], + "attributes": ["http.url"], "description": "Measures the duration of the HTTP check.", "enabled": true, "gauge": { @@ -97,10 +88,7 @@ "unit": "ms" }, "httpcheck.error": { - "attributes": [ - "error.message", - "http.url" - ], + "attributes": ["error.message", "http.url"], "description": "Records errors occurring during HTTP check.", "enabled": true, "stability": "development", @@ -112,9 +100,7 @@ "unit": "{error}" }, "httpcheck.response.duration": { - "attributes": [ - "http.url" - ], + "attributes": ["http.url"], "description": "Time spent receiving the HTTP response from the endpoint.", "enabled": false, "gauge": { @@ -124,9 +110,7 @@ "unit": "ms" }, "httpcheck.response.size": { - "attributes": [ - "http.url" - ], + "attributes": ["http.url"], "description": "Size of response body in bytes.", "enabled": false, "gauge": { @@ -136,12 +120,7 @@ "unit": "By" }, "httpcheck.status": { - "attributes": [ - "http.method", - "http.status_class", - "http.status_code", - "http.url" - ], + "attributes": ["http.method", "http.status_class", "http.status_code", "http.url"], "description": "1 if the check resulted in status_code matching the status_class, otherwise 0.", "enabled": true, "stability": "development", @@ -153,12 +132,7 @@ "unit": "1" }, "httpcheck.tls.cert_remaining": { - "attributes": [ - "http.tls.cn", - "http.tls.issuer", - "http.tls.san", - "http.url" - ], + "attributes": ["http.tls.cn", "http.tls.issuer", "http.tls.san", "http.url"], "description": "Time in seconds until certificate expiry, as specified by `NotAfter` field in the x.509 certificate. Negative values represent time in seconds since expiration.", "enabled": false, "gauge": { @@ -168,9 +142,7 @@ "unit": "s" }, "httpcheck.tls.handshake.duration": { - "attributes": [ - "http.url" - ], + "attributes": ["http.url"], "description": "Time spent performing TLS handshake with the endpoint.", "enabled": false, "gauge": { @@ -180,10 +152,7 @@ "unit": "ms" }, "httpcheck.validation.failed": { - "attributes": [ - "http.url", - "validation.type" - ], + "attributes": ["http.url", "validation.type"], "description": "Number of response validations that failed.", "enabled": false, "stability": "development", @@ -195,10 +164,7 @@ "unit": "{validation}" }, "httpcheck.validation.passed": { - "attributes": [ - "http.url", - "validation.type" - ], + "attributes": ["http.url", "validation.type"], "description": "Number of response validations that passed.", "enabled": false, "stability": "development", @@ -215,23 +181,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "VenuEmmadi" - ], - "emeritus": [ - "codeboten" - ], + "active": ["VenuEmmadi"], + "emeritus": ["codeboten"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-httpforwarderextension/contrib-httpforwarderextension-dcf90583980e.json b/ecosystem-explorer/public/data/collector/components/contrib-httpforwarderextension/contrib-httpforwarderextension-dcf90583980e.json index 8192c7b5..b5b6d91b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-httpforwarderextension/contrib-httpforwarderextension-dcf90583980e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-httpforwarderextension/contrib-httpforwarderextension-dcf90583980e.json @@ -9,23 +9,14 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "atoulme" - ], - "emeritus": [ - "rmfitzpatrick" - ], + "active": ["atoulme"], + "emeritus": ["rmfitzpatrick"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-huaweicloudcesreceiver/contrib-huaweicloudcesreceiver-8cede7a53928.json b/ecosystem-explorer/public/data/collector/components/contrib-huaweicloudcesreceiver/contrib-huaweicloudcesreceiver-8cede7a53928.json index f576e97b..bd837254 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-huaweicloudcesreceiver/contrib-huaweicloudcesreceiver-8cede7a53928.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-huaweicloudcesreceiver/contrib-huaweicloudcesreceiver-8cede7a53928.json @@ -9,20 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "heitorganzeli", - "narcis96" - ], - "emeritus": [ - "mwear" - ] + "active": ["heitorganzeli", "narcis96"], + "emeritus": ["mwear"] }, "distributions": [], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-icmpcheckreceiver/contrib-icmpcheckreceiver-257891cf340e.json b/ecosystem-explorer/public/data/collector/components/contrib-icmpcheckreceiver/contrib-icmpcheckreceiver-257891cf340e.json index e9bd0f82..cd496974 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-icmpcheckreceiver/contrib-icmpcheckreceiver-257891cf340e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-icmpcheckreceiver/contrib-icmpcheckreceiver-257891cf340e.json @@ -56,17 +56,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme", - "jkoronaAtCisco" - ] + "active": ["atoulme", "jkoronaAtCisco"] }, "distributions": [], "stability": { - "development": [ - "metrics" - ] + "development": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-iisreceiver/contrib-iisreceiver-bf79d264b052.json b/ecosystem-explorer/public/data/collector/components/contrib-iisreceiver/contrib-iisreceiver-bf79d264b052.json index 22a5ea23..b53686c9 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-iisreceiver/contrib-iisreceiver-bf79d264b052.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-iisreceiver/contrib-iisreceiver-bf79d264b052.json @@ -2,23 +2,12 @@ "attributes": { "direction": { "description": "The direction data is moving.", - "enum": [ - "received", - "sent" - ], + "enum": ["received", "sent"], "type": "string" }, "request": { "description": "The type of request sent by a client.", - "enum": [ - "delete", - "get", - "head", - "options", - "post", - "put", - "trace" - ], + "enum": ["delete", "get", "head", "options", "post", "put", "trace"], "type": "string" } }, @@ -91,9 +80,7 @@ "unit": "By" }, "iis.network.file.count": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "Number of transmitted files.", "enabled": true, "stability": "development", @@ -105,9 +92,7 @@ "unit": "{files}" }, "iis.network.io": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "Total amount of bytes sent and received.", "enabled": true, "stability": "development", @@ -119,9 +104,7 @@ "unit": "By" }, "iis.request.count": { - "attributes": [ - "request" - ], + "attributes": ["request"], "description": "Total number of requests of a given type.", "enabled": true, "stability": "development", @@ -189,26 +172,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "ishleenk17", - "Mrod1598", - "pjanotti" - ], + "active": ["ishleenk17", "Mrod1598", "pjanotti"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] - }, - "unsupported_platforms": [ - "(windows && arm64)", - "darwin", - "linux" - ] + "beta": ["metrics"] + }, + "unsupported_platforms": ["(windows && arm64)", "darwin", "linux"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-influxdbexporter/contrib-influxdbexporter-bd77cb7c05bb.json b/ecosystem-explorer/public/data/collector/components/contrib-influxdbexporter/contrib-influxdbexporter-bd77cb7c05bb.json index 1e158efb..971d9b26 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-influxdbexporter/contrib-influxdbexporter-bd77cb7c05bb.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-influxdbexporter/contrib-influxdbexporter-bd77cb7c05bb.json @@ -9,20 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "jacobmarble" - ] + "active": ["jacobmarble"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-influxdbreceiver/contrib-influxdbreceiver-6b6a13bb21ce.json b/ecosystem-explorer/public/data/collector/components/contrib-influxdbreceiver/contrib-influxdbreceiver-6b6a13bb21ce.json index 9b2e2450..3b078ff7 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-influxdbreceiver/contrib-influxdbreceiver-6b6a13bb21ce.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-influxdbreceiver/contrib-influxdbreceiver-6b6a13bb21ce.json @@ -9,18 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "jacobmarble" - ] + "active": ["jacobmarble"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-intervalprocessor/contrib-intervalprocessor-2f0207b04794.json b/ecosystem-explorer/public/data/collector/components/contrib-intervalprocessor/contrib-intervalprocessor-2f0207b04794.json index 5b3d6c61..16f529c2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-intervalprocessor/contrib-intervalprocessor-2f0207b04794.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-intervalprocessor/contrib-intervalprocessor-2f0207b04794.json @@ -9,22 +9,13 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "RichieSams" - ], - "emeritus": [ - "tombrk" - ] + "active": ["RichieSams"], + "emeritus": ["tombrk"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-isolationforestprocessor/contrib-isolationforestprocessor-e6a9752786a5.json b/ecosystem-explorer/public/data/collector/components/contrib-isolationforestprocessor/contrib-isolationforestprocessor-e6a9752786a5.json index b1f4ad7d..d135849b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-isolationforestprocessor/contrib-isolationforestprocessor-e6a9752786a5.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-isolationforestprocessor/contrib-isolationforestprocessor-e6a9752786a5.json @@ -9,20 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "atoulme" - ] + "active": ["atoulme"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-jaegerencodingextension/contrib-jaegerencodingextension-b629d116b498.json b/ecosystem-explorer/public/data/collector/components/contrib-jaegerencodingextension/contrib-jaegerencodingextension-b629d116b498.json index 673ca656..1f25ee39 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-jaegerencodingextension/contrib-jaegerencodingextension-b629d116b498.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-jaegerencodingextension/contrib-jaegerencodingextension-b629d116b498.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "MovieStoreGuy", - "atoulme" - ] + "active": ["MovieStoreGuy", "atoulme"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-jaegerreceiver/contrib-jaegerreceiver-75ea851e6ea9.json b/ecosystem-explorer/public/data/collector/components/contrib-jaegerreceiver/contrib-jaegerreceiver-75ea851e6ea9.json index 0b9b3979..2fefaca9 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-jaegerreceiver/contrib-jaegerreceiver-75ea851e6ea9.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-jaegerreceiver/contrib-jaegerreceiver-75ea851e6ea9.json @@ -9,20 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "yurishkuro" - ] + "active": ["yurishkuro"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "beta": [ - "traces" - ] + "beta": ["traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-jaegerremotesampling/contrib-jaegerremotesampling-5e2f8271bfb2.json b/ecosystem-explorer/public/data/collector/components/contrib-jaegerremotesampling/contrib-jaegerremotesampling-5e2f8271bfb2.json index 4bc95edf..2309bacb 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-jaegerremotesampling/contrib-jaegerremotesampling-5e2f8271bfb2.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-jaegerremotesampling/contrib-jaegerremotesampling-5e2f8271bfb2.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "yurishkuro", - "frzifus" - ] + "active": ["yurishkuro", "frzifus"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-jmxreceiver/contrib-jmxreceiver-28b53dc7b07b.json b/ecosystem-explorer/public/data/collector/components/contrib-jmxreceiver/contrib-jmxreceiver-28b53dc7b07b.json index 4b0fb829..7b982105 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-jmxreceiver/contrib-jmxreceiver-28b53dc7b07b.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-jmxreceiver/contrib-jmxreceiver-28b53dc7b07b.json @@ -9,22 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme", - "rogercoll" - ], - "emeritus": [ - "rmfitzpatrick" - ] + "active": ["atoulme", "rogercoll"], + "emeritus": ["rmfitzpatrick"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "deprecated": [ - "metrics" - ] + "deprecated": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-journaldreceiver/contrib-journaldreceiver-4a4f2ea5051c.json b/ecosystem-explorer/public/data/collector/components/contrib-journaldreceiver/contrib-journaldreceiver-4a4f2ea5051c.json index 26e036aa..38416f05 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-journaldreceiver/contrib-journaldreceiver-4a4f2ea5051c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-journaldreceiver/contrib-journaldreceiver-4a4f2ea5051c.json @@ -9,28 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "belimawr", - "namco1992" - ], - "emeritus": [ - "djaglowski", - "sumo-drosiek" - ] + "active": ["belimawr", "namco1992"], + "emeritus": ["djaglowski", "sumo-drosiek"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] }, - "unsupported_platforms": [ - "darwin", - "windows" - ] + "unsupported_platforms": ["darwin", "windows"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-jsonlogencodingextension/contrib-jsonlogencodingextension-60657f5056ce.json b/ecosystem-explorer/public/data/collector/components/contrib-jsonlogencodingextension/contrib-jsonlogencodingextension-60657f5056ce.json index 5c8c3114..1c5c4f17 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-jsonlogencodingextension/contrib-jsonlogencodingextension-60657f5056ce.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-jsonlogencodingextension/contrib-jsonlogencodingextension-60657f5056ce.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "VihasMakwana", - "atoulme" - ] + "active": ["VihasMakwana", "atoulme"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-k8sattributesprocessor/contrib-k8sattributesprocessor-d076dc95d2d6.json b/ecosystem-explorer/public/data/collector/components/contrib-k8sattributesprocessor/contrib-k8sattributesprocessor-d076dc95d2d6.json index aebe2098..88d7bb73 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-k8sattributesprocessor/contrib-k8sattributesprocessor-d076dc95d2d6.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-k8sattributesprocessor/contrib-k8sattributesprocessor-d076dc95d2d6.json @@ -2,12 +2,7 @@ "attributes": { "otelcol.signal": { "description": "The signal type the telemetry metric is associated with", - "enum": [ - "logs", - "metrics", - "profiles", - "traces" - ], + "enum": ["logs", "metrics", "profiles", "traces"], "type": "string" }, "pod_identifier": { @@ -16,10 +11,7 @@ }, "status": { "description": "The status of the pod association operation", - "enum": [ - "error", - "success" - ], + "enum": ["error", "success"], "type": "string" } }, @@ -33,31 +25,14 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "dmitryax", - "fatsheep9146", - "TylerHelmuth", - "ChrsMark", - "odubajDT" - ], - "emeritus": [ - "rmfitzpatrick" - ] + "active": ["dmitryax", "fatsheep9146", "TylerHelmuth", "ChrsMark", "odubajDT"], + "emeritus": ["rmfitzpatrick"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ], - "development": [ - "profiles" - ] + "beta": ["logs", "metrics", "traces"], + "development": ["profiles"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-k8sclusterreceiver/contrib-k8sclusterreceiver-a9e86bc78a79.json b/ecosystem-explorer/public/data/collector/components/contrib-k8sclusterreceiver/contrib-k8sclusterreceiver-a9e86bc78a79.json index 2c37364c..67483c3c 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-k8sclusterreceiver/contrib-k8sclusterreceiver-a9e86bc78a79.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-k8sclusterreceiver/contrib-k8sclusterreceiver-a9e86bc78a79.json @@ -21,11 +21,7 @@ }, "k8s.container.status.state": { "description": "The state of the container (terminated, running, waiting). See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.30/#containerstate-v1-core for details.", - "enum": [ - "running", - "terminated", - "waiting" - ], + "enum": ["running", "terminated", "waiting"], "type": "string" }, "k8s.namespace.name": { @@ -34,20 +30,12 @@ }, "k8s.service.endpoint.address_type": { "description": "The address type of the endpoint.", - "enum": [ - "FQDN", - "IPv4", - "IPv6" - ], + "enum": ["FQDN", "IPv4", "IPv6"], "type": "string" }, "k8s.service.endpoint.condition": { "description": "The condition of the service endpoint.", - "enum": [ - "ready", - "serving", - "terminating" - ], + "enum": ["ready", "serving", "terminating"], "type": "string" }, "k8s.service.endpoint.zone": { @@ -138,9 +126,7 @@ "unit": "{restart}" }, "k8s.container.status.reason": { - "attributes": [ - "k8s.container.status.reason" - ], + "attributes": ["k8s.container.status.reason"], "description": "Experimental metric, may experience breaking changes. Describes the number of K8s containers that are currently in a state for a given reason. All possible container state reasons will be reported at each time interval to avoid missing metrics. Only the value corresponding to the current state reason will be non-zero.", "enabled": false, "stability": "development", @@ -152,9 +138,7 @@ "unit": "{container}" }, "k8s.container.status.state": { - "attributes": [ - "k8s.container.status.state" - ], + "attributes": ["k8s.container.status.state"], "description": "Experimental metric, may experience breaking changes. Describes the number of K8s containers that are currently in a given state. All possible container states will be reported at each time interval to avoid missing metrics. Only the value corresponding to the current state will be non-zero.", "enabled": false, "stability": "development", @@ -337,9 +321,7 @@ "unit": "" }, "k8s.node.condition": { - "attributes": [ - "condition" - ], + "attributes": ["condition"], "description": "The condition of a particular Node.", "enabled": false, "gauge": { @@ -403,9 +385,7 @@ "unit": "{pod}" }, "k8s.resource_quota.hard_limit": { - "attributes": [ - "resource" - ], + "attributes": ["resource"], "description": "The upper limit for a particular resource in a specific namespace. Will only be sent if a quota is specified. CPU requests/limits will be sent as millicores", "enabled": true, "gauge": { @@ -415,9 +395,7 @@ "unit": "{resource}" }, "k8s.resource_quota.used": { - "attributes": [ - "resource" - ], + "attributes": ["resource"], "description": "The usage for a particular resource in a specific namespace. Will only be sent if a quota is specified. CPU requests/limits will be sent as millicores", "enabled": true, "gauge": { @@ -486,10 +464,7 @@ "unit": "{pod}" }, "openshift.appliedclusterquota.limit": { - "attributes": [ - "k8s.namespace.name", - "resource" - ], + "attributes": ["k8s.namespace.name", "resource"], "description": "The upper limit for a particular resource in a specific namespace.", "enabled": true, "gauge": { @@ -499,10 +474,7 @@ "unit": "{resource}" }, "openshift.appliedclusterquota.used": { - "attributes": [ - "k8s.namespace.name", - "resource" - ], + "attributes": ["k8s.namespace.name", "resource"], "description": "The usage for a particular resource in a specific namespace.", "enabled": true, "gauge": { @@ -512,9 +484,7 @@ "unit": "{resource}" }, "openshift.clusterquota.limit": { - "attributes": [ - "resource" - ], + "attributes": ["resource"], "description": "The configured upper limit for a particular resource.", "enabled": true, "gauge": { @@ -524,9 +494,7 @@ "unit": "{resource}" }, "openshift.clusterquota.used": { - "attributes": [ - "resource" - ], + "attributes": ["resource"], "description": "The usage for a particular resource with a configured limit.", "enabled": true, "gauge": { @@ -541,25 +509,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "TylerHelmuth", - "povilasv", - "ChrsMark" - ] - }, - "distributions": [ - "contrib", - "k8s" - ], + "active": ["dmitryax", "TylerHelmuth", "povilasv", "ChrsMark"] + }, + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "metrics" - ], - "development": [ - "logs" - ] + "beta": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-k8sclusterreceiver/contrib-k8sclusterreceiver-aee88f1d3b4a.json b/ecosystem-explorer/public/data/collector/components/contrib-k8sclusterreceiver/contrib-k8sclusterreceiver-aee88f1d3b4a.json index d8b83d4c..2ec23829 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-k8sclusterreceiver/contrib-k8sclusterreceiver-aee88f1d3b4a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-k8sclusterreceiver/contrib-k8sclusterreceiver-aee88f1d3b4a.json @@ -21,11 +21,7 @@ }, "k8s.container.status.state": { "description": "The state of the container (terminated, running, waiting). See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.30/#containerstate-v1-core for details.", - "enum": [ - "running", - "terminated", - "waiting" - ], + "enum": ["running", "terminated", "waiting"], "type": "string" }, "k8s.namespace.name": { @@ -34,40 +30,22 @@ }, "k8s.persistentvolume.status.phase": { "description": "The phase of the PersistentVolume.", - "enum": [ - "Available", - "Bound", - "Failed", - "Pending", - "Released" - ], + "enum": ["Available", "Bound", "Failed", "Pending", "Released"], "type": "string" }, "k8s.persistentvolumeclaim.status.phase": { "description": "The phase of the PersistentVolumeClaim.", - "enum": [ - "Bound", - "Lost", - "Pending" - ], + "enum": ["Bound", "Lost", "Pending"], "type": "string" }, "k8s.service.endpoint.address_type": { "description": "The address type of the endpoint.", - "enum": [ - "FQDN", - "IPv4", - "IPv6" - ], + "enum": ["FQDN", "IPv4", "IPv6"], "type": "string" }, "k8s.service.endpoint.condition": { "description": "The condition of the service endpoint.", - "enum": [ - "ready", - "serving", - "terminating" - ], + "enum": ["ready", "serving", "terminating"], "type": "string" }, "k8s.service.endpoint.zone": { @@ -158,9 +136,7 @@ "unit": "{restart}" }, "k8s.container.status.reason": { - "attributes": [ - "k8s.container.status.reason" - ], + "attributes": ["k8s.container.status.reason"], "description": "Experimental metric, may experience breaking changes. Describes the number of K8s containers that are currently in a state for a given reason. All possible container state reasons will be reported at each time interval to avoid missing metrics. Only the value corresponding to the current state reason will be non-zero.", "enabled": false, "stability": "development", @@ -172,9 +148,7 @@ "unit": "{container}" }, "k8s.container.status.state": { - "attributes": [ - "k8s.container.status.state" - ], + "attributes": ["k8s.container.status.state"], "description": "Experimental metric, may experience breaking changes. Describes the number of K8s containers that are currently in a given state. All possible container states will be reported at each time interval to avoid missing metrics. Only the value corresponding to the current state will be non-zero.", "enabled": false, "stability": "development", @@ -357,9 +331,7 @@ "unit": "" }, "k8s.node.condition": { - "attributes": [ - "condition" - ], + "attributes": ["condition"], "description": "The condition of a particular Node.", "enabled": false, "gauge": { @@ -369,9 +341,7 @@ "unit": "{condition}" }, "k8s.persistentvolume.status.phase": { - "attributes": [ - "k8s.persistentvolume.status.phase" - ], + "attributes": ["k8s.persistentvolume.status.phase"], "description": "The current phase of the PersistentVolume (1 for the current phase, 0 for others).", "enabled": false, "stability": "development", @@ -394,9 +364,7 @@ "unit": "By" }, "k8s.persistentvolumeclaim.status.phase": { - "attributes": [ - "k8s.persistentvolumeclaim.status.phase" - ], + "attributes": ["k8s.persistentvolumeclaim.status.phase"], "description": "The current phase of the PersistentVolumeClaim (1 for the current phase, 0 for others).", "enabled": false, "stability": "development", @@ -484,9 +452,7 @@ "unit": "{pod}" }, "k8s.resource_quota.hard_limit": { - "attributes": [ - "resource" - ], + "attributes": ["resource"], "description": "The upper limit for a particular resource in a specific namespace. Will only be sent if a quota is specified. CPU requests/limits will be sent as millicores", "enabled": true, "gauge": { @@ -496,9 +462,7 @@ "unit": "{resource}" }, "k8s.resource_quota.used": { - "attributes": [ - "resource" - ], + "attributes": ["resource"], "description": "The usage for a particular resource in a specific namespace. Will only be sent if a quota is specified. CPU requests/limits will be sent as millicores", "enabled": true, "gauge": { @@ -567,10 +531,7 @@ "unit": "{pod}" }, "openshift.appliedclusterquota.limit": { - "attributes": [ - "k8s.namespace.name", - "resource" - ], + "attributes": ["k8s.namespace.name", "resource"], "description": "The upper limit for a particular resource in a specific namespace.", "enabled": true, "gauge": { @@ -580,10 +541,7 @@ "unit": "{resource}" }, "openshift.appliedclusterquota.used": { - "attributes": [ - "k8s.namespace.name", - "resource" - ], + "attributes": ["k8s.namespace.name", "resource"], "description": "The usage for a particular resource in a specific namespace.", "enabled": true, "gauge": { @@ -593,9 +551,7 @@ "unit": "{resource}" }, "openshift.clusterquota.limit": { - "attributes": [ - "resource" - ], + "attributes": ["resource"], "description": "The configured upper limit for a particular resource.", "enabled": true, "gauge": { @@ -605,9 +561,7 @@ "unit": "{resource}" }, "openshift.clusterquota.used": { - "attributes": [ - "resource" - ], + "attributes": ["resource"], "description": "The usage for a particular resource with a configured limit.", "enabled": true, "gauge": { @@ -622,25 +576,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "TylerHelmuth", - "povilasv", - "ChrsMark" - ] - }, - "distributions": [ - "contrib", - "k8s" - ], + "active": ["dmitryax", "TylerHelmuth", "povilasv", "ChrsMark"] + }, + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "metrics" - ], - "development": [ - "logs" - ] + "beta": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-k8seventsreceiver/contrib-k8seventsreceiver-02f3d8a2fb93.json b/ecosystem-explorer/public/data/collector/components/contrib-k8seventsreceiver/contrib-k8seventsreceiver-02f3d8a2fb93.json index cbb78f30..4ff6a26d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-k8seventsreceiver/contrib-k8seventsreceiver-02f3d8a2fb93.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-k8seventsreceiver/contrib-k8seventsreceiver-02f3d8a2fb93.json @@ -9,21 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "TylerHelmuth", - "ChrsMark" - ] + "active": ["dmitryax", "TylerHelmuth", "ChrsMark"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-k8sleaderelector/contrib-k8sleaderelector-009a1dbc229d.json b/ecosystem-explorer/public/data/collector/components/contrib-k8sleaderelector/contrib-k8sleaderelector-009a1dbc229d.json index 708f7251..5b69f164 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-k8sleaderelector/contrib-k8sleaderelector-009a1dbc229d.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-k8sleaderelector/contrib-k8sleaderelector-009a1dbc229d.json @@ -9,20 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "dmitryax", - "rakesh-garimella" - ] + "active": ["dmitryax", "rakesh-garimella"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-k8sobjectsreceiver/contrib-k8sobjectsreceiver-5f1860652406.json b/ecosystem-explorer/public/data/collector/components/contrib-k8sobjectsreceiver/contrib-k8sobjectsreceiver-5f1860652406.json index ac53bfcc..d90005c6 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-k8sobjectsreceiver/contrib-k8sobjectsreceiver-5f1860652406.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-k8sobjectsreceiver/contrib-k8sobjectsreceiver-5f1860652406.json @@ -9,23 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "hvaghani221", - "TylerHelmuth", - "ChrsMark", - "krisztianfekete" - ] + "active": ["dmitryax", "hvaghani221", "TylerHelmuth", "ChrsMark", "krisztianfekete"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs" - ] + "beta": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-k8sobserver/contrib-k8sobserver-9c4f6109114e.json b/ecosystem-explorer/public/data/collector/components/contrib-k8sobserver/contrib-k8sobserver-9c4f6109114e.json index bdfb7b17..ca80d9e9 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-k8sobserver/contrib-k8sobserver-9c4f6109114e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-k8sobserver/contrib-k8sobserver-9c4f6109114e.json @@ -9,23 +9,13 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "dmitryax", - "ChrsMark" - ], - "emeritus": [ - "rmfitzpatrick" - ] + "active": ["dmitryax", "ChrsMark"], + "emeritus": ["rmfitzpatrick"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-kafkaexporter/contrib-kafkaexporter-2f7002c4dffe.json b/ecosystem-explorer/public/data/collector/components/contrib-kafkaexporter/contrib-kafkaexporter-2f7002c4dffe.json index 58d29a0f..b0f44766 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-kafkaexporter/contrib-kafkaexporter-2f7002c4dffe.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-kafkaexporter/contrib-kafkaexporter-2f7002c4dffe.json @@ -6,10 +6,7 @@ }, "outcome": { "description": "The operation outcome.", - "enum": [ - "failure", - "success" - ], + "enum": ["failure", "success"], "type": "string" }, "partition": { @@ -35,27 +32,13 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "pavolloffay", - "MovieStoreGuy", - "axw", - "paulojmdias" - ] + "active": ["pavolloffay", "MovieStoreGuy", "axw", "paulojmdias"] }, - "distributions": [ - "contrib", - "core" - ], + "distributions": ["contrib", "core"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ], - "development": [ - "profiles" - ] + "beta": ["logs", "metrics", "traces"], + "development": ["profiles"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-kafkametricsreceiver/contrib-kafkametricsreceiver-592aa7379821.json b/ecosystem-explorer/public/data/collector/components/contrib-kafkametricsreceiver/contrib-kafkametricsreceiver-592aa7379821.json index 10320422..2a67c1a8 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-kafkametricsreceiver/contrib-kafkametricsreceiver-592aa7379821.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-kafkametricsreceiver/contrib-kafkametricsreceiver-592aa7379821.json @@ -24,9 +24,7 @@ "id": "contrib-kafkametricsreceiver", "metrics": { "kafka.broker.log_retention_period": { - "attributes": [ - "broker" - ], + "attributes": ["broker"], "description": "log retention time (s) of a broker.", "enabled": false, "gauge": { @@ -47,11 +45,7 @@ "unit": "{brokers}" }, "kafka.consumer_group.lag": { - "attributes": [ - "group", - "partition", - "topic" - ], + "attributes": ["group", "partition", "topic"], "description": "Current approximate lag of consumer group at partition of topic", "enabled": true, "gauge": { @@ -61,10 +55,7 @@ "unit": "1" }, "kafka.consumer_group.lag_sum": { - "attributes": [ - "group", - "topic" - ], + "attributes": ["group", "topic"], "description": "Current approximate sum of consumer group lag across all partitions of topic", "enabled": true, "gauge": { @@ -74,9 +65,7 @@ "unit": "1" }, "kafka.consumer_group.members": { - "attributes": [ - "group" - ], + "attributes": ["group"], "description": "Count of members in the consumer group", "enabled": true, "stability": "development", @@ -88,11 +77,7 @@ "unit": "{members}" }, "kafka.consumer_group.offset": { - "attributes": [ - "group", - "partition", - "topic" - ], + "attributes": ["group", "partition", "topic"], "description": "Current offset of the consumer group at partition of topic", "enabled": true, "gauge": { @@ -102,10 +87,7 @@ "unit": "1" }, "kafka.consumer_group.offset_sum": { - "attributes": [ - "group", - "topic" - ], + "attributes": ["group", "topic"], "description": "Sum of consumer group offset across partitions of topic", "enabled": true, "gauge": { @@ -115,10 +97,7 @@ "unit": "1" }, "kafka.partition.current_offset": { - "attributes": [ - "partition", - "topic" - ], + "attributes": ["partition", "topic"], "description": "Current offset of partition of topic.", "enabled": true, "gauge": { @@ -128,10 +107,7 @@ "unit": "1" }, "kafka.partition.oldest_offset": { - "attributes": [ - "partition", - "topic" - ], + "attributes": ["partition", "topic"], "description": "Oldest offset of partition of topic", "enabled": true, "gauge": { @@ -141,10 +117,7 @@ "unit": "1" }, "kafka.partition.replicas": { - "attributes": [ - "partition", - "topic" - ], + "attributes": ["partition", "topic"], "description": "Number of replicas for partition of topic", "enabled": true, "stability": "development", @@ -156,10 +129,7 @@ "unit": "{replicas}" }, "kafka.partition.replicas_in_sync": { - "attributes": [ - "partition", - "topic" - ], + "attributes": ["partition", "topic"], "description": "Number of synchronized replicas of partition", "enabled": true, "stability": "development", @@ -171,9 +141,7 @@ "unit": "{replicas}" }, "kafka.topic.log_retention_period": { - "attributes": [ - "topic" - ], + "attributes": ["topic"], "description": "log retention period of a topic (s).", "enabled": false, "gauge": { @@ -183,9 +151,7 @@ "unit": "s" }, "kafka.topic.log_retention_size": { - "attributes": [ - "topic" - ], + "attributes": ["topic"], "description": "log retention size of a topic in Bytes, The value (-1) indicates infinite size.", "enabled": false, "gauge": { @@ -195,9 +161,7 @@ "unit": "By" }, "kafka.topic.min_insync_replicas": { - "attributes": [ - "topic" - ], + "attributes": ["topic"], "description": "minimum in-sync replicas of a topic.", "enabled": false, "gauge": { @@ -207,9 +171,7 @@ "unit": "{replicas}" }, "kafka.topic.partitions": { - "attributes": [ - "topic" - ], + "attributes": ["topic"], "description": "Number of partitions in topic.", "enabled": true, "stability": "development", @@ -221,9 +183,7 @@ "unit": "{partitions}" }, "kafka.topic.replication_factor": { - "attributes": [ - "topic" - ], + "attributes": ["topic"], "description": "replication factor of a topic.", "enabled": false, "gauge": { @@ -238,18 +198,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax" - ] + "active": ["dmitryax"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-kafkareceiver/contrib-kafkareceiver-c3cad6db1194.json b/ecosystem-explorer/public/data/collector/components/contrib-kafkareceiver/contrib-kafkareceiver-c3cad6db1194.json index 1ac8aa97..8676bd2a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-kafkareceiver/contrib-kafkareceiver-c3cad6db1194.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-kafkareceiver/contrib-kafkareceiver-c3cad6db1194.json @@ -6,10 +6,7 @@ }, "outcome": { "description": "The operation outcome.", - "enum": [ - "failure", - "success" - ], + "enum": ["failure", "success"], "type": "string" }, "partition": { @@ -31,27 +28,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "pavolloffay", - "MovieStoreGuy", - "axw", - "paulojmdias" - ] + "active": ["pavolloffay", "MovieStoreGuy", "axw", "paulojmdias"] }, - "distributions": [ - "contrib", - "core" - ], + "distributions": ["contrib", "core"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ], - "development": [ - "profiles" - ] + "beta": ["logs", "metrics", "traces"], + "development": ["profiles"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-kafkatopicsobserver/contrib-kafkatopicsobserver-246779da40b1.json b/ecosystem-explorer/public/data/collector/components/contrib-kafkatopicsobserver/contrib-kafkatopicsobserver-246779da40b1.json index 85c39c04..1611e800 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-kafkatopicsobserver/contrib-kafkatopicsobserver-246779da40b1.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-kafkatopicsobserver/contrib-kafkatopicsobserver-246779da40b1.json @@ -9,18 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "MovieStoreGuy" - ] + "active": ["MovieStoreGuy"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-kubeletstatsreceiver/contrib-kubeletstatsreceiver-db44ace8dd88.json b/ecosystem-explorer/public/data/collector/components/contrib-kubeletstatsreceiver/contrib-kubeletstatsreceiver-db44ace8dd88.json index 461c25a4..4891d8b5 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-kubeletstatsreceiver/contrib-kubeletstatsreceiver-db44ace8dd88.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-kubeletstatsreceiver/contrib-kubeletstatsreceiver-db44ace8dd88.json @@ -2,10 +2,7 @@ "attributes": { "direction": { "description": "Direction of flow of bytes/operations (receive or transmit).", - "enum": [ - "receive", - "transmit" - ], + "enum": ["receive", "transmit"], "type": "string" }, "interface": { @@ -316,10 +313,7 @@ "unit": "By" }, "k8s.node.network.errors": { - "attributes": [ - "direction", - "interface" - ], + "attributes": ["direction", "interface"], "description": "Node network errors", "enabled": true, "stability": "development", @@ -331,10 +325,7 @@ "unit": "1" }, "k8s.node.network.io": { - "attributes": [ - "direction", - "interface" - ], + "attributes": ["direction", "interface"], "description": "Node network IO", "enabled": true, "stability": "development", @@ -530,10 +521,7 @@ "unit": "1" }, "k8s.pod.network.errors": { - "attributes": [ - "direction", - "interface" - ], + "attributes": ["direction", "interface"], "description": "Pod network errors", "enabled": true, "stability": "development", @@ -545,10 +533,7 @@ "unit": "1" }, "k8s.pod.network.io": { - "attributes": [ - "direction", - "interface" - ], + "attributes": ["direction", "interface"], "description": "Pod network IO", "enabled": true, "stability": "development", @@ -639,21 +624,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "TylerHelmuth", - "ChrsMark" - ] - }, - "distributions": [ - "contrib", - "k8s" - ], + "active": ["dmitryax", "TylerHelmuth", "ChrsMark"] + }, + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-libhoneyreceiver/contrib-libhoneyreceiver-f44249218731.json b/ecosystem-explorer/public/data/collector/components/contrib-libhoneyreceiver/contrib-libhoneyreceiver-f44249218731.json index 5d61aff4..3b713e03 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-libhoneyreceiver/contrib-libhoneyreceiver-f44249218731.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-libhoneyreceiver/contrib-libhoneyreceiver-f44249218731.json @@ -9,20 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "TylerHelmuth", - "mterhar" - ] + "active": ["TylerHelmuth", "mterhar"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "traces" - ] + "alpha": ["logs", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-loadbalancingexporter/contrib-loadbalancingexporter-6436e93dbf6f.json b/ecosystem-explorer/public/data/collector/components/contrib-loadbalancingexporter/contrib-loadbalancingexporter-6436e93dbf6f.json index d4f11c18..b0b847d8 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-loadbalancingexporter/contrib-loadbalancingexporter-6436e93dbf6f.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-loadbalancingexporter/contrib-loadbalancingexporter-6436e93dbf6f.json @@ -6,12 +6,7 @@ }, "resolver": { "description": "Resolver used", - "enum": [ - "aws", - "dns", - "k8s", - "static" - ], + "enum": ["aws", "dns", "k8s", "static"], "type": "string" }, "success": { @@ -29,27 +24,15 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "rlankfo" - ], - "emeritus": [ - "jpkrohling" - ], + "active": ["rlankfo"], + "emeritus": ["jpkrohling"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs", - "traces" - ], - "development": [ - "metrics" - ] + "beta": ["logs", "traces"], + "development": ["metrics"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-logdedupprocessor/contrib-logdedupprocessor-4de5ebc42319.json b/ecosystem-explorer/public/data/collector/components/contrib-logdedupprocessor/contrib-logdedupprocessor-4de5ebc42319.json index cd469e7f..b64acc4d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-logdedupprocessor/contrib-logdedupprocessor-4de5ebc42319.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-logdedupprocessor/contrib-logdedupprocessor-4de5ebc42319.json @@ -9,22 +9,13 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "MikeGoldsmith" - ], - "emeritus": [ - "djaglowski" - ] + "active": ["MikeGoldsmith"], + "emeritus": ["djaglowski"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-logicmonitorexporter/contrib-logicmonitorexporter-8c7bc66c94ab.json b/ecosystem-explorer/public/data/collector/components/contrib-logicmonitorexporter/contrib-logicmonitorexporter-8c7bc66c94ab.json index 3ed2ccd0..8f2c434c 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-logicmonitorexporter/contrib-logicmonitorexporter-8c7bc66c94ab.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-logicmonitorexporter/contrib-logicmonitorexporter-8c7bc66c94ab.json @@ -9,21 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "bogdandrutu", - "khyatigandhi6", - "avadhut123pisal" - ] + "active": ["bogdandrutu", "khyatigandhi6", "avadhut123pisal"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "traces" - ] + "alpha": ["logs", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-logstransformprocessor/contrib-logstransformprocessor-a600e4c21ddb.json b/ecosystem-explorer/public/data/collector/components/contrib-logstransformprocessor/contrib-logstransformprocessor-a600e4c21ddb.json index b1cfef06..efea708e 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-logstransformprocessor/contrib-logstransformprocessor-a600e4c21ddb.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-logstransformprocessor/contrib-logstransformprocessor-a600e4c21ddb.json @@ -9,16 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "dehaansa" - ] + "active": ["dehaansa"] }, "distributions": [], "stability": { - "development": [ - "logs" - ] + "development": ["logs"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-logzioexporter/contrib-logzioexporter-58aa24efdd2a.json b/ecosystem-explorer/public/data/collector/components/contrib-logzioexporter/contrib-logzioexporter-58aa24efdd2a.json index 125bad33..9acaa8ee 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-logzioexporter/contrib-logzioexporter-58aa24efdd2a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-logzioexporter/contrib-logzioexporter-58aa24efdd2a.json @@ -9,19 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "yotamloe" - ] + "active": ["yotamloe"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "traces" - ] + "beta": ["logs", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-lokireceiver/contrib-lokireceiver-a964ed3c1592.json b/ecosystem-explorer/public/data/collector/components/contrib-lokireceiver/contrib-lokireceiver-a964ed3c1592.json index 5fe3fc1a..efa30bb2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-lokireceiver/contrib-lokireceiver-a964ed3c1592.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-lokireceiver/contrib-lokireceiver-a964ed3c1592.json @@ -9,18 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "mar4uk" - ] + "active": ["mar4uk"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-lookupprocessor/contrib-lookupprocessor-5cae6fe57dcc.json b/ecosystem-explorer/public/data/collector/components/contrib-lookupprocessor/contrib-lookupprocessor-5cae6fe57dcc.json index 92b188d0..10f5166e 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-lookupprocessor/contrib-lookupprocessor-5cae6fe57dcc.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-lookupprocessor/contrib-lookupprocessor-5cae6fe57dcc.json @@ -9,18 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "jsvd", - "dehaansa", - "VihasMakwana" - ] + "active": ["jsvd", "dehaansa", "VihasMakwana"] }, "distributions": [], "stability": { - "development": [ - "logs" - ] + "development": ["logs"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-macosunifiedloggingreceiver/contrib-macosunifiedloggingreceiver-9307097c8438.json b/ecosystem-explorer/public/data/collector/components/contrib-macosunifiedloggingreceiver/contrib-macosunifiedloggingreceiver-9307097c8438.json index 63cc96ac..cbb38994 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-macosunifiedloggingreceiver/contrib-macosunifiedloggingreceiver-9307097c8438.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-macosunifiedloggingreceiver/contrib-macosunifiedloggingreceiver-9307097c8438.json @@ -9,23 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "Caleb-Hurshman", - "atoulme" - ] + "active": ["Caleb-Hurshman", "atoulme"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] }, - "unsupported_platforms": [ - "linux", - "windows" - ] + "unsupported_platforms": ["linux", "windows"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-memcachedreceiver/contrib-memcachedreceiver-15f47285ab9a.json b/ecosystem-explorer/public/data/collector/components/contrib-memcachedreceiver/contrib-memcachedreceiver-15f47285ab9a.json index c4882c10..19bef307 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-memcachedreceiver/contrib-memcachedreceiver-15f47285ab9a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-memcachedreceiver/contrib-memcachedreceiver-15f47285ab9a.json @@ -2,45 +2,27 @@ "attributes": { "command": { "description": "The type of command.", - "enum": [ - "flush", - "get", - "set", - "touch" - ], + "enum": ["flush", "get", "set", "touch"], "type": "string" }, "direction": { "description": "Direction of data flow.", - "enum": [ - "received", - "sent" - ], + "enum": ["received", "sent"], "type": "string" }, "operation": { "description": "The type of operation.", - "enum": [ - "decrement", - "get", - "increment" - ], + "enum": ["decrement", "get", "increment"], "type": "string" }, "state": { "description": "The type of CPU usage.", - "enum": [ - "system", - "user" - ], + "enum": ["system", "user"], "type": "string" }, "type": { "description": "Result of cache request.", - "enum": [ - "hit", - "miss" - ], + "enum": ["hit", "miss"], "type": "string" } }, @@ -61,9 +43,7 @@ "unit": "By" }, "memcached.commands": { - "attributes": [ - "command" - ], + "attributes": ["command"], "description": "Commands executed.", "enabled": true, "stability": "development", @@ -99,9 +79,7 @@ "unit": "{connections}" }, "memcached.cpu.usage": { - "attributes": [ - "state" - ], + "attributes": ["state"], "description": "Accumulated user and system time.", "enabled": true, "stability": "development", @@ -137,9 +115,7 @@ "unit": "{evictions}" }, "memcached.network": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "Bytes transferred over the network.", "enabled": true, "stability": "development", @@ -151,9 +127,7 @@ "unit": "by" }, "memcached.operation_hit_ratio": { - "attributes": [ - "operation" - ], + "attributes": ["operation"], "description": "Hit ratio for operations, expressed as a percentage value between 0.0 and 100.0.", "enabled": true, "gauge": { @@ -163,10 +137,7 @@ "unit": "%" }, "memcached.operations": { - "attributes": [ - "operation", - "type" - ], + "attributes": ["operation", "type"], "description": "Operation counts.", "enabled": true, "stability": "development", @@ -195,22 +166,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "jsirianni" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["jsirianni"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-metricsaslogsconnector/contrib-metricsaslogsconnector-8ee06ec5d172.json b/ecosystem-explorer/public/data/collector/components/contrib-metricsaslogsconnector/contrib-metricsaslogsconnector-8ee06ec5d172.json index c3a4387c..82532288 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-metricsaslogsconnector/contrib-metricsaslogsconnector-8ee06ec5d172.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-metricsaslogsconnector/contrib-metricsaslogsconnector-8ee06ec5d172.json @@ -9,16 +9,12 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "atoulme" - ] + "active": ["atoulme"] }, "distributions": [], "stability": { - "development": [ - "metrics_to_logs" - ] + "development": ["metrics_to_logs"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-metricsgenerationprocessor/contrib-metricsgenerationprocessor-c0084c36bcbc.json b/ecosystem-explorer/public/data/collector/components/contrib-metricsgenerationprocessor/contrib-metricsgenerationprocessor-c0084c36bcbc.json index a0775b05..97e60a7e 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-metricsgenerationprocessor/contrib-metricsgenerationprocessor-c0084c36bcbc.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-metricsgenerationprocessor/contrib-metricsgenerationprocessor-c0084c36bcbc.json @@ -9,19 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "Aneurysm9", - "crobert-1" - ] + "active": ["Aneurysm9", "crobert-1"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-metricstarttimeprocessor/contrib-metricstarttimeprocessor-925d654d347c.json b/ecosystem-explorer/public/data/collector/components/contrib-metricstarttimeprocessor/contrib-metricstarttimeprocessor-925d654d347c.json index 7ddeca35..b0cdf608 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-metricstarttimeprocessor/contrib-metricstarttimeprocessor-925d654d347c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-metricstarttimeprocessor/contrib-metricstarttimeprocessor-925d654d347c.json @@ -9,19 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "dashpole", - "ridwanmsharif" - ] + "active": ["dashpole", "ridwanmsharif"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-metricstransformprocessor/contrib-metricstransformprocessor-56250d56a9ff.json b/ecosystem-explorer/public/data/collector/components/contrib-metricstransformprocessor/contrib-metricstransformprocessor-56250d56a9ff.json index 085e4626..bac4d5a2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-metricstransformprocessor/contrib-metricstransformprocessor-56250d56a9ff.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-metricstransformprocessor/contrib-metricstransformprocessor-56250d56a9ff.json @@ -9,19 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "dmitryax" - ] + "active": ["dmitryax"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-mezmoexporter/contrib-mezmoexporter-8e09dbcb5344.json b/ecosystem-explorer/public/data/collector/components/contrib-mezmoexporter/contrib-mezmoexporter-8e09dbcb5344.json index 05883f1e..f2f84f6f 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-mezmoexporter/contrib-mezmoexporter-8e09dbcb5344.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-mezmoexporter/contrib-mezmoexporter-8e09dbcb5344.json @@ -9,20 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "dashpole", - "billmeyer", - "gjanco" - ] + "active": ["dashpole", "billmeyer", "gjanco"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs" - ] + "beta": ["logs"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-mongodbatlasreceiver/contrib-mongodbatlasreceiver-2873370c2642.json b/ecosystem-explorer/public/data/collector/components/contrib-mongodbatlasreceiver/contrib-mongodbatlasreceiver-2873370c2642.json index 328fb42a..39002876 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-mongodbatlasreceiver/contrib-mongodbatlasreceiver-2873370c2642.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-mongodbatlasreceiver/contrib-mongodbatlasreceiver-2873370c2642.json @@ -2,175 +2,92 @@ "attributes": { "assert_type": { "description": "MongoDB assertion type", - "enum": [ - "msg", - "regular", - "user", - "warning" - ], + "enum": ["msg", "regular", "user", "warning"], "type": "string" }, "btree_counter_type": { "description": "Database index effectiveness", - "enum": [ - "accesses", - "hits", - "misses" - ], + "enum": ["accesses", "hits", "misses"], "type": "string" }, "cache_direction": { "description": "Whether read into or written from", - "enum": [ - "read_into", - "written_from" - ], + "enum": ["read_into", "written_from"], "type": "string" }, "cache_ratio_type": { "description": "Cache ratio type", - "enum": [ - "cache_fill", - "dirty_fill" - ], + "enum": ["cache_fill", "dirty_fill"], "type": "string" }, "cache_status": { "description": "Cache status", - "enum": [ - "dirty", - "used" - ], + "enum": ["dirty", "used"], "type": "string" }, "cluster_role": { "description": "Whether process is acting as replica or primary", - "enum": [ - "primary", - "replica" - ], + "enum": ["primary", "replica"], "type": "string" }, "cpu_state": { "description": "CPU state", - "enum": [ - "guest", - "iowait", - "irq", - "kernel", - "nice", - "softirq", - "steal", - "user" - ], + "enum": ["guest", "iowait", "irq", "kernel", "nice", "softirq", "steal", "user"], "type": "string" }, "cursor_state": { "description": "Whether cursor is open or timed out", - "enum": [ - "open", - "timed_out" - ], + "enum": ["open", "timed_out"], "type": "string" }, "direction": { "description": "Network traffic direction", - "enum": [ - "receive", - "transmit" - ], + "enum": ["receive", "transmit"], "type": "string" }, "disk_direction": { "description": "Measurement type for disk operation", - "enum": [ - "read", - "total", - "write" - ], + "enum": ["read", "total", "write"], "type": "string" }, "disk_status": { "description": "Disk measurement type", - "enum": [ - "free", - "used" - ], + "enum": ["free", "used"], "type": "string" }, "document_status": { "description": "Status of documents in the database", - "enum": [ - "deleted", - "inserted", - "returned", - "updated" - ], + "enum": ["deleted", "inserted", "returned", "updated"], "type": "string" }, "execution_type": { "description": "Type of command", - "enum": [ - "commands", - "reads", - "writes" - ], + "enum": ["commands", "reads", "writes"], "type": "string" }, "global_lock_state": { "description": "Which queue is locked", - "enum": [ - "current_queue_readers", - "current_queue_total", - "current_queue_writers" - ], + "enum": ["current_queue_readers", "current_queue_total", "current_queue_writers"], "type": "string" }, "memory_issue_type": { "description": "Type of memory issue encountered", - "enum": [ - "exceptions_thrown", - "extra_info", - "global_accesses_not_in_memory" - ], + "enum": ["exceptions_thrown", "extra_info", "global_accesses_not_in_memory"], "type": "string" }, "memory_state": { "description": "Memory usage type", - "enum": [ - "computed", - "free", - "mapped", - "resident", - "shared", - "used", - "virtual" - ], + "enum": ["computed", "free", "mapped", "resident", "shared", "used", "virtual"], "type": "string" }, "memory_status": { "description": "Memory measurement type", - "enum": [ - "available", - "buffers", - "cached", - "free", - "shared", - "used" - ], + "enum": ["available", "buffers", "cached", "free", "shared", "used"], "type": "string" }, "object_type": { "description": "MongoDB object type", - "enum": [ - "collection", - "data", - "extent", - "index", - "object", - "storage", - "view" - ], + "enum": ["collection", "data", "extent", "index", "object", "storage", "view"], "type": "string" }, "operation": { @@ -189,37 +106,22 @@ }, "oplog_type": { "description": "Oplog type", - "enum": [ - "master_lag_time_diff", - "master_time", - "slave_lag_master_time" - ], + "enum": ["master_lag_time_diff", "master_time", "slave_lag_master_time"], "type": "string" }, "scanned_type": { "description": "Objects or indexes scanned during query", - "enum": [ - "index_items", - "objects" - ], + "enum": ["index_items", "objects"], "type": "string" }, "storage_status": { "description": "Views on database size", - "enum": [ - "data_size", - "data_size_wo_system", - "index_size", - "total" - ], + "enum": ["data_size", "data_size_wo_system", "index_size", "total"], "type": "string" }, "ticket_type": { "description": "Type of ticket available", - "enum": [ - "available_reads", - "available_writes" - ], + "enum": ["available_reads", "available_writes"], "type": "string" } }, @@ -230,9 +132,7 @@ "id": "contrib-mongodbatlasreceiver", "metrics": { "mongodbatlas.db.counts": { - "attributes": [ - "object_type" - ], + "attributes": ["object_type"], "description": "Database feature size", "enabled": true, "gauge": { @@ -242,9 +142,7 @@ "unit": "{objects}" }, "mongodbatlas.db.size": { - "attributes": [ - "object_type" - ], + "attributes": ["object_type"], "description": "Database feature size", "enabled": true, "gauge": { @@ -254,9 +152,7 @@ "unit": "By" }, "mongodbatlas.disk.partition.iops.average": { - "attributes": [ - "disk_direction" - ], + "attributes": ["disk_direction"], "description": "Disk partition iops", "enabled": true, "gauge": { @@ -266,9 +162,7 @@ "unit": "{ops}/s" }, "mongodbatlas.disk.partition.iops.max": { - "attributes": [ - "disk_direction" - ], + "attributes": ["disk_direction"], "description": "Disk partition iops", "enabled": true, "gauge": { @@ -278,9 +172,7 @@ "unit": "{ops}/s" }, "mongodbatlas.disk.partition.latency.average": { - "attributes": [ - "disk_direction" - ], + "attributes": ["disk_direction"], "description": "Disk partition latency", "enabled": true, "gauge": { @@ -290,9 +182,7 @@ "unit": "ms" }, "mongodbatlas.disk.partition.latency.max": { - "attributes": [ - "disk_direction" - ], + "attributes": ["disk_direction"], "description": "Disk partition latency", "enabled": true, "gauge": { @@ -312,9 +202,7 @@ "unit": "1" }, "mongodbatlas.disk.partition.space.average": { - "attributes": [ - "disk_status" - ], + "attributes": ["disk_status"], "description": "Disk partition space", "enabled": true, "gauge": { @@ -324,9 +212,7 @@ "unit": "By" }, "mongodbatlas.disk.partition.space.max": { - "attributes": [ - "disk_status" - ], + "attributes": ["disk_status"], "description": "Disk partition space", "enabled": true, "gauge": { @@ -336,9 +222,7 @@ "unit": "By" }, "mongodbatlas.disk.partition.throughput": { - "attributes": [ - "disk_direction" - ], + "attributes": ["disk_direction"], "description": "Disk throughput", "enabled": false, "gauge": { @@ -348,9 +232,7 @@ "unit": "By/s" }, "mongodbatlas.disk.partition.usage.average": { - "attributes": [ - "disk_status" - ], + "attributes": ["disk_status"], "description": "Disk partition usage (%)", "enabled": true, "gauge": { @@ -360,9 +242,7 @@ "unit": "1" }, "mongodbatlas.disk.partition.usage.max": { - "attributes": [ - "disk_status" - ], + "attributes": ["disk_status"], "description": "Disk partition usage (%)", "enabled": true, "gauge": { @@ -390,9 +270,7 @@ "unit": "1" }, "mongodbatlas.process.asserts": { - "attributes": [ - "assert_type" - ], + "attributes": ["assert_type"], "description": "Number of assertions per second", "enabled": true, "gauge": { @@ -411,9 +289,7 @@ "unit": "1" }, "mongodbatlas.process.cache.io": { - "attributes": [ - "cache_direction" - ], + "attributes": ["cache_direction"], "description": "Cache throughput (per second)", "enabled": true, "gauge": { @@ -423,9 +299,7 @@ "unit": "By" }, "mongodbatlas.process.cache.ratio": { - "attributes": [ - "cache_ratio_type" - ], + "attributes": ["cache_ratio_type"], "description": "Cache ratios represented as (%)", "enabled": false, "gauge": { @@ -435,9 +309,7 @@ "unit": "%" }, "mongodbatlas.process.cache.size": { - "attributes": [ - "cache_status" - ], + "attributes": ["cache_status"], "description": "Cache sizes", "enabled": true, "stability": "development", @@ -460,9 +332,7 @@ "unit": "{connections}" }, "mongodbatlas.process.cpu.children.normalized.usage.average": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "CPU Usage for child processes, normalized to pct", "enabled": true, "gauge": { @@ -472,9 +342,7 @@ "unit": "1" }, "mongodbatlas.process.cpu.children.normalized.usage.max": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "CPU Usage for child processes, normalized to pct", "enabled": true, "gauge": { @@ -484,9 +352,7 @@ "unit": "1" }, "mongodbatlas.process.cpu.children.usage.average": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "CPU Usage for child processes (%)", "enabled": true, "gauge": { @@ -496,9 +362,7 @@ "unit": "1" }, "mongodbatlas.process.cpu.children.usage.max": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "CPU Usage for child processes (%)", "enabled": true, "gauge": { @@ -508,9 +372,7 @@ "unit": "1" }, "mongodbatlas.process.cpu.normalized.usage.average": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "CPU Usage, normalized to pct", "enabled": true, "gauge": { @@ -520,9 +382,7 @@ "unit": "1" }, "mongodbatlas.process.cpu.normalized.usage.max": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "CPU Usage, normalized to pct", "enabled": true, "gauge": { @@ -532,9 +392,7 @@ "unit": "1" }, "mongodbatlas.process.cpu.usage.average": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "CPU Usage (%)", "enabled": true, "gauge": { @@ -544,9 +402,7 @@ "unit": "1" }, "mongodbatlas.process.cpu.usage.max": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "CPU Usage (%)", "enabled": true, "gauge": { @@ -556,9 +412,7 @@ "unit": "1" }, "mongodbatlas.process.cursors": { - "attributes": [ - "cursor_state" - ], + "attributes": ["cursor_state"], "description": "Number of cursors", "enabled": true, "gauge": { @@ -568,9 +422,7 @@ "unit": "{cursors}" }, "mongodbatlas.process.db.document.rate": { - "attributes": [ - "document_status" - ], + "attributes": ["document_status"], "description": "Document access rates", "enabled": true, "gauge": { @@ -580,10 +432,7 @@ "unit": "{documents}/s" }, "mongodbatlas.process.db.operations.rate": { - "attributes": [ - "cluster_role", - "operation" - ], + "attributes": ["cluster_role", "operation"], "description": "DB Operation Rates", "enabled": true, "gauge": { @@ -593,9 +442,7 @@ "unit": "{operations}/s" }, "mongodbatlas.process.db.operations.time": { - "attributes": [ - "execution_type" - ], + "attributes": ["execution_type"], "description": "DB Operation Times", "enabled": true, "stability": "development", @@ -607,9 +454,7 @@ "unit": "ms" }, "mongodbatlas.process.db.query_executor.scanned": { - "attributes": [ - "scanned_type" - ], + "attributes": ["scanned_type"], "description": "Scanned objects", "enabled": true, "gauge": { @@ -619,9 +464,7 @@ "unit": "{objects}/s" }, "mongodbatlas.process.db.query_targeting.scanned_per_returned": { - "attributes": [ - "scanned_type" - ], + "attributes": ["scanned_type"], "description": "Scanned objects per returned", "enabled": true, "gauge": { @@ -631,9 +474,7 @@ "unit": "{scanned}/{returned}" }, "mongodbatlas.process.db.storage": { - "attributes": [ - "storage_status" - ], + "attributes": ["storage_status"], "description": "Storage used by the database", "enabled": true, "gauge": { @@ -643,9 +484,7 @@ "unit": "By" }, "mongodbatlas.process.global_lock": { - "attributes": [ - "global_lock_state" - ], + "attributes": ["global_lock_state"], "description": "Number and status of locks", "enabled": true, "gauge": { @@ -664,9 +503,7 @@ "unit": "1" }, "mongodbatlas.process.index.counters": { - "attributes": [ - "btree_counter_type" - ], + "attributes": ["btree_counter_type"], "description": "Indexes", "enabled": true, "gauge": { @@ -703,9 +540,7 @@ "unit": "MiBy" }, "mongodbatlas.process.memory.usage": { - "attributes": [ - "memory_state" - ], + "attributes": ["memory_state"], "description": "Memory Usage", "enabled": true, "gauge": { @@ -715,9 +550,7 @@ "unit": "By" }, "mongodbatlas.process.network.io": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "Network IO", "enabled": true, "gauge": { @@ -747,9 +580,7 @@ "unit": "GiBy/h" }, "mongodbatlas.process.oplog.time": { - "attributes": [ - "oplog_type" - ], + "attributes": ["oplog_type"], "description": "Execution time by operation", "enabled": true, "gauge": { @@ -759,9 +590,7 @@ "unit": "s" }, "mongodbatlas.process.page_faults": { - "attributes": [ - "memory_issue_type" - ], + "attributes": ["memory_issue_type"], "description": "Page faults", "enabled": true, "gauge": { @@ -780,9 +609,7 @@ "unit": "{restarts}/h" }, "mongodbatlas.process.tickets": { - "attributes": [ - "ticket_type" - ], + "attributes": ["ticket_type"], "description": "Tickets", "enabled": true, "gauge": { @@ -792,9 +619,7 @@ "unit": "{tickets}" }, "mongodbatlas.system.cpu.normalized.usage.average": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "System CPU Normalized to pct", "enabled": true, "gauge": { @@ -804,9 +629,7 @@ "unit": "1" }, "mongodbatlas.system.cpu.normalized.usage.max": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "System CPU Normalized to pct", "enabled": true, "gauge": { @@ -816,9 +639,7 @@ "unit": "1" }, "mongodbatlas.system.cpu.usage.average": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "System CPU Usage (%)", "enabled": true, "gauge": { @@ -828,9 +649,7 @@ "unit": "1" }, "mongodbatlas.system.cpu.usage.max": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "System CPU Usage (%)", "enabled": true, "gauge": { @@ -840,9 +659,7 @@ "unit": "1" }, "mongodbatlas.system.fts.cpu.normalized.usage": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "Full text search disk usage (%)", "enabled": true, "gauge": { @@ -852,9 +669,7 @@ "unit": "1" }, "mongodbatlas.system.fts.cpu.usage": { - "attributes": [ - "cpu_state" - ], + "attributes": ["cpu_state"], "description": "Full-text search (%)", "enabled": true, "gauge": { @@ -873,9 +688,7 @@ "unit": "By" }, "mongodbatlas.system.fts.memory.usage": { - "attributes": [ - "memory_state" - ], + "attributes": ["memory_state"], "description": "Full-text search", "enabled": true, "stability": "development", @@ -887,9 +700,7 @@ "unit": "MiBy" }, "mongodbatlas.system.memory.usage.average": { - "attributes": [ - "memory_status" - ], + "attributes": ["memory_status"], "description": "System Memory Usage", "enabled": true, "gauge": { @@ -899,9 +710,7 @@ "unit": "KiBy" }, "mongodbatlas.system.memory.usage.max": { - "attributes": [ - "memory_status" - ], + "attributes": ["memory_status"], "description": "System Memory Usage", "enabled": true, "gauge": { @@ -911,9 +720,7 @@ "unit": "KiBy" }, "mongodbatlas.system.network.io.average": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "System Network IO", "enabled": true, "gauge": { @@ -923,9 +730,7 @@ "unit": "By/s" }, "mongodbatlas.system.network.io.max": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "System Network IO", "enabled": true, "gauge": { @@ -935,9 +740,7 @@ "unit": "By/s" }, "mongodbatlas.system.paging.io.average": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "Swap IO", "enabled": true, "gauge": { @@ -947,9 +750,7 @@ "unit": "{pages}/s" }, "mongodbatlas.system.paging.io.max": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "Swap IO", "enabled": true, "gauge": { @@ -959,9 +760,7 @@ "unit": "{pages}/s" }, "mongodbatlas.system.paging.usage.average": { - "attributes": [ - "memory_state" - ], + "attributes": ["memory_state"], "description": "Swap usage", "enabled": true, "gauge": { @@ -971,9 +770,7 @@ "unit": "KiBy" }, "mongodbatlas.system.paging.usage.max": { - "attributes": [ - "memory_state" - ], + "attributes": ["memory_state"], "description": "Swap usage", "enabled": true, "gauge": { @@ -988,22 +785,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "justinianvoss22", - "dyl10s", - "ishleenk17" - ], + "active": ["justinianvoss22", "dyl10s", "ishleenk17"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics" - ] + "beta": ["logs", "metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-mongodbreceiver/contrib-mongodbreceiver-923dc8f9f989.json b/ecosystem-explorer/public/data/collector/components/contrib-mongodbreceiver/contrib-mongodbreceiver-923dc8f9f989.json index 76e3ea3d..7e34f67d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-mongodbreceiver/contrib-mongodbreceiver-923dc8f9f989.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-mongodbreceiver/contrib-mongodbreceiver-923dc8f9f989.json @@ -6,11 +6,7 @@ }, "connection_type": { "description": "The status of the connection.", - "enum": [ - "active", - "available", - "current" - ], + "enum": ["active", "available", "current"], "name_override": "type", "type": "string" }, @@ -20,12 +16,7 @@ }, "lock_mode": { "description": "The mode of Lock which denotes the degree of access", - "enum": [ - "exclusive", - "intent_exclusive", - "intent_shared", - "shared" - ], + "enum": ["exclusive", "intent_exclusive", "intent_shared", "shared"], "type": "string" }, "lock_type": { @@ -44,41 +35,24 @@ }, "memory_type": { "description": "The type of memory used.", - "enum": [ - "resident", - "virtual" - ], + "enum": ["resident", "virtual"], "name_override": "type", "type": "string" }, "operation": { "description": "The MongoDB operation being counted.", - "enum": [ - "command", - "delete", - "getmore", - "insert", - "query", - "update" - ], + "enum": ["command", "delete", "getmore", "insert", "query", "update"], "type": "string" }, "operation_latency": { "description": "The MongoDB operation with regards to latency", - "enum": [ - "command", - "read", - "write" - ], + "enum": ["command", "read", "write"], "name_override": "operation", "type": "string" }, "type": { "description": "The result of a cache request.", - "enum": [ - "hit", - "miss" - ], + "enum": ["hit", "miss"], "type": "string" } }, @@ -113,9 +87,7 @@ "unit": "{writes}" }, "mongodb.cache.operations": { - "attributes": [ - "type" - ], + "attributes": ["type"], "description": "The number of cache operations of the instance.", "enabled": true, "stability": "development", @@ -127,9 +99,7 @@ "unit": "{operations}" }, "mongodb.collection.count": { - "attributes": [ - "db.namespace" - ], + "attributes": ["db.namespace"], "description": "The number of collections.", "enabled": true, "stability": "development", @@ -152,10 +122,7 @@ "unit": "{command}/s" }, "mongodb.connection.count": { - "attributes": [ - "connection_type", - "db.namespace" - ], + "attributes": ["connection_type", "db.namespace"], "description": "The number of connections.", "enabled": true, "stability": "development", @@ -191,9 +158,7 @@ "unit": "{cursors}" }, "mongodb.data.size": { - "attributes": [ - "db.namespace" - ], + "attributes": ["db.namespace"], "description": "The size of the collection. Data compression does not affect this value.", "enabled": true, "stability": "development", @@ -228,10 +193,7 @@ "unit": "{delete}/s" }, "mongodb.document.operation.count": { - "attributes": [ - "db.namespace", - "operation" - ], + "attributes": ["db.namespace", "operation"], "description": "The number of document operations executed.", "enabled": true, "stability": "development", @@ -243,9 +205,7 @@ "unit": "{documents}" }, "mongodb.extent.count": { - "attributes": [ - "db.namespace" - ], + "attributes": ["db.namespace"], "description": "The number of extents.", "enabled": true, "stability": "development", @@ -301,10 +261,7 @@ "unit": "1" }, "mongodb.index.access.count": { - "attributes": [ - "collection", - "db.namespace" - ], + "attributes": ["collection", "db.namespace"], "description": "The number of times an index has been accessed.", "enabled": true, "stability": "development", @@ -316,9 +273,7 @@ "unit": "{accesses}" }, "mongodb.index.count": { - "attributes": [ - "db.namespace" - ], + "attributes": ["db.namespace"], "description": "The number of indexes.", "enabled": true, "stability": "development", @@ -330,9 +285,7 @@ "unit": "{indexes}" }, "mongodb.index.size": { - "attributes": [ - "db.namespace" - ], + "attributes": ["db.namespace"], "description": "Sum of the space allocated to all indexes in the database, including free index space.", "enabled": true, "stability": "development", @@ -355,11 +308,7 @@ "unit": "{insert}/s" }, "mongodb.lock.acquire.count": { - "attributes": [ - "db.namespace", - "lock_mode", - "lock_type" - ], + "attributes": ["db.namespace", "lock_mode", "lock_type"], "description": "Number of times the lock was acquired in the specified mode.", "enabled": false, "stability": "development", @@ -371,11 +320,7 @@ "unit": "{count}" }, "mongodb.lock.acquire.time": { - "attributes": [ - "db.namespace", - "lock_mode", - "lock_type" - ], + "attributes": ["db.namespace", "lock_mode", "lock_type"], "description": "Cumulative wait time for the lock acquisitions.", "enabled": false, "stability": "development", @@ -387,11 +332,7 @@ "unit": "microseconds" }, "mongodb.lock.acquire.wait_count": { - "attributes": [ - "db.namespace", - "lock_mode", - "lock_type" - ], + "attributes": ["db.namespace", "lock_mode", "lock_type"], "description": "Number of times the lock acquisitions encountered waits because the locks were held in a conflicting mode.", "enabled": false, "stability": "development", @@ -403,11 +344,7 @@ "unit": "{count}" }, "mongodb.lock.deadlock.count": { - "attributes": [ - "db.namespace", - "lock_mode", - "lock_type" - ], + "attributes": ["db.namespace", "lock_mode", "lock_type"], "description": "Number of times the lock acquisitions encountered deadlocks.", "enabled": false, "stability": "development", @@ -419,10 +356,7 @@ "unit": "{count}" }, "mongodb.memory.usage": { - "attributes": [ - "db.namespace", - "memory_type" - ], + "attributes": ["db.namespace", "memory_type"], "description": "The amount of memory used.", "enabled": true, "stability": "development", @@ -470,9 +404,7 @@ "unit": "{requests}" }, "mongodb.object.count": { - "attributes": [ - "db.namespace" - ], + "attributes": ["db.namespace"], "description": "The number of objects.", "enabled": true, "stability": "development", @@ -484,9 +416,7 @@ "unit": "{objects}" }, "mongodb.operation.count": { - "attributes": [ - "operation" - ], + "attributes": ["operation"], "description": "The number of operations executed.", "enabled": true, "stability": "development", @@ -498,9 +428,7 @@ "unit": "{operations}" }, "mongodb.operation.latency.time": { - "attributes": [ - "operation_latency" - ], + "attributes": ["operation_latency"], "description": "The latency of operations.", "enabled": false, "gauge": { @@ -510,9 +438,7 @@ "unit": "us" }, "mongodb.operation.repl.count": { - "attributes": [ - "operation" - ], + "attributes": ["operation"], "description": "The number of replicated operations executed.", "enabled": false, "stability": "development", @@ -524,9 +450,7 @@ "unit": "{operations}" }, "mongodb.operation.time": { - "attributes": [ - "operation" - ], + "attributes": ["operation"], "description": "The total time spent performing operations.", "enabled": true, "stability": "development", @@ -639,9 +563,7 @@ "unit": "{sessions}" }, "mongodb.storage.size": { - "attributes": [ - "db.namespace" - ], + "attributes": ["db.namespace"], "description": "The total amount of storage allocated to this collection.", "enabled": true, "stability": "development", @@ -693,21 +615,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "justinianvoss22", - "dyl10s", - "ishleenk17" - ], + "active": ["justinianvoss22", "dyl10s", "ishleenk17"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-mysqlreceiver/contrib-mysqlreceiver-5dc34c70d127.json b/ecosystem-explorer/public/data/collector/components/contrib-mysqlreceiver/contrib-mysqlreceiver-5dc34c70d127.json index beefce28..5c619ea3 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-mysqlreceiver/contrib-mysqlreceiver-5dc34c70d127.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-mysqlreceiver/contrib-mysqlreceiver-5dc34c70d127.json @@ -2,10 +2,7 @@ "attributes": { "buffer_pool_data": { "description": "The status of buffer pool data.", - "enum": [ - "clean", - "dirty" - ], + "enum": ["clean", "dirty"], "name_override": "status", "type": "string" }, @@ -25,22 +22,13 @@ }, "buffer_pool_pages": { "description": "The buffer pool pages types.", - "enum": [ - "data", - "free", - "misc", - "total" - ], + "enum": ["data", "free", "misc", "total"], "name_override": "kind", "type": "string" }, "cache_status": { "description": "The status of cache access.", - "enum": [ - "hit", - "miss", - "overflow" - ], + "enum": ["hit", "miss", "overflow"], "name_override": "status", "type": "string" }, @@ -54,14 +42,7 @@ }, "command": { "description": "The command types.", - "enum": [ - "delete", - "delete_multi", - "insert", - "select", - "update", - "update_multi" - ], + "enum": ["delete", "delete_multi", "insert", "select", "update", "update_multi"], "type": "string" }, "connection_error": { @@ -82,11 +63,7 @@ }, "connection_status": { "description": "The connection status.", - "enum": [ - "accepted", - "closed", - "rejected" - ], + "enum": ["accepted", "closed", "rejected"], "name_override": "status", "type": "string" }, @@ -100,9 +77,7 @@ }, "db.system.name": { "description": "The name of the database system.", - "enum": [ - "mysql" - ], + "enum": ["mysql"], "type": "string" }, "digest": { @@ -115,19 +90,13 @@ }, "direction": { "description": "The name of the transmission direction.", - "enum": [ - "received", - "sent" - ], + "enum": ["received", "sent"], "name_override": "kind", "type": "string" }, "double_writes": { "description": "The doublewrite types.", - "enum": [ - "pages_written", - "writes" - ], + "enum": ["pages_written", "writes"], "name_override": "kind", "type": "string" }, @@ -180,44 +149,25 @@ }, "io_waits_operations": { "description": "The io_waits operation type.", - "enum": [ - "delete", - "fetch", - "insert", - "update" - ], + "enum": ["delete", "fetch", "insert", "update"], "name_override": "operation", "type": "string" }, "join_kind": { "description": "The kind of join.", - "enum": [ - "full", - "full_range", - "range", - "range_check", - "scan" - ], + "enum": ["full", "full_range", "range", "range_check", "scan"], "name_override": "kind", "type": "string" }, "locks": { "description": "The table locks type.", - "enum": [ - "immediate", - "waited" - ], + "enum": ["immediate", "waited"], "name_override": "kind", "type": "string" }, "log_operations": { "description": "The log operation types. 'fsyncs' aren't available in MariaDB 10.8 or later.", - "enum": [ - "fsyncs", - "waits", - "write_requests", - "writes" - ], + "enum": ["fsyncs", "waits", "write_requests", "writes"], "name_override": "operation", "type": "string" }, @@ -283,10 +233,7 @@ }, "mysqlx_threads": { "description": "The worker thread count kind.", - "enum": [ - "active", - "available" - ], + "enum": ["active", "available"], "name_override": "kind", "type": "string" }, @@ -300,76 +247,43 @@ }, "opened_resources": { "description": "The kind of the resource.", - "enum": [ - "file", - "table", - "table_definition" - ], + "enum": ["file", "table", "table_definition"], "name_override": "kind", "type": "string" }, "operations": { "description": "The operation types.", - "enum": [ - "fsyncs", - "reads", - "writes" - ], + "enum": ["fsyncs", "reads", "writes"], "name_override": "operation", "type": "string" }, "page_operations": { "description": "The page operation types.", - "enum": [ - "created", - "read", - "written" - ], + "enum": ["created", "read", "written"], "name_override": "operation", "type": "string" }, "prepared_statements_command": { "description": "The prepare statement command types.", - "enum": [ - "close", - "execute", - "fetch", - "prepare", - "reset", - "send_long_data" - ], + "enum": ["close", "execute", "fetch", "prepare", "reset", "send_long_data"], "name_override": "command", "type": "string" }, "read_lock_type": { "description": "Read operation types.", - "enum": [ - "external", - "high_priority", - "no_insert", - "normal", - "with_shared_locks" - ], + "enum": ["external", "high_priority", "no_insert", "normal", "with_shared_locks"], "name_override": "kind", "type": "string" }, "row_locks": { "description": "The row lock type.", - "enum": [ - "time", - "waits" - ], + "enum": ["time", "waits"], "name_override": "kind", "type": "string" }, "row_operations": { "description": "The row operation type.", - "enum": [ - "deleted", - "inserted", - "read", - "updated" - ], + "enum": ["deleted", "inserted", "read", "updated"], "name_override": "operation", "type": "string" }, @@ -379,12 +293,7 @@ }, "sorts": { "description": "The sort count type.", - "enum": [ - "merge_passes", - "range", - "rows", - "scan" - ], + "enum": ["merge_passes", "range", "rows", "scan"], "name_override": "kind", "type": "string" }, @@ -395,31 +304,19 @@ }, "table_size_type": { "description": "The table size types.", - "enum": [ - "data", - "index" - ], + "enum": ["data", "index"], "name_override": "kind", "type": "string" }, "threads": { "description": "The thread count type.", - "enum": [ - "cached", - "connected", - "created", - "running" - ], + "enum": ["cached", "connected", "created", "running"], "name_override": "kind", "type": "string" }, "tmp_resource": { "description": "The kind of temporary resources.", - "enum": [ - "disk_tables", - "files", - "tables" - ], + "enum": ["disk_tables", "files", "tables"], "name_override": "resource", "type": "string" }, @@ -429,13 +326,7 @@ }, "write_lock_type": { "description": "Write operation types.", - "enum": [ - "allow_write", - "concurrent_insert", - "external", - "low_priority", - "normal" - ], + "enum": ["allow_write", "concurrent_insert", "external", "low_priority", "normal"], "name_override": "kind", "type": "string" } @@ -447,9 +338,7 @@ "id": "contrib-mysqlreceiver", "metrics": { "mysql.buffer_pool.data_pages": { - "attributes": [ - "buffer_pool_data" - ], + "attributes": ["buffer_pool_data"], "description": "The number of data pages in the InnoDB buffer pool.", "enabled": true, "stability": "development", @@ -473,9 +362,7 @@ "unit": "By" }, "mysql.buffer_pool.operations": { - "attributes": [ - "buffer_pool_operations" - ], + "attributes": ["buffer_pool_operations"], "description": "The number of operations on the InnoDB buffer pool.", "enabled": true, "stability": "development", @@ -500,9 +387,7 @@ "unit": "1" }, "mysql.buffer_pool.pages": { - "attributes": [ - "buffer_pool_pages" - ], + "attributes": ["buffer_pool_pages"], "description": "The number of pages in the InnoDB buffer pool.", "enabled": true, "stability": "development", @@ -515,9 +400,7 @@ "unit": "1" }, "mysql.buffer_pool.usage": { - "attributes": [ - "buffer_pool_data" - ], + "attributes": ["buffer_pool_data"], "description": "The number of bytes in the InnoDB buffer pool.", "enabled": true, "stability": "development", @@ -529,9 +412,7 @@ "unit": "By" }, "mysql.client.network.io": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "The number of transmitted bytes between server and clients.", "enabled": false, "stability": "development", @@ -544,9 +425,7 @@ "unit": "By" }, "mysql.commands": { - "attributes": [ - "command" - ], + "attributes": ["command"], "description": "The number of times each type of command has been executed.", "enabled": false, "stability": "development", @@ -571,9 +450,7 @@ "unit": "1" }, "mysql.connection.errors": { - "attributes": [ - "connection_error" - ], + "attributes": ["connection_error"], "description": "Errors that occur during the client connection process.", "enabled": false, "stability": "development", @@ -586,9 +463,7 @@ "unit": "1" }, "mysql.double_writes": { - "attributes": [ - "double_writes" - ], + "attributes": ["double_writes"], "description": "The number of writes to the InnoDB doublewrite buffer.", "enabled": true, "stability": "development", @@ -601,9 +476,7 @@ "unit": "1" }, "mysql.handlers": { - "attributes": [ - "handler" - ], + "attributes": ["handler"], "description": "The number of requests to various MySQL handlers.", "enabled": true, "stability": "development", @@ -616,12 +489,7 @@ "unit": "1" }, "mysql.index.io.wait.count": { - "attributes": [ - "index_name", - "io_waits_operations", - "schema", - "table_name" - ], + "attributes": ["index_name", "io_waits_operations", "schema", "table_name"], "description": "The total count of I/O wait events for an index.", "enabled": true, "stability": "development", @@ -633,12 +501,7 @@ "unit": "1" }, "mysql.index.io.wait.time": { - "attributes": [ - "index_name", - "io_waits_operations", - "schema", - "table_name" - ], + "attributes": ["index_name", "io_waits_operations", "schema", "table_name"], "description": "The total time of I/O wait events for an index.", "enabled": true, "stability": "development", @@ -650,9 +513,7 @@ "unit": "ns" }, "mysql.joins": { - "attributes": [ - "join_kind" - ], + "attributes": ["join_kind"], "description": "The number of joins that perform table scans.", "enabled": false, "stability": "development", @@ -665,9 +526,7 @@ "unit": "1" }, "mysql.locks": { - "attributes": [ - "locks" - ], + "attributes": ["locks"], "description": "The number of MySQL locks.", "enabled": true, "stability": "development", @@ -680,9 +539,7 @@ "unit": "1" }, "mysql.log_operations": { - "attributes": [ - "log_operations" - ], + "attributes": ["log_operations"], "description": "The number of InnoDB log operations.", "enabled": true, "stability": "development", @@ -707,9 +564,7 @@ "unit": "1" }, "mysql.mysqlx_connections": { - "attributes": [ - "connection_status" - ], + "attributes": ["connection_status"], "description": "The number of mysqlx connections.", "enabled": true, "stability": "development", @@ -722,9 +577,7 @@ "unit": "1" }, "mysql.mysqlx_worker_threads": { - "attributes": [ - "mysqlx_threads" - ], + "attributes": ["mysqlx_threads"], "description": "The number of worker threads available.", "enabled": false, "stability": "development", @@ -737,9 +590,7 @@ "unit": "1" }, "mysql.opened_resources": { - "attributes": [ - "opened_resources" - ], + "attributes": ["opened_resources"], "description": "The number of opened resources.", "enabled": true, "stability": "development", @@ -752,9 +603,7 @@ "unit": "1" }, "mysql.operations": { - "attributes": [ - "operations" - ], + "attributes": ["operations"], "description": "The number of InnoDB operations.", "enabled": true, "stability": "development", @@ -767,9 +616,7 @@ "unit": "1" }, "mysql.page_operations": { - "attributes": [ - "page_operations" - ], + "attributes": ["page_operations"], "description": "The number of InnoDB page operations.", "enabled": true, "stability": "development", @@ -794,9 +641,7 @@ "unit": "By" }, "mysql.prepared_statements": { - "attributes": [ - "prepared_statements_command" - ], + "attributes": ["prepared_statements_command"], "description": "The number of times each type of prepared statement command has been issued.", "enabled": true, "stability": "development", @@ -869,9 +714,7 @@ "unit": "s" }, "mysql.row_locks": { - "attributes": [ - "row_locks" - ], + "attributes": ["row_locks"], "description": "The number of InnoDB row locks.", "enabled": true, "stability": "development", @@ -884,9 +727,7 @@ "unit": "1" }, "mysql.row_operations": { - "attributes": [ - "row_operations" - ], + "attributes": ["row_operations"], "description": "The number of InnoDB row operations.", "enabled": true, "stability": "development", @@ -899,9 +740,7 @@ "unit": "1" }, "mysql.sorts": { - "attributes": [ - "sorts" - ], + "attributes": ["sorts"], "description": "The number of MySQL sorts.", "enabled": true, "stability": "development", @@ -914,12 +753,7 @@ "unit": "1" }, "mysql.statement_event.count": { - "attributes": [ - "digest", - "digest_text", - "event_state", - "schema" - ], + "attributes": ["digest", "digest_text", "event_state", "schema"], "description": "Summary of current and recent statement events.", "enabled": false, "stability": "development", @@ -931,11 +765,7 @@ "unit": "1" }, "mysql.statement_event.wait.time": { - "attributes": [ - "digest", - "digest_text", - "schema" - ], + "attributes": ["digest", "digest_text", "schema"], "description": "The total wait time of the summarized timed events.", "enabled": false, "stability": "development", @@ -947,10 +777,7 @@ "unit": "ns" }, "mysql.table.average_row_length": { - "attributes": [ - "schema", - "table_name" - ], + "attributes": ["schema", "table_name"], "description": "The average row length in bytes for a given table.", "enabled": false, "stability": "development", @@ -962,11 +789,7 @@ "unit": "By" }, "mysql.table.io.wait.count": { - "attributes": [ - "io_waits_operations", - "schema", - "table_name" - ], + "attributes": ["io_waits_operations", "schema", "table_name"], "description": "The total count of I/O wait events for a table.", "enabled": true, "stability": "development", @@ -978,11 +801,7 @@ "unit": "1" }, "mysql.table.io.wait.time": { - "attributes": [ - "io_waits_operations", - "schema", - "table_name" - ], + "attributes": ["io_waits_operations", "schema", "table_name"], "description": "The total time of I/O wait events for a table.", "enabled": true, "stability": "development", @@ -994,11 +813,7 @@ "unit": "ns" }, "mysql.table.lock_wait.read.count": { - "attributes": [ - "read_lock_type", - "schema", - "table_name" - ], + "attributes": ["read_lock_type", "schema", "table_name"], "description": "The total table lock wait read events.", "enabled": false, "stability": "development", @@ -1010,11 +825,7 @@ "unit": "1" }, "mysql.table.lock_wait.read.time": { - "attributes": [ - "read_lock_type", - "schema", - "table_name" - ], + "attributes": ["read_lock_type", "schema", "table_name"], "description": "The total table lock wait read events times.", "enabled": false, "stability": "development", @@ -1026,11 +837,7 @@ "unit": "ns" }, "mysql.table.lock_wait.write.count": { - "attributes": [ - "schema", - "table_name", - "write_lock_type" - ], + "attributes": ["schema", "table_name", "write_lock_type"], "description": "The total table lock wait write events.", "enabled": false, "stability": "development", @@ -1042,11 +849,7 @@ "unit": "1" }, "mysql.table.lock_wait.write.time": { - "attributes": [ - "schema", - "table_name", - "write_lock_type" - ], + "attributes": ["schema", "table_name", "write_lock_type"], "description": "The total table lock wait write events times.", "enabled": false, "stability": "development", @@ -1058,10 +861,7 @@ "unit": "ns" }, "mysql.table.rows": { - "attributes": [ - "schema", - "table_name" - ], + "attributes": ["schema", "table_name"], "description": "The number of rows for a given table.", "enabled": false, "stability": "development", @@ -1073,11 +873,7 @@ "unit": "1" }, "mysql.table.size": { - "attributes": [ - "schema", - "table_name", - "table_size_type" - ], + "attributes": ["schema", "table_name", "table_size_type"], "description": "The table size in bytes for a given table.", "enabled": false, "stability": "development", @@ -1089,9 +885,7 @@ "unit": "By" }, "mysql.table_open_cache": { - "attributes": [ - "cache_status" - ], + "attributes": ["cache_status"], "description": "The number of hits, misses or overflows for open tables cache lookups.", "enabled": false, "stability": "development", @@ -1104,9 +898,7 @@ "unit": "1" }, "mysql.threads": { - "attributes": [ - "threads" - ], + "attributes": ["threads"], "description": "The state of MySQL threads.", "enabled": true, "stability": "development", @@ -1119,9 +911,7 @@ "unit": "1" }, "mysql.tmp_resources": { - "attributes": [ - "tmp_resource" - ], + "attributes": ["tmp_resource"], "description": "The number of created temporary resources.", "enabled": true, "stability": "development", @@ -1151,26 +941,15 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "antonblock", - "ishleenk17" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["antonblock", "ishleenk17"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ], - "development": [ - "logs" - ] + "beta": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-mysqlreceiver/contrib-mysqlreceiver-7448fcd94c8c.json b/ecosystem-explorer/public/data/collector/components/contrib-mysqlreceiver/contrib-mysqlreceiver-7448fcd94c8c.json index d5a7f807..1251b6d9 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-mysqlreceiver/contrib-mysqlreceiver-7448fcd94c8c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-mysqlreceiver/contrib-mysqlreceiver-7448fcd94c8c.json @@ -2,10 +2,7 @@ "attributes": { "buffer_pool_data": { "description": "The status of buffer pool data.", - "enum": [ - "clean", - "dirty" - ], + "enum": ["clean", "dirty"], "name_override": "status", "type": "string" }, @@ -25,22 +22,13 @@ }, "buffer_pool_pages": { "description": "The buffer pool pages types.", - "enum": [ - "data", - "free", - "misc", - "total" - ], + "enum": ["data", "free", "misc", "total"], "name_override": "kind", "type": "string" }, "cache_status": { "description": "The status of cache access.", - "enum": [ - "hit", - "miss", - "overflow" - ], + "enum": ["hit", "miss", "overflow"], "name_override": "status", "type": "string" }, @@ -54,14 +42,7 @@ }, "command": { "description": "The command types.", - "enum": [ - "delete", - "delete_multi", - "insert", - "select", - "update", - "update_multi" - ], + "enum": ["delete", "delete_multi", "insert", "select", "update", "update_multi"], "type": "string" }, "connection_error": { @@ -82,11 +63,7 @@ }, "connection_status": { "description": "The connection status.", - "enum": [ - "accepted", - "closed", - "rejected" - ], + "enum": ["accepted", "closed", "rejected"], "name_override": "status", "type": "string" }, @@ -100,9 +77,7 @@ }, "db.system.name": { "description": "The name of the database system.", - "enum": [ - "mysql" - ], + "enum": ["mysql"], "type": "string" }, "digest": { @@ -115,19 +90,13 @@ }, "direction": { "description": "The name of the transmission direction.", - "enum": [ - "received", - "sent" - ], + "enum": ["received", "sent"], "name_override": "kind", "type": "string" }, "double_writes": { "description": "The doublewrite types.", - "enum": [ - "pages_written", - "writes" - ], + "enum": ["pages_written", "writes"], "name_override": "kind", "type": "string" }, @@ -180,44 +149,25 @@ }, "io_waits_operations": { "description": "The io_waits operation type.", - "enum": [ - "delete", - "fetch", - "insert", - "update" - ], + "enum": ["delete", "fetch", "insert", "update"], "name_override": "operation", "type": "string" }, "join_kind": { "description": "The kind of join.", - "enum": [ - "full", - "full_range", - "range", - "range_check", - "scan" - ], + "enum": ["full", "full_range", "range", "range_check", "scan"], "name_override": "kind", "type": "string" }, "locks": { "description": "The table locks type.", - "enum": [ - "immediate", - "waited" - ], + "enum": ["immediate", "waited"], "name_override": "kind", "type": "string" }, "log_operations": { "description": "The log operation types. 'fsyncs' aren't available in MariaDB 10.8 or later.", - "enum": [ - "fsyncs", - "waits", - "write_requests", - "writes" - ], + "enum": ["fsyncs", "waits", "write_requests", "writes"], "name_override": "operation", "type": "string" }, @@ -279,10 +229,7 @@ }, "mysqlx_threads": { "description": "The worker thread count kind.", - "enum": [ - "active", - "available" - ], + "enum": ["active", "available"], "name_override": "kind", "type": "string" }, @@ -296,76 +243,43 @@ }, "opened_resources": { "description": "The kind of the resource.", - "enum": [ - "file", - "table", - "table_definition" - ], + "enum": ["file", "table", "table_definition"], "name_override": "kind", "type": "string" }, "operations": { "description": "The operation types.", - "enum": [ - "fsyncs", - "reads", - "writes" - ], + "enum": ["fsyncs", "reads", "writes"], "name_override": "operation", "type": "string" }, "page_operations": { "description": "The page operation types.", - "enum": [ - "created", - "read", - "written" - ], + "enum": ["created", "read", "written"], "name_override": "operation", "type": "string" }, "prepared_statements_command": { "description": "The prepare statement command types.", - "enum": [ - "close", - "execute", - "fetch", - "prepare", - "reset", - "send_long_data" - ], + "enum": ["close", "execute", "fetch", "prepare", "reset", "send_long_data"], "name_override": "command", "type": "string" }, "read_lock_type": { "description": "Read operation types.", - "enum": [ - "external", - "high_priority", - "no_insert", - "normal", - "with_shared_locks" - ], + "enum": ["external", "high_priority", "no_insert", "normal", "with_shared_locks"], "name_override": "kind", "type": "string" }, "row_locks": { "description": "The row lock type.", - "enum": [ - "time", - "waits" - ], + "enum": ["time", "waits"], "name_override": "kind", "type": "string" }, "row_operations": { "description": "The row operation type.", - "enum": [ - "deleted", - "inserted", - "read", - "updated" - ], + "enum": ["deleted", "inserted", "read", "updated"], "name_override": "operation", "type": "string" }, @@ -375,12 +289,7 @@ }, "sorts": { "description": "The sort count type.", - "enum": [ - "merge_passes", - "range", - "rows", - "scan" - ], + "enum": ["merge_passes", "range", "rows", "scan"], "name_override": "kind", "type": "string" }, @@ -391,31 +300,19 @@ }, "table_size_type": { "description": "The table size types.", - "enum": [ - "data", - "index" - ], + "enum": ["data", "index"], "name_override": "kind", "type": "string" }, "threads": { "description": "The thread count type.", - "enum": [ - "cached", - "connected", - "created", - "running" - ], + "enum": ["cached", "connected", "created", "running"], "name_override": "kind", "type": "string" }, "tmp_resource": { "description": "The kind of temporary resources.", - "enum": [ - "disk_tables", - "files", - "tables" - ], + "enum": ["disk_tables", "files", "tables"], "name_override": "resource", "type": "string" }, @@ -425,13 +322,7 @@ }, "write_lock_type": { "description": "Write operation types.", - "enum": [ - "allow_write", - "concurrent_insert", - "external", - "low_priority", - "normal" - ], + "enum": ["allow_write", "concurrent_insert", "external", "low_priority", "normal"], "name_override": "kind", "type": "string" } @@ -443,9 +334,7 @@ "id": "contrib-mysqlreceiver", "metrics": { "mysql.buffer_pool.data_pages": { - "attributes": [ - "buffer_pool_data" - ], + "attributes": ["buffer_pool_data"], "description": "The number of data pages in the InnoDB buffer pool.", "enabled": true, "stability": "development", @@ -469,9 +358,7 @@ "unit": "By" }, "mysql.buffer_pool.operations": { - "attributes": [ - "buffer_pool_operations" - ], + "attributes": ["buffer_pool_operations"], "description": "The number of operations on the InnoDB buffer pool.", "enabled": true, "stability": "development", @@ -496,9 +383,7 @@ "unit": "1" }, "mysql.buffer_pool.pages": { - "attributes": [ - "buffer_pool_pages" - ], + "attributes": ["buffer_pool_pages"], "description": "The number of pages in the InnoDB buffer pool.", "enabled": true, "stability": "development", @@ -511,9 +396,7 @@ "unit": "1" }, "mysql.buffer_pool.usage": { - "attributes": [ - "buffer_pool_data" - ], + "attributes": ["buffer_pool_data"], "description": "The number of bytes in the InnoDB buffer pool.", "enabled": true, "stability": "development", @@ -525,9 +408,7 @@ "unit": "By" }, "mysql.client.network.io": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "The number of transmitted bytes between server and clients.", "enabled": false, "stability": "development", @@ -540,9 +421,7 @@ "unit": "By" }, "mysql.commands": { - "attributes": [ - "command" - ], + "attributes": ["command"], "description": "The number of times each type of command has been executed.", "enabled": false, "stability": "development", @@ -567,9 +446,7 @@ "unit": "1" }, "mysql.connection.errors": { - "attributes": [ - "connection_error" - ], + "attributes": ["connection_error"], "description": "Errors that occur during the client connection process.", "enabled": false, "stability": "development", @@ -582,9 +459,7 @@ "unit": "1" }, "mysql.double_writes": { - "attributes": [ - "double_writes" - ], + "attributes": ["double_writes"], "description": "The number of writes to the InnoDB doublewrite buffer.", "enabled": true, "stability": "development", @@ -597,9 +472,7 @@ "unit": "1" }, "mysql.handlers": { - "attributes": [ - "handler" - ], + "attributes": ["handler"], "description": "The number of requests to various MySQL handlers.", "enabled": true, "stability": "development", @@ -612,12 +485,7 @@ "unit": "1" }, "mysql.index.io.wait.count": { - "attributes": [ - "index_name", - "io_waits_operations", - "schema", - "table_name" - ], + "attributes": ["index_name", "io_waits_operations", "schema", "table_name"], "description": "The total count of I/O wait events for an index.", "enabled": true, "stability": "development", @@ -629,12 +497,7 @@ "unit": "1" }, "mysql.index.io.wait.time": { - "attributes": [ - "index_name", - "io_waits_operations", - "schema", - "table_name" - ], + "attributes": ["index_name", "io_waits_operations", "schema", "table_name"], "description": "The total time of I/O wait events for an index.", "enabled": true, "stability": "development", @@ -646,9 +509,7 @@ "unit": "ns" }, "mysql.joins": { - "attributes": [ - "join_kind" - ], + "attributes": ["join_kind"], "description": "The number of joins that perform table scans.", "enabled": false, "stability": "development", @@ -661,9 +522,7 @@ "unit": "1" }, "mysql.locks": { - "attributes": [ - "locks" - ], + "attributes": ["locks"], "description": "The number of MySQL locks.", "enabled": true, "stability": "development", @@ -676,9 +535,7 @@ "unit": "1" }, "mysql.log_operations": { - "attributes": [ - "log_operations" - ], + "attributes": ["log_operations"], "description": "The number of InnoDB log operations.", "enabled": true, "stability": "development", @@ -703,9 +560,7 @@ "unit": "1" }, "mysql.mysqlx_connections": { - "attributes": [ - "connection_status" - ], + "attributes": ["connection_status"], "description": "The number of mysqlx connections.", "enabled": true, "stability": "development", @@ -718,9 +573,7 @@ "unit": "1" }, "mysql.mysqlx_worker_threads": { - "attributes": [ - "mysqlx_threads" - ], + "attributes": ["mysqlx_threads"], "description": "The number of worker threads available.", "enabled": false, "stability": "development", @@ -733,9 +586,7 @@ "unit": "1" }, "mysql.opened_resources": { - "attributes": [ - "opened_resources" - ], + "attributes": ["opened_resources"], "description": "The number of opened resources.", "enabled": true, "stability": "development", @@ -748,9 +599,7 @@ "unit": "1" }, "mysql.operations": { - "attributes": [ - "operations" - ], + "attributes": ["operations"], "description": "The number of InnoDB operations.", "enabled": true, "stability": "development", @@ -763,9 +612,7 @@ "unit": "1" }, "mysql.page_operations": { - "attributes": [ - "page_operations" - ], + "attributes": ["page_operations"], "description": "The number of InnoDB page operations.", "enabled": true, "stability": "development", @@ -790,9 +637,7 @@ "unit": "By" }, "mysql.prepared_statements": { - "attributes": [ - "prepared_statements_command" - ], + "attributes": ["prepared_statements_command"], "description": "The number of times each type of prepared statement command has been issued.", "enabled": true, "stability": "development", @@ -865,9 +710,7 @@ "unit": "s" }, "mysql.row_locks": { - "attributes": [ - "row_locks" - ], + "attributes": ["row_locks"], "description": "The number of InnoDB row locks.", "enabled": true, "stability": "development", @@ -880,9 +723,7 @@ "unit": "1" }, "mysql.row_operations": { - "attributes": [ - "row_operations" - ], + "attributes": ["row_operations"], "description": "The number of InnoDB row operations.", "enabled": true, "stability": "development", @@ -895,9 +736,7 @@ "unit": "1" }, "mysql.sorts": { - "attributes": [ - "sorts" - ], + "attributes": ["sorts"], "description": "The number of MySQL sorts.", "enabled": true, "stability": "development", @@ -910,12 +749,7 @@ "unit": "1" }, "mysql.statement_event.count": { - "attributes": [ - "digest", - "digest_text", - "event_state", - "schema" - ], + "attributes": ["digest", "digest_text", "event_state", "schema"], "description": "Summary of current and recent statement events.", "enabled": false, "stability": "development", @@ -927,11 +761,7 @@ "unit": "1" }, "mysql.statement_event.wait.time": { - "attributes": [ - "digest", - "digest_text", - "schema" - ], + "attributes": ["digest", "digest_text", "schema"], "description": "The total wait time of the summarized timed events.", "enabled": false, "stability": "development", @@ -943,10 +773,7 @@ "unit": "ns" }, "mysql.table.average_row_length": { - "attributes": [ - "schema", - "table_name" - ], + "attributes": ["schema", "table_name"], "description": "The average row length in bytes for a given table.", "enabled": false, "stability": "development", @@ -958,11 +785,7 @@ "unit": "By" }, "mysql.table.io.wait.count": { - "attributes": [ - "io_waits_operations", - "schema", - "table_name" - ], + "attributes": ["io_waits_operations", "schema", "table_name"], "description": "The total count of I/O wait events for a table.", "enabled": true, "stability": "development", @@ -974,11 +797,7 @@ "unit": "1" }, "mysql.table.io.wait.time": { - "attributes": [ - "io_waits_operations", - "schema", - "table_name" - ], + "attributes": ["io_waits_operations", "schema", "table_name"], "description": "The total time of I/O wait events for a table.", "enabled": true, "stability": "development", @@ -990,11 +809,7 @@ "unit": "ns" }, "mysql.table.lock_wait.read.count": { - "attributes": [ - "read_lock_type", - "schema", - "table_name" - ], + "attributes": ["read_lock_type", "schema", "table_name"], "description": "The total table lock wait read events.", "enabled": false, "stability": "development", @@ -1006,11 +821,7 @@ "unit": "1" }, "mysql.table.lock_wait.read.time": { - "attributes": [ - "read_lock_type", - "schema", - "table_name" - ], + "attributes": ["read_lock_type", "schema", "table_name"], "description": "The total table lock wait read events times.", "enabled": false, "stability": "development", @@ -1022,11 +833,7 @@ "unit": "ns" }, "mysql.table.lock_wait.write.count": { - "attributes": [ - "schema", - "table_name", - "write_lock_type" - ], + "attributes": ["schema", "table_name", "write_lock_type"], "description": "The total table lock wait write events.", "enabled": false, "stability": "development", @@ -1038,11 +845,7 @@ "unit": "1" }, "mysql.table.lock_wait.write.time": { - "attributes": [ - "schema", - "table_name", - "write_lock_type" - ], + "attributes": ["schema", "table_name", "write_lock_type"], "description": "The total table lock wait write events times.", "enabled": false, "stability": "development", @@ -1054,10 +857,7 @@ "unit": "ns" }, "mysql.table.rows": { - "attributes": [ - "schema", - "table_name" - ], + "attributes": ["schema", "table_name"], "description": "The number of rows for a given table.", "enabled": false, "stability": "development", @@ -1069,11 +869,7 @@ "unit": "1" }, "mysql.table.size": { - "attributes": [ - "schema", - "table_name", - "table_size_type" - ], + "attributes": ["schema", "table_name", "table_size_type"], "description": "The table size in bytes for a given table.", "enabled": false, "stability": "development", @@ -1085,9 +881,7 @@ "unit": "By" }, "mysql.table_open_cache": { - "attributes": [ - "cache_status" - ], + "attributes": ["cache_status"], "description": "The number of hits, misses or overflows for open tables cache lookups.", "enabled": false, "stability": "development", @@ -1100,9 +894,7 @@ "unit": "1" }, "mysql.threads": { - "attributes": [ - "threads" - ], + "attributes": ["threads"], "description": "The state of MySQL threads.", "enabled": true, "stability": "development", @@ -1115,9 +907,7 @@ "unit": "1" }, "mysql.tmp_resources": { - "attributes": [ - "tmp_resource" - ], + "attributes": ["tmp_resource"], "description": "The number of created temporary resources.", "enabled": true, "stability": "development", @@ -1147,26 +937,15 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "antonblock", - "ishleenk17" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["antonblock", "ishleenk17"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ], - "development": [ - "logs" - ] + "beta": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-namedpipereceiver/contrib-namedpipereceiver-8e3ca252725e.json b/ecosystem-explorer/public/data/collector/components/contrib-namedpipereceiver/contrib-namedpipereceiver-8e3ca252725e.json index 98975ed4..34c66129 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-namedpipereceiver/contrib-namedpipereceiver-8e3ca252725e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-namedpipereceiver/contrib-namedpipereceiver-8e3ca252725e.json @@ -9,25 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "sinkingpoint" - ], - "emeritus": [ - "djaglowski" - ] + "active": ["sinkingpoint"], + "emeritus": ["djaglowski"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] }, - "unsupported_platforms": [ - "darwin", - "windows" - ] + "unsupported_platforms": ["darwin", "windows"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-netflowreceiver/contrib-netflowreceiver-11b85f4e3eb6.json b/ecosystem-explorer/public/data/collector/components/contrib-netflowreceiver/contrib-netflowreceiver-11b85f4e3eb6.json index 4aed27fb..25d6a2d6 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-netflowreceiver/contrib-netflowreceiver-11b85f4e3eb6.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-netflowreceiver/contrib-netflowreceiver-11b85f4e3eb6.json @@ -9,19 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "evan-bradley", - "dlopes7" - ] + "active": ["evan-bradley", "dlopes7"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-nginxreceiver/contrib-nginxreceiver-317e5b304db0.json b/ecosystem-explorer/public/data/collector/components/contrib-nginxreceiver/contrib-nginxreceiver-317e5b304db0.json index 70ee972b..459eb72d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-nginxreceiver/contrib-nginxreceiver-317e5b304db0.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-nginxreceiver/contrib-nginxreceiver-317e5b304db0.json @@ -2,12 +2,7 @@ "attributes": { "state": { "description": "The state of a connection", - "enum": [ - "active", - "reading", - "waiting", - "writing" - ], + "enum": ["active", "reading", "waiting", "writing"], "type": "string" } }, @@ -30,9 +25,7 @@ "unit": "connections" }, "nginx.connections_current": { - "attributes": [ - "state" - ], + "attributes": ["state"], "description": "The current number of nginx connections by state", "enabled": true, "stability": "development", @@ -73,22 +66,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "colelaven", - "ishleenk17" - ], - "emeritus": [ - "djaglowski" - ] + "active": ["colelaven", "ishleenk17"], + "emeritus": ["djaglowski"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-nsxtreceiver/contrib-nsxtreceiver-b02a033b57a8.json b/ecosystem-explorer/public/data/collector/components/contrib-nsxtreceiver/contrib-nsxtreceiver-b02a033b57a8.json index d8592d4f..94c4287c 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-nsxtreceiver/contrib-nsxtreceiver-b02a033b57a8.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-nsxtreceiver/contrib-nsxtreceiver-b02a033b57a8.json @@ -2,36 +2,23 @@ "attributes": { "class": { "description": "The CPU usage of the architecture allocated for either DPDK (datapath) or non-DPDK (services) processes.", - "enum": [ - "datapath", - "services" - ], + "enum": ["datapath", "services"], "type": "string" }, "direction": { "description": "The direction of network flow.", - "enum": [ - "received", - "transmitted" - ], + "enum": ["received", "transmitted"], "type": "string" }, "disk_state": { "description": "The state of storage space.", - "enum": [ - "available", - "used" - ], + "enum": ["available", "used"], "name_override": "state", "type": "string" }, "packet.type": { "description": "The type of packet counter.", - "enum": [ - "dropped", - "errored", - "success" - ], + "enum": ["dropped", "errored", "success"], "name_override": "type", "type": "string" } @@ -43,9 +30,7 @@ "id": "contrib-nsxtreceiver", "metrics": { "nsxt.node.cpu.utilization": { - "attributes": [ - "class" - ], + "attributes": ["class"], "description": "The average amount of CPU being used by the node.", "enabled": true, "gauge": { @@ -55,9 +40,7 @@ "unit": "%" }, "nsxt.node.filesystem.usage": { - "attributes": [ - "disk_state" - ], + "attributes": ["disk_state"], "description": "The amount of storage space used by the node.", "enabled": true, "stability": "development", @@ -100,9 +83,7 @@ "unit": "KBy" }, "nsxt.node.network.io": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "The number of bytes which have flowed through the network interface.", "enabled": true, "stability": "development", @@ -114,10 +95,7 @@ "unit": "By" }, "nsxt.node.network.packet.count": { - "attributes": [ - "direction", - "packet.type" - ], + "attributes": ["direction", "packet.type"], "description": "The number of packets which have flowed through the network interface on the node.", "enabled": true, "stability": "development", @@ -134,19 +112,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dashpole", - "schmikei" - ] + "active": ["dashpole", "schmikei"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-ntpreceiver/contrib-ntpreceiver-068b7212cdba.json b/ecosystem-explorer/public/data/collector/components/contrib-ntpreceiver/contrib-ntpreceiver-068b7212cdba.json index 4bda615a..6fb7c185 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-ntpreceiver/contrib-ntpreceiver-068b7212cdba.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-ntpreceiver/contrib-ntpreceiver-068b7212cdba.json @@ -20,20 +20,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme", - "paulojmdias" - ], + "active": ["atoulme", "paulojmdias"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-oauth2clientauthextension/contrib-oauth2clientauthextension-7be352d7e385.json b/ecosystem-explorer/public/data/collector/components/contrib-oauth2clientauthextension/contrib-oauth2clientauthextension-7be352d7e385.json index d96db5bd..54fe9439 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-oauth2clientauthextension/contrib-oauth2clientauthextension-7be352d7e385.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-oauth2clientauthextension/contrib-oauth2clientauthextension-7be352d7e385.json @@ -9,23 +9,14 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "pavankrish123" - ], - "emeritus": [ - "jpkrohling" - ], + "active": ["pavankrish123"], + "emeritus": ["jpkrohling"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-oidcauthextension/contrib-oidcauthextension-90a8ffe8a381.json b/ecosystem-explorer/public/data/collector/components/contrib-oidcauthextension/contrib-oidcauthextension-90a8ffe8a381.json index ae6c647a..e20f14a9 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-oidcauthextension/contrib-oidcauthextension-90a8ffe8a381.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-oidcauthextension/contrib-oidcauthextension-90a8ffe8a381.json @@ -9,23 +9,14 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "asweet-confluent" - ], - "emeritus": [ - "jpkrohling" - ], + "active": ["asweet-confluent"], + "emeritus": ["jpkrohling"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-opampextension/contrib-opampextension-009d5b792833.json b/ecosystem-explorer/public/data/collector/components/contrib-opampextension/contrib-opampextension-009d5b792833.json index ae0aebc0..c8244efb 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-opampextension/contrib-opampextension-009d5b792833.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-opampextension/contrib-opampextension-009d5b792833.json @@ -9,21 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "portertech", - "evan-bradley", - "tigrannajaryan" - ] + "active": ["portertech", "evan-bradley", "tigrannajaryan"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-opensearchexporter/contrib-opensearchexporter-ce450e41fcff.json b/ecosystem-explorer/public/data/collector/components/contrib-opensearchexporter/contrib-opensearchexporter-ce450e41fcff.json index 72636752..406c7e1b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-opensearchexporter/contrib-opensearchexporter-ce450e41fcff.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-opensearchexporter/contrib-opensearchexporter-ce450e41fcff.json @@ -9,26 +9,14 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "ps48" - ], - "emeritus": [ - "Aneurysm9", - "MitchellGale", - "MaxKsyunz", - "YANG-DB" - ], + "active": ["ps48"], + "emeritus": ["Aneurysm9", "MitchellGale", "MaxKsyunz", "YANG-DB"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "traces" - ] + "alpha": ["logs", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-oracledbreceiver/contrib-oracledbreceiver-f4f562e2dd15.json b/ecosystem-explorer/public/data/collector/components/contrib-oracledbreceiver/contrib-oracledbreceiver-f4f562e2dd15.json index 9831a708..e3e63f9d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-oracledbreceiver/contrib-oracledbreceiver-f4f562e2dd15.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-oracledbreceiver/contrib-oracledbreceiver-f4f562e2dd15.json @@ -609,10 +609,7 @@ "unit": "{sessions}" }, "oracledb.sessions.usage": { - "attributes": [ - "session_status", - "session_type" - ], + "attributes": ["session_status", "session_type"], "description": "Count of active sessions.", "enabled": true, "gauge": { @@ -623,9 +620,7 @@ "unit": "{sessions}" }, "oracledb.tablespace_size.limit": { - "attributes": [ - "tablespace_name" - ], + "attributes": ["tablespace_name"], "description": "Maximum size of tablespace in bytes, -1 if unlimited.", "enabled": true, "gauge": { @@ -635,9 +630,7 @@ "unit": "By" }, "oracledb.tablespace_size.usage": { - "attributes": [ - "tablespace_name" - ], + "attributes": ["tablespace_name"], "description": "Used tablespace in bytes.", "enabled": true, "gauge": { @@ -696,23 +689,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "crobert-1", - "atoulme" - ] - }, - "distributions": [ - "contrib" - ], + "active": ["dmitryax", "crobert-1", "atoulme"] + }, + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ], - "development": [ - "logs" - ] + "alpha": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-osqueryreceiver/contrib-osqueryreceiver-6466ecdc767a.json b/ecosystem-explorer/public/data/collector/components/contrib-osqueryreceiver/contrib-osqueryreceiver-6466ecdc767a.json index 92292be5..2235b29f 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-osqueryreceiver/contrib-osqueryreceiver-6466ecdc767a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-osqueryreceiver/contrib-osqueryreceiver-6466ecdc767a.json @@ -9,18 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "smithclay" - ], - "emeritus": [ - "nslaughter" - ] + "active": ["smithclay"], + "emeritus": ["nslaughter"] }, "stability": { - "development": [ - "logs" - ] + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-osqueryreceiver/contrib-osqueryreceiver-e7ae85d5795c.json b/ecosystem-explorer/public/data/collector/components/contrib-osqueryreceiver/contrib-osqueryreceiver-e7ae85d5795c.json index ac6bf62a..71846c73 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-osqueryreceiver/contrib-osqueryreceiver-e7ae85d5795c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-osqueryreceiver/contrib-osqueryreceiver-e7ae85d5795c.json @@ -9,18 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "smithclay" - ], - "emeritus": [ - "nslaughter" - ] + "active": ["smithclay"], + "emeritus": ["nslaughter"] }, "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-otelarrowexporter/contrib-otelarrowexporter-da5ce349375c.json b/ecosystem-explorer/public/data/collector/components/contrib-otelarrowexporter/contrib-otelarrowexporter-da5ce349375c.json index d5bfaaad..9ca00bdc 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-otelarrowexporter/contrib-otelarrowexporter-da5ce349375c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-otelarrowexporter/contrib-otelarrowexporter-da5ce349375c.json @@ -9,25 +9,13 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "jmacd", - "JakeDern" - ], - "emeritus": [ - "moh-osman3" - ] + "active": ["jmacd", "JakeDern"], + "emeritus": ["moh-osman3"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-otelarrowreceiver/contrib-otelarrowreceiver-1a8c6cd9a1b6.json b/ecosystem-explorer/public/data/collector/components/contrib-otelarrowreceiver/contrib-otelarrowreceiver-1a8c6cd9a1b6.json index 892ae393..a6044137 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-otelarrowreceiver/contrib-otelarrowreceiver-1a8c6cd9a1b6.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-otelarrowreceiver/contrib-otelarrowreceiver-1a8c6cd9a1b6.json @@ -9,25 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "jmacd", - "JakeDern" - ], - "emeritus": [ - "moh-osman3" - ] + "active": ["jmacd", "JakeDern"], + "emeritus": ["moh-osman3"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-otlpencodingextension/contrib-otlpencodingextension-f005ff82c8c2.json b/ecosystem-explorer/public/data/collector/components/contrib-otlpencodingextension/contrib-otlpencodingextension-f005ff82c8c2.json index 3b6934b2..a3e9311b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-otlpencodingextension/contrib-otlpencodingextension-f005ff82c8c2.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-otlpencodingextension/contrib-otlpencodingextension-f005ff82c8c2.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "dao-jun", - "VihasMakwana" - ] + "active": ["dao-jun", "VihasMakwana"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-otlpjsonconnector/contrib-otlpjsonconnector-d5ccabc75983.json b/ecosystem-explorer/public/data/collector/components/contrib-otlpjsonconnector/contrib-otlpjsonconnector-d5ccabc75983.json index 070d7407..38f0078a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-otlpjsonconnector/contrib-otlpjsonconnector-d5ccabc75983.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-otlpjsonconnector/contrib-otlpjsonconnector-d5ccabc75983.json @@ -9,24 +9,13 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "ChrsMark" - ], - "emeritus": [ - "djaglowski" - ] + "active": ["ChrsMark"], + "emeritus": ["djaglowski"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "logs_to_logs", - "logs_to_metrics", - "logs_to_traces" - ] + "alpha": ["logs_to_logs", "logs_to_metrics", "logs_to_traces"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-otlpjsonfilereceiver/contrib-otlpjsonfilereceiver-b1b5369338d9.json b/ecosystem-explorer/public/data/collector/components/contrib-otlpjsonfilereceiver/contrib-otlpjsonfilereceiver-b1b5369338d9.json index 60cbb374..64faf107 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-otlpjsonfilereceiver/contrib-otlpjsonfilereceiver-b1b5369338d9.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-otlpjsonfilereceiver/contrib-otlpjsonfilereceiver-b1b5369338d9.json @@ -9,24 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme" - ], + "active": ["atoulme"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ], - "development": [ - "profiles" - ] + "alpha": ["logs", "metrics", "traces"], + "development": ["profiles"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-podmanreceiver/contrib-podmanreceiver-2c1025237506.json b/ecosystem-explorer/public/data/collector/components/contrib-podmanreceiver/contrib-podmanreceiver-2c1025237506.json index 16bec6ed..d94339d5 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-podmanreceiver/contrib-podmanreceiver-2c1025237506.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-podmanreceiver/contrib-podmanreceiver-2c1025237506.json @@ -43,9 +43,7 @@ "unit": "1" }, "container.cpu.usage.percpu": { - "attributes": [ - "core" - ], + "attributes": ["core"], "description": "Total CPU time consumed per CPU-core.", "enabled": true, "stability": "development", @@ -137,21 +135,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "rogercoll" - ] + "active": ["rogercoll"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] }, - "unsupported_platforms": [ - "windows" - ] + "unsupported_platforms": ["windows"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-postgresqlreceiver/contrib-postgresqlreceiver-20f8dcb521f7.json b/ecosystem-explorer/public/data/collector/components/contrib-postgresqlreceiver/contrib-postgresqlreceiver-20f8dcb521f7.json index 7cdebabd..91cbc6fd 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-postgresqlreceiver/contrib-postgresqlreceiver-20f8dcb521f7.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-postgresqlreceiver/contrib-postgresqlreceiver-20f8dcb521f7.json @@ -2,30 +2,19 @@ "attributes": { "bg_buffer_source": { "description": "The source of a buffer write.", - "enum": [ - "backend", - "backend_fsync", - "bgwriter", - "checkpoints" - ], + "enum": ["backend", "backend_fsync", "bgwriter", "checkpoints"], "name_override": "source", "type": "string" }, "bg_checkpoint_type": { "description": "The type of checkpoint state.", - "enum": [ - "requested", - "scheduled" - ], + "enum": ["requested", "scheduled"], "name_override": "type", "type": "string" }, "bg_duration_type": { "description": "The type of time spent during the checkpoint.", - "enum": [ - "sync", - "write" - ], + "enum": ["sync", "write"], "name_override": "type", "type": "string" }, @@ -39,9 +28,7 @@ }, "db.system.name": { "description": "The database management system (DBMS) product as identified by the client instrumentation.", - "enum": [ - "postgresql" - ], + "enum": ["postgresql"], "type": "string" }, "function": { @@ -66,12 +53,7 @@ }, "operation": { "description": "The database operation.", - "enum": [ - "del", - "hot_upd", - "ins", - "upd" - ], + "enum": ["del", "hot_upd", "ins", "upd"], "type": "string" }, "postgresql.application_name": { @@ -182,10 +164,7 @@ }, "state": { "description": "The tuple (row) state.", - "enum": [ - "dead", - "live" - ], + "enum": ["dead", "live"], "type": "string" }, "user.name": { @@ -194,11 +173,7 @@ }, "wal_operation_lag": { "description": "The operation which is responsible for the lag.", - "enum": [ - "flush", - "replay", - "write" - ], + "enum": ["flush", "replay", "write"], "name_override": "operation", "type": "string" } @@ -232,9 +207,7 @@ "unit": "{buffers}" }, "postgresql.bgwriter.buffers.writes": { - "attributes": [ - "bg_buffer_source" - ], + "attributes": ["bg_buffer_source"], "description": "Number of buffers written.", "enabled": true, "stability": "development", @@ -246,9 +219,7 @@ "unit": "{buffers}" }, "postgresql.bgwriter.checkpoint.count": { - "attributes": [ - "bg_checkpoint_type" - ], + "attributes": ["bg_checkpoint_type"], "description": "The number of checkpoints performed.", "enabled": true, "stability": "development", @@ -260,9 +231,7 @@ "unit": "{checkpoints}" }, "postgresql.bgwriter.duration": { - "attributes": [ - "bg_duration_type" - ], + "attributes": ["bg_duration_type"], "description": "Total time spent writing and syncing files to disk by checkpoints.", "enabled": true, "stability": "development", @@ -307,9 +276,7 @@ "unit": "{blks_read}" }, "postgresql.blocks_read": { - "attributes": [ - "source" - ], + "attributes": ["source"], "description": "The number of blocks read.", "enabled": true, "stability": "development", @@ -352,11 +319,7 @@ "unit": "{databases}" }, "postgresql.database.locks": { - "attributes": [ - "lock_type", - "mode", - "relation" - ], + "attributes": ["lock_type", "mode", "relation"], "description": "The number of database locks.", "enabled": false, "gauge": { @@ -388,9 +351,7 @@ "unit": "{deadlock}" }, "postgresql.function.calls": { - "attributes": [ - "function" - ], + "attributes": ["function"], "description": "The number of calls made to a function. Requires `track_functions=pl|all` in Postgres config.", "enabled": false, "stability": "development", @@ -422,9 +383,7 @@ "unit": "By" }, "postgresql.operations": { - "attributes": [ - "operation" - ], + "attributes": ["operation"], "description": "The number of db row operations.", "enabled": true, "stability": "development", @@ -436,9 +395,7 @@ "unit": "1" }, "postgresql.replication.data_delay": { - "attributes": [ - "replication_client" - ], + "attributes": ["replication_client"], "description": "The amount of data delayed in replication.", "enabled": true, "gauge": { @@ -459,9 +416,7 @@ "unit": "1" }, "postgresql.rows": { - "attributes": [ - "state" - ], + "attributes": ["state"], "description": "The number of rows in the database.", "enabled": true, "stability": "development", @@ -603,10 +558,7 @@ "unit": "s" }, "postgresql.wal.delay": { - "attributes": [ - "replication_client", - "wal_operation_lag" - ], + "attributes": ["replication_client", "wal_operation_lag"], "description": "Time between flushing recent WAL locally and receiving notification that the standby server has completed an operation with it.", "enabled": false, "gauge": { @@ -616,10 +568,7 @@ "unit": "s" }, "postgresql.wal.lag": { - "attributes": [ - "replication_client", - "wal_operation_lag" - ], + "attributes": ["replication_client", "wal_operation_lag"], "description": "Time between flushing recent WAL locally and receiving notification that the standby server has completed an operation with it.", "enabled": true, "gauge": { @@ -634,27 +583,15 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "antonblock", - "ishleenk17", - "Caleb-Hurshman" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["antonblock", "ishleenk17", "Caleb-Hurshman"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ], - "development": [ - "logs" - ] + "beta": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-pprofextension/contrib-pprofextension-ab5382e7b066.json b/ecosystem-explorer/public/data/collector/components/contrib-pprofextension/contrib-pprofextension-ab5382e7b066.json index 9c5fda69..b2699301 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-pprofextension/contrib-pprofextension-ab5382e7b066.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-pprofextension/contrib-pprofextension-ab5382e7b066.json @@ -9,20 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "MovieStoreGuy" - ] + "active": ["MovieStoreGuy"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-pprofreceiver/contrib-pprofreceiver-9dc2cb3b154c.json b/ecosystem-explorer/public/data/collector/components/contrib-pprofreceiver/contrib-pprofreceiver-9dc2cb3b154c.json index 2b9d1cc5..80d10a37 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-pprofreceiver/contrib-pprofreceiver-9dc2cb3b154c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-pprofreceiver/contrib-pprofreceiver-9dc2cb3b154c.json @@ -9,19 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "MovieStoreGuy", - "atoulme" - ] + "active": ["MovieStoreGuy", "atoulme"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "profiles" - ] + "alpha": ["profiles"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-probabilisticsamplerprocessor/contrib-probabilisticsamplerprocessor-b181ff779b7d.json b/ecosystem-explorer/public/data/collector/components/contrib-probabilisticsamplerprocessor/contrib-probabilisticsamplerprocessor-b181ff779b7d.json index 0bf02029..ec9e1905 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-probabilisticsamplerprocessor/contrib-probabilisticsamplerprocessor-b181ff779b7d.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-probabilisticsamplerprocessor/contrib-probabilisticsamplerprocessor-b181ff779b7d.json @@ -9,27 +9,15 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "jmacd" - ], - "emeritus": [ - "jpkrohling" - ], + "active": ["jmacd"], + "emeritus": ["jpkrohling"], "seeking_new": true }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "alpha": [ - "logs" - ], - "beta": [ - "traces" - ] + "alpha": ["logs"], + "beta": ["traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-prometheusexporter/contrib-prometheusexporter-d3a1189b859a.json b/ecosystem-explorer/public/data/collector/components/contrib-prometheusexporter/contrib-prometheusexporter-d3a1189b859a.json index 5cee1f7a..53625ef3 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-prometheusexporter/contrib-prometheusexporter-d3a1189b859a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-prometheusexporter/contrib-prometheusexporter-d3a1189b859a.json @@ -9,21 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "Aneurysm9", - "dashpole", - "ArthurSens" - ] + "active": ["Aneurysm9", "dashpole", "ArthurSens"] }, - "distributions": [ - "contrib", - "core" - ], + "distributions": ["contrib", "core"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-prometheusreceiver/contrib-prometheusreceiver-e55981b35890.json b/ecosystem-explorer/public/data/collector/components/contrib-prometheusreceiver/contrib-prometheusreceiver-e55981b35890.json index 2bd71e11..a4a90172 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-prometheusreceiver/contrib-prometheusreceiver-e55981b35890.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-prometheusreceiver/contrib-prometheusreceiver-e55981b35890.json @@ -9,23 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "Aneurysm9", - "dashpole", - "ArthurSens", - "krajorama" - ] + "active": ["Aneurysm9", "dashpole", "ArthurSens", "krajorama"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-prometheusremotewriteexporter/contrib-prometheusremotewriteexporter-4d3b5336110e.json b/ecosystem-explorer/public/data/collector/components/contrib-prometheusremotewriteexporter/contrib-prometheusremotewriteexporter-4d3b5336110e.json index 1c8eded9..3c90d945 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-prometheusremotewriteexporter/contrib-prometheusremotewriteexporter-4d3b5336110e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-prometheusremotewriteexporter/contrib-prometheusremotewriteexporter-4d3b5336110e.json @@ -9,23 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "Aneurysm9", - "rapphil", - "dashpole", - "ArthurSens", - "ywwg" - ] + "active": ["Aneurysm9", "rapphil", "dashpole", "ArthurSens", "ywwg"] }, - "distributions": [ - "contrib", - "core" - ], + "distributions": ["contrib", "core"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-prometheusremotewritereceiver/contrib-prometheusremotewritereceiver-e57d5f940e0c.json b/ecosystem-explorer/public/data/collector/components/contrib-prometheusremotewritereceiver/contrib-prometheusremotewritereceiver-e57d5f940e0c.json index 749cc4b4..bef006e2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-prometheusremotewritereceiver/contrib-prometheusremotewritereceiver-e57d5f940e0c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-prometheusremotewritereceiver/contrib-prometheusremotewritereceiver-e57d5f940e0c.json @@ -9,20 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dashpole", - "ArthurSens", - "perebaj" - ] + "active": ["dashpole", "ArthurSens", "perebaj"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-pulsarexporter/contrib-pulsarexporter-d7b48feb6d0d.json b/ecosystem-explorer/public/data/collector/components/contrib-pulsarexporter/contrib-pulsarexporter-d7b48feb6d0d.json index ef2e0bd0..38cfb894 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-pulsarexporter/contrib-pulsarexporter-d7b48feb6d0d.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-pulsarexporter/contrib-pulsarexporter-d7b48feb6d0d.json @@ -9,26 +9,14 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "dao-jun" - ], - "emeritus": [ - "dmitryax" - ] + "active": ["dao-jun"], + "emeritus": ["dmitryax"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] }, - "unsupported_platforms": [ - "aix" - ] + "unsupported_platforms": ["aix"] }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-pulsarreceiver/contrib-pulsarreceiver-caba0fdc3036.json b/ecosystem-explorer/public/data/collector/components/contrib-pulsarreceiver/contrib-pulsarreceiver-caba0fdc3036.json index d2712cc0..9c4d9b62 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-pulsarreceiver/contrib-pulsarreceiver-caba0fdc3036.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-pulsarreceiver/contrib-pulsarreceiver-caba0fdc3036.json @@ -9,26 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dao-jun" - ], - "emeritus": [ - "dmitryax" - ] + "active": ["dao-jun"], + "emeritus": ["dmitryax"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] }, - "unsupported_platforms": [ - "aix" - ] + "unsupported_platforms": ["aix"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-purefareceiver/contrib-purefareceiver-fc3168533624.json b/ecosystem-explorer/public/data/collector/components/contrib-purefareceiver/contrib-purefareceiver-fc3168533624.json index f85e4afb..0ff62116 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-purefareceiver/contrib-purefareceiver-fc3168533624.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-purefareceiver/contrib-purefareceiver-fc3168533624.json @@ -9,22 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dgoscn", - "chrroberts-pure" - ], - "emeritus": [ - "jpkrohling" - ] + "active": ["dgoscn", "chrroberts-pure"], + "emeritus": ["jpkrohling"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-purefbreceiver/contrib-purefbreceiver-386e3b32815e.json b/ecosystem-explorer/public/data/collector/components/contrib-purefbreceiver/contrib-purefbreceiver-386e3b32815e.json index f92e5402..982ffb42 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-purefbreceiver/contrib-purefbreceiver-386e3b32815e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-purefbreceiver/contrib-purefbreceiver-386e3b32815e.json @@ -9,22 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dgoscn", - "chrroberts-pure" - ], - "emeritus": [ - "jpkrohling" - ] + "active": ["dgoscn", "chrroberts-pure"], + "emeritus": ["jpkrohling"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-rabbitmqexporter/contrib-rabbitmqexporter-1d3959dc44e8.json b/ecosystem-explorer/public/data/collector/components/contrib-rabbitmqexporter/contrib-rabbitmqexporter-1d3959dc44e8.json index 85302b85..907f86b5 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-rabbitmqexporter/contrib-rabbitmqexporter-1d3959dc44e8.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-rabbitmqexporter/contrib-rabbitmqexporter-1d3959dc44e8.json @@ -9,23 +9,13 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "atoulme" - ], - "emeritus": [ - "swar8080" - ] + "active": ["atoulme"], + "emeritus": ["swar8080"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-rabbitmqreceiver/contrib-rabbitmqreceiver-2574aa6d6da8.json b/ecosystem-explorer/public/data/collector/components/contrib-rabbitmqreceiver/contrib-rabbitmqreceiver-2574aa6d6da8.json index 05eaf1d0..b8e93e84 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-rabbitmqreceiver/contrib-rabbitmqreceiver-2574aa6d6da8.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-rabbitmqreceiver/contrib-rabbitmqreceiver-2574aa6d6da8.json @@ -2,10 +2,7 @@ "attributes": { "message.state": { "description": "The state of messages in a queue.", - "enum": [ - "ready", - "unacknowledged" - ], + "enum": ["ready", "unacknowledged"], "name_override": "state", "type": "string" } @@ -39,9 +36,7 @@ "unit": "{messages}" }, "rabbitmq.message.current": { - "attributes": [ - "message.state" - ], + "attributes": ["message.state"], "description": "The total number of messages currently in the queue.", "enabled": true, "stability": "development", @@ -905,21 +900,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "VenuEmmadi" - ], - "emeritus": [ - "cpheps" - ] - }, - "distributions": [ - "contrib" - ], + "active": ["VenuEmmadi"], + "emeritus": ["cpheps"] + }, + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-receivercreator/contrib-receivercreator-1848c79ae1be.json b/ecosystem-explorer/public/data/collector/components/contrib-receivercreator/contrib-receivercreator-1848c79ae1be.json index 2b0f0d6e..6c341a49 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-receivercreator/contrib-receivercreator-1848c79ae1be.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-receivercreator/contrib-receivercreator-1848c79ae1be.json @@ -9,28 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "ChrsMark" - ], - "emeritus": [ - "rmfitzpatrick" - ] + "active": ["dmitryax", "ChrsMark"], + "emeritus": ["rmfitzpatrick"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "logs", - "profiles", - "traces" - ], - "beta": [ - "metrics" - ] + "alpha": ["logs", "profiles", "traces"], + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-redactionprocessor/contrib-redactionprocessor-6d0da092e320.json b/ecosystem-explorer/public/data/collector/components/contrib-redactionprocessor/contrib-redactionprocessor-6d0da092e320.json index 33dc75c2..572be11d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-redactionprocessor/contrib-redactionprocessor-6d0da092e320.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-redactionprocessor/contrib-redactionprocessor-6d0da092e320.json @@ -9,29 +9,14 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "dmitryax", - "mx-psi", - "TylerHelmuth", - "iblancasa" - ], - "emeritus": [ - "leonsp-ai" - ] + "active": ["dmitryax", "mx-psi", "TylerHelmuth", "iblancasa"], + "emeritus": ["leonsp-ai"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "logs", - "metrics" - ], - "beta": [ - "traces" - ] + "alpha": ["logs", "metrics"], + "beta": ["traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-redfishreceiver/contrib-redfishreceiver-9955d2306774.json b/ecosystem-explorer/public/data/collector/components/contrib-redfishreceiver/contrib-redfishreceiver-9955d2306774.json index e367bae1..1d47a9f6 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-redfishreceiver/contrib-redfishreceiver-9955d2306774.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-redfishreceiver/contrib-redfishreceiver-9955d2306774.json @@ -145,11 +145,7 @@ "unit": "{statusstate}" }, "fan.reading": { - "attributes": [ - "chassis.id", - "fan.name", - "fan.reading_units" - ], + "attributes": ["chassis.id", "fan.name", "fan.reading_units"], "description": "Measures the reading of a chassis fan.", "enabled": true, "gauge": { @@ -159,10 +155,7 @@ "unit": "{}" }, "fan.status.health": { - "attributes": [ - "chassis.id", - "fan.name" - ], + "attributes": ["chassis.id", "fan.name"], "description": "Measures the health of a chassis fan (-1 unknown, 0 critical, 1 ok, 2 warning).", "enabled": true, "gauge": { @@ -172,10 +165,7 @@ "unit": "{statushealth}" }, "fan.status.state": { - "attributes": [ - "chassis.id", - "fan.name" - ], + "attributes": ["chassis.id", "fan.name"], "description": "Measures the state of a chassis fan (-1 unknown, 0 disabled, 1 enabled).", "enabled": true, "gauge": { @@ -245,10 +235,7 @@ "unit": "{statusstate}" }, "temperature.reading": { - "attributes": [ - "chassis.id", - "temperature.name" - ], + "attributes": ["chassis.id", "temperature.name"], "description": "Measures the reading of a chassis temperature.", "enabled": true, "gauge": { @@ -258,10 +245,7 @@ "unit": "\u00b0C" }, "temperature.status.health": { - "attributes": [ - "chassis.id", - "temperature.name" - ], + "attributes": ["chassis.id", "temperature.name"], "description": "Measures the health of a chassis temperature (-1 unknown, 0 critical, 1 ok, 2 warning).", "enabled": true, "gauge": { @@ -271,10 +255,7 @@ "unit": "{statushealth}" }, "temperature.status.state": { - "attributes": [ - "chassis.id", - "temperature.name" - ], + "attributes": ["chassis.id", "temperature.name"], "description": "Measures the state of a chassis temperature (-1 unknown, 0 disabled, 1 enabled).", "enabled": true, "gauge": { @@ -289,16 +270,11 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "steven-freed", - "khushijain21" - ] + "active": ["steven-freed", "khushijain21"] }, "stability": { - "development": [ - "metrics" - ] + "development": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-redisreceiver/contrib-redisreceiver-81517e97e0f5.json b/ecosystem-explorer/public/data/collector/components/contrib-redisreceiver/contrib-redisreceiver-81517e97e0f5.json index 8fe1d8a0..59892d9a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-redisreceiver/contrib-redisreceiver-81517e97e0f5.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-redisreceiver/contrib-redisreceiver-81517e97e0f5.json @@ -2,10 +2,7 @@ "attributes": { "cluster_state": { "description": "State of the cluster", - "enum": [ - "fail", - "ok" - ], + "enum": ["fail", "ok"], "type": "string" }, "cmd": { @@ -18,28 +15,17 @@ }, "mode": { "description": "Redis server mode", - "enum": [ - "cluster", - "sentinel", - "standalone" - ], + "enum": ["cluster", "sentinel", "standalone"], "type": "string" }, "percentile": { "description": "Percentile", - "enum": [ - "p50", - "p99", - "p99.9" - ], + "enum": ["p50", "p99", "p99.9"], "type": "string" }, "role": { "description": "Redis node's role", - "enum": [ - "primary", - "replica" - ], + "enum": ["primary", "replica"], "type": "string" }, "state": { @@ -185,9 +171,7 @@ "unit": "{slot}" }, "redis.cluster.state": { - "attributes": [ - "cluster_state" - ], + "attributes": ["cluster_state"], "description": "State of the cluster", "enabled": false, "gauge": { @@ -228,9 +212,7 @@ "unit": "s" }, "redis.cmd.calls": { - "attributes": [ - "cmd" - ], + "attributes": ["cmd"], "description": "Total number of calls for a command", "enabled": false, "stability": "development", @@ -242,10 +224,7 @@ "unit": "{call}" }, "redis.cmd.latency": { - "attributes": [ - "cmd", - "percentile" - ], + "attributes": ["cmd", "percentile"], "description": "Command execution latency", "enabled": false, "gauge": { @@ -255,9 +234,7 @@ "unit": "s" }, "redis.cmd.usec": { - "attributes": [ - "cmd" - ], + "attributes": ["cmd"], "description": "Total time for all executions of this command", "enabled": false, "stability": "development", @@ -311,9 +288,7 @@ "unit": "{connection}" }, "redis.cpu.time": { - "attributes": [ - "state" - ], + "attributes": ["state"], "description": "System CPU consumed by the Redis server in seconds since server start", "enabled": true, "stability": "development", @@ -325,9 +300,7 @@ "unit": "s" }, "redis.db.avg_ttl": { - "attributes": [ - "db" - ], + "attributes": ["db"], "description": "Average keyspace keys TTL", "enabled": true, "gauge": { @@ -337,9 +310,7 @@ "unit": "ms" }, "redis.db.expires": { - "attributes": [ - "db" - ], + "attributes": ["db"], "description": "Number of keyspace keys with an expiration", "enabled": true, "gauge": { @@ -349,9 +320,7 @@ "unit": "{key}" }, "redis.db.keys": { - "attributes": [ - "db" - ], + "attributes": ["db"], "description": "Number of keyspace keys", "enabled": true, "gauge": { @@ -490,9 +459,7 @@ "unit": "By" }, "redis.mode": { - "attributes": [ - "mode" - ], + "attributes": ["mode"], "description": "Redis server mode", "enabled": false, "gauge": { @@ -562,9 +529,7 @@ "unit": "By" }, "redis.role": { - "attributes": [ - "role" - ], + "attributes": ["role"], "description": "Redis node's role", "enabled": false, "stability": "development", @@ -670,19 +635,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "hughesjj" - ] - }, - "distributions": [ - "contrib" - ], + "active": ["dmitryax", "hughesjj"] + }, + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-redisstorageextension/contrib-redisstorageextension-5beca028404d.json b/ecosystem-explorer/public/data/collector/components/contrib-redisstorageextension/contrib-redisstorageextension-5beca028404d.json index a014dfa6..29d4f6ed 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-redisstorageextension/contrib-redisstorageextension-5beca028404d.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-redisstorageextension/contrib-redisstorageextension-5beca028404d.json @@ -9,19 +9,13 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "atoulme" - ], + "active": ["atoulme"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-remotetapextension/contrib-remotetapextension-ce334cd14ce4.json b/ecosystem-explorer/public/data/collector/components/contrib-remotetapextension/contrib-remotetapextension-ce334cd14ce4.json index e8cb1a63..006ee052 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-remotetapextension/contrib-remotetapextension-ce334cd14ce4.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-remotetapextension/contrib-remotetapextension-ce334cd14ce4.json @@ -9,17 +9,13 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "atoulme" - ], + "active": ["atoulme"], "seeking_new": true }, "distributions": [], "stability": { - "development": [ - "extension" - ] + "development": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-remotetapprocessor/contrib-remotetapprocessor-ea2b107ae980.json b/ecosystem-explorer/public/data/collector/components/contrib-remotetapprocessor/contrib-remotetapprocessor-ea2b107ae980.json index 4a1a27ac..292986e1 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-remotetapprocessor/contrib-remotetapprocessor-ea2b107ae980.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-remotetapprocessor/contrib-remotetapprocessor-ea2b107ae980.json @@ -9,25 +9,13 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "atoulme", - "jaronoff97" - ], - "emeritus": [ - "pmcollins" - ] + "active": ["atoulme", "jaronoff97"], + "emeritus": ["pmcollins"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-resourcedetectionprocessor/contrib-resourcedetectionprocessor-d2d91564d05c.json b/ecosystem-explorer/public/data/collector/components/contrib-resourcedetectionprocessor/contrib-resourcedetectionprocessor-d2d91564d05c.json index 765b0d07..a315868c 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-resourcedetectionprocessor/contrib-resourcedetectionprocessor-d2d91564d05c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-resourcedetectionprocessor/contrib-resourcedetectionprocessor-d2d91564d05c.json @@ -9,26 +9,14 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "Aneurysm9", - "dashpole" - ], + "active": ["Aneurysm9", "dashpole"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ], - "development": [ - "profiles" - ] + "beta": ["logs", "metrics", "traces"], + "development": ["profiles"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-resourceprocessor/contrib-resourceprocessor-ba33a2b978dd.json b/ecosystem-explorer/public/data/collector/components/contrib-resourceprocessor/contrib-resourceprocessor-ba33a2b978dd.json index f1e21e44..bb85cbf2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-resourceprocessor/contrib-resourceprocessor-ba33a2b978dd.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-resourceprocessor/contrib-resourceprocessor-ba33a2b978dd.json @@ -9,25 +9,13 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "dmitryax" - ] + "active": ["dmitryax"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ], - "development": [ - "profiles" - ] + "beta": ["logs", "metrics", "traces"], + "development": ["profiles"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-riakreceiver/contrib-riakreceiver-2220c3e41f03.json b/ecosystem-explorer/public/data/collector/components/contrib-riakreceiver/contrib-riakreceiver-2220c3e41f03.json index e969eb9a..38c9061e 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-riakreceiver/contrib-riakreceiver-2220c3e41f03.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-riakreceiver/contrib-riakreceiver-2220c3e41f03.json @@ -2,19 +2,12 @@ "attributes": { "operation": { "description": "The operation type for index operations.", - "enum": [ - "delete", - "read", - "write" - ], + "enum": ["delete", "read", "write"], "type": "string" }, "request": { "description": "The request operation type.", - "enum": [ - "get", - "put" - ], + "enum": ["get", "put"], "type": "string" } }, @@ -36,9 +29,7 @@ "unit": "By" }, "riak.node.operation.count": { - "attributes": [ - "request" - ], + "attributes": ["request"], "description": "The number of operations performed by the node.", "enabled": true, "stability": "development", @@ -50,9 +41,7 @@ "unit": "{operation}" }, "riak.node.operation.time.mean": { - "attributes": [ - "request" - ], + "attributes": ["request"], "description": "The mean time between request and response for operations performed by the node over the last minute.", "enabled": true, "gauge": { @@ -73,9 +62,7 @@ "unit": "{read_repair}" }, "riak.vnode.index.operation.count": { - "attributes": [ - "operation" - ], + "attributes": ["operation"], "description": "The number of index operations performed by vnodes on the node.", "enabled": true, "stability": "development", @@ -87,9 +74,7 @@ "unit": "{operation}" }, "riak.vnode.operation.count": { - "attributes": [ - "request" - ], + "attributes": ["request"], "description": "The number of operations performed by vnodes on the node.", "enabled": true, "stability": "development", @@ -106,19 +91,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "armstrmi" - ], + "active": ["armstrmi"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-roundrobinconnector/contrib-roundrobinconnector-f25d3742c19d.json b/ecosystem-explorer/public/data/collector/components/contrib-roundrobinconnector/contrib-roundrobinconnector-f25d3742c19d.json index 35bdd6e1..3f3d1bc4 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-roundrobinconnector/contrib-roundrobinconnector-f25d3742c19d.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-roundrobinconnector/contrib-roundrobinconnector-f25d3742c19d.json @@ -9,21 +9,12 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "bogdandrutu" - ] + "active": ["bogdandrutu"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs_to_logs", - "metrics_to_metrics", - "traces_to_traces" - ] + "beta": ["logs_to_logs", "metrics_to_metrics", "traces_to_traces"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-routingconnector/contrib-routingconnector-b63a32e84bca.json b/ecosystem-explorer/public/data/collector/components/contrib-routingconnector/contrib-routingconnector-b63a32e84bca.json index d6d49347..16c450a5 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-routingconnector/contrib-routingconnector-b63a32e84bca.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-routingconnector/contrib-routingconnector-b63a32e84bca.json @@ -9,29 +9,14 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "TylerHelmuth", - "evan-bradley", - "edmocosta", - "bogdandrutu" - ], - "emeritus": [ - "jpkrohling", - "mwear" - ], + "active": ["TylerHelmuth", "evan-bradley", "edmocosta", "bogdandrutu"], + "emeritus": ["jpkrohling", "mwear"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "logs_to_logs", - "metrics_to_metrics", - "traces_to_traces" - ] + "alpha": ["logs_to_logs", "metrics_to_metrics", "traces_to_traces"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-saphanareceiver/contrib-saphanareceiver-e5ea1d533c52.json b/ecosystem-explorer/public/data/collector/components/contrib-saphanareceiver/contrib-saphanareceiver-e5ea1d533c52.json index ccf718c2..14c2fc25 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-saphanareceiver/contrib-saphanareceiver-e5ea1d533c52.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-saphanareceiver/contrib-saphanareceiver-e5ea1d533c52.json @@ -2,10 +2,7 @@ "attributes": { "active_pending_request_state": { "description": "The state of network request.", - "enum": [ - "active", - "pending" - ], + "enum": ["active", "pending"], "name_override": "state", "type": "string" }, @@ -16,21 +13,13 @@ }, "column_memory_subtype": { "description": "The subtype of column store memory.", - "enum": [ - "data", - "dict", - "index", - "misc" - ], + "enum": ["data", "dict", "index", "misc"], "name_override": "subtype", "type": "string" }, "column_memory_type": { "description": "The type of column store memory.", - "enum": [ - "delta", - "main" - ], + "enum": ["delta", "main"], "name_override": "type", "type": "string" }, @@ -40,22 +29,13 @@ }, "connection_status": { "description": "The connection status.", - "enum": [ - "idle", - "queueing", - "running" - ], + "enum": ["idle", "queueing", "running"], "name_override": "status", "type": "string" }, "cpu_type": { "description": "The type of cpu.", - "enum": [ - "idle", - "io_wait", - "system", - "user" - ], + "enum": ["idle", "io_wait", "system", "user"], "name_override": "type", "type": "string" }, @@ -65,10 +45,7 @@ }, "disk_state_used_free": { "description": "The state of the disk storage.", - "enum": [ - "free", - "used" - ], + "enum": ["free", "used"], "name_override": "state", "type": "string" }, @@ -79,28 +56,19 @@ }, "host_swap_state": { "description": "The state of swap data.", - "enum": [ - "free", - "used" - ], + "enum": ["free", "used"], "name_override": "state", "type": "string" }, "internal_external_request_type": { "description": "The type of network request.", - "enum": [ - "external", - "internal" - ], + "enum": ["external", "internal"], "name_override": "type", "type": "string" }, "memory_state_used_free": { "description": "The state of memory.", - "enum": [ - "free", - "used" - ], + "enum": ["free", "used"], "name_override": "state", "type": "string" }, @@ -128,10 +96,7 @@ }, "row_memory_type": { "description": "The type of row store memory.", - "enum": [ - "fixed", - "variable" - ], + "enum": ["fixed", "variable"], "name_override": "type", "type": "string" }, @@ -141,33 +106,19 @@ }, "schema_memory_type": { "description": "The type of schema memory.", - "enum": [ - "delta", - "history_delta", - "history_main", - "main" - ], + "enum": ["delta", "history_delta", "history_main", "main"], "name_override": "type", "type": "string" }, "schema_operation_type": { "description": "The type of operation.", - "enum": [ - "merge", - "read", - "write" - ], + "enum": ["merge", "read", "write"], "name_override": "type", "type": "string" }, "schema_record_type": { "description": "The type of schema record.", - "enum": [ - "delta", - "history_delta", - "history_main", - "main" - ], + "enum": ["delta", "history_delta", "history_main", "main"], "name_override": "type", "type": "string" }, @@ -182,19 +133,13 @@ }, "service_memory_used_type": { "description": "The type of service memory.", - "enum": [ - "logical", - "physical" - ], + "enum": ["logical", "physical"], "name_override": "type", "type": "string" }, "service_status": { "description": "The status of services.", - "enum": [ - "active", - "inactive" - ], + "enum": ["active", "inactive"], "name_override": "status", "type": "string" }, @@ -204,29 +149,19 @@ }, "thread_status": { "description": "The status of threads.", - "enum": [ - "active", - "inactive" - ], + "enum": ["active", "inactive"], "name_override": "status", "type": "string" }, "transaction_type": { "description": "The transaction type.", - "enum": [ - "commit", - "rollback", - "update" - ], + "enum": ["commit", "rollback", "update"], "name_override": "type", "type": "string" }, "volume_operation_type": { "description": "The type of operation.", - "enum": [ - "read", - "write" - ], + "enum": ["read", "write"], "name_override": "type", "type": "string" } @@ -238,9 +173,7 @@ "id": "contrib-saphanareceiver", "metrics": { "saphana.alert.count": { - "attributes": [ - "alert_rating" - ], + "attributes": ["alert_rating"], "description": "Number of current alerts.", "enabled": true, "stability": "development", @@ -264,10 +197,7 @@ "unit": "s" }, "saphana.column.memory.used": { - "attributes": [ - "column_memory_subtype", - "column_memory_type" - ], + "attributes": ["column_memory_subtype", "column_memory_type"], "description": "The memory used in all columns.", "enabled": true, "stability": "development", @@ -280,9 +210,7 @@ "unit": "By" }, "saphana.component.memory.used": { - "attributes": [ - "component" - ], + "attributes": ["component"], "description": "The memory used in components.", "enabled": true, "stability": "development", @@ -295,9 +223,7 @@ "unit": "By" }, "saphana.connection.count": { - "attributes": [ - "connection_status" - ], + "attributes": ["connection_status"], "description": "The number of current connections.", "enabled": true, "stability": "development", @@ -310,9 +236,7 @@ "unit": "{connections}" }, "saphana.cpu.used": { - "attributes": [ - "cpu_type" - ], + "attributes": ["cpu_type"], "description": "Total CPU time spent.", "enabled": true, "stability": "development", @@ -325,11 +249,7 @@ "unit": "ms" }, "saphana.disk.size.current": { - "attributes": [ - "disk_state_used_free", - "disk_usage_type", - "path" - ], + "attributes": ["disk_state_used_free", "disk_usage_type", "path"], "description": "The disk size.", "enabled": true, "stability": "development", @@ -342,9 +262,7 @@ "unit": "By" }, "saphana.host.memory.current": { - "attributes": [ - "memory_state_used_free" - ], + "attributes": ["memory_state_used_free"], "description": "The amount of physical memory on the host.", "enabled": true, "stability": "development", @@ -357,9 +275,7 @@ "unit": "By" }, "saphana.host.swap.current": { - "attributes": [ - "host_swap_state" - ], + "attributes": ["host_swap_state"], "description": "The amount of swap space on the host.", "enabled": true, "stability": "development", @@ -385,9 +301,7 @@ "unit": "By" }, "saphana.instance.memory.current": { - "attributes": [ - "memory_state_used_free" - ], + "attributes": ["memory_state_used_free"], "description": "The size of the memory pool for all SAP HANA processes.", "enabled": true, "stability": "development", @@ -426,10 +340,7 @@ "unit": "By" }, "saphana.license.expiration.time": { - "attributes": [ - "product", - "system" - ], + "attributes": ["product", "system"], "description": "The amount of time remaining before license expiration.", "enabled": true, "gauge": { @@ -440,10 +351,7 @@ "unit": "s" }, "saphana.license.limit": { - "attributes": [ - "product", - "system" - ], + "attributes": ["product", "system"], "description": "The allowed product usage as specified by the license (for example, main memory).", "enabled": true, "stability": "development", @@ -456,10 +364,7 @@ "unit": "{licenses}" }, "saphana.license.peak": { - "attributes": [ - "product", - "system" - ], + "attributes": ["product", "system"], "description": "The peak product usage value during last 13 months, measured periodically.", "enabled": true, "stability": "development", @@ -483,9 +388,7 @@ "unit": "ms" }, "saphana.network.request.count": { - "attributes": [ - "active_pending_request_state" - ], + "attributes": ["active_pending_request_state"], "description": "The number of active and pending service requests.", "enabled": true, "stability": "development", @@ -498,9 +401,7 @@ "unit": "{requests}" }, "saphana.network.request.finished.count": { - "attributes": [ - "internal_external_request_type" - ], + "attributes": ["internal_external_request_type"], "description": "The number of service requests that have completed.", "enabled": true, "stability": "development", @@ -513,12 +414,7 @@ "unit": "{requests}" }, "saphana.replication.average_time": { - "attributes": [ - "port", - "primary_host", - "replication_mode", - "secondary_host" - ], + "attributes": ["port", "primary_host", "replication_mode", "secondary_host"], "description": "The average amount of time consumed replicating a log.", "enabled": true, "gauge": { @@ -529,12 +425,7 @@ "unit": "us" }, "saphana.replication.backlog.size": { - "attributes": [ - "port", - "primary_host", - "replication_mode", - "secondary_host" - ], + "attributes": ["port", "primary_host", "replication_mode", "secondary_host"], "description": "The current replication backlog size.", "enabled": true, "stability": "development", @@ -547,12 +438,7 @@ "unit": "By" }, "saphana.replication.backlog.time": { - "attributes": [ - "port", - "primary_host", - "replication_mode", - "secondary_host" - ], + "attributes": ["port", "primary_host", "replication_mode", "secondary_host"], "description": "The current replication backlog.", "enabled": true, "stability": "development", @@ -565,9 +451,7 @@ "unit": "us" }, "saphana.row_store.memory.used": { - "attributes": [ - "row_memory_type" - ], + "attributes": ["row_memory_type"], "description": "The used memory for all row tables.", "enabled": true, "stability": "development", @@ -580,10 +464,7 @@ "unit": "By" }, "saphana.schema.memory.used.current": { - "attributes": [ - "schema", - "schema_memory_type" - ], + "attributes": ["schema", "schema_memory_type"], "description": "The memory size for all tables in schema.", "enabled": true, "stability": "development", @@ -596,9 +477,7 @@ "unit": "By" }, "saphana.schema.memory.used.max": { - "attributes": [ - "schema" - ], + "attributes": ["schema"], "description": "The estimated maximum memory consumption for all fully loaded tables in schema (data for open transactions is not included).", "enabled": true, "stability": "development", @@ -611,10 +490,7 @@ "unit": "By" }, "saphana.schema.operation.count": { - "attributes": [ - "schema", - "schema_operation_type" - ], + "attributes": ["schema", "schema_operation_type"], "description": "The number of operations done on all tables in schema.", "enabled": true, "stability": "development", @@ -627,9 +503,7 @@ "unit": "{operations}" }, "saphana.schema.record.compressed.count": { - "attributes": [ - "schema" - ], + "attributes": ["schema"], "description": "The number of entries in main during the last optimize compression run for all tables in schema.", "enabled": true, "stability": "development", @@ -642,10 +516,7 @@ "unit": "{records}" }, "saphana.schema.record.count": { - "attributes": [ - "schema", - "schema_record_type" - ], + "attributes": ["schema", "schema_record_type"], "description": "The number of records for all tables in schema.", "enabled": true, "stability": "development", @@ -658,9 +529,7 @@ "unit": "{records}" }, "saphana.service.code_size": { - "attributes": [ - "service" - ], + "attributes": ["service"], "description": "The service code size, including shared libraries.", "enabled": true, "stability": "development", @@ -673,9 +542,7 @@ "unit": "By" }, "saphana.service.count": { - "attributes": [ - "service_status" - ], + "attributes": ["service_status"], "description": "The number of services in a given status.", "enabled": true, "stability": "development", @@ -688,9 +555,7 @@ "unit": "{services}" }, "saphana.service.memory.compactors.allocated": { - "attributes": [ - "service" - ], + "attributes": ["service"], "description": "The part of the memory pool that can potentially (if unpinned) be freed during a memory shortage.", "enabled": true, "stability": "development", @@ -703,9 +568,7 @@ "unit": "By" }, "saphana.service.memory.compactors.freeable": { - "attributes": [ - "service" - ], + "attributes": ["service"], "description": "The memory that can be freed during a memory shortage.", "enabled": true, "stability": "development", @@ -718,9 +581,7 @@ "unit": "By" }, "saphana.service.memory.effective_limit": { - "attributes": [ - "service" - ], + "attributes": ["service"], "description": "The effective maximum memory pool size, calculated considering the pool sizes of other processes.", "enabled": true, "stability": "development", @@ -733,10 +594,7 @@ "unit": "By" }, "saphana.service.memory.heap.current": { - "attributes": [ - "memory_state_used_free", - "service" - ], + "attributes": ["memory_state_used_free", "service"], "description": "The size of the heap portion of the memory pool.", "enabled": true, "stability": "development", @@ -749,9 +607,7 @@ "unit": "By" }, "saphana.service.memory.limit": { - "attributes": [ - "service" - ], + "attributes": ["service"], "description": "The configured maximum memory pool size.", "enabled": true, "stability": "development", @@ -764,10 +620,7 @@ "unit": "By" }, "saphana.service.memory.shared.current": { - "attributes": [ - "memory_state_used_free", - "service" - ], + "attributes": ["memory_state_used_free", "service"], "description": "The size of the shared portion of the memory pool.", "enabled": true, "stability": "development", @@ -780,10 +633,7 @@ "unit": "By" }, "saphana.service.memory.used": { - "attributes": [ - "service", - "service_memory_used_type" - ], + "attributes": ["service", "service_memory_used_type"], "description": "The used memory from the operating system perspective.", "enabled": true, "stability": "development", @@ -796,9 +646,7 @@ "unit": "By" }, "saphana.service.stack_size": { - "attributes": [ - "service" - ], + "attributes": ["service"], "description": "The service stack size.", "enabled": true, "stability": "development", @@ -811,9 +659,7 @@ "unit": "By" }, "saphana.service.thread.count": { - "attributes": [ - "thread_status" - ], + "attributes": ["thread_status"], "description": "The number of service threads in a given status.", "enabled": true, "stability": "development", @@ -839,9 +685,7 @@ "unit": "{transactions}" }, "saphana.transaction.count": { - "attributes": [ - "transaction_type" - ], + "attributes": ["transaction_type"], "description": "The number of transactions.", "enabled": true, "stability": "development", @@ -854,10 +698,7 @@ "unit": "{transactions}" }, "saphana.uptime": { - "attributes": [ - "database", - "system" - ], + "attributes": ["database", "system"], "description": "The uptime of the database.", "enabled": true, "stability": "development", @@ -870,11 +711,7 @@ "unit": "s" }, "saphana.volume.operation.count": { - "attributes": [ - "disk_usage_type", - "path", - "volume_operation_type" - ], + "attributes": ["disk_usage_type", "path", "volume_operation_type"], "description": "The number of operations executed.", "enabled": true, "stability": "development", @@ -887,11 +724,7 @@ "unit": "{operations}" }, "saphana.volume.operation.size": { - "attributes": [ - "disk_usage_type", - "path", - "volume_operation_type" - ], + "attributes": ["disk_usage_type", "path", "volume_operation_type"], "description": "The size of operations executed.", "enabled": true, "stability": "development", @@ -904,11 +737,7 @@ "unit": "By" }, "saphana.volume.operation.time": { - "attributes": [ - "disk_usage_type", - "path", - "volume_operation_type" - ], + "attributes": ["disk_usage_type", "path", "volume_operation_type"], "description": "The time spent executing operations.", "enabled": true, "stability": "development", @@ -926,18 +755,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dehaansa" - ] + "active": ["dehaansa"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-schemaprocessor/contrib-schemaprocessor-1c09dbd12042.json b/ecosystem-explorer/public/data/collector/components/contrib-schemaprocessor/contrib-schemaprocessor-1c09dbd12042.json index b45ff43c..e733ac3f 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-schemaprocessor/contrib-schemaprocessor-1c09dbd12042.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-schemaprocessor/contrib-schemaprocessor-1c09dbd12042.json @@ -9,21 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "MovieStoreGuy", - "ankitpatel96", - "dineshg13", - "MikeGoldsmith" - ] + "active": ["MovieStoreGuy", "ankitpatel96", "dineshg13", "MikeGoldsmith"] }, "distributions": [], "stability": { - "development": [ - "logs", - "metrics", - "traces" - ] + "development": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-schemaprocessor/contrib-schemaprocessor-e6d52bd08050.json b/ecosystem-explorer/public/data/collector/components/contrib-schemaprocessor/contrib-schemaprocessor-e6d52bd08050.json index 1d67df6b..d6459ccc 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-schemaprocessor/contrib-schemaprocessor-e6d52bd08050.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-schemaprocessor/contrib-schemaprocessor-e6d52bd08050.json @@ -9,20 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "MovieStoreGuy", - "ankitpatel96", - "dineshg13" - ] + "active": ["MovieStoreGuy", "ankitpatel96", "dineshg13"] }, "distributions": [], "stability": { - "development": [ - "logs", - "metrics", - "traces" - ] + "development": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sematextexporter/contrib-sematextexporter-8e85a548ab7f.json b/ecosystem-explorer/public/data/collector/components/contrib-sematextexporter/contrib-sematextexporter-8e85a548ab7f.json index 60af0bd9..27a4a48a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sematextexporter/contrib-sematextexporter-8e85a548ab7f.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sematextexporter/contrib-sematextexporter-8e85a548ab7f.json @@ -9,17 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "AkhigbeEromo" - ] + "active": ["AkhigbeEromo"] }, "distributions": [], "stability": { - "development": [ - "logs", - "metrics" - ] + "development": ["logs", "metrics"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sentryexporter/contrib-sentryexporter-dbde074d55f2.json b/ecosystem-explorer/public/data/collector/components/contrib-sentryexporter/contrib-sentryexporter-dbde074d55f2.json index f46541d6..73d1b04c 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sentryexporter/contrib-sentryexporter-dbde074d55f2.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sentryexporter/contrib-sentryexporter-dbde074d55f2.json @@ -9,20 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "AbhiPrasad", - "giortzisg" - ] + "active": ["AbhiPrasad", "giortzisg"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "traces" - ] + "alpha": ["logs", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-servicegraphconnector/contrib-servicegraphconnector-fdacdb6bd832.json b/ecosystem-explorer/public/data/collector/components/contrib-servicegraphconnector/contrib-servicegraphconnector-fdacdb6bd832.json index e7fa8095..f24d2409 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-servicegraphconnector/contrib-servicegraphconnector-fdacdb6bd832.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-servicegraphconnector/contrib-servicegraphconnector-fdacdb6bd832.json @@ -9,20 +9,12 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "mapno", - "JaredTan95" - ] + "active": ["mapno", "JaredTan95"] }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "alpha": [ - "traces_to_metrics" - ] + "alpha": ["traces_to_metrics"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-signalfxexporter/contrib-signalfxexporter-4da8888bb48f.json b/ecosystem-explorer/public/data/collector/components/contrib-signalfxexporter/contrib-signalfxexporter-4da8888bb48f.json index 895085ab..9fa2c6fb 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-signalfxexporter/contrib-signalfxexporter-4da8888bb48f.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-signalfxexporter/contrib-signalfxexporter-4da8888bb48f.json @@ -9,21 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "dmitryax", - "crobert-1" - ] + "active": ["dmitryax", "crobert-1"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-signalfxreceiver/contrib-signalfxreceiver-52f961a4d120.json b/ecosystem-explorer/public/data/collector/components/contrib-signalfxreceiver/contrib-signalfxreceiver-52f961a4d120.json index ae4d5017..0d60069a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-signalfxreceiver/contrib-signalfxreceiver-52f961a4d120.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-signalfxreceiver/contrib-signalfxreceiver-52f961a4d120.json @@ -9,20 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax" - ], + "active": ["dmitryax"], "emeritus": null }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "deprecated": [ - "logs", - "metrics" - ] + "deprecated": ["logs", "metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-signaltometricsconnector/contrib-signaltometricsconnector-861ed19bdfc7.json b/ecosystem-explorer/public/data/collector/components/contrib-signaltometricsconnector/contrib-signaltometricsconnector-861ed19bdfc7.json index d40ff806..b23336ca 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-signaltometricsconnector/contrib-signaltometricsconnector-861ed19bdfc7.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-signaltometricsconnector/contrib-signaltometricsconnector-861ed19bdfc7.json @@ -9,22 +9,12 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "ChrsMark", - "lahsivjar" - ] + "active": ["ChrsMark", "lahsivjar"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs_to_metrics", - "metrics_to_metrics", - "profiles_to_metrics", - "traces_to_metrics" - ] + "alpha": ["logs_to_metrics", "metrics_to_metrics", "profiles_to_metrics", "traces_to_metrics"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sigv4authextension/contrib-sigv4authextension-75d347648b15.json b/ecosystem-explorer/public/data/collector/components/contrib-sigv4authextension/contrib-sigv4authextension-75d347648b15.json index 7d2cbcd5..92d96a91 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sigv4authextension/contrib-sigv4authextension-75d347648b15.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sigv4authextension/contrib-sigv4authextension-75d347648b15.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "Aneurysm9", - "erichsueh3" - ] + "active": ["Aneurysm9", "erichsueh3"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-simpleprometheusreceiver/contrib-simpleprometheusreceiver-d57ca36bdcd0.json b/ecosystem-explorer/public/data/collector/components/contrib-simpleprometheusreceiver/contrib-simpleprometheusreceiver-d57ca36bdcd0.json index aaaf0320..879beba6 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-simpleprometheusreceiver/contrib-simpleprometheusreceiver-d57ca36bdcd0.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-simpleprometheusreceiver/contrib-simpleprometheusreceiver-d57ca36bdcd0.json @@ -9,18 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "fatsheep9146" - ] + "active": ["fatsheep9146"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-skywalkingencodingextension/contrib-skywalkingencodingextension-a8f762682986.json b/ecosystem-explorer/public/data/collector/components/contrib-skywalkingencodingextension/contrib-skywalkingencodingextension-a8f762682986.json index 39480272..fa8cf88f 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-skywalkingencodingextension/contrib-skywalkingencodingextension-a8f762682986.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-skywalkingencodingextension/contrib-skywalkingencodingextension-a8f762682986.json @@ -9,18 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "JaredTan95" - ] + "active": ["JaredTan95"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-skywalkingreceiver/contrib-skywalkingreceiver-adb613d790a6.json b/ecosystem-explorer/public/data/collector/components/contrib-skywalkingreceiver/contrib-skywalkingreceiver-adb613d790a6.json index 776c3be3..1fa55bd9 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-skywalkingreceiver/contrib-skywalkingreceiver-adb613d790a6.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-skywalkingreceiver/contrib-skywalkingreceiver-adb613d790a6.json @@ -9,21 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "JaredTan95" - ] + "active": ["JaredTan95"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "traces" - ], - "development": [ - "metrics" - ] + "beta": ["traces"], + "development": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-slowsqlconnector/contrib-slowsqlconnector-67a5c0352b30.json b/ecosystem-explorer/public/data/collector/components/contrib-slowsqlconnector/contrib-slowsqlconnector-67a5c0352b30.json index 8b822185..36e44fd0 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-slowsqlconnector/contrib-slowsqlconnector-67a5c0352b30.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-slowsqlconnector/contrib-slowsqlconnector-67a5c0352b30.json @@ -9,17 +9,11 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "JaredTan95", - "Frapschen", - "atoulme" - ] + "active": ["JaredTan95", "Frapschen", "atoulme"] }, "stability": { - "development": [ - "traces_to_logs" - ] + "development": ["traces_to_logs"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-snmpreceiver/contrib-snmpreceiver-edc2f5b69148.json b/ecosystem-explorer/public/data/collector/components/contrib-snmpreceiver/contrib-snmpreceiver-edc2f5b69148.json index bba58757..7f0aff7c 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-snmpreceiver/contrib-snmpreceiver-edc2f5b69148.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-snmpreceiver/contrib-snmpreceiver-edc2f5b69148.json @@ -9,21 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "tamir-michaeli" - ], - "emeritus": [ - "StefanKurek" - ] + "active": ["tamir-michaeli"], + "emeritus": ["StefanKurek"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-snowflakereceiver/contrib-snowflakereceiver-0eb0d86e1a7b.json b/ecosystem-explorer/public/data/collector/components/contrib-snowflakereceiver/contrib-snowflakereceiver-0eb0d86e1a7b.json index 6e677299..75d9f5f2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-snowflakereceiver/contrib-snowflakereceiver-0eb0d86e1a7b.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-snowflakereceiver/contrib-snowflakereceiver-0eb0d86e1a7b.json @@ -56,9 +56,7 @@ "id": "contrib-snowflakereceiver", "metrics": { "snowflake.billing.cloud_service.total": { - "attributes": [ - "service_type" - ], + "attributes": ["service_type"], "description": "Reported total credits used in the cloud service over the last 24 hour window.", "enabled": false, "gauge": { @@ -68,9 +66,7 @@ "unit": "{credits}" }, "snowflake.billing.total_credit.total": { - "attributes": [ - "service_type" - ], + "attributes": ["service_type"], "description": "Reported total credits used across account over the last 24 hour window.", "enabled": false, "gauge": { @@ -80,9 +76,7 @@ "unit": "{credits}" }, "snowflake.billing.virtual_warehouse.total": { - "attributes": [ - "service_type" - ], + "attributes": ["service_type"], "description": "Reported total credits used by virtual warehouse service over the last 24 hour window.", "enabled": false, "gauge": { @@ -92,9 +86,7 @@ "unit": "{credits}" }, "snowflake.billing.warehouse.cloud_service.total": { - "attributes": [ - "warehouse_name" - ], + "attributes": ["warehouse_name"], "description": "Credits used across cloud service for given warehouse over the last 24 hour window.", "enabled": false, "gauge": { @@ -104,9 +96,7 @@ "unit": "{credits}" }, "snowflake.billing.warehouse.total_credit.total": { - "attributes": [ - "warehouse_name" - ], + "attributes": ["warehouse_name"], "description": "Total credits used associated with given warehouse over the last 24 hour window.", "enabled": false, "gauge": { @@ -116,9 +106,7 @@ "unit": "{credits}" }, "snowflake.billing.warehouse.virtual_warehouse.total": { - "attributes": [ - "warehouse_name" - ], + "attributes": ["warehouse_name"], "description": "Total credits used by virtual warehouse service for given warehouse over the last 24 hour window.", "enabled": false, "gauge": { @@ -164,11 +152,7 @@ "unit": "1" }, "snowflake.logins.total": { - "attributes": [ - "error_message", - "is_success", - "reported_client_type" - ], + "attributes": ["error_message", "is_success", "reported_client_type"], "description": "Total login attempts for account over the last 24 hour window.", "enabled": false, "gauge": { @@ -178,9 +162,7 @@ "unit": "1" }, "snowflake.pipe.credits_used.total": { - "attributes": [ - "pipe_name" - ], + "attributes": ["pipe_name"], "description": "Snow pipe credits contotaled over the last 24 hour window.", "enabled": false, "gauge": { @@ -190,9 +172,7 @@ "unit": "{credits}" }, "snowflake.query.blocked": { - "attributes": [ - "warehouse_name" - ], + "attributes": ["warehouse_name"], "description": "Blocked query count for warehouse over the last 24 hour window.", "enabled": true, "gauge": { @@ -310,9 +290,7 @@ "unit": "1" }, "snowflake.query.executed": { - "attributes": [ - "warehouse_name" - ], + "attributes": ["warehouse_name"], "description": "Executed query count for warehouse over the last 24 hour window.", "enabled": true, "gauge": { @@ -358,9 +336,7 @@ "unit": "1" }, "snowflake.query.queued_overload": { - "attributes": [ - "warehouse_name" - ], + "attributes": ["warehouse_name"], "description": "Overloaded query count for warehouse over the last 24 hour window.", "enabled": true, "gauge": { @@ -370,9 +346,7 @@ "unit": "1" }, "snowflake.query.queued_provision": { - "attributes": [ - "warehouse_name" - ], + "attributes": ["warehouse_name"], "description": "Number of compute resources queued for provisioning over the last 24 hour window.", "enabled": true, "gauge": { @@ -526,9 +500,7 @@ "unit": "{rows}" }, "snowflake.session_id.count": { - "attributes": [ - "user_name" - ], + "attributes": ["user_name"], "description": "Distinct session id's associated with snowflake username over the last 24 hour window.", "enabled": false, "gauge": { @@ -588,19 +560,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "shalper2" - ] - }, - "distributions": [ - "contrib" - ], + "active": ["dmitryax", "shalper2"] + }, + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-solacereceiver/contrib-solacereceiver-d072de7911dc.json b/ecosystem-explorer/public/data/collector/components/contrib-solacereceiver/contrib-solacereceiver-d072de7911dc.json index ba34d2e3..e5917b1a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-solacereceiver/contrib-solacereceiver-d072de7911dc.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-solacereceiver/contrib-solacereceiver-d072de7911dc.json @@ -9,18 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "mcardy" - ] + "active": ["mcardy"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "traces" - ] + "beta": ["traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-solarwindsapmsettingsextension/contrib-solarwindsapmsettingsextension-14800ae0d519.json b/ecosystem-explorer/public/data/collector/components/contrib-solarwindsapmsettingsextension/contrib-solarwindsapmsettingsextension-14800ae0d519.json index c2812f17..2ff03619 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-solarwindsapmsettingsextension/contrib-solarwindsapmsettingsextension-14800ae0d519.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-solarwindsapmsettingsextension/contrib-solarwindsapmsettingsextension-14800ae0d519.json @@ -9,17 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "jerrytfleung", - "cheempz" - ] + "active": ["jerrytfleung", "cheempz"] }, "distributions": [], "stability": { - "development": [ - "extension" - ] + "development": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-spanmetricsconnector/contrib-spanmetricsconnector-511de2d95a47.json b/ecosystem-explorer/public/data/collector/components/contrib-spanmetricsconnector/contrib-spanmetricsconnector-511de2d95a47.json index 0f6ccae4..84de2a2e 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-spanmetricsconnector/contrib-spanmetricsconnector-511de2d95a47.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-spanmetricsconnector/contrib-spanmetricsconnector-511de2d95a47.json @@ -9,24 +9,14 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "portertech", - "Frapschen", - "iblancasa" - ], - "emeritus": [ - "albertteoh" - ], + "active": ["portertech", "Frapschen", "iblancasa"], + "emeritus": ["albertteoh"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "traces_to_metrics" - ] + "alpha": ["traces_to_metrics"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-spanprocessor/contrib-spanprocessor-79e174dd6145.json b/ecosystem-explorer/public/data/collector/components/contrib-spanprocessor/contrib-spanprocessor-79e174dd6145.json index d63818a7..f6e5f10a 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-spanprocessor/contrib-spanprocessor-79e174dd6145.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-spanprocessor/contrib-spanprocessor-79e174dd6145.json @@ -9,19 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "boostchicken" - ] + "active": ["boostchicken"] }, - "distributions": [ - "contrib", - "core" - ], + "distributions": ["contrib", "core"], "stability": { - "alpha": [ - "traces" - ] + "alpha": ["traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-spanpruningprocessor/contrib-spanpruningprocessor-1c45b6af5f1c.json b/ecosystem-explorer/public/data/collector/components/contrib-spanpruningprocessor/contrib-spanpruningprocessor-1c45b6af5f1c.json index fe418288..9fdf04bd 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-spanpruningprocessor/contrib-spanpruningprocessor-1c45b6af5f1c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-spanpruningprocessor/contrib-spanpruningprocessor-1c45b6af5f1c.json @@ -9,18 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "portertech" - ] + "active": ["portertech"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "traces" - ] + "alpha": ["traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-spanpruningprocessor/contrib-spanpruningprocessor-5df89c05709f.json b/ecosystem-explorer/public/data/collector/components/contrib-spanpruningprocessor/contrib-spanpruningprocessor-5df89c05709f.json index 946d0a87..39b2cb35 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-spanpruningprocessor/contrib-spanpruningprocessor-5df89c05709f.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-spanpruningprocessor/contrib-spanpruningprocessor-5df89c05709f.json @@ -9,19 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "portertech", - "csmarchbanks" - ] + "active": ["portertech", "csmarchbanks"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "traces" - ] + "alpha": ["traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-splunkenterprisereceiver/contrib-splunkenterprisereceiver-1d77cb69babf.json b/ecosystem-explorer/public/data/collector/components/contrib-splunkenterprisereceiver/contrib-splunkenterprisereceiver-1d77cb69babf.json index 75c74819..ecb979ef 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-splunkenterprisereceiver/contrib-splunkenterprisereceiver-1d77cb69babf.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-splunkenterprisereceiver/contrib-splunkenterprisereceiver-1d77cb69babf.json @@ -88,11 +88,7 @@ "id": "contrib-splunkenterprisereceiver", "metrics": { "splunk.aggregation.queue.ratio": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the average indexer aggregation queue ration (%). *Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -117,11 +113,7 @@ "unit": "{count}" }, "splunk.data.indexes.extended.bucket.count": { - "attributes": [ - "splunk.index.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.index.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Count of buckets per index", "enabled": false, "gauge": { @@ -176,11 +168,7 @@ "unit": "{buckets}" }, "splunk.data.indexes.extended.event.count": { - "attributes": [ - "splunk.index.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.index.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Count of events for index, excluding frozen events. Approximately equal to the event_count sum of all buckets. *Note:** Must be pointed at specific indexer `endpoint` and gathers metrics from only that indexer.", "enabled": false, "gauge": { @@ -190,11 +178,7 @@ "unit": "{events}" }, "splunk.data.indexes.extended.raw.size": { - "attributes": [ - "splunk.index.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.index.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Size in bytes on disk of the /rawdata/ directories of all buckets in this index, excluding frozen *Note:** Must be pointed at specific indexer `endpoint` and gathers metrics from only that indexer.", "enabled": false, "gauge": { @@ -204,11 +188,7 @@ "unit": "By" }, "splunk.data.indexes.extended.total.size": { - "attributes": [ - "splunk.index.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.index.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Size in bytes on disk of this index *Note:** Must be pointed at specific indexer `endpoint` and gathers metrics from only that indexer.", "enabled": false, "gauge": { @@ -233,11 +213,7 @@ "unit": "{status}" }, "splunk.indexer.avg.rate": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the average rate of indexed data. **Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -247,11 +223,7 @@ "unit": "KBy" }, "splunk.indexer.cpu.time": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the number of indexing process cpu seconds per instance", "enabled": false, "gauge": { @@ -261,11 +233,7 @@ "unit": "{s}" }, "splunk.indexer.queue.ratio": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the average indexer index queue ration (%). *Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -275,11 +243,7 @@ "unit": "{%}" }, "splunk.indexer.raw.write.time": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the number of raw write seconds per instance", "enabled": false, "gauge": { @@ -304,11 +268,7 @@ "unit": "{status}" }, "splunk.indexer.throughput": { - "attributes": [ - "splunk.indexer.status", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.indexer.status", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking average bytes per second throughput of indexer. *Note:** Must be pointed at specific indexer `endpoint` and gathers metrics from only that indexer.", "enabled": false, "gauge": { @@ -318,11 +278,7 @@ "unit": "By/s" }, "splunk.indexes.avg.size": { - "attributes": [ - "splunk.index.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.index.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the indexes and their average size (gb). *Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -332,11 +288,7 @@ "unit": "Gb" }, "splunk.indexes.avg.usage": { - "attributes": [ - "splunk.index.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.index.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the indexes and their average usage (%). *Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -346,11 +298,7 @@ "unit": "{%}" }, "splunk.indexes.bucket.count": { - "attributes": [ - "splunk.index.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.index.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the indexes and their bucket counts. *Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -360,11 +308,7 @@ "unit": "{count}" }, "splunk.indexes.median.data.age": { - "attributes": [ - "splunk.index.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.index.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the indexes and their median data age (days). *Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -374,11 +318,7 @@ "unit": "{days}" }, "splunk.indexes.size": { - "attributes": [ - "splunk.index.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.index.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the indexes and their total size (gb). *Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -388,11 +328,7 @@ "unit": "Gb" }, "splunk.io.avg.iops": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the average IOPs used per instance", "enabled": false, "gauge": { @@ -462,11 +398,7 @@ "unit": "{seconds}" }, "splunk.license.index.usage": { - "attributes": [ - "splunk.index.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.index.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the indexed license usage per index", "enabled": false, "gauge": { @@ -476,11 +408,7 @@ "unit": "By" }, "splunk.parse.queue.ratio": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the average indexer parser queue ration (%). *Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -490,11 +418,7 @@ "unit": "{%}" }, "splunk.pipeline.set.count": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the number of pipeline sets per indexer. **Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -504,11 +428,7 @@ "unit": "KBy" }, "splunk.scheduler.avg.execution.latency": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the average execution latency of scheduled searches", "enabled": false, "gauge": { @@ -518,11 +438,7 @@ "unit": "{ms}" }, "splunk.scheduler.avg.run.time": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the average runtime of scheduled searches", "enabled": false, "gauge": { @@ -532,11 +448,7 @@ "unit": "{ms}" }, "splunk.scheduler.completion.ratio": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the ratio of completed to skipped scheduled searches", "enabled": false, "gauge": { @@ -546,10 +458,7 @@ "unit": "{%}" }, "splunk.search.duration": { - "attributes": [ - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the duration in seconds of the last search probe call.", "enabled": false, "gauge": { @@ -559,10 +468,7 @@ "unit": "{status}" }, "splunk.search.initiation": { - "attributes": [ - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking whether the last search probe successfully initiated a search.", "enabled": false, "gauge": { @@ -572,11 +478,7 @@ "unit": "{status}" }, "splunk.search.status": { - "attributes": [ - "splunk.search.state", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.search.state", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the dispatch status of the last search probe.", "enabled": false, "gauge": { @@ -586,10 +488,7 @@ "unit": "{status}" }, "splunk.search.success": { - "attributes": [ - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking whether the last search probe call was successful with the dispatch state 'DONE'.", "enabled": false, "gauge": { @@ -599,11 +498,7 @@ "unit": "{status}" }, "splunk.server.introspection.queues.current": { - "attributes": [ - "splunk.queue.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.queue.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking current length of queue. *Note:** Must be pointed at specific indexer `endpoint` and gathers metrics from only that indexer.", "enabled": false, "gauge": { @@ -613,11 +508,7 @@ "unit": "{queues}" }, "splunk.server.introspection.queues.current.bytes": { - "attributes": [ - "splunk.queue.name", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.queue.name", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking current bytes waiting in queue. *Note:** Must be pointed at specific indexer `endpoint` and gathers metrics from only that indexer.", "enabled": false, "gauge": { @@ -627,11 +518,7 @@ "unit": "By" }, "splunk.server.searchartifacts.adhoc": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking number of ad hoc search artifacts currently on disk. Note:* Must be pointed at specific Search Head endpoint and gathers metrics from only that Search Head. Available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -643,11 +530,7 @@ "unit": "{search_artifacts}" }, "splunk.server.searchartifacts.adhoc.size": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge total size (MB) of ad hoc search artifacts currently on disk. Note:* Must be pointed at specific Search Head endpoint and gathers metrics from only that Search Head. Available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -659,11 +542,7 @@ "unit": "{search_artifacts}" }, "splunk.server.searchartifacts.completed": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking number of artifacts currently on disk that belong to finished searches. Note:* Must be pointed at specific Search Head endpoint and gathers metrics from only that Search Head. Available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -675,11 +554,7 @@ "unit": "{search_artifacts}" }, "splunk.server.searchartifacts.completed.size": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge total size (MB) of artifacts currently on disk that belong to finished searches. Note:* Must be pointed at specific Search Head endpoint and gathers metrics from only that Search Head. Available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -691,11 +566,7 @@ "unit": "{search_artifacts}" }, "splunk.server.searchartifacts.incomplete": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking number of artifacts currently on disk that belong to unfinished/running searches. Note:* Must be pointed at specific Search Head endpoint and gathers metrics from only that Search Head. Available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -707,11 +578,7 @@ "unit": "{search_artifacts}" }, "splunk.server.searchartifacts.incomplete.size": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge total size (MB) of artifacts currently on disk that belong to unfinished/running searches. Note:* Must be pointed at specific Search Head endpoint and gathers metrics from only that Search Head. Available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -723,11 +590,7 @@ "unit": "{search_artifacts}" }, "splunk.server.searchartifacts.invalid": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking number of artifacts currently on disk that are not in a valid state, such as missing info.csv file, etc. Note:* Must be pointed at specific Search Head endpoint and gathers metrics from only that Search Head. Available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -739,11 +602,7 @@ "unit": "{search_artifacts}" }, "splunk.server.searchartifacts.job.cache.count": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking number search artifacts metadata stored in memory, available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -772,11 +631,7 @@ "unit": "{mb}" }, "splunk.server.searchartifacts.savedsearches": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking, for the `splunk.server.searchartifacts.scheduled` number of scheduled search artifacts, how many different saved-searches they belong to. Note:* Must be pointed at specific Search Head endpoint and gathers metrics from only that Search Head. Available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -788,11 +643,7 @@ "unit": "{search_artifacts}" }, "splunk.server.searchartifacts.scheduled": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking number of scheduled search artifacts currently on disk. Note:* Must be pointed at specific Search Head endpoint and gathers metrics from only that Search Head. Available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -804,11 +655,7 @@ "unit": "{search_artifacts}" }, "splunk.server.searchartifacts.scheduled.size": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge total size (MB) of scheduled search artifacts currently on disk. Note:* Must be pointed at specific Search Head endpoint and gathers metrics from only that Search Head. Available in builds 9.1.2312.207+ and 9.3.x+.", "enabled": false, "gauge": { @@ -820,11 +667,7 @@ "unit": "{search_artifacts}" }, "splunk.typing.queue.ratio": { - "attributes": [ - "splunk.host", - "splunk.splunkd.build", - "splunk.splunkd.version" - ], + "attributes": ["splunk.host", "splunk.splunkd.build", "splunk.splunkd.version"], "description": "Gauge tracking the average indexer typing queue ration (%). *Note:** Search is best run against a Cluster Manager.", "enabled": false, "gauge": { @@ -839,20 +682,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "shalper2", - "MovieStoreGuy", - "greatestusername" - ] - }, - "distributions": [ - "contrib" - ], + "active": ["shalper2", "MovieStoreGuy", "greatestusername"] + }, + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-splunkhecexporter/contrib-splunkhecexporter-0dbf43d89f6e.json b/ecosystem-explorer/public/data/collector/components/contrib-splunkhecexporter/contrib-splunkhecexporter-0dbf43d89f6e.json index 092d97ce..8e742e43 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-splunkhecexporter/contrib-splunkhecexporter-0dbf43d89f6e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-splunkhecexporter/contrib-splunkhecexporter-0dbf43d89f6e.json @@ -9,21 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "atoulme", - "dmitryax" - ] + "active": ["atoulme", "dmitryax"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-splunkhecreceiver/contrib-splunkhecreceiver-4d09d6125675.json b/ecosystem-explorer/public/data/collector/components/contrib-splunkhecreceiver/contrib-splunkhecreceiver-4d09d6125675.json index a161cc60..5d56312f 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-splunkhecreceiver/contrib-splunkhecreceiver-4d09d6125675.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-splunkhecreceiver/contrib-splunkhecreceiver-4d09d6125675.json @@ -9,20 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme" - ], + "active": ["atoulme"], "emeritus": null }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics" - ] + "beta": ["logs", "metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sqlqueryreceiver/contrib-sqlqueryreceiver-aa31071ec93c.json b/ecosystem-explorer/public/data/collector/components/contrib-sqlqueryreceiver/contrib-sqlqueryreceiver-aa31071ec93c.json index c1c45e52..a2cb864f 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sqlqueryreceiver/contrib-sqlqueryreceiver-aa31071ec93c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sqlqueryreceiver/contrib-sqlqueryreceiver-aa31071ec93c.json @@ -9,25 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dmitryax", - "crobert-1" - ], - "emeritus": [ - "pmcollins" - ] + "active": ["dmitryax", "crobert-1"], + "emeritus": ["pmcollins"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ], - "development": [ - "logs" - ] + "alpha": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sqlserverreceiver/contrib-sqlserverreceiver-12fe7fe04b39.json b/ecosystem-explorer/public/data/collector/components/contrib-sqlserverreceiver/contrib-sqlserverreceiver-12fe7fe04b39.json index 72066137..95068f93 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sqlserverreceiver/contrib-sqlserverreceiver-12fe7fe04b39.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sqlserverreceiver/contrib-sqlserverreceiver-12fe7fe04b39.json @@ -10,14 +10,7 @@ }, "database.status": { "description": "The current status of a database", - "enum": [ - "offline", - "online", - "pending_recovery", - "recovering", - "restoring", - "suspect" - ], + "enum": ["offline", "online", "pending_recovery", "recovering", "restoring", "suspect"], "type": "string" }, "db.namespace": { @@ -34,10 +27,7 @@ }, "direction": { "description": "The direction of flow of bytes or operations.", - "enum": [ - "read", - "write" - ], + "enum": ["read", "write"], "type": "string" }, "file_type": { @@ -58,10 +48,7 @@ }, "page.operations": { "description": "The page operation types.", - "enum": [ - "read", - "write" - ], + "enum": ["read", "write"], "name_override": "type", "type": "string" }, @@ -75,10 +62,7 @@ }, "replica.direction": { "description": "The direction of flow of bytes for replica.", - "enum": [ - "receive", - "transmit" - ], + "enum": ["receive", "transmit"], "type": "string" }, "server.address": { @@ -247,26 +231,17 @@ }, "table.state": { "description": "The state of the table.", - "enum": [ - "active", - "inactive" - ], + "enum": ["active", "inactive"], "type": "string" }, "table.status": { "description": "The status of the table.", - "enum": [ - "permanent", - "temporary" - ], + "enum": ["permanent", "temporary"], "type": "string" }, "tempdb.state": { "description": "The status of the tempdb space usage.", - "enum": [ - "free", - "used" - ], + "enum": ["free", "used"], "type": "string" }, "user.name": { @@ -346,9 +321,7 @@ "unit": "\u201c{backups_or_restores}/s\u201d" }, "sqlserver.database.count": { - "attributes": [ - "database.status" - ], + "attributes": ["database.status"], "description": "The number of databases", "enabled": false, "gauge": { @@ -379,12 +352,7 @@ "unit": "{scans}/s" }, "sqlserver.database.io": { - "attributes": [ - "direction", - "file_type", - "logical_filename", - "physical_filename" - ], + "attributes": ["direction", "file_type", "logical_filename", "physical_filename"], "description": "The number of bytes of I/O on this file.", "enabled": false, "stability": "development", @@ -397,12 +365,7 @@ "unit": "By" }, "sqlserver.database.latency": { - "attributes": [ - "direction", - "file_type", - "logical_filename", - "physical_filename" - ], + "attributes": ["direction", "file_type", "logical_filename", "physical_filename"], "description": "Total time that the users waited for I/O issued on this file.", "enabled": false, "stability": "development", @@ -414,12 +377,7 @@ "unit": "s" }, "sqlserver.database.operations": { - "attributes": [ - "direction", - "file_type", - "logical_filename", - "physical_filename" - ], + "attributes": ["direction", "file_type", "logical_filename", "physical_filename"], "description": "The number of operations issued on the file.", "enabled": false, "stability": "development", @@ -432,9 +390,7 @@ "unit": "{operations}" }, "sqlserver.database.tempdb.space": { - "attributes": [ - "tempdb.state" - ], + "attributes": ["tempdb.state"], "description": "Total free space in temporary DB.", "enabled": false, "stability": "development", @@ -559,10 +515,7 @@ "unit": "\u201cKB\u201d" }, "sqlserver.os.wait.duration": { - "attributes": [ - "wait.category", - "wait.type" - ], + "attributes": ["wait.category", "wait.type"], "description": "Total wait time for this wait type", "enabled": false, "stability": "development", @@ -611,9 +564,7 @@ "unit": "{writes}/s" }, "sqlserver.page.life_expectancy": { - "attributes": [ - "performance_counter.object_name" - ], + "attributes": ["performance_counter.object_name"], "description": "Time a page will stay in the buffer pool.", "enabled": true, "gauge": { @@ -633,9 +584,7 @@ "unit": "\u201c{lookups}/s\u201d" }, "sqlserver.page.operation.rate": { - "attributes": [ - "page.operations" - ], + "attributes": ["page.operations"], "description": "Number of physical database page operations issued.", "enabled": true, "gauge": { @@ -665,9 +614,7 @@ "unit": "{processes}" }, "sqlserver.replica.data.rate": { - "attributes": [ - "replica.direction" - ], + "attributes": ["replica.direction"], "description": "Throughput rate of replica data.", "enabled": false, "gauge": { @@ -677,9 +624,7 @@ "unit": "By/s" }, "sqlserver.resource_pool.disk.operations": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "The rate of operations issued.", "enabled": false, "gauge": { @@ -711,10 +656,7 @@ "unit": "{writes}/s" }, "sqlserver.table.count": { - "attributes": [ - "table.state", - "table.status" - ], + "attributes": ["table.state", "table.status"], "description": "The number of tables.", "enabled": false, "stability": "development", @@ -838,26 +780,15 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "sincejune", - "crobert-1" - ], - "emeritus": [ - "StefanKurek" - ], + "active": ["sincejune", "crobert-1"], + "emeritus": ["StefanKurek"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ], - "development": [ - "logs" - ] + "beta": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sqlserverreceiver/contrib-sqlserverreceiver-aea11eb5126e.json b/ecosystem-explorer/public/data/collector/components/contrib-sqlserverreceiver/contrib-sqlserverreceiver-aea11eb5126e.json index 22cd23c5..1dfa9b36 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sqlserverreceiver/contrib-sqlserverreceiver-aea11eb5126e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sqlserverreceiver/contrib-sqlserverreceiver-aea11eb5126e.json @@ -10,14 +10,7 @@ }, "database.status": { "description": "The current status of a database", - "enum": [ - "offline", - "online", - "pending_recovery", - "recovering", - "restoring", - "suspect" - ], + "enum": ["offline", "online", "pending_recovery", "recovering", "restoring", "suspect"], "type": "string" }, "db.namespace": { @@ -34,10 +27,7 @@ }, "direction": { "description": "The direction of flow of bytes or operations.", - "enum": [ - "read", - "write" - ], + "enum": ["read", "write"], "type": "string" }, "file_type": { @@ -58,10 +48,7 @@ }, "page.operations": { "description": "The page operation types.", - "enum": [ - "read", - "write" - ], + "enum": ["read", "write"], "name_override": "type", "type": "string" }, @@ -75,10 +62,7 @@ }, "replica.direction": { "description": "The direction of flow of bytes for replica.", - "enum": [ - "receive", - "transmit" - ], + "enum": ["receive", "transmit"], "type": "string" }, "server.address": { @@ -235,26 +219,17 @@ }, "table.state": { "description": "The state of the table.", - "enum": [ - "active", - "inactive" - ], + "enum": ["active", "inactive"], "type": "string" }, "table.status": { "description": "The status of the table.", - "enum": [ - "permanent", - "temporary" - ], + "enum": ["permanent", "temporary"], "type": "string" }, "tempdb.state": { "description": "The status of the tempdb space usage.", - "enum": [ - "free", - "used" - ], + "enum": ["free", "used"], "type": "string" }, "user.name": { @@ -334,9 +309,7 @@ "unit": "\u201c{backups_or_restores}/s\u201d" }, "sqlserver.database.count": { - "attributes": [ - "database.status" - ], + "attributes": ["database.status"], "description": "The number of databases", "enabled": false, "gauge": { @@ -367,12 +340,7 @@ "unit": "{scans}/s" }, "sqlserver.database.io": { - "attributes": [ - "direction", - "file_type", - "logical_filename", - "physical_filename" - ], + "attributes": ["direction", "file_type", "logical_filename", "physical_filename"], "description": "The number of bytes of I/O on this file.", "enabled": false, "stability": "development", @@ -385,12 +353,7 @@ "unit": "By" }, "sqlserver.database.latency": { - "attributes": [ - "direction", - "file_type", - "logical_filename", - "physical_filename" - ], + "attributes": ["direction", "file_type", "logical_filename", "physical_filename"], "description": "Total time that the users waited for I/O issued on this file.", "enabled": false, "stability": "development", @@ -402,12 +365,7 @@ "unit": "s" }, "sqlserver.database.operations": { - "attributes": [ - "direction", - "file_type", - "logical_filename", - "physical_filename" - ], + "attributes": ["direction", "file_type", "logical_filename", "physical_filename"], "description": "The number of operations issued on the file.", "enabled": false, "stability": "development", @@ -420,9 +378,7 @@ "unit": "{operations}" }, "sqlserver.database.tempdb.space": { - "attributes": [ - "tempdb.state" - ], + "attributes": ["tempdb.state"], "description": "Total free space in temporary DB.", "enabled": false, "stability": "development", @@ -547,10 +503,7 @@ "unit": "\u201cKB\u201d" }, "sqlserver.os.wait.duration": { - "attributes": [ - "wait.category", - "wait.type" - ], + "attributes": ["wait.category", "wait.type"], "description": "Total wait time for this wait type", "enabled": false, "stability": "development", @@ -599,9 +552,7 @@ "unit": "{writes}/s" }, "sqlserver.page.life_expectancy": { - "attributes": [ - "performance_counter.object_name" - ], + "attributes": ["performance_counter.object_name"], "description": "Time a page will stay in the buffer pool.", "enabled": true, "gauge": { @@ -621,9 +572,7 @@ "unit": "\u201c{lookups}/s\u201d" }, "sqlserver.page.operation.rate": { - "attributes": [ - "page.operations" - ], + "attributes": ["page.operations"], "description": "Number of physical database page operations issued.", "enabled": true, "gauge": { @@ -653,9 +602,7 @@ "unit": "{processes}" }, "sqlserver.replica.data.rate": { - "attributes": [ - "replica.direction" - ], + "attributes": ["replica.direction"], "description": "Throughput rate of replica data.", "enabled": false, "gauge": { @@ -665,9 +612,7 @@ "unit": "By/s" }, "sqlserver.resource_pool.disk.operations": { - "attributes": [ - "direction" - ], + "attributes": ["direction"], "description": "The rate of operations issued.", "enabled": false, "gauge": { @@ -699,10 +644,7 @@ "unit": "{writes}/s" }, "sqlserver.table.count": { - "attributes": [ - "table.state", - "table.status" - ], + "attributes": ["table.state", "table.status"], "description": "The number of tables.", "enabled": false, "stability": "development", @@ -826,26 +768,15 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "sincejune", - "crobert-1" - ], - "emeritus": [ - "StefanKurek" - ], + "active": ["sincejune", "crobert-1"], + "emeritus": ["StefanKurek"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ], - "development": [ - "logs" - ] + "beta": ["metrics"], + "development": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sshcheckreceiver/contrib-sshcheckreceiver-dd9d25cfd74f.json b/ecosystem-explorer/public/data/collector/components/contrib-sshcheckreceiver/contrib-sshcheckreceiver-dd9d25cfd74f.json index fbdd6915..78ca38e6 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sshcheckreceiver/contrib-sshcheckreceiver-dd9d25cfd74f.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sshcheckreceiver/contrib-sshcheckreceiver-dd9d25cfd74f.json @@ -21,9 +21,7 @@ "unit": "ms" }, "sshcheck.error": { - "attributes": [ - "error.message" - ], + "attributes": ["error.message"], "description": "Records errors occurring during SSH check.", "enabled": true, "stability": "development", @@ -44,9 +42,7 @@ "unit": "ms" }, "sshcheck.sftp_error": { - "attributes": [ - "error.message" - ], + "attributes": ["error.message"], "description": "Records errors occurring during SFTP check.", "enabled": false, "stability": "development", @@ -85,21 +81,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "ishaish103" - ], - "emeritus": [ - "nslaughter" - ] + "active": ["ishaish103"], + "emeritus": ["nslaughter"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-statsdreceiver/contrib-statsdreceiver-efbfd0286dcd.json b/ecosystem-explorer/public/data/collector/components/contrib-statsdreceiver/contrib-statsdreceiver-efbfd0286dcd.json index 26bcfc53..9b734aa3 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-statsdreceiver/contrib-statsdreceiver-efbfd0286dcd.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-statsdreceiver/contrib-statsdreceiver-efbfd0286dcd.json @@ -9,19 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "jmacd", - "dmitryax" - ] + "active": ["jmacd", "dmitryax"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-stefexporter/contrib-stefexporter-0c0dc374f904.json b/ecosystem-explorer/public/data/collector/components/contrib-stefexporter/contrib-stefexporter-0c0dc374f904.json index 47276118..0ee5d013 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-stefexporter/contrib-stefexporter-0c0dc374f904.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-stefexporter/contrib-stefexporter-0c0dc374f904.json @@ -9,19 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "tigrannajaryan", - "dmitryax" - ] + "active": ["tigrannajaryan", "dmitryax"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-stefreceiver/contrib-stefreceiver-497a7ad73fd4.json b/ecosystem-explorer/public/data/collector/components/contrib-stefreceiver/contrib-stefreceiver-497a7ad73fd4.json index 8007062a..65285fc8 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-stefreceiver/contrib-stefreceiver-497a7ad73fd4.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-stefreceiver/contrib-stefreceiver-497a7ad73fd4.json @@ -9,23 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "tigrannajaryan", - "MovieStoreGuy", - "dmitryax", - "atoulme", - "pjanotti", - "crobert-1" - ] + "active": ["tigrannajaryan", "MovieStoreGuy", "dmitryax", "atoulme", "pjanotti", "crobert-1"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sumconnector/contrib-sumconnector-31a606da8074.json b/ecosystem-explorer/public/data/collector/components/contrib-sumconnector/contrib-sumconnector-31a606da8074.json index a69e1a57..a61df4d3 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sumconnector/contrib-sumconnector-31a606da8074.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sumconnector/contrib-sumconnector-31a606da8074.json @@ -9,22 +9,12 @@ "status": { "class": "connector", "codeowners": { - "active": [ - "greatestusername", - "shalper2", - "crobert-1" - ] + "active": ["greatestusername", "shalper2", "crobert-1"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs_to_metrics", - "metrics_to_metrics", - "traces_to_metrics" - ] + "alpha": ["logs_to_metrics", "metrics_to_metrics", "traces_to_metrics"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sumologicexporter/contrib-sumologicexporter-ab9d0d0d65d0.json b/ecosystem-explorer/public/data/collector/components/contrib-sumologicexporter/contrib-sumologicexporter-ab9d0d0d65d0.json index 95aea1e3..f4b75040 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sumologicexporter/contrib-sumologicexporter-ab9d0d0d65d0.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sumologicexporter/contrib-sumologicexporter-ab9d0d0d65d0.json @@ -9,11 +9,7 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "rnishtala-sumo", - "pankaj101A", - "jagan2221" - ], + "active": ["rnishtala-sumo", "pankaj101A", "jagan2221"], "emeritus": [ "aboguszewski-sumo", "kasia-kujawa", @@ -24,16 +20,10 @@ "amdprophet" ] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sumologicextension/contrib-sumologicextension-aad3fd195175.json b/ecosystem-explorer/public/data/collector/components/contrib-sumologicextension/contrib-sumologicextension-aad3fd195175.json index 3af02abc..559777b1 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sumologicextension/contrib-sumologicextension-aad3fd195175.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sumologicextension/contrib-sumologicextension-aad3fd195175.json @@ -9,11 +9,7 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "rnishtala-sumo", - "pankaj101A", - "jagan2221" - ], + "active": ["rnishtala-sumo", "pankaj101A", "jagan2221"], "emeritus": [ "aboguszewski-sumo", "kasia-kujawa", @@ -26,10 +22,8 @@ }, "distributions": [], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-sumologicprocessor/contrib-sumologicprocessor-bc4f302aed8f.json b/ecosystem-explorer/public/data/collector/components/contrib-sumologicprocessor/contrib-sumologicprocessor-bc4f302aed8f.json index 185253ad..c1179d69 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-sumologicprocessor/contrib-sumologicprocessor-bc4f302aed8f.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-sumologicprocessor/contrib-sumologicprocessor-bc4f302aed8f.json @@ -9,11 +9,7 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "rnishtala-sumo", - "pankaj101A", - "jagan2221" - ], + "active": ["rnishtala-sumo", "pankaj101A", "jagan2221"], "emeritus": [ "aboguszewski-sumo", "kasia-kujawa", @@ -24,16 +20,10 @@ "amdprophet" ] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-syslogexporter/contrib-syslogexporter-a91fe2e60f2c.json b/ecosystem-explorer/public/data/collector/components/contrib-syslogexporter/contrib-syslogexporter-a91fe2e60f2c.json index 8b350808..7e9fac71 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-syslogexporter/contrib-syslogexporter-a91fe2e60f2c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-syslogexporter/contrib-syslogexporter-a91fe2e60f2c.json @@ -9,20 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "kasia-kujawa", - "rnishtala-sumo", - "andrzej-stencel" - ] + "active": ["kasia-kujawa", "rnishtala-sumo", "andrzej-stencel"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-syslogreceiver/contrib-syslogreceiver-57dbbff68681.json b/ecosystem-explorer/public/data/collector/components/contrib-syslogreceiver/contrib-syslogreceiver-57dbbff68681.json index 4f4a0ad8..2b73fa2b 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-syslogreceiver/contrib-syslogreceiver-57dbbff68681.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-syslogreceiver/contrib-syslogreceiver-57dbbff68681.json @@ -9,22 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "andrzej-stencel" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["andrzej-stencel"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs" - ] + "beta": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-systemdreceiver/contrib-systemdreceiver-d1cb2bfd520e.json b/ecosystem-explorer/public/data/collector/components/contrib-systemdreceiver/contrib-systemdreceiver-d1cb2bfd520e.json index 7d6764cf..48b37712 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-systemdreceiver/contrib-systemdreceiver-d1cb2bfd520e.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-systemdreceiver/contrib-systemdreceiver-d1cb2bfd520e.json @@ -2,10 +2,7 @@ "attributes": { "cpu.mode": { "description": "Breakdown of CPU usage by type.", - "enum": [ - "system", - "user" - ], + "enum": ["system", "user"], "type": "string" }, "systemd.unit.active_state": { @@ -30,9 +27,7 @@ "id": "contrib-systemdreceiver", "metrics": { "systemd.service.cpu.time": { - "attributes": [ - "cpu.mode" - ], + "attributes": ["cpu.mode"], "description": "Total CPU time spent by this service.", "enabled": true, "stability": "development", @@ -55,9 +50,7 @@ "unit": "{restarts}" }, "systemd.unit.state": { - "attributes": [ - "systemd.unit.active_state" - ], + "attributes": ["systemd.unit.active_state"], "description": "1 if the check resulted in active_state matching the current state, otherwise 0.", "enabled": true, "stability": "alpha", @@ -74,25 +67,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme" - ], - "emeritus": [ - "Hemansh31" - ] + "active": ["atoulme"], + "emeritus": ["Hemansh31"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] }, - "unsupported_platforms": [ - "darwin", - "windows" - ] + "unsupported_platforms": ["darwin", "windows"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-tailsamplingprocessor/contrib-tailsamplingprocessor-3ec1c27de137.json b/ecosystem-explorer/public/data/collector/components/contrib-tailsamplingprocessor/contrib-tailsamplingprocessor-3ec1c27de137.json index 8dc10ed9..3120c4b9 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-tailsamplingprocessor/contrib-tailsamplingprocessor-3ec1c27de137.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-tailsamplingprocessor/contrib-tailsamplingprocessor-3ec1c27de137.json @@ -2,11 +2,7 @@ "attributes": { "decision": { "description": "The sampling decision", - "enum": [ - "dropped", - "not_sampled", - "sampled" - ], + "enum": ["dropped", "not_sampled", "sampled"], "type": "string" }, "policy": { @@ -28,25 +24,14 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "portertech", - "Logiraptor", - "jmacd" - ], - "emeritus": [ - "jpkrohling" - ], + "active": ["portertech", "Logiraptor", "jmacd"], + "emeritus": ["jpkrohling"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "traces" - ] + "beta": ["traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-tailsamplingprocessor/contrib-tailsamplingprocessor-d52dfba7623a.json b/ecosystem-explorer/public/data/collector/components/contrib-tailsamplingprocessor/contrib-tailsamplingprocessor-d52dfba7623a.json index 7151e973..32e4b0de 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-tailsamplingprocessor/contrib-tailsamplingprocessor-d52dfba7623a.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-tailsamplingprocessor/contrib-tailsamplingprocessor-d52dfba7623a.json @@ -2,11 +2,7 @@ "attributes": { "decision": { "description": "The sampling decision", - "enum": [ - "dropped", - "not_sampled", - "sampled" - ], + "enum": ["dropped", "not_sampled", "sampled"], "type": "string" }, "policy": { @@ -28,27 +24,14 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "portertech", - "jmacd", - "csmarchbanks", - "carsonip" - ], - "emeritus": [ - "jpkrohling", - "Logiraptor" - ], + "active": ["portertech", "jmacd", "csmarchbanks", "carsonip"], + "emeritus": ["jpkrohling", "Logiraptor"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "traces" - ] + "beta": ["traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-tcpcheckreceiver/contrib-tcpcheckreceiver-ea4bdc4dd1f9.json b/ecosystem-explorer/public/data/collector/components/contrib-tcpcheckreceiver/contrib-tcpcheckreceiver-ea4bdc4dd1f9.json index 7ed95750..ce3b19a9 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-tcpcheckreceiver/contrib-tcpcheckreceiver-ea4bdc4dd1f9.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-tcpcheckreceiver/contrib-tcpcheckreceiver-ea4bdc4dd1f9.json @@ -23,9 +23,7 @@ "id": "contrib-tcpcheckreceiver", "metrics": { "tcpcheck.duration": { - "attributes": [ - "tcpcheck.endpoint" - ], + "attributes": ["tcpcheck.endpoint"], "description": "Measures the duration of TCP connection.", "enabled": true, "gauge": { @@ -35,10 +33,7 @@ "unit": "ms" }, "tcpcheck.error": { - "attributes": [ - "error.code", - "tcpcheck.endpoint" - ], + "attributes": ["error.code", "tcpcheck.endpoint"], "description": "Records errors occurring during TCP check.", "enabled": true, "stability": "development", @@ -50,9 +45,7 @@ "unit": "{errors}" }, "tcpcheck.status": { - "attributes": [ - "tcpcheck.endpoint" - ], + "attributes": ["tcpcheck.endpoint"], "description": "1 if the TCP client successfully connected, otherwise 0.", "enabled": true, "gauge": { @@ -67,21 +60,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme", - "michael-burt", - "chengchuanpeng", - "yanfeng1992" - ] + "active": ["atoulme", "michael-burt", "chengchuanpeng", "yanfeng1992"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-tcplogreceiver/contrib-tcplogreceiver-444296607fdd.json b/ecosystem-explorer/public/data/collector/components/contrib-tcplogreceiver/contrib-tcplogreceiver-444296607fdd.json index 86d2df3e..cd97b78d 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-tcplogreceiver/contrib-tcplogreceiver-444296607fdd.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-tcplogreceiver/contrib-tcplogreceiver-444296607fdd.json @@ -9,22 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "VihasMakwana" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["VihasMakwana"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-tencentcloudlogserviceexporter/contrib-tencentcloudlogserviceexporter-3290cbb761e0.json b/ecosystem-explorer/public/data/collector/components/contrib-tencentcloudlogserviceexporter/contrib-tencentcloudlogserviceexporter-3290cbb761e0.json index a7807ad5..258508d7 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-tencentcloudlogserviceexporter/contrib-tencentcloudlogserviceexporter-3290cbb761e0.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-tencentcloudlogserviceexporter/contrib-tencentcloudlogserviceexporter-3290cbb761e0.json @@ -9,21 +9,13 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "wgliang" - ], - "emeritus": [ - "yiyang5055" - ] + "active": ["wgliang"], + "emeritus": ["yiyang5055"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs" - ] + "beta": ["logs"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-textencodingextension/contrib-textencodingextension-9d9843361207.json b/ecosystem-explorer/public/data/collector/components/contrib-textencodingextension/contrib-textencodingextension-9d9843361207.json index 20577045..a135c2e2 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-textencodingextension/contrib-textencodingextension-9d9843361207.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-textencodingextension/contrib-textencodingextension-9d9843361207.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "MovieStoreGuy", - "atoulme" - ] + "active": ["MovieStoreGuy", "atoulme"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-tinybirdexporter/contrib-tinybirdexporter-46a0f4c061b4.json b/ecosystem-explorer/public/data/collector/components/contrib-tinybirdexporter/contrib-tinybirdexporter-46a0f4c061b4.json index 0e74616b..5344b2de 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-tinybirdexporter/contrib-tinybirdexporter-46a0f4c061b4.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-tinybirdexporter/contrib-tinybirdexporter-46a0f4c061b4.json @@ -9,22 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "mx-psi", - "jordivilaseca", - "MoreraAlejandro" - ] + "active": ["mx-psi", "jordivilaseca", "MoreraAlejandro"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-tlscheckreceiver/contrib-tlscheckreceiver-d76fbd94d31c.json b/ecosystem-explorer/public/data/collector/components/contrib-tlscheckreceiver/contrib-tlscheckreceiver-d76fbd94d31c.json index 8c14d209..8d519b41 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-tlscheckreceiver/contrib-tlscheckreceiver-d76fbd94d31c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-tlscheckreceiver/contrib-tlscheckreceiver-d76fbd94d31c.json @@ -20,11 +20,7 @@ "id": "contrib-tlscheckreceiver", "metrics": { "tlscheck.time_left": { - "attributes": [ - "tlscheck.x509.cn", - "tlscheck.x509.issuer", - "tlscheck.x509.san" - ], + "attributes": ["tlscheck.x509.cn", "tlscheck.x509.issuer", "tlscheck.x509.san"], "description": "Time in seconds until certificate expiry, as specified by `NotAfter` field in the x.509 certificate. Negative values represent time in seconds since expiration.", "enabled": true, "gauge": { @@ -39,19 +35,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme", - "michael-burt" - ] + "active": ["atoulme", "michael-burt"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-transformprocessor/contrib-transformprocessor-6cf06fe90683.json b/ecosystem-explorer/public/data/collector/components/contrib-transformprocessor/contrib-transformprocessor-6cf06fe90683.json index 3290e3ef..64dc94e5 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-transformprocessor/contrib-transformprocessor-6cf06fe90683.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-transformprocessor/contrib-transformprocessor-6cf06fe90683.json @@ -9,32 +9,15 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "TylerHelmuth", - "evan-bradley", - "edmocosta", - "bogdandrutu" - ], - "emeritus": [ - "anuraaga", - "kentquirk" - ], + "active": ["TylerHelmuth", "evan-bradley", "edmocosta", "bogdandrutu"], + "emeritus": ["anuraaga", "kentquirk"], "seeking_new": true }, - "distributions": [ - "contrib", - "k8s" - ], + "distributions": ["contrib", "k8s"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ], - "development": [ - "profiles" - ] + "beta": ["logs", "metrics", "traces"], + "development": ["profiles"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-udplogreceiver/contrib-udplogreceiver-f58e7b9a0aeb.json b/ecosystem-explorer/public/data/collector/components/contrib-udplogreceiver/contrib-udplogreceiver-f58e7b9a0aeb.json index 76e250ef..506625b5 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-udplogreceiver/contrib-udplogreceiver-f58e7b9a0aeb.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-udplogreceiver/contrib-udplogreceiver-f58e7b9a0aeb.json @@ -9,22 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "VihasMakwana" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["VihasMakwana"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-unrollprocessor/contrib-unrollprocessor-0120ddaea7fa.json b/ecosystem-explorer/public/data/collector/components/contrib-unrollprocessor/contrib-unrollprocessor-0120ddaea7fa.json index b6d02f0a..b46b4083 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-unrollprocessor/contrib-unrollprocessor-0120ddaea7fa.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-unrollprocessor/contrib-unrollprocessor-0120ddaea7fa.json @@ -9,20 +9,12 @@ "status": { "class": "processor", "codeowners": { - "active": [ - "axw", - "schmikei", - "rnishtala-sumo" - ] + "active": ["axw", "schmikei", "rnishtala-sumo"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-vcenterreceiver/contrib-vcenterreceiver-eafe7203fd3c.json b/ecosystem-explorer/public/data/collector/components/contrib-vcenterreceiver/contrib-vcenterreceiver-eafe7203fd3c.json index 5868cd37..d7512903 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-vcenterreceiver/contrib-vcenterreceiver-eafe7203fd3c.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-vcenterreceiver/contrib-vcenterreceiver-eafe7203fd3c.json @@ -2,54 +2,33 @@ "attributes": { "cpu_reservation_type": { "description": "The type of CPU reservation for the host.", - "enum": [ - "total", - "used" - ], + "enum": ["total", "used"], "type": "string" }, "cpu_state": { "description": "CPU time spent in idle, ready or idle state.", - "enum": [ - "idle", - "ready", - "wait" - ], + "enum": ["idle", "ready", "wait"], "type": "string" }, "disk_direction": { "description": "The direction of disk latency.", - "enum": [ - "read", - "write" - ], + "enum": ["read", "write"], "name_override": "direction", "type": "string" }, "disk_state": { "description": "The state of storage and whether it is already allocated or free.", - "enum": [ - "available", - "used" - ], + "enum": ["available", "used"], "type": "string" }, "disk_type": { "description": "The type of storage device that is being recorded.", - "enum": [ - "physical", - "virtual" - ], + "enum": ["physical", "virtual"], "type": "string" }, "entity_status": { "description": "The current status of the managed entity.", - "enum": [ - "gray", - "green", - "red", - "yellow" - ], + "enum": ["gray", "green", "red", "yellow"], "name_override": "status", "type": "string" }, @@ -60,31 +39,19 @@ }, "host_power_state": { "description": "The current power state of the host.", - "enum": [ - "off", - "on", - "standby", - "unknown" - ], + "enum": ["off", "on", "standby", "unknown"], "name_override": "power_state", "type": "string" }, "memory_granted_type": { "description": "The type of memory granted.", - "enum": [ - "private", - "shared" - ], + "enum": ["private", "shared"], "name_override": "type", "type": "string" }, "memory_usage_type": { "description": "The type of memory usage.", - "enum": [ - "guest", - "host", - "overhead" - ], + "enum": ["guest", "host", "overhead"], "name_override": "type", "type": "string" }, @@ -95,49 +62,31 @@ }, "throughput_direction": { "description": "The direction of network throughput.", - "enum": [ - "received", - "transmitted" - ], + "enum": ["received", "transmitted"], "name_override": "direction", "type": "string" }, "vm_count_power_state": { "description": "The current power state of the virtual machine.", - "enum": [ - "off", - "on", - "suspended", - "unknown" - ], + "enum": ["off", "on", "suspended", "unknown"], "name_override": "power_state", "type": "string" }, "vsan_latency_type": { "description": "The type of vSAN latency.", - "enum": [ - "read", - "write" - ], + "enum": ["read", "write"], "name_override": "type", "type": "string" }, "vsan_operation_type": { "description": "The type of vSAN operation.", - "enum": [ - "read", - "unmap", - "write" - ], + "enum": ["read", "unmap", "write"], "name_override": "type", "type": "string" }, "vsan_throughput_direction": { "description": "The type of vSAN throughput.", - "enum": [ - "read", - "write" - ], + "enum": ["read", "write"], "name_override": "direction", "type": "string" } @@ -173,9 +122,7 @@ "unit": "MHz" }, "vcenter.cluster.host.count": { - "attributes": [ - "host_effective" - ], + "attributes": ["host_effective"], "description": "The number of hosts in the cluster.", "enabled": true, "stability": "development", @@ -211,9 +158,7 @@ "unit": "By" }, "vcenter.cluster.vm.count": { - "attributes": [ - "vm_count_power_state" - ], + "attributes": ["vm_count_power_state"], "description": "The number of virtual machines in the cluster.", "enabled": true, "stability": "development", @@ -247,9 +192,7 @@ "unit": "{congestions/s}" }, "vcenter.cluster.vsan.latency.avg": { - "attributes": [ - "vsan_latency_type" - ], + "attributes": ["vsan_latency_type"], "description": "The overall cluster latency while accessing vSAN storage.", "enabled": true, "gauge": { @@ -259,9 +202,7 @@ "unit": "us" }, "vcenter.cluster.vsan.operations": { - "attributes": [ - "vsan_operation_type" - ], + "attributes": ["vsan_operation_type"], "description": "The vSAN IOPs of a cluster.", "enabled": true, "gauge": { @@ -271,9 +212,7 @@ "unit": "{operations/s}" }, "vcenter.cluster.vsan.throughput": { - "attributes": [ - "vsan_throughput_direction" - ], + "attributes": ["vsan_throughput_direction"], "description": "The vSAN throughput of a cluster.", "enabled": true, "gauge": { @@ -283,9 +222,7 @@ "unit": "By/s" }, "vcenter.datacenter.cluster.count": { - "attributes": [ - "entity_status" - ], + "attributes": ["entity_status"], "description": "The number of clusters in the datacenter.", "enabled": true, "stability": "development", @@ -321,9 +258,7 @@ "unit": "{datastores}" }, "vcenter.datacenter.disk.space": { - "attributes": [ - "disk_state" - ], + "attributes": ["disk_state"], "description": "The amount of available and used disk space in the datacenter.", "enabled": true, "stability": "development", @@ -335,10 +270,7 @@ "unit": "By" }, "vcenter.datacenter.host.count": { - "attributes": [ - "entity_status", - "host_power_state" - ], + "attributes": ["entity_status", "host_power_state"], "description": "The number of hosts in the datacenter.", "enabled": true, "stability": "development", @@ -362,10 +294,7 @@ "unit": "By" }, "vcenter.datacenter.vm.count": { - "attributes": [ - "entity_status", - "vm_count_power_state" - ], + "attributes": ["entity_status", "vm_count_power_state"], "description": "The number of VM's in the datacenter.", "enabled": true, "stability": "development", @@ -377,9 +306,7 @@ "unit": "{virtual_machines}" }, "vcenter.datastore.disk.usage": { - "attributes": [ - "disk_state" - ], + "attributes": ["disk_state"], "description": "The amount of space in the datastore.", "enabled": true, "stability": "development", @@ -413,9 +340,7 @@ "unit": "MHz" }, "vcenter.host.cpu.reserved": { - "attributes": [ - "cpu_reservation_type" - ], + "attributes": ["cpu_reservation_type"], "description": "The CPU of the host reserved for use by virtual machines.", "enabled": true, "stability": "development", @@ -449,10 +374,7 @@ "unit": "%" }, "vcenter.host.disk.latency.avg": { - "attributes": [ - "disk_direction", - "object_name" - ], + "attributes": ["disk_direction", "object_name"], "description": "The latency of operations to the host system's disk.", "enabled": true, "gauge": { @@ -462,9 +384,7 @@ "unit": "ms" }, "vcenter.host.disk.latency.max": { - "attributes": [ - "object_name" - ], + "attributes": ["object_name"], "description": "Highest latency value across all disks used by the host.", "enabled": true, "gauge": { @@ -474,10 +394,7 @@ "unit": "ms" }, "vcenter.host.disk.throughput": { - "attributes": [ - "disk_direction", - "object_name" - ], + "attributes": ["disk_direction", "object_name"], "description": "Average number of kilobytes read from or written to the disk each second.", "enabled": true, "stability": "development", @@ -523,10 +440,7 @@ "unit": "%" }, "vcenter.host.network.packet.drop.rate": { - "attributes": [ - "object_name", - "throughput_direction" - ], + "attributes": ["object_name", "throughput_direction"], "description": "The rate of packets dropped across each physical NIC (network interface controller) instance on the host.", "enabled": true, "gauge": { @@ -536,10 +450,7 @@ "unit": "{packets/s}" }, "vcenter.host.network.packet.error.rate": { - "attributes": [ - "object_name", - "throughput_direction" - ], + "attributes": ["object_name", "throughput_direction"], "description": "The rate of packet errors transmitted or received on the host network.", "enabled": true, "gauge": { @@ -549,10 +460,7 @@ "unit": "{errors/s}" }, "vcenter.host.network.packet.rate": { - "attributes": [ - "object_name", - "throughput_direction" - ], + "attributes": ["object_name", "throughput_direction"], "description": "The rate of packets transmitted or received across each physical NIC (network interface controller) instance on the host.", "enabled": true, "gauge": { @@ -562,10 +470,7 @@ "unit": "{packets/s}" }, "vcenter.host.network.throughput": { - "attributes": [ - "object_name", - "throughput_direction" - ], + "attributes": ["object_name", "throughput_direction"], "description": "The amount of data that was transmitted or received over the network by the host.", "enabled": true, "stability": "development", @@ -577,9 +482,7 @@ "unit": "{KiBy/s}" }, "vcenter.host.network.usage": { - "attributes": [ - "object_name" - ], + "attributes": ["object_name"], "description": "The sum of the data transmitted and received for all the NIC instances of the host.", "enabled": true, "stability": "development", @@ -611,9 +514,7 @@ "unit": "{congestions/s}" }, "vcenter.host.vsan.latency.avg": { - "attributes": [ - "vsan_latency_type" - ], + "attributes": ["vsan_latency_type"], "description": "The host latency while accessing vSAN storage.", "enabled": true, "gauge": { @@ -623,9 +524,7 @@ "unit": "us" }, "vcenter.host.vsan.operations": { - "attributes": [ - "vsan_operation_type" - ], + "attributes": ["vsan_operation_type"], "description": "The vSAN IOPs of a host.", "enabled": true, "gauge": { @@ -635,9 +534,7 @@ "unit": "{operations/s}" }, "vcenter.host.vsan.throughput": { - "attributes": [ - "vsan_throughput_direction" - ], + "attributes": ["vsan_throughput_direction"], "description": "The vSAN throughput of a host.", "enabled": true, "gauge": { @@ -683,9 +580,7 @@ "unit": "MiBy" }, "vcenter.resource_pool.memory.granted": { - "attributes": [ - "memory_granted_type" - ], + "attributes": ["memory_granted_type"], "description": "The amount of memory that is granted to VMs in the resource pool from shared and non-shared host memory.", "enabled": true, "stability": "development", @@ -721,9 +616,7 @@ "unit": "MiBy" }, "vcenter.resource_pool.memory.usage": { - "attributes": [ - "memory_usage_type" - ], + "attributes": ["memory_usage_type"], "description": "The usage of the memory by the resource pool.", "enabled": true, "stability": "development", @@ -745,10 +638,7 @@ "unit": "%" }, "vcenter.vm.cpu.time": { - "attributes": [ - "cpu_state", - "object_name" - ], + "attributes": ["cpu_state", "object_name"], "description": "CPU time spent in idle, ready or wait state.", "enabled": false, "gauge": { @@ -780,11 +670,7 @@ "unit": "%" }, "vcenter.vm.disk.latency.avg": { - "attributes": [ - "disk_direction", - "disk_type", - "object_name" - ], + "attributes": ["disk_direction", "disk_type", "object_name"], "description": "The latency of operations to the virtual machine's disk.", "enabled": true, "gauge": { @@ -794,9 +680,7 @@ "unit": "ms" }, "vcenter.vm.disk.latency.max": { - "attributes": [ - "object_name" - ], + "attributes": ["object_name"], "description": "The highest reported total latency (device and kernel times) over an interval of 20 seconds.", "enabled": true, "gauge": { @@ -806,10 +690,7 @@ "unit": "ms" }, "vcenter.vm.disk.throughput": { - "attributes": [ - "disk_direction", - "object_name" - ], + "attributes": ["disk_direction", "object_name"], "description": "Average number of kilobytes read from or written to the virtual disk each second.", "enabled": true, "gauge": { @@ -819,9 +700,7 @@ "unit": "{KiBy/s}" }, "vcenter.vm.disk.usage": { - "attributes": [ - "disk_state" - ], + "attributes": ["disk_state"], "description": "The amount of storage space used by the virtual machine.", "enabled": true, "stability": "development", @@ -913,10 +792,7 @@ "unit": "%" }, "vcenter.vm.network.broadcast.packet.rate": { - "attributes": [ - "object_name", - "throughput_direction" - ], + "attributes": ["object_name", "throughput_direction"], "description": "The rate of broadcast packets transmitted or received by each vNIC (virtual network interface controller) on the virtual machine.", "enabled": false, "gauge": { @@ -926,10 +802,7 @@ "unit": "{packets/s}" }, "vcenter.vm.network.multicast.packet.rate": { - "attributes": [ - "object_name", - "throughput_direction" - ], + "attributes": ["object_name", "throughput_direction"], "description": "The rate of multicast packets transmitted or received by each vNIC (virtual network interface controller) on the virtual machine.", "enabled": false, "gauge": { @@ -939,10 +812,7 @@ "unit": "{packets/s}" }, "vcenter.vm.network.packet.drop.rate": { - "attributes": [ - "object_name", - "throughput_direction" - ], + "attributes": ["object_name", "throughput_direction"], "description": "The rate of transmitted or received packets dropped by each vNIC (virtual network interface controller) on the virtual machine.", "enabled": true, "gauge": { @@ -952,10 +822,7 @@ "unit": "{packets/s}" }, "vcenter.vm.network.packet.rate": { - "attributes": [ - "object_name", - "throughput_direction" - ], + "attributes": ["object_name", "throughput_direction"], "description": "The rate of packets transmitted or received by each vNIC (virtual network interface controller) on the virtual machine.", "enabled": true, "gauge": { @@ -965,10 +832,7 @@ "unit": "{packets/s}" }, "vcenter.vm.network.throughput": { - "attributes": [ - "object_name", - "throughput_direction" - ], + "attributes": ["object_name", "throughput_direction"], "description": "The amount of data that was transmitted or received over the network of the virtual machine.", "enabled": true, "stability": "development", @@ -980,9 +844,7 @@ "unit": "By/s" }, "vcenter.vm.network.usage": { - "attributes": [ - "object_name" - ], + "attributes": ["object_name"], "description": "The network utilization combined transmit and receive rates during an interval.", "enabled": true, "stability": "development", @@ -994,9 +856,7 @@ "unit": "{KiBy/s}" }, "vcenter.vm.vsan.latency.avg": { - "attributes": [ - "vsan_latency_type" - ], + "attributes": ["vsan_latency_type"], "description": "The virtual machine latency while accessing vSAN storage.", "enabled": true, "gauge": { @@ -1006,9 +866,7 @@ "unit": "us" }, "vcenter.vm.vsan.operations": { - "attributes": [ - "vsan_operation_type" - ], + "attributes": ["vsan_operation_type"], "description": "The vSAN IOPs of a virtual machine.", "enabled": true, "gauge": { @@ -1018,9 +876,7 @@ "unit": "{operations/s}" }, "vcenter.vm.vsan.throughput": { - "attributes": [ - "vsan_throughput_direction" - ], + "attributes": ["vsan_throughput_direction"], "description": "The vSAN throughput of a virtual machine.", "enabled": true, "gauge": { @@ -1035,23 +891,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "schmikei", - "ishleenk17" - ], - "emeritus": [ - "StefanKurek" - ], + "active": ["schmikei", "ishleenk17"], + "emeritus": ["StefanKurek"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-vcrreceiver/contrib-vcrreceiver-adc318414fac.json b/ecosystem-explorer/public/data/collector/components/contrib-vcrreceiver/contrib-vcrreceiver-adc318414fac.json index 7237cb16..a2e905c6 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-vcrreceiver/contrib-vcrreceiver-adc318414fac.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-vcrreceiver/contrib-vcrreceiver-adc318414fac.json @@ -9,20 +9,11 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme", - "robertgustafsonsplunk", - "garrett-splunk" - ] + "active": ["atoulme", "robertgustafsonsplunk", "garrett-splunk"] }, "stability": { - "development": [ - "logs", - "metrics", - "profiles", - "traces" - ] + "development": ["logs", "metrics", "profiles", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-wavefrontreceiver/contrib-wavefrontreceiver-5dac5cff7df4.json b/ecosystem-explorer/public/data/collector/components/contrib-wavefrontreceiver/contrib-wavefrontreceiver-5dac5cff7df4.json index 99a440b0..679458cb 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-wavefrontreceiver/contrib-wavefrontreceiver-5dac5cff7df4.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-wavefrontreceiver/contrib-wavefrontreceiver-5dac5cff7df4.json @@ -9,18 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "samiura" - ] + "active": ["samiura"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "deprecated": [ - "metrics" - ] + "deprecated": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-webhookeventreceiver/contrib-webhookeventreceiver-60e413839ee3.json b/ecosystem-explorer/public/data/collector/components/contrib-webhookeventreceiver/contrib-webhookeventreceiver-60e413839ee3.json index c2c6a691..5b1d82bf 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-webhookeventreceiver/contrib-webhookeventreceiver-60e413839ee3.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-webhookeventreceiver/contrib-webhookeventreceiver-60e413839ee3.json @@ -9,20 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme", - "shalper2" - ], + "active": ["atoulme", "shalper2"], "emeritus": null }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "logs" - ] + "beta": ["logs"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-windowseventlogreceiver/contrib-windowseventlogreceiver-1b83f7c9d025.json b/ecosystem-explorer/public/data/collector/components/contrib-windowseventlogreceiver/contrib-windowseventlogreceiver-1b83f7c9d025.json index 886bb640..ba950bd5 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-windowseventlogreceiver/contrib-windowseventlogreceiver-1b83f7c9d025.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-windowseventlogreceiver/contrib-windowseventlogreceiver-1b83f7c9d025.json @@ -9,23 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "armstrmi", - "pjanotti" - ] + "active": ["armstrmi", "pjanotti"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "logs" - ] + "alpha": ["logs"] }, - "unsupported_platforms": [ - "darwin", - "linux" - ] + "unsupported_platforms": ["darwin", "linux"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-windowsperfcountersreceiver/contrib-windowsperfcountersreceiver-e266842df0f5.json b/ecosystem-explorer/public/data/collector/components/contrib-windowsperfcountersreceiver/contrib-windowsperfcountersreceiver-e266842df0f5.json index 6d6cedbb..183255d5 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-windowsperfcountersreceiver/contrib-windowsperfcountersreceiver-e266842df0f5.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-windowsperfcountersreceiver/contrib-windowsperfcountersreceiver-e266842df0f5.json @@ -9,25 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "dashpole", - "alxbl", - "pjanotti" - ], + "active": ["dashpole", "alxbl", "pjanotti"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "beta": [ - "metrics" - ] + "beta": ["metrics"] }, - "unsupported_platforms": [ - "darwin", - "linux" - ] + "unsupported_platforms": ["darwin", "linux"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-windowsservicereceiver/contrib-windowsservicereceiver-d63136e9a230.json b/ecosystem-explorer/public/data/collector/components/contrib-windowsservicereceiver/contrib-windowsservicereceiver-d63136e9a230.json index a7a0ef89..519f8f44 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-windowsservicereceiver/contrib-windowsservicereceiver-d63136e9a230.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-windowsservicereceiver/contrib-windowsservicereceiver-d63136e9a230.json @@ -6,13 +6,7 @@ }, "startup_mode": { "description": "Startup mode of Windows Service", - "enum": [ - "auto_start", - "boot_start", - "demand_start", - "disabled", - "system_start" - ], + "enum": ["auto_start", "boot_start", "demand_start", "disabled", "system_start"], "type": "string" } }, @@ -23,10 +17,7 @@ "id": "contrib-windowsservicereceiver", "metrics": { "windows.service.status": { - "attributes": [ - "name", - "startup_mode" - ], + "attributes": ["name", "startup_mode"], "description": "Gauge value containing service status as an integer value.", "enabled": true, "gauge": { @@ -41,23 +32,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "pjanotti", - "shalper2" - ] + "active": ["pjanotti", "shalper2"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "development": [ - "metrics" - ] + "development": ["metrics"] }, - "unsupported_platforms": [ - "darwin", - "linux" - ] + "unsupported_platforms": ["darwin", "linux"] }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-yanggrpcreceiver/contrib-yanggrpcreceiver-d3e74d2762c0.json b/ecosystem-explorer/public/data/collector/components/contrib-yanggrpcreceiver/contrib-yanggrpcreceiver-d3e74d2762c0.json index 13866666..2e1fea47 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-yanggrpcreceiver/contrib-yanggrpcreceiver-d3e74d2762c0.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-yanggrpcreceiver/contrib-yanggrpcreceiver-d3e74d2762c0.json @@ -9,18 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "atoulme" - ] + "active": ["atoulme"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-zipkinencodingextension/contrib-zipkinencodingextension-f06b0d8b8db7.json b/ecosystem-explorer/public/data/collector/components/contrib-zipkinencodingextension/contrib-zipkinencodingextension-f06b0d8b8db7.json index f7f7608e..ed192a34 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-zipkinencodingextension/contrib-zipkinencodingextension-f06b0d8b8db7.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-zipkinencodingextension/contrib-zipkinencodingextension-f06b0d8b8db7.json @@ -9,19 +9,12 @@ "status": { "class": "extension", "codeowners": { - "active": [ - "MovieStoreGuy", - "dao-jun" - ] + "active": ["MovieStoreGuy", "dao-jun"] }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "extension" - ] + "alpha": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-zipkinexporter/contrib-zipkinexporter-9dc8b5245b65.json b/ecosystem-explorer/public/data/collector/components/contrib-zipkinexporter/contrib-zipkinexporter-9dc8b5245b65.json index 536b5b5b..9ce87441 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-zipkinexporter/contrib-zipkinexporter-9dc8b5245b65.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-zipkinexporter/contrib-zipkinexporter-9dc8b5245b65.json @@ -9,21 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "MovieStoreGuy", - "andrzej-stencel", - "crobert-1" - ] + "active": ["MovieStoreGuy", "andrzej-stencel", "crobert-1"] }, - "distributions": [ - "contrib", - "core" - ], + "distributions": ["contrib", "core"], "stability": { - "beta": [ - "traces" - ] + "beta": ["traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-zipkinreceiver/contrib-zipkinreceiver-d74669d324f8.json b/ecosystem-explorer/public/data/collector/components/contrib-zipkinreceiver/contrib-zipkinreceiver-d74669d324f8.json index 6bbf061d..f7005181 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-zipkinreceiver/contrib-zipkinreceiver-d74669d324f8.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-zipkinreceiver/contrib-zipkinreceiver-d74669d324f8.json @@ -9,22 +9,12 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "MovieStoreGuy", - "andrzej-stencel", - "crobert-1" - ] + "active": ["MovieStoreGuy", "andrzej-stencel", "crobert-1"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "beta": [ - "traces" - ] + "beta": ["traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/contrib-zookeeperreceiver/contrib-zookeeperreceiver-056a17d17d18.json b/ecosystem-explorer/public/data/collector/components/contrib-zookeeperreceiver/contrib-zookeeperreceiver-056a17d17d18.json index b55c17e8..9e515f04 100644 --- a/ecosystem-explorer/public/data/collector/components/contrib-zookeeperreceiver/contrib-zookeeperreceiver-056a17d17d18.json +++ b/ecosystem-explorer/public/data/collector/components/contrib-zookeeperreceiver/contrib-zookeeperreceiver-056a17d17d18.json @@ -9,23 +9,14 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "antonblock", - "akats7" - ], - "emeritus": [ - "djaglowski" - ], + "active": ["antonblock", "akats7"], + "emeritus": ["djaglowski"], "seeking_new": true }, - "distributions": [ - "contrib" - ], + "distributions": ["contrib"], "stability": { - "alpha": [ - "metrics" - ] + "alpha": ["metrics"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-batchprocessor/core-batchprocessor-035d771419bb.json b/ecosystem-explorer/public/data/collector/components/core-batchprocessor/core-batchprocessor-035d771419bb.json index 373a51c4..d7b52170 100644 --- a/ecosystem-explorer/public/data/collector/components/core-batchprocessor/core-batchprocessor-035d771419bb.json +++ b/ecosystem-explorer/public/data/collector/components/core-batchprocessor/core-batchprocessor-035d771419bb.json @@ -8,18 +8,10 @@ "repository": "opentelemetry-collector", "status": { "class": "processor", - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "beta": [ - "logs", - "metrics", - "traces" - ] + "beta": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-debugexporter/core-debugexporter-f99bfc38c1fc.json b/ecosystem-explorer/public/data/collector/components/core-debugexporter/core-debugexporter-f99bfc38c1fc.json index d4d4f382..ddb1e073 100644 --- a/ecosystem-explorer/public/data/collector/components/core-debugexporter/core-debugexporter-f99bfc38c1fc.json +++ b/ecosystem-explorer/public/data/collector/components/core-debugexporter/core-debugexporter-f99bfc38c1fc.json @@ -9,23 +9,12 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "andrzej-stencel" - ] + "active": ["andrzej-stencel"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "alpha": [ - "logs", - "metrics", - "profiles", - "traces" - ] + "alpha": ["logs", "metrics", "profiles", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-forwardconnector/core-forwardconnector-075e4ed02747.json b/ecosystem-explorer/public/data/collector/components/core-forwardconnector/core-forwardconnector-075e4ed02747.json index d92e510f..11d68210 100644 --- a/ecosystem-explorer/public/data/collector/components/core-forwardconnector/core-forwardconnector-075e4ed02747.json +++ b/ecosystem-explorer/public/data/collector/components/core-forwardconnector/core-forwardconnector-075e4ed02747.json @@ -8,21 +8,11 @@ "repository": "opentelemetry-collector", "status": { "class": "connector", - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "alpha": [ - "profiles_to_profiles" - ], - "beta": [ - "logs_to_logs", - "metrics_to_metrics", - "traces_to_traces" - ] + "alpha": ["profiles_to_profiles"], + "beta": ["logs_to_logs", "metrics_to_metrics", "traces_to_traces"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-memorylimiterextension/core-memorylimiterextension-d943f5ff623d.json b/ecosystem-explorer/public/data/collector/components/core-memorylimiterextension/core-memorylimiterextension-d943f5ff623d.json index cbb293cb..0b2b54d3 100644 --- a/ecosystem-explorer/public/data/collector/components/core-memorylimiterextension/core-memorylimiterextension-d943f5ff623d.json +++ b/ecosystem-explorer/public/data/collector/components/core-memorylimiterextension/core-memorylimiterextension-d943f5ff623d.json @@ -10,10 +10,8 @@ "class": "extension", "distributions": [], "stability": { - "development": [ - "extension" - ] + "development": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-memorylimiterprocessor/core-memorylimiterprocessor-5efcbf07dc0d.json b/ecosystem-explorer/public/data/collector/components/core-memorylimiterprocessor/core-memorylimiterprocessor-5efcbf07dc0d.json index 5e14ee40..ef0f723c 100644 --- a/ecosystem-explorer/public/data/collector/components/core-memorylimiterprocessor/core-memorylimiterprocessor-5efcbf07dc0d.json +++ b/ecosystem-explorer/public/data/collector/components/core-memorylimiterprocessor/core-memorylimiterprocessor-5efcbf07dc0d.json @@ -8,21 +8,11 @@ "repository": "opentelemetry-collector", "status": { "class": "processor", - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "alpha": [ - "profiles" - ], - "beta": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["profiles"], + "beta": ["logs", "metrics", "traces"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-nopexporter/core-nopexporter-6508339b30a5.json b/ecosystem-explorer/public/data/collector/components/core-nopexporter/core-nopexporter-6508339b30a5.json index 56b456ba..d88307f5 100644 --- a/ecosystem-explorer/public/data/collector/components/core-nopexporter/core-nopexporter-6508339b30a5.json +++ b/ecosystem-explorer/public/data/collector/components/core-nopexporter/core-nopexporter-6508339b30a5.json @@ -9,25 +9,13 @@ "status": { "class": "exporter", "codeowners": { - "active": [ - "evan-bradley" - ] + "active": ["evan-bradley"] }, - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "alpha": [ - "profiles" - ], - "beta": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["profiles"], + "beta": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-nopreceiver/core-nopreceiver-1dbca5633992.json b/ecosystem-explorer/public/data/collector/components/core-nopreceiver/core-nopreceiver-1dbca5633992.json index 9940bc9b..6fb08a60 100644 --- a/ecosystem-explorer/public/data/collector/components/core-nopreceiver/core-nopreceiver-1dbca5633992.json +++ b/ecosystem-explorer/public/data/collector/components/core-nopreceiver/core-nopreceiver-1dbca5633992.json @@ -9,24 +9,13 @@ "status": { "class": "receiver", "codeowners": { - "active": [ - "evan-bradley" - ] + "active": ["evan-bradley"] }, - "distributions": [ - "contrib", - "core" - ], + "distributions": ["contrib", "core"], "stability": { - "alpha": [ - "profiles" - ], - "beta": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["profiles"], + "beta": ["logs", "metrics", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-otlpexporter/core-otlpexporter-208d3edc90a8.json b/ecosystem-explorer/public/data/collector/components/core-otlpexporter/core-otlpexporter-208d3edc90a8.json index 6fe828a8..6bcc586e 100644 --- a/ecosystem-explorer/public/data/collector/components/core-otlpexporter/core-otlpexporter-208d3edc90a8.json +++ b/ecosystem-explorer/public/data/collector/components/core-otlpexporter/core-otlpexporter-208d3edc90a8.json @@ -8,22 +8,11 @@ "repository": "opentelemetry-collector", "status": { "class": "exporter", - "distributions": [ - "contrib", - "core", - "k8s", - "otlp" - ], + "distributions": ["contrib", "core", "k8s", "otlp"], "stability": { - "alpha": [ - "profiles" - ], - "stable": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["profiles"], + "stable": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-otlphttpexporter/core-otlphttpexporter-91ee79f0352a.json b/ecosystem-explorer/public/data/collector/components/core-otlphttpexporter/core-otlphttpexporter-91ee79f0352a.json index 84f305aa..7c0fd4b3 100644 --- a/ecosystem-explorer/public/data/collector/components/core-otlphttpexporter/core-otlphttpexporter-91ee79f0352a.json +++ b/ecosystem-explorer/public/data/collector/components/core-otlphttpexporter/core-otlphttpexporter-91ee79f0352a.json @@ -8,22 +8,11 @@ "repository": "opentelemetry-collector", "status": { "class": "exporter", - "distributions": [ - "contrib", - "core", - "k8s", - "otlp" - ], + "distributions": ["contrib", "core", "k8s", "otlp"], "stability": { - "alpha": [ - "profiles" - ], - "stable": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["profiles"], + "stable": ["logs", "metrics", "traces"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-otlpreceiver/core-otlpreceiver-a17dcce3658f.json b/ecosystem-explorer/public/data/collector/components/core-otlpreceiver/core-otlpreceiver-a17dcce3658f.json index 3b2b6390..e3ac1af8 100644 --- a/ecosystem-explorer/public/data/collector/components/core-otlpreceiver/core-otlpreceiver-a17dcce3658f.json +++ b/ecosystem-explorer/public/data/collector/components/core-otlpreceiver/core-otlpreceiver-a17dcce3658f.json @@ -8,22 +8,11 @@ "repository": "opentelemetry-collector", "status": { "class": "receiver", - "distributions": [ - "contrib", - "core", - "k8s", - "otlp" - ], + "distributions": ["contrib", "core", "k8s", "otlp"], "stability": { - "alpha": [ - "profiles" - ], - "stable": [ - "logs", - "metrics", - "traces" - ] + "alpha": ["profiles"], + "stable": ["logs", "metrics", "traces"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-xconnector/core-xconnector-5a07ac237fdd.json b/ecosystem-explorer/public/data/collector/components/core-xconnector/core-xconnector-5a07ac237fdd.json index 7505973d..54b3ca3d 100644 --- a/ecosystem-explorer/public/data/collector/components/core-xconnector/core-xconnector-5a07ac237fdd.json +++ b/ecosystem-explorer/public/data/collector/components/core-xconnector/core-xconnector-5a07ac237fdd.json @@ -9,16 +9,11 @@ "status": { "class": "pkg", "codeowners": { - "active": [ - "mx-psi", - "dmathieu" - ] + "active": ["mx-psi", "dmathieu"] }, "stability": { - "alpha": [ - "profiles" - ] + "alpha": ["profiles"] } }, "type": "connector" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-xexporter/core-xexporter-be39518d8b6a.json b/ecosystem-explorer/public/data/collector/components/core-xexporter/core-xexporter-be39518d8b6a.json index 1d08517b..0ef7267e 100644 --- a/ecosystem-explorer/public/data/collector/components/core-xexporter/core-xexporter-be39518d8b6a.json +++ b/ecosystem-explorer/public/data/collector/components/core-xexporter/core-xexporter-be39518d8b6a.json @@ -9,16 +9,11 @@ "status": { "class": "pkg", "codeowners": { - "active": [ - "mx-psi", - "dmathieu" - ] + "active": ["mx-psi", "dmathieu"] }, "stability": { - "alpha": [ - "profiles" - ] + "alpha": ["profiles"] } }, "type": "exporter" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-xextension/core-xextension-a061ec4c6ec5.json b/ecosystem-explorer/public/data/collector/components/core-xextension/core-xextension-a061ec4c6ec5.json index 3fa1a0d3..245ddb4c 100644 --- a/ecosystem-explorer/public/data/collector/components/core-xextension/core-xextension-a061ec4c6ec5.json +++ b/ecosystem-explorer/public/data/collector/components/core-xextension/core-xextension-a061ec4c6ec5.json @@ -10,10 +10,8 @@ "class": "pkg", "codeowners": null, "stability": { - "alpha": [ - "profiles" - ] + "alpha": ["profiles"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-xprocessor/core-xprocessor-729a97839957.json b/ecosystem-explorer/public/data/collector/components/core-xprocessor/core-xprocessor-729a97839957.json index 12e34d37..4c2efcec 100644 --- a/ecosystem-explorer/public/data/collector/components/core-xprocessor/core-xprocessor-729a97839957.json +++ b/ecosystem-explorer/public/data/collector/components/core-xprocessor/core-xprocessor-729a97839957.json @@ -9,16 +9,11 @@ "status": { "class": "pkg", "codeowners": { - "active": [ - "mx-psi", - "dmathieu" - ] + "active": ["mx-psi", "dmathieu"] }, "stability": { - "alpha": [ - "profiles" - ] + "alpha": ["profiles"] } }, "type": "processor" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-xreceiver/core-xreceiver-1bb2e858e266.json b/ecosystem-explorer/public/data/collector/components/core-xreceiver/core-xreceiver-1bb2e858e266.json index 74e85de0..506dfa1d 100644 --- a/ecosystem-explorer/public/data/collector/components/core-xreceiver/core-xreceiver-1bb2e858e266.json +++ b/ecosystem-explorer/public/data/collector/components/core-xreceiver/core-xreceiver-1bb2e858e266.json @@ -9,16 +9,11 @@ "status": { "class": "pkg", "codeowners": { - "active": [ - "mx-psi", - "dmathieu" - ] + "active": ["mx-psi", "dmathieu"] }, "stability": { - "alpha": [ - "profiles" - ] + "alpha": ["profiles"] } }, "type": "receiver" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/components/core-zpagesextension/core-zpagesextension-9870637c95fe.json b/ecosystem-explorer/public/data/collector/components/core-zpagesextension/core-zpagesextension-9870637c95fe.json index 3f5c3f85..00dd0e97 100644 --- a/ecosystem-explorer/public/data/collector/components/core-zpagesextension/core-zpagesextension-9870637c95fe.json +++ b/ecosystem-explorer/public/data/collector/components/core-zpagesextension/core-zpagesextension-9870637c95fe.json @@ -8,16 +8,10 @@ "repository": "opentelemetry-collector", "status": { "class": "extension", - "distributions": [ - "contrib", - "core", - "k8s" - ], + "distributions": ["contrib", "core", "k8s"], "stability": { - "beta": [ - "extension" - ] + "beta": ["extension"] } }, "type": "extension" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/index.json b/ecosystem-explorer/public/data/collector/index.json index 5896162a..a020b2d7 100644 --- a/ecosystem-explorer/public/data/collector/index.json +++ b/ecosystem-explorer/public/data/collector/index.json @@ -2388,16 +2388,7 @@ ], "ecosystem": "collector", "taxonomy": { - "distributions": [ - "contrib", - "core" - ], - "types": [ - "connector", - "exporter", - "extension", - "processor", - "receiver" - ] + "distributions": ["contrib", "core"], + "types": ["connector", "exporter", "extension", "processor", "receiver"] } -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/versions-index.json b/ecosystem-explorer/public/data/collector/versions-index.json index 158b2b26..7f4125d1 100644 --- a/ecosystem-explorer/public/data/collector/versions-index.json +++ b/ecosystem-explorer/public/data/collector/versions-index.json @@ -9,4 +9,4 @@ "version": "0.150.0" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/versions/0.150.0-index.json b/ecosystem-explorer/public/data/collector/versions/0.150.0-index.json index 8a6e9d35..12f4bf94 100644 --- a/ecosystem-explorer/public/data/collector/versions/0.150.0-index.json +++ b/ecosystem-explorer/public/data/collector/versions/0.150.0-index.json @@ -267,4 +267,4 @@ "core-zpagesextension": "9870637c95fe" }, "version": "0.150.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/collector/versions/0.151.0-index.json b/ecosystem-explorer/public/data/collector/versions/0.151.0-index.json index e6ec2396..a8ceee93 100644 --- a/ecosystem-explorer/public/data/collector/versions/0.151.0-index.json +++ b/ecosystem-explorer/public/data/collector/versions/0.151.0-index.json @@ -267,4 +267,4 @@ "core-zpagesextension": "9870637c95fe" }, "version": "0.151.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/configuration/defaults/sdk-configuration-defaults-1.0.0.json b/ecosystem-explorer/public/data/configuration/defaults/sdk-configuration-defaults-1.0.0.json index 8d8f95a6..70de70ce 100644 --- a/ecosystem-explorer/public/data/configuration/defaults/sdk-configuration-defaults-1.0.0.json +++ b/ecosystem-explorer/public/data/configuration/defaults/sdk-configuration-defaults-1.0.0.json @@ -10,12 +10,7 @@ "resource": { "attributes_list": "${OTEL_RESOURCE_ATTRIBUTES}", "detection/development": { - "detectors": [ - { "service": {} }, - { "host": {} }, - { "process": {} }, - { "container": {} } - ] + "detectors": [{ "service": {} }, { "host": {} }, { "process": {} }, { "container": {} }] } }, "propagator": { diff --git a/ecosystem-explorer/public/data/configuration/versions-index.json b/ecosystem-explorer/public/data/configuration/versions-index.json index 132d2a65..4aad41b9 100644 --- a/ecosystem-explorer/public/data/configuration/versions-index.json +++ b/ecosystem-explorer/public/data/configuration/versions-index.json @@ -5,4 +5,4 @@ "version": "1.0.0" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/configuration/versions/1.0.0.json b/ecosystem-explorer/public/data/configuration/versions/1.0.0.json index c9204ff8..392d8423 100644 --- a/ecosystem-explorer/public/data/configuration/versions/1.0.0.json +++ b/ecosystem-explorer/public/data/configuration/versions/1.0.0.json @@ -4752,4 +4752,4 @@ "key": "root", "label": "Root", "path": "" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/global-configurations.json b/ecosystem-explorer/public/data/javaagent/global-configurations.json index 88ea3eb3..d616a965 100644 --- a/ecosystem-explorer/public/data/javaagent/global-configurations.json +++ b/ecosystem-explorer/public/data/javaagent/global-configurations.json @@ -4,29 +4,21 @@ "description": "Enables experimental span attributes `job.system`, `scheduling.apache-elasticjob.job.name`, `scheduling.apache-elasticjob.task.id`, `scheduling.apache-elasticjob.sharding.item.index`, `scheduling.apache-elasticjob.sharding.total.count`, `scheduling.apache-elasticjob.sharding.item.parameter`, and `scheduling.apache-elasticjob.job.type`.", "name": "otel.instrumentation.apache-elasticjob.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "apache-elasticjob-3.0" - ] + "instrumentations": ["apache-elasticjob-3.0"] }, { "default": false, "description": "Enables experimental `apache-shenyu.meta.` prefixed span attributes `app-name`, `service-name`, `context-path`, `param-types`, `id`, `method-name`, `rpc-type`, `path` and `rpc-ext`.", "name": "otel.instrumentation.apache-shenyu.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "apache-shenyu-2.4" - ] + "instrumentations": ["apache-shenyu-2.4"] }, { "default": 10000, "description": "Flush timeout in milliseconds.", "name": "otel.instrumentation.aws-lambda.flush-timeout", "type": "int", - "instrumentations": [ - "aws-lambda-events-3.11", - "aws-lambda-events-2.2", - "aws-lambda-core-1.0" - ] + "instrumentations": ["aws-lambda-events-3.11", "aws-lambda-events-2.2", "aws-lambda-core-1.0"] }, { "declarative_name": "java.aws_sdk.record_individual_http_error/development", @@ -34,9 +26,7 @@ "description": "Determines whether errors returned by each individual HTTP request should be recorded as events for the SDK span.", "name": "otel.instrumentation.aws-sdk.experimental-record-individual-http-error", "type": "boolean", - "instrumentations": [ - "aws-sdk-2.2" - ] + "instrumentations": ["aws-sdk-2.2"] }, { "declarative_name": "java.aws_sdk.experimental_span_attributes/development", @@ -44,10 +34,7 @@ "description": "Enables experimental span attributes `aws.agent`, `aws.lambda.function.arn` and `aws.lambda.function.name` for AWS SDK instrumentation.", "name": "otel.instrumentation.aws-sdk.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "aws-sdk-2.2", - "aws-sdk-1.11" - ] + "instrumentations": ["aws-sdk-2.2", "aws-sdk-1.11"] }, { "declarative_name": "java.aws_sdk.use_propagator_for_messaging/development", @@ -55,9 +42,7 @@ "description": "Determines whether the configured TextMapPropagator should be used to inject into supported messaging attributes (for SQS).", "name": "otel.instrumentation.aws-sdk.experimental-use-propagator-for-messaging", "type": "boolean", - "instrumentations": [ - "aws-sdk-2.2" - ] + "instrumentations": ["aws-sdk-2.2"] }, { "declarative_name": "java.camel.experimental_span_attributes/development", @@ -65,9 +50,7 @@ "description": "Enable the capture of experimental `camel.uri`, `camel.kafka.partitionKey`, `camel.kafka.key` and `camel.kafka.offset` span attributes.", "name": "otel.instrumentation.camel.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "camel-2.20" - ] + "instrumentations": ["camel-2.20"] }, { "declarative_name": "java.cassandra.query_sanitization.enabled", @@ -75,9 +58,7 @@ "description": "Enables query sanitization for Cassandra queries. Takes precedence over otel.instrumentation.common.db.query-sanitization.enabled.", "name": "otel.instrumentation.cassandra.query-sanitization.enabled", "type": "boolean", - "instrumentations": [ - "cassandra-3.0" - ] + "instrumentations": ["cassandra-3.0"] }, { "default": true, @@ -147,27 +128,21 @@ "description": "Enables capturing the enduser.id attribute.", "name": "otel.instrumentation.common.enduser.id.enabled", "type": "boolean", - "instrumentations": [ - "spring-security-config-6.0" - ] + "instrumentations": ["spring-security-config-6.0"] }, { "default": false, "description": "Enables capturing the enduser.role attribute.", "name": "otel.instrumentation.common.enduser.role.enabled", "type": "boolean", - "instrumentations": [ - "spring-security-config-6.0" - ] + "instrumentations": ["spring-security-config-6.0"] }, { "default": false, "description": "Enables capturing the enduser.scope attribute.", "name": "otel.instrumentation.common.enduser.scope.enabled", "type": "boolean", - "instrumentations": [ - "spring-security-config-6.0" - ] + "instrumentations": ["spring-security-config-6.0"] }, { "default": false, @@ -277,18 +252,14 @@ "description": "List of messaging headers to capture.", "name": "otel.instrumentation.common.messaging.capture-headers", "type": "list", - "instrumentations": [ - "rabbitmq-2.7" - ] + "instrumentations": ["rabbitmq-2.7"] }, { "default": false, "description": "Enables the creation of consumer spans on messaging receive operations. These spans will measure the time between receiving a message and the consumer processing that message.", "name": "otel.instrumentation.common.messaging.experimental.receive-telemetry.enabled", "type": "boolean", - "instrumentations": [ - "rabbitmq-2.7" - ] + "instrumentations": ["rabbitmq-2.7"] }, { "default": "", @@ -345,10 +316,7 @@ "description": "Enables experimental span attributes `couchbase.operation_id` and `couchbase.local.address`. Different operation types receive different experimental attributes.", "name": "otel.instrumentation.couchbase.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "couchbase-2.6", - "couchbase-2.0" - ] + "instrumentations": ["couchbase-2.6", "couchbase-2.0"] }, { "declarative_name": "java.dropwizard_metrics.enabled", @@ -356,9 +324,7 @@ "description": "Enables the dropwizard metrics instrumentation.", "name": "otel.instrumentation.dropwizard-metrics.enabled", "type": "boolean", - "instrumentations": [ - "dropwizard-metrics-4.0" - ] + "instrumentations": ["dropwizard-metrics-4.0"] }, { "declarative_name": "java.elasticsearch.capture_search_query", @@ -388,15 +354,10 @@ "declarative_name": "java.executors.include", "default": "", "description": "List of Executor subclasses to be instrumented.", - "examples": [ - "com.example.CustomExecutor", - "com.example.ExecutorOne,com.example.ExecutorTwo" - ], + "examples": ["com.example.CustomExecutor", "com.example.ExecutorOne,com.example.ExecutorTwo"], "name": "otel.instrumentation.executors.include", "type": "list", - "instrumentations": [ - "executors" - ] + "instrumentations": ["executors"] }, { "declarative_name": "java.executors.include_all", @@ -404,9 +365,7 @@ "description": "Whether to instrument all classes that implement the Executor interface.", "name": "otel.instrumentation.executors.include-all", "type": "boolean", - "instrumentations": [ - "executors" - ] + "instrumentations": ["executors"] }, { "declarative_name": "java.external_annotations.exclude_methods", @@ -418,23 +377,16 @@ ], "name": "otel.instrumentation.external-annotations.exclude-methods", "type": "string", - "instrumentations": [ - "external-annotations" - ] + "instrumentations": ["external-annotations"] }, { "declarative_name": "java.external_annotations.include", "default": "", "description": "Configuration for trace annotations, in the form of a pattern that matches `'package.Annotation$Name;*'`.", - "examples": [ - "com.example.Trace", - "com.example.Trace;com.example.OtherTrace" - ], + "examples": ["com.example.Trace", "com.example.Trace;com.example.OtherTrace"], "name": "otel.instrumentation.external-annotations.include", "type": "string", - "instrumentations": [ - "external-annotations" - ] + "instrumentations": ["external-annotations"] }, { "declarative_name": "java.common.gen_ai.capture_message_content", @@ -442,20 +394,14 @@ "description": "Determines whether Generative AI events include full content of user and assistant messages. Note that full content can have data privacy and size concerns and care should be taken when enabling this", "name": "otel.instrumentation.genai.capture-message-content", "type": "boolean", - "instrumentations": [ - "aws-sdk-2.2", - "openai-java-1.1" - ] + "instrumentations": ["aws-sdk-2.2", "openai-java-1.1"] }, { "default": false, "description": "Whether GraphQL operation name is added to the span name. WARNING: The GraphQL operation name is provided by the client and can have high cardinality. Use only when the server is not exposed to malicious clients.", "name": "otel.instrumentation.graphql.add-operation-name-to-span-name.enabled", "type": "boolean", - "instrumentations": [ - "graphql-java-12.0", - "graphql-java-20.0" - ] + "instrumentations": ["graphql-java-12.0", "graphql-java-20.0"] }, { "declarative_name": "java.graphql.capture_query", @@ -463,10 +409,7 @@ "description": "Whether to capture the query in `graphql.document` span attribute.", "name": "otel.instrumentation.graphql.capture-query", "type": "boolean", - "instrumentations": [ - "graphql-java-12.0", - "graphql-java-20.0" - ] + "instrumentations": ["graphql-java-12.0", "graphql-java-20.0"] }, { "declarative_name": "java.graphql.data_fetcher.enabled", @@ -474,9 +417,7 @@ "description": "Enables span generation for data fetchers.", "name": "otel.instrumentation.graphql.data-fetcher.enabled", "type": "boolean", - "instrumentations": [ - "graphql-java-20.0" - ] + "instrumentations": ["graphql-java-20.0"] }, { "declarative_name": "java.graphql.operation_name_in_span_name.enabled", @@ -484,10 +425,7 @@ "description": "Whether GraphQL operation name is added to the span name. WARNING: The GraphQL operation name is provided by the client and can have high cardinality. Use only when the server is not exposed to malicious clients.", "name": "otel.instrumentation.graphql.operation-name-in-span-name.enabled", "type": "boolean", - "instrumentations": [ - "graphql-java-12.0", - "graphql-java-20.0" - ] + "instrumentations": ["graphql-java-12.0", "graphql-java-20.0"] }, { "declarative_name": "java.graphql.query_sanitization.enabled", @@ -495,20 +433,14 @@ "description": "Enables sanitization of sensitive information from queries so they aren't added as span attributes.", "name": "otel.instrumentation.graphql.query-sanitization.enabled", "type": "boolean", - "instrumentations": [ - "graphql-java-12.0", - "graphql-java-20.0" - ] + "instrumentations": ["graphql-java-12.0", "graphql-java-20.0"] }, { "default": true, "description": "Enables sanitization of sensitive information from queries so they aren't added as span attributes.", "name": "otel.instrumentation.graphql.query-sanitizer.enabled", "type": "boolean", - "instrumentations": [ - "graphql-java-12.0", - "graphql-java-20.0" - ] + "instrumentations": ["graphql-java-12.0", "graphql-java-20.0"] }, { "declarative_name": "java.graphql.trivial_data_fetcher.enabled", @@ -516,23 +448,16 @@ "description": "Whether to create spans for trivial data fetchers. A trivial data fetcher is one that simply maps data from an object to a field.", "name": "otel.instrumentation.graphql.trivial-data-fetcher.enabled", "type": "boolean", - "instrumentations": [ - "graphql-java-20.0" - ] + "instrumentations": ["graphql-java-20.0"] }, { "declarative_name": "java.grpc.capture_metadata.client.request", "default": "", "description": "A comma-separated list of request metadata keys. gRPC client instrumentation will capture metadata values corresponding to configured keys as span attributes.", - "examples": [ - "custom-request-header", - "my-metadata-key,another-metadata-key" - ], + "examples": ["custom-request-header", "my-metadata-key,another-metadata-key"], "name": "otel.instrumentation.grpc.capture-metadata.client.request", "type": "list", - "instrumentations": [ - "grpc-1.6" - ] + "instrumentations": ["grpc-1.6"] }, { "declarative_name": "java.grpc.capture_metadata.server.request", @@ -540,9 +465,7 @@ "description": "A comma-separated list of request metadata keys. gRPC server instrumentation will capture metadata values corresponding to configured keys as span attributes.", "name": "otel.instrumentation.grpc.capture-metadata.server.request", "type": "list", - "instrumentations": [ - "grpc-1.6" - ] + "instrumentations": ["grpc-1.6"] }, { "declarative_name": "java.grpc.emit_message_events", @@ -550,9 +473,7 @@ "description": "Determines whether to emit a span event for each individual message received and sent.", "name": "otel.instrumentation.grpc.emit-message-events", "type": "boolean", - "instrumentations": [ - "grpc-1.6" - ] + "instrumentations": ["grpc-1.6"] }, { "declarative_name": "java.grpc.experimental_span_attributes/development", @@ -560,9 +481,7 @@ "description": "Enable the capture of experimental span attributes `grpc.received.message_count`, `grpc.sent.message_count` and `grpc.canceled`.", "name": "otel.instrumentation.grpc.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "grpc-1.6" - ] + "instrumentations": ["grpc-1.6"] }, { "declarative_name": "java.guava.experimental_span_attributes/development", @@ -570,9 +489,7 @@ "description": "Enables experimental span attribute `guava.canceled` for cancelled operations.", "name": "otel.instrumentation.guava.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "guava-10.0" - ] + "instrumentations": ["guava-10.0"] }, { "declarative_name": "java.hibernate.experimental_span_attributes/development", @@ -913,9 +830,7 @@ "description": "Enables capturing the experimental `hystrix.command`, `hystrix.circuit_open` and `hystrix.group` span attributes.", "name": "otel.instrumentation.hystrix.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "hystrix-1.4" - ] + "instrumentations": ["hystrix-1.4"] }, { "declarative_name": "java.java_util_logging.experimental_log_attributes/development", @@ -923,9 +838,7 @@ "description": "Enables capturing the experimental `thread.name` and `thread.id` log attributes.", "name": "otel.instrumentation.java-util-logging.experimental-log-attributes", "type": "boolean", - "instrumentations": [ - "java-util-logging" - ] + "instrumentations": ["java-util-logging"] }, { "declarative_name": "java.jaxrs.experimental_span_attributes/development", @@ -950,9 +863,7 @@ "description": "Enables the capture of experimental log attributes, including thread name and thread ID.", "name": "otel.instrumentation.jboss-logmanager.experimental-log-attributes", "type": "boolean", - "instrumentations": [ - "jboss-logmanager-appender-1.1" - ] + "instrumentations": ["jboss-logmanager-appender-1.1"] }, { "declarative_name": "java.jboss_logmanager.capture_event_name/development", @@ -960,86 +871,65 @@ "description": "Enables the capture of the event name from the MDC attribute \"event.name\" and sets it as the log record's event name.", "name": "otel.instrumentation.jboss-logmanager.experimental.capture-event-name", "type": "boolean", - "instrumentations": [ - "jboss-logmanager-appender-1.1" - ] + "instrumentations": ["jboss-logmanager-appender-1.1"] }, { "declarative_name": "java.jboss_logmanager.capture_mdc_attributes/development", "default": "", "description": "Controls which MDC attributes to capture. Use \"*\" to capture all MDC attributes or provide a comma-separated list of specific keys.", - "examples": [ - "custom-mdc-key", - "key1,key2,key3" - ], + "examples": ["custom-mdc-key", "key1,key2,key3"], "name": "otel.instrumentation.jboss-logmanager.experimental.capture-mdc-attributes", "type": "list", - "instrumentations": [ - "jboss-logmanager-appender-1.1" - ] + "instrumentations": ["jboss-logmanager-appender-1.1"] }, { "default": false, "description": "Enables instrumentation of JDBC datasource connections.", "name": "otel.instrumentation.jdbc-datasource.enabled", "type": "boolean", - "instrumentations": [ - "jdbc" - ] + "instrumentations": ["jdbc"] }, { "default": false, "description": "Sets whether the query parameters should be captured as span attributes named db.query.parameter.<key>. Enabling this option disables the statement sanitization.

WARNING: captured query parameters may contain sensitive information such as passwords, personally identifiable information or protected health info.", "name": "otel.instrumentation.jdbc.experimental.capture-query-parameters", "type": "boolean", - "instrumentations": [ - "jdbc" - ] + "instrumentations": ["jdbc"] }, { "default": false, "description": "Enables augmenting queries with a comment containing the tracing information. See [sqlcommenter](https://google.github.io/sqlcommenter/) for more info. WARNING: augmenting queries with tracing context will make query texts unique, which may have adverse impact on database performance. Consult with database experts before enabling.", "name": "otel.instrumentation.jdbc.experimental.sqlcommenter.enabled", "type": "boolean", - "instrumentations": [ - "jdbc" - ] + "instrumentations": ["jdbc"] }, { "default": false, "description": "Enables experimental instrumentation to create spans for COMMIT and ROLLBACK operations.", "name": "otel.instrumentation.jdbc.experimental.transaction.enabled", "type": "boolean", - "instrumentations": [ - "jdbc" - ] + "instrumentations": ["jdbc"] }, { "default": true, "description": "Enables query sanitization for database queries. Takes precedence over otel.instrumentation.common.db.query-sanitization.enabled.", "name": "otel.instrumentation.jdbc.query-sanitization.enabled", "type": "boolean", - "instrumentations": [ - "jdbc" - ] + "instrumentations": ["jdbc"] }, { "default": true, "description": "Enables statement sanitization for database queries. Takes precedent to otel.instrumentation.common.db-statement-sanitizer.enabled.", "name": "otel.instrumentation.jdbc.statement-sanitizer.enabled", "type": "boolean", - "instrumentations": [ - "jdbc" - ] + "instrumentations": ["jdbc"] }, { "default": false, "description": "Enables experimental span attributes `jsp.forwardOrigin`, `jsp.requestURL`, `jsp.compiler`, and `jsp.classFQCN`.", "name": "otel.instrumentation.jsp.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "jsp-2.3" - ] + "instrumentations": ["jsp-2.3"] }, { "default": false, @@ -1061,116 +951,84 @@ "description": "Enable context propagation for Kafka message producers.", "name": "otel.instrumentation.kafka.producer-propagation.enabled", "type": "boolean", - "instrumentations": [ - "kafka-clients-0.11", - "vertx-kafka-client-3.6" - ] + "instrumentations": ["kafka-clients-0.11", "vertx-kafka-client-3.6"] }, { "default": false, "description": "Enables experimental span attributes `kubernetes-client.namespace` and `kubernetes-client.name` for Kubernetes API requests.", "name": "otel.instrumentation.kubernetes-client.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "kubernetes-client-7.0" - ] + "instrumentations": ["kubernetes-client-7.0"] }, { "default": false, "description": "Enables connection telemetry spans for Redis connections.", "name": "otel.instrumentation.lettuce.connection-telemetry.enabled", "type": "boolean", - "instrumentations": [ - "lettuce-5.0", - "lettuce-4.0" - ] + "instrumentations": ["lettuce-5.0", "lettuce-4.0"] }, { "default": false, "description": "Enables experimental span attributes `lettuce.command.cancelled` and `lettuce.command.results.count`.", "name": "otel.instrumentation.lettuce.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "lettuce-5.0", - "lettuce-4.0" - ] + "instrumentations": ["lettuce-5.0", "lettuce-4.0"] }, { "default": false, "description": "Enables capturing `redis.encode.start` and `redis.encode.end` span events.", "name": "otel.instrumentation.lettuce.experimental.command-encoding-events.enabled", "type": "boolean", - "instrumentations": [ - "lettuce-5.1" - ] + "instrumentations": ["lettuce-5.1"] }, { "default": false, "description": "Enables the capture of experimental log attributes, including thread name and thread ID.", "name": "otel.instrumentation.log4j-appender.experimental-log-attributes", "type": "boolean", - "instrumentations": [ - "log4j-appender-1.2", - "log4j-appender-2.17" - ] + "instrumentations": ["log4j-appender-1.2", "log4j-appender-2.17"] }, { "default": false, "description": "Enables the capture of code location attributes, including file path, class name, method name, and line number.", "name": "otel.instrumentation.log4j-appender.experimental.capture-code-attributes", "type": "boolean", - "instrumentations": [ - "log4j-appender-1.2", - "log4j-appender-2.17" - ] + "instrumentations": ["log4j-appender-1.2", "log4j-appender-2.17"] }, { "default": false, "description": "Enables the capture of the event name from the MDC attribute \"event.name\" and sets it as the log record's event name.", "name": "otel.instrumentation.log4j-appender.experimental.capture-event-name", "type": "boolean", - "instrumentations": [ - "log4j-appender-1.2", - "log4j-appender-2.17" - ] + "instrumentations": ["log4j-appender-1.2", "log4j-appender-2.17"] }, { "default": false, "description": "Enables the capture of attributes from Log4j MapMessage instances.", "name": "otel.instrumentation.log4j-appender.experimental.capture-map-message-attributes", "type": "boolean", - "instrumentations": [ - "log4j-appender-2.17" - ] + "instrumentations": ["log4j-appender-2.17"] }, { "default": false, "description": "Enables the capture of the Log4j marker attribute.", "name": "otel.instrumentation.log4j-appender.experimental.capture-marker-attribute", "type": "boolean", - "instrumentations": [ - "log4j-appender-2.17" - ] + "instrumentations": ["log4j-appender-2.17"] }, { "default": "", "description": "Controls which MDC attributes to capture. Use \"*\" to capture all MDC attributes or provide a comma-separated list of specific keys.", "name": "otel.instrumentation.log4j-appender.experimental.capture-mdc-attributes", "type": "list", - "instrumentations": [ - "log4j-appender-1.2", - "log4j-appender-2.17" - ] + "instrumentations": ["log4j-appender-1.2", "log4j-appender-2.17"] }, { "default": false, "description": "Enables adding baggage entries to the Log4j ThreadContext, prefixed with \"baggage.\".", "name": "otel.instrumentation.log4j-context-data.add-baggage", "type": "boolean", - "instrumentations": [ - "log4j-context-data-2.7", - "log4j-context-data-2.17" - ] + "instrumentations": ["log4j-context-data-2.7", "log4j-context-data-2.17"] }, { "declarative_name": "java.logback_appender.experimental_log_attributes/development", @@ -1178,9 +1036,7 @@ "description": "Enables the capture of experimental log attributes, including thread name and thread ID.", "name": "otel.instrumentation.logback-appender.experimental-log-attributes", "type": "boolean", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "declarative_name": "java.logback_appender.capture_arguments/development", @@ -1188,9 +1044,7 @@ "description": "Enables the capture of log message arguments as separate attributes.", "name": "otel.instrumentation.logback-appender.experimental.capture-arguments", "type": "boolean", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "declarative_name": "java.logback_appender.capture_code_attributes/development", @@ -1198,9 +1052,7 @@ "description": "Enables the capture of code location attributes, including file path, class name, method name, and line number.", "name": "otel.instrumentation.logback-appender.experimental.capture-code-attributes", "type": "boolean", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "declarative_name": "java.logback_appender.capture_event_name/development", @@ -1208,9 +1060,7 @@ "description": "Enables the capture of the event name from the MDC attribute \"event.name\" and sets it as the log record's event name.", "name": "otel.instrumentation.logback-appender.experimental.capture-event-name", "type": "boolean", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "declarative_name": "java.logback_appender.capture_key_value_pair_attributes/development", @@ -1218,9 +1068,7 @@ "description": "Enables the capture of attributes from Logback key-value pairs.", "name": "otel.instrumentation.logback-appender.experimental.capture-key-value-pair-attributes", "type": "boolean", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "declarative_name": "java.logback_appender.capture_logger_context_attributes/development", @@ -1228,9 +1076,7 @@ "description": "Enables the capture of attributes from the Logback logger context.", "name": "otel.instrumentation.logback-appender.experimental.capture-logger-context-attributes", "type": "boolean", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "declarative_name": "java.logback_appender.capture_logstash_marker_attributes/development", @@ -1238,9 +1084,7 @@ "description": "Enables the capture of attributes from Logstash markers.", "name": "otel.instrumentation.logback-appender.experimental.capture-logstash-marker-attributes", "type": "boolean", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "declarative_name": "java.logback_appender.capture_logstash_structured_arguments/development", @@ -1248,9 +1092,7 @@ "description": "Enables the capture of attributes from Logstash structured arguments.", "name": "otel.instrumentation.logback-appender.experimental.capture-logstash-structured-arguments", "type": "boolean", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "declarative_name": "java.logback_appender.capture_marker_attribute/development", @@ -1258,9 +1100,7 @@ "description": "Enables the capture of the Logback marker attribute.", "name": "otel.instrumentation.logback-appender.experimental.capture-marker-attribute", "type": "boolean", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "declarative_name": "java.logback_appender.capture_mdc_attributes/development", @@ -1268,9 +1108,7 @@ "description": "Controls which MDC attributes to capture. Use \"*\" to capture all MDC attributes or provide a comma-separated list of specific keys.", "name": "otel.instrumentation.logback-appender.experimental.capture-mdc-attributes", "type": "list", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "declarative_name": "java.logback_appender.capture_template/development", @@ -1278,18 +1116,14 @@ "description": "Enables the capture of the log message template before parameter substitution.", "name": "otel.instrumentation.logback-appender.experimental.capture-template", "type": "boolean", - "instrumentations": [ - "logback-appender-1.0" - ] + "instrumentations": ["logback-appender-1.0"] }, { "default": false, "description": "Enables adding baggage entries to the Logback MDC, prefixed with \"baggage.\".", "name": "otel.instrumentation.logback-mdc.add-baggage", "type": "boolean", - "instrumentations": [ - "logback-mdc-1.0" - ] + "instrumentations": ["logback-mdc-1.0"] }, { "declarative_name": "java.common.messaging.capture_headers/development", @@ -1346,241 +1180,175 @@ "description": "Sets the base time unit for the OpenTelemetry MeterRegistry. Supported values: ns, us, ms, s, min, h, d.", "name": "otel.instrumentation.micrometer.base-time-unit", "type": "string", - "instrumentations": [ - "micrometer-1.5" - ] + "instrumentations": ["micrometer-1.5"] }, { "default": false, "description": "Enables gauge-based Micrometer histograms for DistributionSummary and Timer instruments.", "name": "otel.instrumentation.micrometer.histogram-gauges.enabled", "type": "boolean", - "instrumentations": [ - "micrometer-1.5" - ] + "instrumentations": ["micrometer-1.5"] }, { "default": false, "description": "Simulates the behavior of Micrometer's PrometheusMeterRegistry. The instruments will be renamed to match Micrometer instrument naming, and the base time unit will be set to seconds.", "name": "otel.instrumentation.micrometer.prometheus-mode.enabled", "type": "boolean", - "instrumentations": [ - "micrometer-1.5" - ] + "instrumentations": ["micrometer-1.5"] }, { "default": true, "description": "Enables query sanitization for MongoDB queries. Takes precedence over otel.instrumentation.common.db.query-sanitization.enabled.", "name": "otel.instrumentation.mongo.query-sanitization.enabled", "type": "boolean", - "instrumentations": [ - "mongo-async-3.3", - "mongo-3.7", - "mongo-4.0", - "mongo-3.1" - ] + "instrumentations": ["mongo-async-3.3", "mongo-3.7", "mongo-4.0", "mongo-3.1"] }, { "default": true, "description": "Enables statement sanitization for MongoDB queries. Takes precedence over otel.instrumentation.common.db-statement-sanitizer.enabled.", "name": "otel.instrumentation.mongo.statement-sanitizer.enabled", "type": "boolean", - "instrumentations": [ - "mongo-async-3.3", - "mongo-3.7", - "mongo-4.0", - "mongo-3.1" - ] + "instrumentations": ["mongo-async-3.3", "mongo-3.7", "mongo-4.0", "mongo-3.1"] }, { "default": false, "description": "Enable the creation of Connect and DNS spans.", "name": "otel.instrumentation.netty.connection-telemetry.enabled", "type": "boolean", - "instrumentations": [ - "netty-4.1", - "netty-4.0" - ] + "instrumentations": ["netty-4.1", "netty-4.0"] }, { "default": false, "description": "Enable SSL telemetry.", "name": "otel.instrumentation.netty.ssl-telemetry.enabled", "type": "boolean", - "instrumentations": [ - "netty-4.1", - "netty-4.0" - ] + "instrumentations": ["netty-4.1", "netty-4.0"] }, { "default": false, "description": "Enable the experimental `runtime.java.memory` and `runtime.java.cpu_time` metrics.", "name": "otel.instrumentation.oshi.experimental-metrics.enabled", "type": "boolean", - "instrumentations": [ - "oshi" - ] + "instrumentations": ["oshi"] }, { "default": false, "description": "Enables experimental span attributes `job.system`, `scheduling.powerjob.job.id`, `scheduling.powerjob.job.param`, `scheduling.powerjob.job.instance.param`, and `scheduling.powerjob.job.type`.", "name": "otel.instrumentation.powerjob.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "powerjob-4.0" - ] + "instrumentations": ["powerjob-4.0"] }, { "default": false, "description": "Enables the experimental span attribute `messaging.pulsar.message.type` for producer spans.", "name": "otel.instrumentation.pulsar.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "pulsar-2.8", - "spring-pulsar-1.0" - ] + "instrumentations": ["pulsar-2.8", "spring-pulsar-1.0"] }, { "default": false, "description": "Enables the experimental `job.system` span attribute.", "name": "otel.instrumentation.quartz.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "quartz-2.0" - ] + "instrumentations": ["quartz-2.0"] }, { "default": false, "description": "Enables augmenting queries with a comment containing the tracing information. See [sqlcommenter](https://google.github.io/sqlcommenter/) for more info. WARNING: augmenting queries with tracing context will make query texts unique, which may have adverse impact on database performance.", "name": "otel.instrumentation.r2dbc.experimental.sqlcommenter.enabled", "type": "boolean", - "instrumentations": [ - "r2dbc-1.0" - ] + "instrumentations": ["r2dbc-1.0"] }, { "default": true, "description": "Enables query sanitization for database queries. Takes precedence over otel.instrumentation.common.db.query-sanitization.enabled.", "name": "otel.instrumentation.r2dbc.query-sanitization.enabled", "type": "boolean", - "instrumentations": [ - "r2dbc-1.0" - ] + "instrumentations": ["r2dbc-1.0"] }, { "default": true, "description": "Enables statement sanitization for database queries. Takes precedence over otel.instrumentation.common.db-statement-sanitizer.enabled.", "name": "otel.instrumentation.r2dbc.statement-sanitizer.enabled", "type": "boolean", - "instrumentations": [ - "r2dbc-1.0" - ] + "instrumentations": ["r2dbc-1.0"] }, { "default": false, "description": "Enables experimental span attributes `rabbitmq.command`, `rabbitmq.delivery_mode`, `rabbitmq.queue`, and `rabbitmq.record.queue_time_ms`.", "name": "otel.instrumentation.rabbitmq.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "rabbitmq-2.7" - ] + "instrumentations": ["rabbitmq-2.7"] }, { "default": false, "description": "Enables the creation of Connect and DNS spans.", "name": "otel.instrumentation.reactor-netty.connection-telemetry.enabled", "type": "boolean", - "instrumentations": [ - "reactor-netty-1.0" - ] + "instrumentations": ["reactor-netty-1.0"] }, { "default": false, "description": "Enables the capture of the experimental `reactor.canceled` attribute on spans when reactive streams are cancelled.", "name": "otel.instrumentation.reactor.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "reactor-3.1" - ] + "instrumentations": ["reactor-3.1"] }, { "default": false, "description": "Enables capturing experimental span attributes `messaging.rocketmq.message.tag`, `messaging.rocketmq.broker_address`, `messaging.rocketmq.send_result`, `messaging.rocketmq.queue_id`, and `messaging.rocketmq.queue_offset`.", "name": "otel.instrumentation.rocketmq-client.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "rocketmq-client-4.8" - ] + "instrumentations": ["rocketmq-client-4.8"] }, { "default": false, "description": "Enables the capture of experimental JVM runtime metrics.", "name": "otel.instrumentation.runtime-telemetry.emit-experimental-metrics", "type": "boolean", - "instrumentations": [ - "runtime-telemetry" - ] + "instrumentations": ["runtime-telemetry"] }, { "default": false, "description": "Enables creating events for JAR libraries used by the application.", "name": "otel.instrumentation.runtime-telemetry.experimental.package-emitter.enabled", "type": "boolean", - "instrumentations": [ - "runtime-telemetry" - ] + "instrumentations": ["runtime-telemetry"] }, { "default": 10, "description": "The number of JAR files processed per second by the package emitter.", "name": "otel.instrumentation.runtime-telemetry.experimental.package-emitter.jars-per-second", "type": "int", - "instrumentations": [ - "runtime-telemetry" - ] + "instrumentations": ["runtime-telemetry"] }, { "default": false, "description": "Prefers JFR over JMX for metrics where both collection methods are available (Java 17+).", "name": "otel.instrumentation.runtime-telemetry.experimental.prefer-jfr", "type": "boolean", - "instrumentations": [ - "runtime-telemetry" - ] + "instrumentations": ["runtime-telemetry"] }, { "default": false, "description": "Enables the experimental span attribute `rxjava.canceled`.", "name": "otel.instrumentation.rxjava.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "rxjava-3.0", - "rxjava-3.1.1", - "rxjava-2.0" - ] + "instrumentations": ["rxjava-3.0", "rxjava-3.1.1", "rxjava-2.0"] }, { "default": true, "description": "Adds the trace ID and span ID as a request attributes for downstream servlet access.", "name": "otel.instrumentation.servlet.add-trace-id-request-attribute", "type": "boolean", - "instrumentations": [ - "servlet-3.0", - "servlet-5.0", - "servlet-2.2" - ] + "instrumentations": ["servlet-3.0", "servlet-5.0", "servlet-2.2"] }, { "default": "", "description": "List of request parameter names to capture as span attributes.", "name": "otel.instrumentation.servlet.capture-request-parameters", "type": "list", - "instrumentations": [ - "tomcat-10.0", - "servlet-3.0", - "servlet-5.0", - "servlet-2.2" - ] + "instrumentations": ["tomcat-10.0", "servlet-3.0", "servlet-5.0", "servlet-2.2"] }, { "default": false, @@ -1602,13 +1370,7 @@ "description": "List of request parameter names to capture as span attributes.", "name": "otel.instrumentation.servlet.experimental.capture-request-parameters", "type": "list", - "instrumentations": [ - "servlet-3.0", - "servlet-5.0", - "servlet-2.2", - "liberty-20.0", - "tomcat-7.0" - ], + "instrumentations": ["servlet-3.0", "servlet-5.0", "servlet-2.2", "liberty-20.0", "tomcat-7.0"], "declarative_name": "java.servlet.capture_request_parameters/development" }, { @@ -1616,142 +1378,104 @@ "description": "Enables adding the trace ID and span ID as request attributes for downstream servlet access.", "name": "otel.instrumentation.servlet.experimental.trace-id-request-attribute.enabled", "type": "boolean", - "instrumentations": [ - "servlet-3.0", - "servlet-5.0", - "servlet-2.2" - ] + "instrumentations": ["servlet-3.0", "servlet-5.0", "servlet-2.2"] }, { "default": false, "description": "Adds the experimental attribute `job.system` to spans.", "name": "otel.instrumentation.spring-batch.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "spring-batch-3.0" - ] + "instrumentations": ["spring-batch-3.0"] }, { "default": false, "description": "When enabled, a new root span will be created for each chunk processing. Please note that this may lead to a high number of spans being created.", "name": "otel.instrumentation.spring-batch.experimental.chunk.new-trace", "type": "boolean", - "instrumentations": [ - "spring-batch-3.0" - ] + "instrumentations": ["spring-batch-3.0"] }, { "default": false, "description": "When enabled, spans will be created for each item processed. Please note that this may lead to a high number of spans being created.", "name": "otel.instrumentation.spring-batch.item.enabled", "type": "boolean", - "instrumentations": [ - "spring-batch-3.0" - ] + "instrumentations": ["spring-batch-3.0"] }, { "default": false, "description": "Enables experimental `spring-cloud-gateway.route` attributes (e.g., `spring-cloud-gateway.route.id`, `spring-cloud-gateway.route.uri`, etc.) on spans.", "name": "otel.instrumentation.spring-cloud-gateway.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "spring-cloud-gateway-2.0", - "spring-cloud-gateway-webmvc-4.3" - ] + "instrumentations": ["spring-cloud-gateway-2.0", "spring-cloud-gateway-webmvc-4.3"] }, { "default": "*", "description": "A list of Spring channel name patterns that will be intercepted.", "name": "otel.instrumentation.spring-integration.global-channel-interceptor-patterns", "type": "list", - "instrumentations": [ - "spring-integration-4.1" - ] + "instrumentations": ["spring-integration-4.1"] }, { "default": false, "description": "Create producer spans when messages are sent to an output channel. Enable when you're using a messaging library that doesn't have its own instrumentation for generating producer spans. Note that the detection of output channels only works for Spring Cloud Stream `DirectWithAttributesChannel`.", "name": "otel.instrumentation.spring-integration.producer.enabled", "type": "boolean", - "instrumentations": [ - "spring-integration-4.1" - ] + "instrumentations": ["spring-integration-4.1"] }, { "default": false, "description": "Adds the experimental span attribute `job.system` with the value `spring_scheduling`.", "name": "otel.instrumentation.spring-scheduling.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "spring-scheduling-3.1" - ] + "instrumentations": ["spring-scheduling-3.1"] }, { "default": "ROLE_", "description": "Prefix of granted authorities identifying roles to capture in the `enduser.role` semantic attribute.", "name": "otel.instrumentation.spring-security.enduser.role.granted-authority-prefix", "type": "string", - "instrumentations": [ - "spring-security-config-6.0" - ] + "instrumentations": ["spring-security-config-6.0"] }, { "default": "SCOPE_", "description": "Prefix of granted authorities identifying scopes to capture in the `enduser.scopes` semantic attribute.", "name": "otel.instrumentation.spring-security.scope.role.granted-authority-prefix", "type": "string", - "instrumentations": [ - "spring-security-config-6.0" - ] + "instrumentations": ["spring-security-config-6.0"] }, { "default": false, "description": "Enables the capture of experimental span attributes `spring-webmvc.view.name` and `spring-webmvc.view.type`.", "name": "otel.instrumentation.spring-webmvc.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "spring-webmvc-6.0", - "spring-webmvc-3.1" - ] + "instrumentations": ["spring-webmvc-6.0", "spring-webmvc-3.1"] }, { "default": false, "description": "Enables experimental span attributes `spymemcached.result` and `spymemcached.command.cancelled`.", "name": "otel.instrumentation.spymemcached.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "spymemcached-2.12" - ] + "instrumentations": ["spymemcached-2.12"] }, { "default": false, "description": "Enables experimental span attributes `twilio.type`, `twilio.account`, `twilio.sid`, and `twilio.status`.", "name": "otel.instrumentation.twilio.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "twilio-6.6" - ] + "instrumentations": ["twilio-6.6"] }, { "default": false, "description": "Enables experimental span attributes `job.system`, `scheduling.xxl-job.glue.type`, and `scheduling.xxl-job.job.id`.", "name": "otel.instrumentation.xxl-job.experimental-span-attributes", "type": "boolean", - "instrumentations": [ - "xxl-job-2.1.2", - "xxl-job-1.9.2", - "xxl-job-2.3.0" - ] + "instrumentations": ["xxl-job-2.1.2", "xxl-job-1.9.2", "xxl-job-2.3.0"] }, { "default": "", "description": "Opt-in to emit stable semantic conventions instead of the old experimental semantic conventions. Accepts a comma-separated list of semantic convention groups (e.g., `database`, `http`, `messaging`). Use `/dup` to emit both old and new conventions simultaneously. Stable semantic conventions will become the default in version 3.0 of the agent.", "name": "otel.semconv-stability.opt-in", "type": "list", - "instrumentations": [ - "apache-dbcp-2.0", - "alibaba-druid-1.0", - "tomcat-jdbc" - ] + "instrumentations": ["apache-dbcp-2.0", "alibaba-druid-1.0", "tomcat-jdbc"] } -] \ No newline at end of file +] diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/activej-http-6.0/activej-http-6.0-0c06e27be5e8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/activej-http-6.0/activej-http-6.0-0c06e27be5e8.json index 196d6b5c..c8eb547c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/activej-http-6.0/activej-http-6.0-0c06e27be5e8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/activej-http-6.0/activej-http-6.0-0c06e27be5e8.json @@ -32,9 +32,7 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for the ActiveJ HTTP server.", "display_name": "ActiveJ", "has_javaagent": true, - "javaagent_target_versions": [ - "io.activej:activej-http:[6.0,)" - ], + "javaagent_target_versions": ["io.activej:activej-http:[6.0,)"], "library_link": "https://activej.io/", "minimum_java_version": 17, "name": "activej-http-6.0", @@ -42,10 +40,7 @@ "name": "io.opentelemetry.activej-http-6.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/activej-http-6.0", "telemetry": [ { @@ -134,4 +129,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/activej-http-6.0/activej-http-6.0-66f3ecd869cf.json b/ecosystem-explorer/public/data/javaagent/instrumentations/activej-http-6.0/activej-http-6.0-66f3ecd869cf.json index 0cac4bd0..43d2d5e8 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/activej-http-6.0/activej-http-6.0-66f3ecd869cf.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/activej-http-6.0/activej-http-6.0-66f3ecd869cf.json @@ -32,9 +32,7 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for the ActiveJ HTTP server.", "display_name": "ActiveJ", "has_javaagent": true, - "javaagent_target_versions": [ - "io.activej:activej-http:[6.0,)" - ], + "javaagent_target_versions": ["io.activej:activej-http:[6.0,)"], "library_link": "https://activej.io/", "minimum_java_version": 17, "name": "activej-http-6.0", @@ -42,14 +40,9 @@ "name": "io.opentelemetry.activej-http-6.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/activej-http-6.0", - "tags": [ - "activej" - ], + "tags": ["activej"], "telemetry": [ { "metrics": [ @@ -137,4 +130,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-2.3/akka-actor-2.3-157cb9222c9a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-2.3/akka-actor-2.3-157cb9222c9a.json index 714283a6..18e13549 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-2.3/akka-actor-2.3-157cb9222c9a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-2.3/akka-actor-2.3-157cb9222c9a.json @@ -1,9 +1,7 @@ { "description": "This instrumentation provides context propagation for Akka actors, it does not emit any telemetry on its own.", "display_name": "Akka Actors", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "com.typesafe.akka:akka-actor_2.11:[2.3,)", @@ -16,7 +14,5 @@ "name": "io.opentelemetry.akka-actor-2.3" }, "source_path": "instrumentation/akka/akka-actor-2.3", - "tags": [ - "akka" - ] -} \ No newline at end of file + "tags": ["akka"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-2.3/akka-actor-2.3-680dea64d079.json b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-2.3/akka-actor-2.3-680dea64d079.json index a24d79b9..94348109 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-2.3/akka-actor-2.3-680dea64d079.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-2.3/akka-actor-2.3-680dea64d079.json @@ -1,9 +1,7 @@ { "description": "This instrumentation provides context propagation for Akka actors, it does not emit any telemetry on its own.", "display_name": "Akka Actors", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "com.typesafe.akka:akka-actor_2.11:[2.3,)", @@ -16,4 +14,4 @@ "name": "io.opentelemetry.akka-actor-2.3" }, "source_path": "instrumentation/akka/akka-actor-2.3" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-fork-join-2.5/akka-actor-fork-join-2.5-801215e5e449.json b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-fork-join-2.5/akka-actor-fork-join-2.5-801215e5e449.json index 0daaef4a..c1e7a977 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-fork-join-2.5/akka-actor-fork-join-2.5-801215e5e449.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-fork-join-2.5/akka-actor-fork-join-2.5-801215e5e449.json @@ -1,9 +1,7 @@ { "description": "This instrumentation provides context propagation for the Akka Fork-Join Pool, it does not emit any telemetry on its own.", "display_name": "Akka Actors", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "com.typesafe.akka:akka-actor_2.12:[2.5,2.6)", @@ -16,4 +14,4 @@ "name": "io.opentelemetry.akka-actor-fork-join-2.5" }, "source_path": "instrumentation/akka/akka-actor-fork-join-2.5" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-fork-join-2.5/akka-actor-fork-join-2.5-b02fd1008ec8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-fork-join-2.5/akka-actor-fork-join-2.5-b02fd1008ec8.json index 778c13f8..ac32e019 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-fork-join-2.5/akka-actor-fork-join-2.5-b02fd1008ec8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-actor-fork-join-2.5/akka-actor-fork-join-2.5-b02fd1008ec8.json @@ -1,9 +1,7 @@ { "description": "This instrumentation provides context propagation for the Akka Fork-Join Pool, it does not emit any telemetry on its own.", "display_name": "Akka Actors", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "com.typesafe.akka:akka-actor_2.12:[2.5,2.6)", @@ -16,7 +14,5 @@ "name": "io.opentelemetry.akka-actor-fork-join-2.5" }, "source_path": "instrumentation/akka/akka-actor-fork-join-2.5", - "tags": [ - "akka" - ] -} \ No newline at end of file + "tags": ["akka"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-http-10.0/akka-http-10.0-42b8280b242d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-http-10.0/akka-http-10.0-42b8280b242d.json index 86fee52c..e84237c0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-http-10.0/akka-http-10.0-42b8280b242d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-http-10.0/akka-http-10.0-42b8280b242d.json @@ -57,10 +57,7 @@ ], "description": "This instrumentation enables HTTP client spans and metrics for the Akka HTTP client, and HTTP server spans and metrics for the Akka HTTP server.", "display_name": "Akka HTTP", - "features": [ - "HTTP_ROUTE", - "CONTEXT_PROPAGATION" - ], + "features": ["HTTP_ROUTE", "CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "com.typesafe.akka:akka-http_2.12:[10,)", @@ -392,4 +389,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-http-10.0/akka-http-10.0-b9a79c05f734.json b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-http-10.0/akka-http-10.0-b9a79c05f734.json index 27416ca1..07cf1489 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/akka-http-10.0/akka-http-10.0-b9a79c05f734.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/akka-http-10.0/akka-http-10.0-b9a79c05f734.json @@ -57,10 +57,7 @@ ], "description": "This instrumentation enables HTTP client spans and metrics for the Akka HTTP client, and HTTP server spans and metrics for the Akka HTTP server.", "display_name": "Akka HTTP", - "features": [ - "HTTP_ROUTE", - "CONTEXT_PROPAGATION" - ], + "features": ["HTTP_ROUTE", "CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "com.typesafe.akka:akka-http_2.12:[10,)", @@ -80,9 +77,7 @@ "HTTP_SERVER_METRICS" ], "source_path": "instrumentation/akka/akka-http-10.0", - "tags": [ - "akka" - ], + "tags": ["akka"], "telemetry": [ { "metrics": [ @@ -395,4 +390,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/alibaba-druid-1.0/alibaba-druid-1.0-982ed0903c9c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/alibaba-druid-1.0/alibaba-druid-1.0-982ed0903c9c.json index bafa617e..6fee3733 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/alibaba-druid-1.0/alibaba-druid-1.0-982ed0903c9c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/alibaba-druid-1.0/alibaba-druid-1.0-982ed0903c9c.json @@ -11,21 +11,15 @@ "display_name": "Alibaba Druid", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.alibaba:druid:(,)" - ], + "javaagent_target_versions": ["com.alibaba:druid:(,)"], "library_link": "https://github.com/alibaba/druid", "name": "alibaba-druid-1.0", "scope": { "name": "io.opentelemetry.alibaba-druid-1.0" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/alibaba-druid-1.0", - "tags": [ - "alibaba" - ], + "tags": ["alibaba"], "telemetry": [ { "metrics": [ @@ -176,4 +170,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/alibaba-druid-1.0/alibaba-druid-1.0-b567e7394a79.json b/ecosystem-explorer/public/data/javaagent/instrumentations/alibaba-druid-1.0/alibaba-druid-1.0-b567e7394a79.json index fc032e36..ab8e6387 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/alibaba-druid-1.0/alibaba-druid-1.0-b567e7394a79.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/alibaba-druid-1.0/alibaba-druid-1.0-b567e7394a79.json @@ -11,17 +11,13 @@ "display_name": "Alibaba Druid", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.alibaba:druid:(,)" - ], + "javaagent_target_versions": ["com.alibaba:druid:(,)"], "library_link": "https://github.com/alibaba/druid", "name": "alibaba-druid-1.0", "scope": { "name": "io.opentelemetry.alibaba-druid-1.0" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/alibaba-druid-1.0", "telemetry": [ { @@ -173,4 +169,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dbcp-2.0/apache-dbcp-2.0-2ab665f0d98d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dbcp-2.0/apache-dbcp-2.0-2ab665f0d98d.json index f9621007..e948da1c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dbcp-2.0/apache-dbcp-2.0-2ab665f0d98d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dbcp-2.0/apache-dbcp-2.0-2ab665f0d98d.json @@ -11,21 +11,15 @@ "display_name": "Apache DBCP", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.apache.commons:commons-dbcp2:[2,)" - ], + "javaagent_target_versions": ["org.apache.commons:commons-dbcp2:[2,)"], "library_link": "https://commons.apache.org/proper/commons-dbcp/", "name": "apache-dbcp-2.0", "scope": { "name": "io.opentelemetry.apache-dbcp-2.0" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/apache-dbcp-2.0", - "tags": [ - "apache" - ], + "tags": ["apache"], "telemetry": [ { "metrics": [ @@ -150,4 +144,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dbcp-2.0/apache-dbcp-2.0-8f5842251e10.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dbcp-2.0/apache-dbcp-2.0-8f5842251e10.json index 65e41537..b5bdc82f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dbcp-2.0/apache-dbcp-2.0-8f5842251e10.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dbcp-2.0/apache-dbcp-2.0-8f5842251e10.json @@ -11,17 +11,13 @@ "display_name": "Apache DBCP", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.apache.commons:commons-dbcp2:[2,)" - ], + "javaagent_target_versions": ["org.apache.commons:commons-dbcp2:[2,)"], "library_link": "https://commons.apache.org/proper/commons-dbcp/", "name": "apache-dbcp-2.0", "scope": { "name": "io.opentelemetry.apache-dbcp-2.0" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/apache-dbcp-2.0", "telemetry": [ { @@ -147,4 +143,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dubbo-2.7/apache-dubbo-2.7-0b5901f7ad34.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dubbo-2.7/apache-dubbo-2.7-0b5901f7ad34.json index cbe81ced..e439c175 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dubbo-2.7/apache-dubbo-2.7-0b5901f7ad34.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dubbo-2.7/apache-dubbo-2.7-0b5901f7ad34.json @@ -10,9 +10,7 @@ "description": "The Apache Dubbo instrumentation provides RPC client spans and metrics, and RPC server spans and metrics for Apache Dubbo RPC calls.", "display_name": "Apache Dubbo", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.dubbo:dubbo:[2.7,)" - ], + "javaagent_target_versions": ["org.apache.dubbo:dubbo:[2.7,)"], "library_link": "https://github.com/apache/dubbo/", "name": "apache-dubbo-2.7", "scope": { @@ -233,4 +231,4 @@ "when": "otel.semconv-stability.opt-in=rpc,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dubbo-2.7/apache-dubbo-2.7-8da21f51a58d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dubbo-2.7/apache-dubbo-2.7-8da21f51a58d.json index 20eb55bd..4c9c3a7c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dubbo-2.7/apache-dubbo-2.7-8da21f51a58d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-dubbo-2.7/apache-dubbo-2.7-8da21f51a58d.json @@ -10,9 +10,7 @@ "description": "The Apache Dubbo instrumentation provides RPC client spans and metrics, and RPC server spans and metrics for Apache Dubbo RPC calls.", "display_name": "Apache Dubbo", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.dubbo:dubbo:[2.7,)" - ], + "javaagent_target_versions": ["org.apache.dubbo:dubbo:[2.7,)"], "library_link": "https://github.com/apache/dubbo/", "name": "apache-dubbo-2.7", "scope": { @@ -25,9 +23,7 @@ "RPC_SERVER_METRICS" ], "source_path": "instrumentation/apache-dubbo-2.7", - "tags": [ - "apache" - ], + "tags": ["apache"], "telemetry": [ { "metrics": [ @@ -141,4 +137,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-elasticjob-3.0/apache-elasticjob-3.0-4709a926d1d2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-elasticjob-3.0/apache-elasticjob-3.0-4709a926d1d2.json index 7250028c..c50906f3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-elasticjob-3.0/apache-elasticjob-3.0-4709a926d1d2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-elasticjob-3.0/apache-elasticjob-3.0-4709a926d1d2.json @@ -85,4 +85,4 @@ "when": "otel.instrumentation.apache-elasticjob.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-elasticjob-3.0/apache-elasticjob-3.0-dfcbe5ba90b9.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-elasticjob-3.0/apache-elasticjob-3.0-dfcbe5ba90b9.json index f97621af..a98af8bc 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-elasticjob-3.0/apache-elasticjob-3.0-dfcbe5ba90b9.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-elasticjob-3.0/apache-elasticjob-3.0-dfcbe5ba90b9.json @@ -19,9 +19,7 @@ "name": "io.opentelemetry.apache-elasticjob-3.0" }, "source_path": "instrumentation/apache-elasticjob-3.0", - "tags": [ - "apache" - ], + "tags": ["apache"], "telemetry": [ { "spans": [ @@ -88,4 +86,4 @@ "when": "otel.instrumentation.apache-elasticjob.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpasyncclient-4.1/apache-httpasyncclient-4.1-2e023bb38cd1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpasyncclient-4.1/apache-httpasyncclient-4.1-2e023bb38cd1.json index 9ef4f04e..4bba92b5 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpasyncclient-4.1/apache-httpasyncclient-4.1-2e023bb38cd1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpasyncclient-4.1/apache-httpasyncclient-4.1-2e023bb38cd1.json @@ -40,19 +40,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the Apache HttpAsyncClient.", "display_name": "Apache HttpAsyncClient", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.httpcomponents:httpasyncclient:[4.1,)" - ], + "javaagent_target_versions": ["org.apache.httpcomponents:httpasyncclient:[4.1,)"], "library_link": "https://hc.apache.org/index.html", "name": "apache-httpasyncclient-4.1", "scope": { "name": "io.opentelemetry.apache-httpasyncclient-4.1", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpasyncclient-4.1", "telemetry": [ { @@ -210,4 +205,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpasyncclient-4.1/apache-httpasyncclient-4.1-982852ce5353.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpasyncclient-4.1/apache-httpasyncclient-4.1-982852ce5353.json index 534edd0b..a29af8d3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpasyncclient-4.1/apache-httpasyncclient-4.1-982852ce5353.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpasyncclient-4.1/apache-httpasyncclient-4.1-982852ce5353.json @@ -40,23 +40,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the Apache HttpAsyncClient.", "display_name": "Apache HttpAsyncClient", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.httpcomponents:httpasyncclient:[4.1,)" - ], + "javaagent_target_versions": ["org.apache.httpcomponents:httpasyncclient:[4.1,)"], "library_link": "https://hc.apache.org/index.html", "name": "apache-httpasyncclient-4.1", "scope": { "name": "io.opentelemetry.apache-httpasyncclient-4.1", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpasyncclient-4.1", - "tags": [ - "apache" - ], + "tags": ["apache"], "telemetry": [ { "metrics": [ @@ -213,4 +206,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-2.0/apache-httpclient-2.0-980ac136d4d2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-2.0/apache-httpclient-2.0-980ac136d4d2.json index 18e14623..a25785e4 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-2.0/apache-httpclient-2.0-980ac136d4d2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-2.0/apache-httpclient-2.0-980ac136d4d2.json @@ -40,23 +40,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for versions 2 and 3 of the Apache HttpClient.", "display_name": "Apache HttpClient", "has_javaagent": true, - "javaagent_target_versions": [ - "commons-httpclient:commons-httpclient:[2.0,4.0)" - ], + "javaagent_target_versions": ["commons-httpclient:commons-httpclient:[2.0,4.0)"], "library_link": "https://hc.apache.org/index.html", "name": "apache-httpclient-2.0", "scope": { "name": "io.opentelemetry.apache-httpclient-2.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpclient/apache-httpclient-2.0", - "tags": [ - "apache" - ], + "tags": ["apache"], "telemetry": [ { "metrics": [ @@ -205,4 +198,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-2.0/apache-httpclient-2.0-ed8704d62b8b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-2.0/apache-httpclient-2.0-ed8704d62b8b.json index 9d4c0c53..8255d26f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-2.0/apache-httpclient-2.0-ed8704d62b8b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-2.0/apache-httpclient-2.0-ed8704d62b8b.json @@ -40,19 +40,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for versions 2 and 3 of the Apache HttpClient.", "display_name": "Apache HttpClient", "has_javaagent": true, - "javaagent_target_versions": [ - "commons-httpclient:commons-httpclient:[2.0,4.0)" - ], + "javaagent_target_versions": ["commons-httpclient:commons-httpclient:[2.0,4.0)"], "library_link": "https://hc.apache.org/index.html", "name": "apache-httpclient-2.0", "scope": { "name": "io.opentelemetry.apache-httpclient-2.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpclient/apache-httpclient-2.0", "telemetry": [ { @@ -202,4 +197,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.0/apache-httpclient-4.0-a664d0bd2ba7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.0/apache-httpclient-4.0-a664d0bd2ba7.json index d4b6c3bc..065c4170 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.0/apache-httpclient-4.0-a664d0bd2ba7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.0/apache-httpclient-4.0-a664d0bd2ba7.json @@ -50,14 +50,9 @@ "name": "io.opentelemetry.apache-httpclient-4.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpclient/apache-httpclient-4.0", - "tags": [ - "apache" - ], + "tags": ["apache"], "telemetry": [ { "metrics": [ @@ -137,4 +132,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.0/apache-httpclient-4.0-f59e07e9b8ec.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.0/apache-httpclient-4.0-f59e07e9b8ec.json index 71bd8007..e810b906 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.0/apache-httpclient-4.0-f59e07e9b8ec.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.0/apache-httpclient-4.0-f59e07e9b8ec.json @@ -50,10 +50,7 @@ "name": "io.opentelemetry.apache-httpclient-4.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpclient/apache-httpclient-4.0", "telemetry": [ { @@ -211,4 +208,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.3/apache-httpclient-4.3-223bf320d5b7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.3/apache-httpclient-4.3-223bf320d5b7.json index 5f2f55ba..36121005 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.3/apache-httpclient-4.3-223bf320d5b7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.3/apache-httpclient-4.3-223bf320d5b7.json @@ -8,10 +8,7 @@ "name": "io.opentelemetry.apache-httpclient-4.3", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpclient/apache-httpclient-4.3", "telemetry": [ { @@ -92,4 +89,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.3/apache-httpclient-4.3-4522dcfa583e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.3/apache-httpclient-4.3-4522dcfa583e.json index 58296d42..bbe14a06 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.3/apache-httpclient-4.3-4522dcfa583e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-4.3/apache-httpclient-4.3-4522dcfa583e.json @@ -8,14 +8,9 @@ "name": "io.opentelemetry.apache-httpclient-4.3", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpclient/apache-httpclient-4.3", - "tags": [ - "apache" - ], + "tags": ["apache"], "telemetry": [ { "metrics": [ @@ -95,4 +90,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.0/apache-httpclient-5.0-7e3966561aee.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.0/apache-httpclient-5.0-7e3966561aee.json index 0528aee6..cb57eb75 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.0/apache-httpclient-5.0-7e3966561aee.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.0/apache-httpclient-5.0-7e3966561aee.json @@ -40,23 +40,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for version 5 of the Apache HttpClient.", "display_name": "Apache HttpClient", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.httpcomponents.client5:httpclient5:[5.0,)" - ], + "javaagent_target_versions": ["org.apache.httpcomponents.client5:httpclient5:[5.0,)"], "library_link": "https://hc.apache.org/index.html", "name": "apache-httpclient-5.0", "scope": { "name": "io.opentelemetry.apache-httpclient-5.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpclient/apache-httpclient-5.0", - "tags": [ - "apache" - ], + "tags": ["apache"], "telemetry": [ { "metrics": [ @@ -213,4 +206,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.0/apache-httpclient-5.0-f59bbb3a2cbe.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.0/apache-httpclient-5.0-f59bbb3a2cbe.json index c419528f..2f24d3bc 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.0/apache-httpclient-5.0-f59bbb3a2cbe.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.0/apache-httpclient-5.0-f59bbb3a2cbe.json @@ -40,19 +40,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for version 5 of the Apache HttpClient.", "display_name": "Apache HttpClient", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.httpcomponents.client5:httpclient5:[5.0,)" - ], + "javaagent_target_versions": ["org.apache.httpcomponents.client5:httpclient5:[5.0,)"], "library_link": "https://hc.apache.org/index.html", "name": "apache-httpclient-5.0", "scope": { "name": "io.opentelemetry.apache-httpclient-5.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpclient/apache-httpclient-5.0", "telemetry": [ { @@ -210,4 +205,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.2/apache-httpclient-5.2-aa009dad0c47.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.2/apache-httpclient-5.2-aa009dad0c47.json index 3aa94145..f5addd13 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.2/apache-httpclient-5.2-aa009dad0c47.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.2/apache-httpclient-5.2-aa009dad0c47.json @@ -8,14 +8,9 @@ "name": "io.opentelemetry.apache-httpclient-5.2", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpclient/apache-httpclient-5.2", - "tags": [ - "apache" - ], + "tags": ["apache"], "telemetry": [ { "metrics": [ @@ -95,4 +90,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.2/apache-httpclient-5.2-c1d08a345f0d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.2/apache-httpclient-5.2-c1d08a345f0d.json index a64d3a99..a3f09200 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.2/apache-httpclient-5.2-c1d08a345f0d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-httpclient-5.2/apache-httpclient-5.2-c1d08a345f0d.json @@ -8,10 +8,7 @@ "name": "io.opentelemetry.apache-httpclient-5.2", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/apache-httpclient/apache-httpclient-5.2", "telemetry": [ { @@ -92,4 +89,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-shenyu-2.4/apache-shenyu-2.4-6d71c0328b0d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-shenyu-2.4/apache-shenyu-2.4-6d71c0328b0d.json index dfa31189..ae4391b6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-shenyu-2.4/apache-shenyu-2.4-6d71c0328b0d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-shenyu-2.4/apache-shenyu-2.4-6d71c0328b0d.json @@ -9,20 +9,14 @@ ], "description": "This instrumentation does not emit telemetry on its own. Instead, it augments existing HTTP server spans and HTTP server metrics with the HTTP route and Shenyu specific attributes.", "display_name": "Apache ShenYu", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.shenyu:shenyu-web:[2.4.0,)" - ], + "javaagent_target_versions": ["org.apache.shenyu:shenyu-web:[2.4.0,)"], "library_link": "https://shenyu.apache.org/", "name": "apache-shenyu-2.4", "scope": { "name": "io.opentelemetry.apache-shenyu-2.4" }, "source_path": "instrumentation/apache-shenyu-2.4", - "tags": [ - "apache" - ] -} \ No newline at end of file + "tags": ["apache"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-shenyu-2.4/apache-shenyu-2.4-dafb85a5e213.json b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-shenyu-2.4/apache-shenyu-2.4-dafb85a5e213.json index 99ba5fbb..b4b12526 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/apache-shenyu-2.4/apache-shenyu-2.4-dafb85a5e213.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/apache-shenyu-2.4/apache-shenyu-2.4-dafb85a5e213.json @@ -9,17 +9,13 @@ ], "description": "This instrumentation does not emit telemetry on its own. Instead, it augments existing HTTP server spans and HTTP server metrics with the HTTP route and Shenyu specific attributes.", "display_name": "Apache ShenYu", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.shenyu:shenyu-web:[2.4.0,)" - ], + "javaagent_target_versions": ["org.apache.shenyu:shenyu-web:[2.4.0,)"], "library_link": "https://shenyu.apache.org/", "name": "apache-shenyu-2.4", "scope": { "name": "io.opentelemetry.apache-shenyu-2.4" }, "source_path": "instrumentation/apache-shenyu-2.4" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-1.3/armeria-1.3-5416ec568522.json b/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-1.3/armeria-1.3-5416ec568522.json index bbc2c79f..968a7ff0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-1.3/armeria-1.3-5416ec568522.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-1.3/armeria-1.3-5416ec568522.json @@ -65,14 +65,10 @@ ], "description": "This instrumentation enables HTTP client spans and metrics for the Armeria HTTP client, and HTTP server spans and metrics for the Armeria HTTP server.", "display_name": "Armeria", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.linecorp.armeria:armeria:[1.3.0,)" - ], + "javaagent_target_versions": ["com.linecorp.armeria:armeria:[1.3.0,)"], "library_link": "https://armeria.dev/", "name": "armeria-1.3", "scope": { @@ -430,4 +426,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-1.3/armeria-1.3-d36b6a466da9.json b/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-1.3/armeria-1.3-d36b6a466da9.json index 1608744d..2efb4987 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-1.3/armeria-1.3-d36b6a466da9.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-1.3/armeria-1.3-d36b6a466da9.json @@ -65,14 +65,10 @@ ], "description": "This instrumentation enables HTTP client spans and metrics for the Armeria HTTP client, and HTTP server spans and metrics for the Armeria HTTP server.", "display_name": "Armeria", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.linecorp.armeria:armeria:[1.3.0,)" - ], + "javaagent_target_versions": ["com.linecorp.armeria:armeria:[1.3.0,)"], "library_link": "https://armeria.dev/", "name": "armeria-1.3", "scope": { @@ -86,9 +82,7 @@ "HTTP_SERVER_METRICS" ], "source_path": "instrumentation/armeria/armeria-1.3", - "tags": [ - "armeria" - ], + "tags": ["armeria"], "telemetry": [ { "metrics": [ @@ -433,4 +427,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-grpc-1.14/armeria-grpc-1.14-09ef94d9dccd.json b/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-grpc-1.14/armeria-grpc-1.14-09ef94d9dccd.json index 83749f96..db02a94a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-grpc-1.14/armeria-grpc-1.14-09ef94d9dccd.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-grpc-1.14/armeria-grpc-1.14-09ef94d9dccd.json @@ -2,18 +2,14 @@ "description": "This instrumentation enables RPC client spans and metrics for the Armeria gRPC client, and RPC server spans and metrics for the Armeria gRPC server.", "display_name": "Armeria gRPC", "has_javaagent": true, - "javaagent_target_versions": [ - "com.linecorp.armeria:armeria-grpc:[1.14.0,)" - ], + "javaagent_target_versions": ["com.linecorp.armeria:armeria-grpc:[1.14.0,)"], "library_link": "https://armeria.dev/", "name": "armeria-grpc-1.14", "scope": { "name": "io.opentelemetry.armeria-grpc-1.14" }, "source_path": "instrumentation/armeria/armeria-grpc-1.14", - "tags": [ - "armeria" - ], + "tags": ["armeria"], "telemetry": [ { "spans": [ @@ -134,4 +130,4 @@ "when": "otel.semconv-stability.opt-in=rpc" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-grpc-1.14/armeria-grpc-1.14-7f5d2e603cdc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-grpc-1.14/armeria-grpc-1.14-7f5d2e603cdc.json index 02485b43..be09bfec 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-grpc-1.14/armeria-grpc-1.14-7f5d2e603cdc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/armeria-grpc-1.14/armeria-grpc-1.14-7f5d2e603cdc.json @@ -2,9 +2,7 @@ "description": "This instrumentation enables RPC client spans and metrics for the Armeria gRPC client, and RPC server spans and metrics for the Armeria gRPC server.", "display_name": "Armeria gRPC", "has_javaagent": true, - "javaagent_target_versions": [ - "com.linecorp.armeria:armeria-grpc:[1.14.0,)" - ], + "javaagent_target_versions": ["com.linecorp.armeria:armeria-grpc:[1.14.0,)"], "library_link": "https://armeria.dev/", "name": "armeria-grpc-1.14", "scope": { @@ -131,4 +129,4 @@ "when": "otel.semconv-stability.opt-in=rpc" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.8/async-http-client-1.8-c7883bdc84eb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.8/async-http-client-1.8-c7883bdc84eb.json index 8e69d152..8341aadb 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.8/async-http-client-1.8-c7883bdc84eb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.8/async-http-client-1.8-c7883bdc84eb.json @@ -45,19 +45,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the AsyncHttpClient HTTP client.", "display_name": "AsyncHttpClient", "has_javaagent": true, - "javaagent_target_versions": [ - "com.ning:async-http-client:[1.8.0,1.9.0)" - ], + "javaagent_target_versions": ["com.ning:async-http-client:[1.8.0,1.9.0)"], "library_link": "https://github.com/AsyncHttpClient/async-http-client", "name": "async-http-client-1.8", "scope": { "name": "io.opentelemetry.async-http-client-1.8", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/async-http-client/async-http-client-1.8", "telemetry": [ { @@ -199,4 +194,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.8/async-http-client-1.8-e0431b35b288.json b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.8/async-http-client-1.8-e0431b35b288.json index f220caff..995bd1d5 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.8/async-http-client-1.8-e0431b35b288.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.8/async-http-client-1.8-e0431b35b288.json @@ -45,23 +45,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the AsyncHttpClient HTTP client.", "display_name": "AsyncHttpClient", "has_javaagent": true, - "javaagent_target_versions": [ - "com.ning:async-http-client:[1.8.0,1.9.0)" - ], + "javaagent_target_versions": ["com.ning:async-http-client:[1.8.0,1.9.0)"], "library_link": "https://github.com/AsyncHttpClient/async-http-client", "name": "async-http-client-1.8", "scope": { "name": "io.opentelemetry.async-http-client-1.8", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/async-http-client/async-http-client-1.8", - "tags": [ - "async" - ], + "tags": ["async"], "telemetry": [ { "metrics": [ @@ -202,4 +195,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.9/async-http-client-1.9-097e65a5726f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.9/async-http-client-1.9-097e65a5726f.json index 3272a7f4..73a05c79 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.9/async-http-client-1.9-097e65a5726f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.9/async-http-client-1.9-097e65a5726f.json @@ -40,23 +40,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the AsyncHttpClient HTTP client.", "display_name": "AsyncHttpClient", "has_javaagent": true, - "javaagent_target_versions": [ - "com.ning:async-http-client:[1.9.0,)" - ], + "javaagent_target_versions": ["com.ning:async-http-client:[1.9.0,)"], "library_link": "https://github.com/AsyncHttpClient/async-http-client", "name": "async-http-client-1.9", "scope": { "name": "io.opentelemetry.async-http-client-1.9", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/async-http-client/async-http-client-1.9", - "tags": [ - "async" - ], + "tags": ["async"], "telemetry": [ { "metrics": [ @@ -197,4 +190,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.9/async-http-client-1.9-fd1813ae12f8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.9/async-http-client-1.9-fd1813ae12f8.json index 45af5551..6ab5d5c2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.9/async-http-client-1.9-fd1813ae12f8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-1.9/async-http-client-1.9-fd1813ae12f8.json @@ -40,19 +40,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the AsyncHttpClient HTTP client.", "display_name": "AsyncHttpClient", "has_javaagent": true, - "javaagent_target_versions": [ - "com.ning:async-http-client:[1.9.0,)" - ], + "javaagent_target_versions": ["com.ning:async-http-client:[1.9.0,)"], "library_link": "https://github.com/AsyncHttpClient/async-http-client", "name": "async-http-client-1.9", "scope": { "name": "io.opentelemetry.async-http-client-1.9", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/async-http-client/async-http-client-1.9", "telemetry": [ { @@ -194,4 +189,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-2.0/async-http-client-2.0-3864642b70a6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-2.0/async-http-client-2.0-3864642b70a6.json index 89260c58..eae5cfbc 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-2.0/async-http-client-2.0-3864642b70a6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-2.0/async-http-client-2.0-3864642b70a6.json @@ -40,19 +40,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the AsyncHttpClient HTTP client.", "display_name": "AsyncHttpClient", "has_javaagent": true, - "javaagent_target_versions": [ - "org.asynchttpclient:async-http-client:[2.0.0,)" - ], + "javaagent_target_versions": ["org.asynchttpclient:async-http-client:[2.0.0,)"], "library_link": "https://github.com/AsyncHttpClient/async-http-client", "name": "async-http-client-2.0", "scope": { "name": "io.opentelemetry.async-http-client-2.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/async-http-client/async-http-client-2.0", "telemetry": [ { @@ -226,4 +221,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-2.0/async-http-client-2.0-a4d41e0e1eb1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-2.0/async-http-client-2.0-a4d41e0e1eb1.json index 5b266baa..8dce8ed4 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-2.0/async-http-client-2.0-a4d41e0e1eb1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/async-http-client-2.0/async-http-client-2.0-a4d41e0e1eb1.json @@ -40,23 +40,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the AsyncHttpClient HTTP client.", "display_name": "AsyncHttpClient", "has_javaagent": true, - "javaagent_target_versions": [ - "org.asynchttpclient:async-http-client:[2.0.0,)" - ], + "javaagent_target_versions": ["org.asynchttpclient:async-http-client:[2.0.0,)"], "library_link": "https://github.com/AsyncHttpClient/async-http-client", "name": "async-http-client-2.0", "scope": { "name": "io.opentelemetry.async-http-client-2.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/async-http-client/async-http-client-2.0", - "tags": [ - "async" - ], + "tags": ["async"], "telemetry": [ { "metrics": [ @@ -229,4 +222,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/avaje-jex-3.0/avaje-jex-3.0-c7ac64a6ed1e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/avaje-jex-3.0/avaje-jex-3.0-c7ac64a6ed1e.json index 42aca596..5211eead 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/avaje-jex-3.0/avaje-jex-3.0-c7ac64a6ed1e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/avaje-jex-3.0/avaje-jex-3.0-c7ac64a6ed1e.json @@ -1,13 +1,9 @@ { "description": "This instrumentation does not emit telemetry on its own. Instead, it hooks into the Avaje Jex Context to extract the HTTP route and attach it to existing HTTP server spans and HTTP server metrics.", "display_name": "Avaje Jex", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.avaje:avaje-jex:[3.0,)" - ], + "javaagent_target_versions": ["io.avaje:avaje-jex:[3.0,)"], "library_link": "https://avaje.io/jex/", "minimum_java_version": 21, "name": "avaje-jex-3.0", @@ -15,4 +11,4 @@ "name": "io.opentelemetry.avaje-jex-3.0" }, "source_path": "instrumentation/avaje-jex-3.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/avaje-jex-3.0/avaje-jex-3.0-d508d8da7b7a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/avaje-jex-3.0/avaje-jex-3.0-d508d8da7b7a.json index f235f612..0aa514e1 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/avaje-jex-3.0/avaje-jex-3.0-d508d8da7b7a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/avaje-jex-3.0/avaje-jex-3.0-d508d8da7b7a.json @@ -1,13 +1,9 @@ { "description": "This instrumentation does not emit telemetry on its own. Instead, it hooks into the Avaje Jex Context to extract the HTTP route and attach it to existing HTTP server spans and HTTP server metrics.", "display_name": "Avaje Jex", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.avaje:avaje-jex:[3.0,)" - ], + "javaagent_target_versions": ["io.avaje:avaje-jex:[3.0,)"], "library_link": "https://avaje.io/jex/", "minimum_java_version": 21, "name": "avaje-jex-3.0", @@ -15,7 +11,5 @@ "name": "io.opentelemetry.avaje-jex-3.0" }, "source_path": "instrumentation/avaje-jex-3.0", - "tags": [ - "avaje" - ] -} \ No newline at end of file + "tags": ["avaje"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-core-1.0/aws-lambda-core-1.0-dccabde26658.json b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-core-1.0/aws-lambda-core-1.0-dccabde26658.json index 3475065b..6b9d6ff2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-core-1.0/aws-lambda-core-1.0-dccabde26658.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-core-1.0/aws-lambda-core-1.0-dccabde26658.json @@ -11,17 +11,13 @@ "display_name": "AWS Lambda Core", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.amazonaws:aws-lambda-java-core:[1.0.0,)" - ], + "javaagent_target_versions": ["com.amazonaws:aws-lambda-java-core:[1.0.0,)"], "library_link": "https://docs.aws.amazon.com/lambda/latest/dg/java-handler.html", "name": "aws-lambda-core-1.0", "scope": { "name": "io.opentelemetry.aws-lambda-core-1.0" }, - "semantic_conventions": [ - "FAAS_SERVER_SPANS" - ], + "semantic_conventions": ["FAAS_SERVER_SPANS"], "source_path": "instrumentation/aws-lambda/aws-lambda-core-1.0", "telemetry": [ { @@ -39,4 +35,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-core-1.0/aws-lambda-core-1.0-defdaa723cdb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-core-1.0/aws-lambda-core-1.0-defdaa723cdb.json index 8f907679..3b7dc06b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-core-1.0/aws-lambda-core-1.0-defdaa723cdb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-core-1.0/aws-lambda-core-1.0-defdaa723cdb.json @@ -11,21 +11,15 @@ "display_name": "AWS Lambda Core", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.amazonaws:aws-lambda-java-core:[1.0.0,)" - ], + "javaagent_target_versions": ["com.amazonaws:aws-lambda-java-core:[1.0.0,)"], "library_link": "https://docs.aws.amazon.com/lambda/latest/dg/java-handler.html", "name": "aws-lambda-core-1.0", "scope": { "name": "io.opentelemetry.aws-lambda-core-1.0" }, - "semantic_conventions": [ - "FAAS_SERVER_SPANS" - ], + "semantic_conventions": ["FAAS_SERVER_SPANS"], "source_path": "instrumentation/aws-lambda/aws-lambda-core-1.0", - "tags": [ - "aws" - ], + "tags": ["aws"], "telemetry": [ { "spans": [ @@ -42,4 +36,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-2.2/aws-lambda-events-2.2-64e7f2e05333.json b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-2.2/aws-lambda-events-2.2-64e7f2e05333.json index 9bddb28f..db41719c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-2.2/aws-lambda-events-2.2-64e7f2e05333.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-2.2/aws-lambda-events-2.2-64e7f2e05333.json @@ -17,22 +17,15 @@ "display_name": "AWS Lambda Events", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.amazonaws:aws-lambda-java-core:[1.0.0,)" - ], + "javaagent_target_versions": ["com.amazonaws:aws-lambda-java-core:[1.0.0,)"], "library_link": "https://docs.aws.amazon.com/lambda/latest/dg/java-handler.html", "name": "aws-lambda-events-2.2", "scope": { "name": "io.opentelemetry.aws-lambda-events-2.2" }, - "semantic_conventions": [ - "FAAS_SERVER_SPANS", - "MESSAGING_SPANS" - ], + "semantic_conventions": ["FAAS_SERVER_SPANS", "MESSAGING_SPANS"], "source_path": "instrumentation/aws-lambda/aws-lambda-events-2.2", - "tags": [ - "aws" - ], + "tags": ["aws"], "telemetry": [ { "spans": [ @@ -82,4 +75,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-2.2/aws-lambda-events-2.2-679778ddc7ba.json b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-2.2/aws-lambda-events-2.2-679778ddc7ba.json index 0cbd16cd..b69fb63a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-2.2/aws-lambda-events-2.2-679778ddc7ba.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-2.2/aws-lambda-events-2.2-679778ddc7ba.json @@ -17,18 +17,13 @@ "display_name": "AWS Lambda Events", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.amazonaws:aws-lambda-java-core:[1.0.0,)" - ], + "javaagent_target_versions": ["com.amazonaws:aws-lambda-java-core:[1.0.0,)"], "library_link": "https://docs.aws.amazon.com/lambda/latest/dg/java-handler.html", "name": "aws-lambda-events-2.2", "scope": { "name": "io.opentelemetry.aws-lambda-events-2.2" }, - "semantic_conventions": [ - "FAAS_SERVER_SPANS", - "MESSAGING_SPANS" - ], + "semantic_conventions": ["FAAS_SERVER_SPANS", "MESSAGING_SPANS"], "source_path": "instrumentation/aws-lambda/aws-lambda-events-2.2", "telemetry": [ { @@ -79,4 +74,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-3.11/aws-lambda-events-3.11-8ef3949cb9e5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-3.11/aws-lambda-events-3.11-8ef3949cb9e5.json index 09e12f37..9627d692 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-3.11/aws-lambda-events-3.11-8ef3949cb9e5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-3.11/aws-lambda-events-3.11-8ef3949cb9e5.json @@ -15,14 +15,9 @@ "scope": { "name": "io.opentelemetry.aws-lambda-events-3.11" }, - "semantic_conventions": [ - "FAAS_SERVER_SPANS", - "MESSAGING_SPANS" - ], + "semantic_conventions": ["FAAS_SERVER_SPANS", "MESSAGING_SPANS"], "source_path": "instrumentation/aws-lambda/aws-lambda-events-3.11", - "tags": [ - "aws" - ], + "tags": ["aws"], "telemetry": [ { "spans": [ @@ -88,4 +83,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-3.11/aws-lambda-events-3.11-a8e030bb1694.json b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-3.11/aws-lambda-events-3.11-a8e030bb1694.json index c0e6466f..3cfbee18 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-3.11/aws-lambda-events-3.11-a8e030bb1694.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-lambda-events-3.11/aws-lambda-events-3.11-a8e030bb1694.json @@ -15,10 +15,7 @@ "scope": { "name": "io.opentelemetry.aws-lambda-events-3.11" }, - "semantic_conventions": [ - "FAAS_SERVER_SPANS", - "MESSAGING_SPANS" - ], + "semantic_conventions": ["FAAS_SERVER_SPANS", "MESSAGING_SPANS"], "source_path": "instrumentation/aws-lambda/aws-lambda-events-3.11", "telemetry": [ { @@ -85,4 +82,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-1.11/aws-sdk-1.11-a1f6995da249.json b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-1.11/aws-sdk-1.11-a1f6995da249.json index 7c6b6756..57df1608 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-1.11/aws-sdk-1.11-a1f6995da249.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-1.11/aws-sdk-1.11-a1f6995da249.json @@ -44,9 +44,7 @@ "GENAI_CLIENT_METRICS" ], "source_path": "instrumentation/aws-sdk/aws-sdk-1.11", - "tags": [ - "aws" - ], + "tags": ["aws"], "telemetry": [ { "spans": [ @@ -442,4 +440,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-1.11/aws-sdk-1.11-ca5fd6f3ae98.json b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-1.11/aws-sdk-1.11-ca5fd6f3ae98.json index 60a9e0bb..2b99e929 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-1.11/aws-sdk-1.11-ca5fd6f3ae98.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-1.11/aws-sdk-1.11-ca5fd6f3ae98.json @@ -439,4 +439,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-2.2/aws-sdk-2.2-ea9f8c3d0513.json b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-2.2/aws-sdk-2.2-ea9f8c3d0513.json index da5fb018..b12609a8 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-2.2/aws-sdk-2.2-ea9f8c3d0513.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-2.2/aws-sdk-2.2-ea9f8c3d0513.json @@ -68,9 +68,7 @@ "GENAI_CLIENT_METRICS" ], "source_path": "instrumentation/aws-sdk/aws-sdk-2.2", - "tags": [ - "aws" - ], + "tags": ["aws"], "telemetry": [ { "metrics": [ @@ -732,4 +730,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-2.2/aws-sdk-2.2-fcdb750a5cf6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-2.2/aws-sdk-2.2-fcdb750a5cf6.json index 9a757650..dd3fbb9e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-2.2/aws-sdk-2.2-fcdb750a5cf6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/aws-sdk-2.2/aws-sdk-2.2-fcdb750a5cf6.json @@ -729,4 +729,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.14/azure-core-1.14-1c78e57ce42e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.14/azure-core-1.14-1c78e57ce42e.json index 80164891..3913d9cd 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.14/azure-core-1.14-1c78e57ce42e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.14/azure-core-1.14-1c78e57ce42e.json @@ -1,18 +1,13 @@ { "description": "This instrumentation enables context propagation for the Azure Core library, it does not emit any telemetry on its own.", "display_name": "Azure Core", - "features": [ - "CONTEXT_PROPAGATION", - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["CONTEXT_PROPAGATION", "AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.azure:azure-core:[1.14.0,1.19.0)" - ], + "javaagent_target_versions": ["com.azure:azure-core:[1.14.0,1.19.0)"], "library_link": "https://learn.microsoft.com/en-us/java/api/overview/azure/core-readme?view=azure-java-stable", "name": "azure-core-1.14", "scope": { "name": "io.opentelemetry.azure-core-1.14" }, "source_path": "instrumentation/azure-core/azure-core-1.14" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.14/azure-core-1.14-b62f69fb2eda.json b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.14/azure-core-1.14-b62f69fb2eda.json index 9cfe9492..01cb10ab 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.14/azure-core-1.14-b62f69fb2eda.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.14/azure-core-1.14-b62f69fb2eda.json @@ -1,21 +1,14 @@ { "description": "This instrumentation enables context propagation for the Azure Core library, it does not emit any telemetry on its own.", "display_name": "Azure Core", - "features": [ - "CONTEXT_PROPAGATION", - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["CONTEXT_PROPAGATION", "AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.azure:azure-core:[1.14.0,1.19.0)" - ], + "javaagent_target_versions": ["com.azure:azure-core:[1.14.0,1.19.0)"], "library_link": "https://learn.microsoft.com/en-us/java/api/overview/azure/core-readme?view=azure-java-stable", "name": "azure-core-1.14", "scope": { "name": "io.opentelemetry.azure-core-1.14" }, "source_path": "instrumentation/azure-core/azure-core-1.14", - "tags": [ - "azure" - ] -} \ No newline at end of file + "tags": ["azure"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.19/azure-core-1.19-2b5c585ffde3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.19/azure-core-1.19-2b5c585ffde3.json index 10471326..20afaca8 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.19/azure-core-1.19-2b5c585ffde3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.19/azure-core-1.19-2b5c585ffde3.json @@ -1,21 +1,14 @@ { "description": "This instrumentation enables context propagation for the Azure Core library, it does not emit any telemetry on its own.", "display_name": "Azure Core", - "features": [ - "CONTEXT_PROPAGATION", - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["CONTEXT_PROPAGATION", "AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.azure:azure-core:[1.19.0,1.36.0)" - ], + "javaagent_target_versions": ["com.azure:azure-core:[1.19.0,1.36.0)"], "library_link": "https://learn.microsoft.com/en-us/java/api/overview/azure/core-readme?view=azure-java-stable", "name": "azure-core-1.19", "scope": { "name": "io.opentelemetry.azure-core-1.19" }, "source_path": "instrumentation/azure-core/azure-core-1.19", - "tags": [ - "azure" - ] -} \ No newline at end of file + "tags": ["azure"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.19/azure-core-1.19-c2f17bb83b0c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.19/azure-core-1.19-c2f17bb83b0c.json index e88f31f8..f759fde6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.19/azure-core-1.19-c2f17bb83b0c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.19/azure-core-1.19-c2f17bb83b0c.json @@ -1,18 +1,13 @@ { "description": "This instrumentation enables context propagation for the Azure Core library, it does not emit any telemetry on its own.", "display_name": "Azure Core", - "features": [ - "CONTEXT_PROPAGATION", - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["CONTEXT_PROPAGATION", "AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.azure:azure-core:[1.19.0,1.36.0)" - ], + "javaagent_target_versions": ["com.azure:azure-core:[1.19.0,1.36.0)"], "library_link": "https://learn.microsoft.com/en-us/java/api/overview/azure/core-readme?view=azure-java-stable", "name": "azure-core-1.19", "scope": { "name": "io.opentelemetry.azure-core-1.19" }, "source_path": "instrumentation/azure-core/azure-core-1.19" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.36/azure-core-1.36-b37bd58072c2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.36/azure-core-1.36-b37bd58072c2.json index a3a4d0fc..1cbb64d5 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.36/azure-core-1.36-b37bd58072c2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.36/azure-core-1.36-b37bd58072c2.json @@ -1,18 +1,13 @@ { "description": "This instrumentation enables context propagation for the Azure Core library, it does not emit any telemetry on its own.", "display_name": "Azure Core", - "features": [ - "CONTEXT_PROPAGATION", - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["CONTEXT_PROPAGATION", "AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.azure:azure-core:[1.36.0,1.53.0)" - ], + "javaagent_target_versions": ["com.azure:azure-core:[1.36.0,1.53.0)"], "library_link": "https://learn.microsoft.com/en-us/java/api/overview/azure/core-readme?view=azure-java-stable", "name": "azure-core-1.36", "scope": { "name": "io.opentelemetry.azure-core-1.36" }, "source_path": "instrumentation/azure-core/azure-core-1.36" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.36/azure-core-1.36-c5ac930d4946.json b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.36/azure-core-1.36-c5ac930d4946.json index b198b322..de4df263 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.36/azure-core-1.36-c5ac930d4946.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.36/azure-core-1.36-c5ac930d4946.json @@ -1,21 +1,14 @@ { "description": "This instrumentation enables context propagation for the Azure Core library, it does not emit any telemetry on its own.", "display_name": "Azure Core", - "features": [ - "CONTEXT_PROPAGATION", - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["CONTEXT_PROPAGATION", "AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.azure:azure-core:[1.36.0,1.53.0)" - ], + "javaagent_target_versions": ["com.azure:azure-core:[1.36.0,1.53.0)"], "library_link": "https://learn.microsoft.com/en-us/java/api/overview/azure/core-readme?view=azure-java-stable", "name": "azure-core-1.36", "scope": { "name": "io.opentelemetry.azure-core-1.36" }, "source_path": "instrumentation/azure-core/azure-core-1.36", - "tags": [ - "azure" - ] -} \ No newline at end of file + "tags": ["azure"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.53/azure-core-1.53-81229c6f2431.json b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.53/azure-core-1.53-81229c6f2431.json index 7d3238ac..22ecc844 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.53/azure-core-1.53-81229c6f2431.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.53/azure-core-1.53-81229c6f2431.json @@ -1,21 +1,14 @@ { "description": "This instrumentation enables context propagation for the Azure Core library, it does not emit any telemetry on its own.", "display_name": "Azure Core", - "features": [ - "CONTEXT_PROPAGATION", - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["CONTEXT_PROPAGATION", "AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.azure:azure-core:[1.53.0,)" - ], + "javaagent_target_versions": ["com.azure:azure-core:[1.53.0,)"], "library_link": "https://learn.microsoft.com/en-us/java/api/overview/azure/core-readme?view=azure-java-stable", "name": "azure-core-1.53", "scope": { "name": "io.opentelemetry.azure-core-1.53" }, "source_path": "instrumentation/azure-core/azure-core-1.53", - "tags": [ - "azure" - ] -} \ No newline at end of file + "tags": ["azure"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.53/azure-core-1.53-ec74b6b08cf8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.53/azure-core-1.53-ec74b6b08cf8.json index 7a033fb7..0b9547f7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.53/azure-core-1.53-ec74b6b08cf8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/azure-core-1.53/azure-core-1.53-ec74b6b08cf8.json @@ -1,18 +1,13 @@ { "description": "This instrumentation enables context propagation for the Azure Core library, it does not emit any telemetry on its own.", "display_name": "Azure Core", - "features": [ - "CONTEXT_PROPAGATION", - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["CONTEXT_PROPAGATION", "AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.azure:azure-core:[1.53.0,)" - ], + "javaagent_target_versions": ["com.azure:azure-core:[1.53.0,)"], "library_link": "https://learn.microsoft.com/en-us/java/api/overview/azure/core-readme?view=azure-java-stable", "name": "azure-core-1.53", "scope": { "name": "io.opentelemetry.azure-core-1.53" }, "source_path": "instrumentation/azure-core/azure-core-1.53" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/c3p0-0.9/c3p0-0.9-45d1155aaa7a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/c3p0-0.9/c3p0-0.9-45d1155aaa7a.json index ed4d1525..25a00574 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/c3p0-0.9/c3p0-0.9-45d1155aaa7a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/c3p0-0.9/c3p0-0.9-45d1155aaa7a.json @@ -3,21 +3,15 @@ "display_name": "c3p0", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.mchange:c3p0:(,)" - ], + "javaagent_target_versions": ["com.mchange:c3p0:(,)"], "library_link": "https://github.com/swaldman/c3p0", "name": "c3p0-0.9", "scope": { "name": "io.opentelemetry.c3p0-0.9" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/c3p0-0.9", - "tags": [ - "c3p0" - ], + "tags": ["c3p0"], "telemetry": [ { "metrics": [ @@ -90,4 +84,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/c3p0-0.9/c3p0-0.9-8e9e89e2c575.json b/ecosystem-explorer/public/data/javaagent/instrumentations/c3p0-0.9/c3p0-0.9-8e9e89e2c575.json index d6bf58f4..ba609918 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/c3p0-0.9/c3p0-0.9-8e9e89e2c575.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/c3p0-0.9/c3p0-0.9-8e9e89e2c575.json @@ -3,17 +3,13 @@ "display_name": "c3p0", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.mchange:c3p0:(,)" - ], + "javaagent_target_versions": ["com.mchange:c3p0:(,)"], "library_link": "https://github.com/swaldman/c3p0", "name": "c3p0-0.9", "scope": { "name": "io.opentelemetry.c3p0-0.9" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/c3p0-0.9", "telemetry": [ { @@ -87,4 +83,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/camel-2.20/camel-2.20-14edbd09649c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/camel-2.20/camel-2.20-14edbd09649c.json index 56eda34d..3e8a03fe 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/camel-2.20/camel-2.20-14edbd09649c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/camel-2.20/camel-2.20-14edbd09649c.json @@ -10,13 +10,9 @@ ], "description": "This instrumentation enables tracing for Apache Camel 2.x applications by generating spans for each route execution. For Camel versions 3.5 and newer, users should instead use the native 'camel-opentelemetry' component provided directly by the Camel project.", "display_name": "Apache Camel", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.camel:camel-core:[2.19,3)" - ], + "javaagent_target_versions": ["org.apache.camel:camel-core:[2.19,3)"], "library_link": "https://camel.apache.org/", "name": "camel-2.20", "scope": { @@ -321,4 +317,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/camel-2.20/camel-2.20-3cc3cc6a32ad.json b/ecosystem-explorer/public/data/javaagent/instrumentations/camel-2.20/camel-2.20-3cc3cc6a32ad.json index c2d53197..3a4298c4 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/camel-2.20/camel-2.20-3cc3cc6a32ad.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/camel-2.20/camel-2.20-3cc3cc6a32ad.json @@ -10,13 +10,9 @@ ], "description": "This instrumentation enables tracing for Apache Camel 2.x applications by generating spans for each route execution. For Camel versions 3.5 and newer, users should instead use the native 'camel-opentelemetry' component provided directly by the Camel project.", "display_name": "Apache Camel", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.camel:camel-core:[2.19,3)" - ], + "javaagent_target_versions": ["org.apache.camel:camel-core:[2.19,3)"], "library_link": "https://camel.apache.org/", "name": "camel-2.20", "scope": { @@ -29,9 +25,7 @@ "MESSAGING_SPANS" ], "source_path": "instrumentation/camel-2.20", - "tags": [ - "camel" - ], + "tags": ["camel"], "telemetry": [ { "spans": [ @@ -324,4 +318,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-3.0/cassandra-3.0-a6e7a2b0bfe1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-3.0/cassandra-3.0-a6e7a2b0bfe1.json index d56f81ac..676e242a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-3.0/cassandra-3.0-a6e7a2b0bfe1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-3.0/cassandra-3.0-a6e7a2b0bfe1.json @@ -18,18 +18,13 @@ "description": "This instrumentation enables database client spans and database client metrics for the DataStax Cassandra Driver.", "display_name": "Cassandra Driver", "has_javaagent": true, - "javaagent_target_versions": [ - "com.datastax.cassandra:cassandra-driver-core:[3.0,4.0)" - ], + "javaagent_target_versions": ["com.datastax.cassandra:cassandra-driver-core:[3.0,4.0)"], "library_link": "https://github.com/apache/cassandra-java-driver", "name": "cassandra-3.0", "scope": { "name": "io.opentelemetry.cassandra-3.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/cassandra/cassandra-3.0", "telemetry": [ { @@ -164,4 +159,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-3.0/cassandra-3.0-aa959f25969c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-3.0/cassandra-3.0-aa959f25969c.json index 728e990a..98289e47 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-3.0/cassandra-3.0-aa959f25969c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-3.0/cassandra-3.0-aa959f25969c.json @@ -10,22 +10,15 @@ "description": "This instrumentation enables database client spans and database client metrics for the DataStax Cassandra Driver.", "display_name": "Cassandra Driver", "has_javaagent": true, - "javaagent_target_versions": [ - "com.datastax.cassandra:cassandra-driver-core:[3.0,4.0)" - ], + "javaagent_target_versions": ["com.datastax.cassandra:cassandra-driver-core:[3.0,4.0)"], "library_link": "https://github.com/apache/cassandra-java-driver", "name": "cassandra-3.0", "scope": { "name": "io.opentelemetry.cassandra-3.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/cassandra/cassandra-3.0", - "tags": [ - "cassandra" - ], + "tags": ["cassandra"], "telemetry": [ { "spans": [ @@ -159,4 +152,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.0/cassandra-4.0-730fcf002668.json b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.0/cassandra-4.0-730fcf002668.json index 6b172a89..dd817744 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.0/cassandra-4.0-730fcf002668.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.0/cassandra-4.0-730fcf002668.json @@ -10,22 +10,15 @@ "description": "This instrumentation enables database client spans and database client metrics for the DataStax Cassandra Driver.", "display_name": "Cassandra Driver", "has_javaagent": true, - "javaagent_target_versions": [ - "com.datastax.oss:java-driver-core:[4.0,4.4)" - ], + "javaagent_target_versions": ["com.datastax.oss:java-driver-core:[4.0,4.4)"], "library_link": "https://github.com/apache/cassandra-java-driver", "name": "cassandra-4.0", "scope": { "name": "io.opentelemetry.cassandra-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/cassandra/cassandra-4.0", - "tags": [ - "cassandra" - ], + "tags": ["cassandra"], "telemetry": [ { "spans": [ @@ -207,4 +200,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.0/cassandra-4.0-7d821e2ed6d6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.0/cassandra-4.0-7d821e2ed6d6.json index ba669367..bdcd36a9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.0/cassandra-4.0-7d821e2ed6d6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.0/cassandra-4.0-7d821e2ed6d6.json @@ -10,18 +10,13 @@ "description": "This instrumentation enables database client spans and database client metrics for the DataStax Cassandra Driver.", "display_name": "Cassandra Driver", "has_javaagent": true, - "javaagent_target_versions": [ - "com.datastax.oss:java-driver-core:[4.0,4.4)" - ], + "javaagent_target_versions": ["com.datastax.oss:java-driver-core:[4.0,4.4)"], "library_link": "https://github.com/apache/cassandra-java-driver", "name": "cassandra-4.0", "scope": { "name": "io.opentelemetry.cassandra-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/cassandra/cassandra-4.0", "telemetry": [ { @@ -204,4 +199,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.4/cassandra-4.4-0b52bb6b7f9c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.4/cassandra-4.4-0b52bb6b7f9c.json index 75eb994b..b1ecc108 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.4/cassandra-4.4-0b52bb6b7f9c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.4/cassandra-4.4-0b52bb6b7f9c.json @@ -20,14 +20,9 @@ "scope": { "name": "io.opentelemetry.cassandra-4.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/cassandra/cassandra-4.4", - "tags": [ - "cassandra" - ], + "tags": ["cassandra"], "telemetry": [ { "spans": [ @@ -209,4 +204,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.4/cassandra-4.4-31b9caafd967.json b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.4/cassandra-4.4-31b9caafd967.json index 6e52e1f3..52e24db7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.4/cassandra-4.4-31b9caafd967.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/cassandra-4.4/cassandra-4.4-31b9caafd967.json @@ -21,10 +21,7 @@ "scope": { "name": "io.opentelemetry.cassandra-4.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/cassandra/cassandra-4.4", "telemetry": [ { @@ -207,4 +204,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v1-0.5/clickhouse-client-v1-0.5-478207c30cf0.json b/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v1-0.5/clickhouse-client-v1-0.5-478207c30cf0.json index eab7351a..55764d19 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v1-0.5/clickhouse-client-v1-0.5-478207c30cf0.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v1-0.5/clickhouse-client-v1-0.5-478207c30cf0.json @@ -11,18 +11,13 @@ "description": "This instrumentation enables database client spans and database client metrics for the ClickHouse Java Client.", "display_name": "ClickHouse Java Client", "has_javaagent": true, - "javaagent_target_versions": [ - "com.clickhouse:clickhouse-client:[0.5.0,)" - ], + "javaagent_target_versions": ["com.clickhouse:clickhouse-client:[0.5.0,)"], "library_link": "https://github.com/ClickHouse/clickhouse-java", "name": "clickhouse-client-v1-0.5", "scope": { "name": "io.opentelemetry.clickhouse-client-v1-0.5" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/clickhouse/clickhouse-client-v1-0.5", "telemetry": [ { @@ -129,4 +124,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v1-0.5/clickhouse-client-v1-0.5-e8dd06b0bb14.json b/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v1-0.5/clickhouse-client-v1-0.5-e8dd06b0bb14.json index 3cd59bbd..2a938dfd 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v1-0.5/clickhouse-client-v1-0.5-e8dd06b0bb14.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v1-0.5/clickhouse-client-v1-0.5-e8dd06b0bb14.json @@ -10,22 +10,15 @@ "description": "This instrumentation enables database client spans and database client metrics for the ClickHouse Java Client.", "display_name": "ClickHouse Java Client", "has_javaagent": true, - "javaagent_target_versions": [ - "com.clickhouse.client:clickhouse-client:[0.5.0,)" - ], + "javaagent_target_versions": ["com.clickhouse.client:clickhouse-client:[0.5.0,)"], "library_link": "https://github.com/ClickHouse/clickhouse-java", "name": "clickhouse-client-v1-0.5", "scope": { "name": "io.opentelemetry.clickhouse-client-v1-0.5" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/clickhouse/clickhouse-client-v1-0.5", - "tags": [ - "clickhouse" - ], + "tags": ["clickhouse"], "telemetry": [ { "spans": [ @@ -131,4 +124,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v2-0.8/clickhouse-client-v2-0.8-1c1a01c3a091.json b/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v2-0.8/clickhouse-client-v2-0.8-1c1a01c3a091.json index c3949c81..bd64309c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v2-0.8/clickhouse-client-v2-0.8-1c1a01c3a091.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v2-0.8/clickhouse-client-v2-0.8-1c1a01c3a091.json @@ -10,18 +10,13 @@ "description": "This instrumentation enables database client spans and database client metrics for the ClickHouse Java Client.", "display_name": "ClickHouse Java Client", "has_javaagent": true, - "javaagent_target_versions": [ - "com.clickhouse:client-v2:[0.6.4,)" - ], + "javaagent_target_versions": ["com.clickhouse:client-v2:[0.6.4,)"], "library_link": "https://github.com/ClickHouse/clickhouse-java", "name": "clickhouse-client-v2-0.8", "scope": { "name": "io.opentelemetry.clickhouse-client-v2-0.8" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/clickhouse/clickhouse-client-v2-0.8", "telemetry": [ { @@ -128,4 +123,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v2-0.8/clickhouse-client-v2-0.8-440f5e962b15.json b/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v2-0.8/clickhouse-client-v2-0.8-440f5e962b15.json index fc281020..091d4a37 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v2-0.8/clickhouse-client-v2-0.8-440f5e962b15.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/clickhouse-client-v2-0.8/clickhouse-client-v2-0.8-440f5e962b15.json @@ -10,22 +10,15 @@ "description": "This instrumentation enables database client spans and database client metrics for the ClickHouse Java Client.", "display_name": "ClickHouse Java Client", "has_javaagent": true, - "javaagent_target_versions": [ - "com.clickhouse:client-v2:[0.6.4,)" - ], + "javaagent_target_versions": ["com.clickhouse:client-v2:[0.6.4,)"], "library_link": "https://github.com/ClickHouse/clickhouse-java", "name": "clickhouse-client-v2-0.8", "scope": { "name": "io.opentelemetry.clickhouse-client-v2-0.8" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/clickhouse/clickhouse-client-v2-0.8", - "tags": [ - "clickhouse" - ], + "tags": ["clickhouse"], "telemetry": [ { "spans": [ @@ -131,4 +124,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.0/couchbase-2.0-198824bb0923.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.0/couchbase-2.0-198824bb0923.json index 9f966bea..4a6ba168 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.0/couchbase-2.0-198824bb0923.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.0/couchbase-2.0-198824bb0923.json @@ -18,18 +18,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Couchbase 2.0 operations. It automatically traces key-value operations (get, upsert, replace, remove), view queries, N1QL queries, and cluster management operations.", "display_name": "Couchbase Client", "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[2,3)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[2,3)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-2.0", "scope": { "name": "io.opentelemetry.couchbase-2.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/couchbase/couchbase-2.0", "telemetry": [ { @@ -108,4 +103,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.0/couchbase-2.0-8829f7534a67.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.0/couchbase-2.0-8829f7534a67.json index 5e942394..7d7f2948 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.0/couchbase-2.0-8829f7534a67.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.0/couchbase-2.0-8829f7534a67.json @@ -10,22 +10,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Couchbase 2.0 operations. It automatically traces key-value operations (get, upsert, replace, remove), view queries, N1QL queries, and cluster management operations.", "display_name": "Couchbase Client", "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[2,3)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[2,3)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-2.0", "scope": { "name": "io.opentelemetry.couchbase-2.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/couchbase/couchbase-2.0", - "tags": [ - "couchbase" - ], + "tags": ["couchbase"], "telemetry": [ { "spans": [ @@ -103,4 +96,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.6/couchbase-2.6-14c9c3139fb5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.6/couchbase-2.6-14c9c3139fb5.json index 1f1f464e..7c7f9f60 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.6/couchbase-2.6-14c9c3139fb5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.6/couchbase-2.6-14c9c3139fb5.json @@ -17,22 +17,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Couchbase 2.6 operations. It automatically traces key-value operations (get, upsert, replace, remove), view queries, N1QL queries, and cluster management operations.", "display_name": "Couchbase Client", "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[2.6.0,3)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[2.6.0,3)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-2.6", "scope": { "name": "io.opentelemetry.couchbase-2.6" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/couchbase/couchbase-2.6", - "tags": [ - "couchbase" - ], + "tags": ["couchbase"], "telemetry": [ { "spans": [ @@ -184,4 +177,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.6/couchbase-2.6-71a2f8efaebd.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.6/couchbase-2.6-71a2f8efaebd.json index 96ec1a86..05b004c3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.6/couchbase-2.6-71a2f8efaebd.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-2.6/couchbase-2.6-71a2f8efaebd.json @@ -18,18 +18,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Couchbase 2.6 operations. It automatically traces key-value operations (get, upsert, replace, remove), view queries, N1QL queries, and cluster management operations.", "display_name": "Couchbase Client", "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[2.6.0,3)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[2.6.0,3)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-2.6", "scope": { "name": "io.opentelemetry.couchbase-2.6" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/couchbase/couchbase-2.6", "telemetry": [ { @@ -182,4 +177,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1.6/couchbase-3.1.6-0655e936dfd2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1.6/couchbase-3.1.6-0655e936dfd2.json index 19479b6d..3af027cb 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1.6/couchbase-3.1.6-0655e936dfd2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1.6/couchbase-3.1.6-0655e936dfd2.json @@ -1,21 +1,15 @@ { "description": "Couchbase instrumentation is owned by the Couchbase project for versions 3+. This instrumentation automatically configures the instrumentation provided by the Couchbase library.", "display_name": "Couchbase Client", - "features": [ - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[3.1.6,3.2.0)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[3.1.6,3.2.0)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-3.1.6", "scope": { "name": "io.opentelemetry.couchbase-3.1.6" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS"], "source_path": "instrumentation/couchbase/couchbase-3.1.6", "telemetry": [ { @@ -89,4 +83,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1.6/couchbase-3.1.6-b4473271ce5f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1.6/couchbase-3.1.6-b4473271ce5f.json index 4ab878fb..9ec09c83 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1.6/couchbase-3.1.6-b4473271ce5f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1.6/couchbase-3.1.6-b4473271ce5f.json @@ -1,25 +1,17 @@ { "description": "Couchbase instrumentation is owned by the Couchbase project for versions 3+. This instrumentation automatically configures the instrumentation provided by the Couchbase library.", "display_name": "Couchbase Client", - "features": [ - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[3.1.6,3.2.0)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[3.1.6,3.2.0)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-3.1.6", "scope": { "name": "io.opentelemetry.couchbase-3.1.6" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS"], "source_path": "instrumentation/couchbase/couchbase-3.1.6", - "tags": [ - "couchbase" - ], + "tags": ["couchbase"], "telemetry": [ { "spans": [ @@ -92,4 +84,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1/couchbase-3.1-9d7e935d929f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1/couchbase-3.1-9d7e935d929f.json index a104f67b..98bcc92b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1/couchbase-3.1-9d7e935d929f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1/couchbase-3.1-9d7e935d929f.json @@ -1,21 +1,15 @@ { "description": "Couchbase instrumentation is owned by the Couchbase project for versions 3+. This instrumentation automatically configures the instrumentation provided by the Couchbase library.", "display_name": "Couchbase Client", - "features": [ - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[3.1,3.1.6)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[3.1,3.1.6)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-3.1", "scope": { "name": "io.opentelemetry.couchbase-3.1" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS"], "source_path": "instrumentation/couchbase/couchbase-3.1", "telemetry": [ { @@ -85,4 +79,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1/couchbase-3.1-a17b0e1e456a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1/couchbase-3.1-a17b0e1e456a.json index d96222bc..923d0f16 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1/couchbase-3.1-a17b0e1e456a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.1/couchbase-3.1-a17b0e1e456a.json @@ -1,25 +1,17 @@ { "description": "Couchbase instrumentation is owned by the Couchbase project for versions 3+. This instrumentation automatically configures the instrumentation provided by the Couchbase library.", "display_name": "Couchbase Client", - "features": [ - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[3.1,3.1.6)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[3.1,3.1.6)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-3.1", "scope": { "name": "io.opentelemetry.couchbase-3.1" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS"], "source_path": "instrumentation/couchbase/couchbase-3.1", - "tags": [ - "couchbase" - ], + "tags": ["couchbase"], "telemetry": [ { "spans": [ @@ -88,4 +80,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.2/couchbase-3.2-6a8639cba968.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.2/couchbase-3.2-6a8639cba968.json index a9c83d0f..38492431 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.2/couchbase-3.2-6a8639cba968.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.2/couchbase-3.2-6a8639cba968.json @@ -1,25 +1,17 @@ { "description": "Couchbase instrumentation is owned by the Couchbase project for versions 3+. This instrumentation automatically configures the instrumentation provided by the Couchbase library.", "display_name": "Couchbase Client", - "features": [ - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[3.2.0,3.4.0)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[3.2.0,3.4.0)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-3.2", "scope": { "name": "io.opentelemetry.couchbase-3.2" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS"], "source_path": "instrumentation/couchbase/couchbase-3.2", - "tags": [ - "couchbase" - ], + "tags": ["couchbase"], "telemetry": [ { "spans": [ @@ -96,4 +88,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.2/couchbase-3.2-af79242d7e04.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.2/couchbase-3.2-af79242d7e04.json index 9229eb30..2afaef3f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.2/couchbase-3.2-af79242d7e04.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.2/couchbase-3.2-af79242d7e04.json @@ -1,21 +1,15 @@ { "description": "Couchbase instrumentation is owned by the Couchbase project for versions 3+. This instrumentation automatically configures the instrumentation provided by the Couchbase library.", "display_name": "Couchbase Client", - "features": [ - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[3.2.0,3.4.0)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[3.2.0,3.4.0)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-3.2", "scope": { "name": "io.opentelemetry.couchbase-3.2" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS"], "source_path": "instrumentation/couchbase/couchbase-3.2", "telemetry": [ { @@ -93,4 +87,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.4/couchbase-3.4-1bba66c6e04a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.4/couchbase-3.4-1bba66c6e04a.json index 38794492..d0a1699c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.4/couchbase-3.4-1bba66c6e04a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.4/couchbase-3.4-1bba66c6e04a.json @@ -1,21 +1,15 @@ { "description": "Couchbase instrumentation is owned by the Couchbase project for versions 3+. This instrumentation automatically configures the instrumentation provided by the Couchbase library.", "display_name": "Couchbase Client", - "features": [ - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[3.4.0,)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[3.4.0,)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-3.4", "scope": { "name": "io.opentelemetry.couchbase-3.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS"], "source_path": "instrumentation/couchbase/couchbase-3.4", "telemetry": [ { @@ -93,4 +87,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.4/couchbase-3.4-37bebf4d2150.json b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.4/couchbase-3.4-37bebf4d2150.json index 22a315ec..d296716b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.4/couchbase-3.4-37bebf4d2150.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/couchbase-3.4/couchbase-3.4-37bebf4d2150.json @@ -1,25 +1,17 @@ { "description": "Couchbase instrumentation is owned by the Couchbase project for versions 3+. This instrumentation automatically configures the instrumentation provided by the Couchbase library.", "display_name": "Couchbase Client", - "features": [ - "AUTO_INSTRUMENTATION_SHIM" - ], + "features": ["AUTO_INSTRUMENTATION_SHIM"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.couchbase.client:java-client:[3.4.0,)" - ], + "javaagent_target_versions": ["com.couchbase.client:java-client:[3.4.0,)"], "library_link": "https://github.com/couchbase/couchbase-java-client", "name": "couchbase-3.4", "scope": { "name": "io.opentelemetry.couchbase-3.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS"], "source_path": "instrumentation/couchbase/couchbase-3.4", - "tags": [ - "couchbase" - ], + "tags": ["couchbase"], "telemetry": [ { "spans": [ @@ -96,4 +88,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-metrics-4.0/dropwizard-metrics-4.0-59d4aa175066.json b/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-metrics-4.0/dropwizard-metrics-4.0-59d4aa175066.json index 238c85e9..638d1bfe 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-metrics-4.0/dropwizard-metrics-4.0-59d4aa175066.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-metrics-4.0/dropwizard-metrics-4.0-59d4aa175066.json @@ -12,16 +12,12 @@ "disabled_by_default": true, "display_name": "Dropwizard Metrics", "has_javaagent": true, - "javaagent_target_versions": [ - "io.dropwizard.metrics:metrics-core:[4.0.0,)" - ], + "javaagent_target_versions": ["io.dropwizard.metrics:metrics-core:[4.0.0,)"], "library_link": "https://metrics.dropwizard.io/4.2.0/", "name": "dropwizard-metrics-4.0", "scope": { "name": "io.opentelemetry.dropwizard-metrics-4.0" }, "source_path": "instrumentation/dropwizard/dropwizard-metrics-4.0", - "tags": [ - "dropwizard" - ] -} \ No newline at end of file + "tags": ["dropwizard"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-metrics-4.0/dropwizard-metrics-4.0-dc79f12985c7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-metrics-4.0/dropwizard-metrics-4.0-dc79f12985c7.json index 40186f93..decd0231 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-metrics-4.0/dropwizard-metrics-4.0-dc79f12985c7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-metrics-4.0/dropwizard-metrics-4.0-dc79f12985c7.json @@ -12,13 +12,11 @@ "disabled_by_default": true, "display_name": "Dropwizard Metrics", "has_javaagent": true, - "javaagent_target_versions": [ - "io.dropwizard.metrics:metrics-core:[4.0.0,)" - ], + "javaagent_target_versions": ["io.dropwizard.metrics:metrics-core:[4.0.0,)"], "library_link": "https://metrics.dropwizard.io/4.2.0/", "name": "dropwizard-metrics-4.0", "scope": { "name": "io.opentelemetry.dropwizard-metrics-4.0" }, "source_path": "instrumentation/dropwizard/dropwizard-metrics-4.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-views-0.7/dropwizard-views-0.7-0a4acdccfe2f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-views-0.7/dropwizard-views-0.7-0a4acdccfe2f.json index c523278c..9e370b65 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-views-0.7/dropwizard-views-0.7-0a4acdccfe2f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-views-0.7/dropwizard-views-0.7-0a4acdccfe2f.json @@ -10,22 +10,16 @@ ], "description": "This instrumentation enables view spans for Dropwizard view template rendering (view spans are disabled by default).", "display_name": "Dropwizard Views", - "features": [ - "VIEW_SPANS" - ], + "features": ["VIEW_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.dropwizard:dropwizard-views:(,3.0.0)" - ], + "javaagent_target_versions": ["io.dropwizard:dropwizard-views:(,3.0.0)"], "library_link": "https://www.dropwizard.io/en/latest/manual/views.html", "name": "dropwizard-views-0.7", "scope": { "name": "io.opentelemetry.dropwizard-views-0.7" }, "source_path": "instrumentation/dropwizard/dropwizard-views-0.7", - "tags": [ - "dropwizard" - ], + "tags": ["dropwizard"], "telemetry": [ { "spans": [ @@ -37,4 +31,4 @@ "when": "otel.instrumentation.common.experimental.view-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-views-0.7/dropwizard-views-0.7-3a6732c7da16.json b/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-views-0.7/dropwizard-views-0.7-3a6732c7da16.json index c7d1ec75..49b9cf7c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-views-0.7/dropwizard-views-0.7-3a6732c7da16.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/dropwizard-views-0.7/dropwizard-views-0.7-3a6732c7da16.json @@ -10,13 +10,9 @@ ], "description": "This instrumentation enables view spans for Dropwizard view template rendering (view spans are disabled by default).", "display_name": "Dropwizard Views", - "features": [ - "VIEW_SPANS" - ], + "features": ["VIEW_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.dropwizard:dropwizard-views:(,3.0.0)" - ], + "javaagent_target_versions": ["io.dropwizard:dropwizard-views:(,3.0.0)"], "library_link": "https://www.dropwizard.io/en/latest/manual/views.html", "name": "dropwizard-views-0.7", "scope": { @@ -34,4 +30,4 @@ "when": "otel.instrumentation.common.experimental.view-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-api-client-7.16/elasticsearch-api-client-7.16-702d7b0085cd.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-api-client-7.16/elasticsearch-api-client-7.16-702d7b0085cd.json index c61caf3d..c82acb16 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-api-client-7.16/elasticsearch-api-client-7.16-702d7b0085cd.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-api-client-7.16/elasticsearch-api-client-7.16-702d7b0085cd.json @@ -12,9 +12,7 @@ "name": "io.opentelemetry.elasticsearch-api-client-7.16" }, "source_path": "instrumentation/elasticsearch/elasticsearch-api-client-7.16", - "tags": [ - "elasticsearch" - ], + "tags": ["elasticsearch"], "telemetry": [ { "spans": [ @@ -128,4 +126,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-api-client-7.16/elasticsearch-api-client-7.16-d1f86880eee5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-api-client-7.16/elasticsearch-api-client-7.16-d1f86880eee5.json index 2f12902e..653aad6c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-api-client-7.16/elasticsearch-api-client-7.16-d1f86880eee5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-api-client-7.16/elasticsearch-api-client-7.16-d1f86880eee5.json @@ -125,4 +125,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-5.0/elasticsearch-rest-5.0-6618a2722365.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-5.0/elasticsearch-rest-5.0-6618a2722365.json index bb96ae29..5d33eb4d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-5.0/elasticsearch-rest-5.0-6618a2722365.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-5.0/elasticsearch-rest-5.0-6618a2722365.json @@ -27,14 +27,9 @@ "scope": { "name": "io.opentelemetry.elasticsearch-rest-5.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-rest-5.0", - "tags": [ - "elasticsearch" - ], + "tags": ["elasticsearch"], "telemetry": [ { "spans": [ @@ -120,4 +115,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-5.0/elasticsearch-rest-5.0-d7baebbe48a3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-5.0/elasticsearch-rest-5.0-d7baebbe48a3.json index 98004d3c..78e1751d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-5.0/elasticsearch-rest-5.0-d7baebbe48a3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-5.0/elasticsearch-rest-5.0-d7baebbe48a3.json @@ -27,10 +27,7 @@ "scope": { "name": "io.opentelemetry.elasticsearch-rest-5.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-rest-5.0", "telemetry": [ { @@ -117,4 +114,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-6.4/elasticsearch-rest-6.4-8f3bd89dc06e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-6.4/elasticsearch-rest-6.4-8f3bd89dc06e.json index 198abe97..f37fc5b6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-6.4/elasticsearch-rest-6.4-8f3bd89dc06e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-6.4/elasticsearch-rest-6.4-8f3bd89dc06e.json @@ -18,22 +18,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Elasticsearch REST clients.", "display_name": "Elasticsearch REST Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.elasticsearch.client:elasticsearch-rest-client:[6.4,7.0)" - ], + "javaagent_target_versions": ["org.elasticsearch.client:elasticsearch-rest-client:[6.4,7.0)"], "library_link": "https://www.elastic.co/guide/en/elasticsearch/client/java-rest", "name": "elasticsearch-rest-6.4", "scope": { "name": "io.opentelemetry.elasticsearch-rest-6.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-rest-6.4", - "tags": [ - "elasticsearch" - ], + "tags": ["elasticsearch"], "telemetry": [ { "spans": [ @@ -119,4 +112,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-6.4/elasticsearch-rest-6.4-cd351e92a188.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-6.4/elasticsearch-rest-6.4-cd351e92a188.json index 41929b2e..fa92fe34 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-6.4/elasticsearch-rest-6.4-cd351e92a188.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-6.4/elasticsearch-rest-6.4-cd351e92a188.json @@ -18,18 +18,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Elasticsearch REST clients.", "display_name": "Elasticsearch REST Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.elasticsearch.client:elasticsearch-rest-client:[6.4,7.0)" - ], + "javaagent_target_versions": ["org.elasticsearch.client:elasticsearch-rest-client:[6.4,7.0)"], "library_link": "https://www.elastic.co/guide/en/elasticsearch/client/java-rest", "name": "elasticsearch-rest-6.4", "scope": { "name": "io.opentelemetry.elasticsearch-rest-6.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-rest-6.4", "telemetry": [ { @@ -116,4 +111,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-7.0/elasticsearch-rest-7.0-13036887ba1b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-7.0/elasticsearch-rest-7.0-13036887ba1b.json index 20f5037d..1dadfecb 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-7.0/elasticsearch-rest-7.0-13036887ba1b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-7.0/elasticsearch-rest-7.0-13036887ba1b.json @@ -19,22 +19,15 @@ "display_name": "Elasticsearch REST Client", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.elasticsearch.client:elasticsearch-rest-client:[7.0,)" - ], + "javaagent_target_versions": ["org.elasticsearch.client:elasticsearch-rest-client:[7.0,)"], "library_link": "https://www.elastic.co/guide/en/elasticsearch/client/java-rest", "name": "elasticsearch-rest-7.0", "scope": { "name": "io.opentelemetry.elasticsearch-rest-7.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-rest-7.0", - "tags": [ - "elasticsearch" - ], + "tags": ["elasticsearch"], "telemetry": [ { "spans": [ @@ -120,4 +113,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-7.0/elasticsearch-rest-7.0-bfcab982e791.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-7.0/elasticsearch-rest-7.0-bfcab982e791.json index cb010111..1ae43e59 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-7.0/elasticsearch-rest-7.0-bfcab982e791.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-rest-7.0/elasticsearch-rest-7.0-bfcab982e791.json @@ -19,18 +19,13 @@ "display_name": "Elasticsearch REST Client", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.elasticsearch.client:elasticsearch-rest-client:[7.0,)" - ], + "javaagent_target_versions": ["org.elasticsearch.client:elasticsearch-rest-client:[7.0,)"], "library_link": "https://www.elastic.co/guide/en/elasticsearch/client/java-rest", "name": "elasticsearch-rest-7.0", "scope": { "name": "io.opentelemetry.elasticsearch-rest-7.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-rest-7.0", "telemetry": [ { @@ -117,4 +112,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.0/elasticsearch-transport-5.0-8a0781228bb1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.0/elasticsearch-transport-5.0-8a0781228bb1.json index 59bd76dc..5c1eea73 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.0/elasticsearch-transport-5.0-8a0781228bb1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.0/elasticsearch-transport-5.0-8a0781228bb1.json @@ -20,10 +20,7 @@ "scope": { "name": "io.opentelemetry.elasticsearch-transport-5.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-transport-5.0", "telemetry": [ { @@ -172,4 +169,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.0/elasticsearch-transport-5.0-ec81e8571b42.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.0/elasticsearch-transport-5.0-ec81e8571b42.json index bf107194..97111c93 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.0/elasticsearch-transport-5.0-ec81e8571b42.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.0/elasticsearch-transport-5.0-ec81e8571b42.json @@ -26,14 +26,9 @@ "scope": { "name": "io.opentelemetry.elasticsearch-transport-5.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-transport-5.0", - "tags": [ - "elasticsearch" - ], + "tags": ["elasticsearch"], "telemetry": [ { "spans": [ @@ -181,4 +176,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.3/elasticsearch-transport-5.3-3c07e63b999f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.3/elasticsearch-transport-5.3-3c07e63b999f.json index 0aa567be..c9e244e1 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.3/elasticsearch-transport-5.3-3c07e63b999f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.3/elasticsearch-transport-5.3-3c07e63b999f.json @@ -20,14 +20,9 @@ "scope": { "name": "io.opentelemetry.elasticsearch-transport-5.3" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-transport-5.3", - "tags": [ - "elasticsearch" - ], + "tags": ["elasticsearch"], "telemetry": [ { "spans": [ @@ -195,4 +190,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.3/elasticsearch-transport-5.3-d8f6ad424df5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.3/elasticsearch-transport-5.3-d8f6ad424df5.json index ecf031af..97b816fa 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.3/elasticsearch-transport-5.3-d8f6ad424df5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-5.3/elasticsearch-transport-5.3-d8f6ad424df5.json @@ -20,10 +20,7 @@ "scope": { "name": "io.opentelemetry.elasticsearch-transport-5.3" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-transport-5.3", "telemetry": [ { @@ -192,4 +189,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-6.0/elasticsearch-transport-6.0-dd34f704763d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-6.0/elasticsearch-transport-6.0-dd34f704763d.json index 349fce97..9f72daf3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-6.0/elasticsearch-transport-6.0-dd34f704763d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-6.0/elasticsearch-transport-6.0-dd34f704763d.json @@ -20,10 +20,7 @@ "scope": { "name": "io.opentelemetry.elasticsearch-transport-6.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-transport-6.0", "telemetry": [ { @@ -184,4 +181,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-6.0/elasticsearch-transport-6.0-f51ac2214e95.json b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-6.0/elasticsearch-transport-6.0-f51ac2214e95.json index 57f20f22..04280514 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-6.0/elasticsearch-transport-6.0-f51ac2214e95.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/elasticsearch-transport-6.0/elasticsearch-transport-6.0-f51ac2214e95.json @@ -20,14 +20,9 @@ "scope": { "name": "io.opentelemetry.elasticsearch-transport-6.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/elasticsearch/elasticsearch-transport-6.0", - "tags": [ - "elasticsearch" - ], + "tags": ["elasticsearch"], "telemetry": [ { "spans": [ @@ -187,4 +182,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/executors/executors-c20b3e5eb5c8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/executors/executors-c20b3e5eb5c8.json index 511d13fa..6263cf2c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/executors/executors-c20b3e5eb5c8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/executors/executors-c20b3e5eb5c8.json @@ -4,10 +4,7 @@ "declarative_name": "java.executors.include", "default": "", "description": "List of Executor subclasses to be instrumented.", - "examples": [ - "com.example.CustomExecutor", - "com.example.ExecutorOne,com.example.ExecutorTwo" - ], + "examples": ["com.example.CustomExecutor", "com.example.ExecutorOne,com.example.ExecutorTwo"], "name": "otel.instrumentation.executors.include", "type": "list" }, @@ -21,17 +18,13 @@ ], "description": "The executor instrumentation ensures that context is automatically propagated when using common Java executors (e.g., ThreadPoolExecutor, ScheduledThreadPoolExecutor, ForkJoinPool). When a task is submitted, the current context is captured and bound to the task. Then, when the task eventually runs, even if it\u2019s on a different thread, the instrumentation reactivates that context, enabling consistent correlation across concurrent and asynchronous workflows.", "display_name": "Java Executors", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "library_link": "https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Executor.html", "name": "executors", "scope": { "name": "io.opentelemetry.executors" }, "source_path": "instrumentation/executors" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/executors/executors-d24df153a139.json b/ecosystem-explorer/public/data/javaagent/instrumentations/executors/executors-d24df153a139.json index 9bf0376c..74ad11eb 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/executors/executors-d24df153a139.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/executors/executors-d24df153a139.json @@ -4,10 +4,7 @@ "declarative_name": "java.executors.include", "default": "", "description": "List of Executor subclasses to be instrumented.", - "examples": [ - "com.example.CustomExecutor", - "com.example.ExecutorOne,com.example.ExecutorTwo" - ], + "examples": ["com.example.CustomExecutor", "com.example.ExecutorOne,com.example.ExecutorTwo"], "name": "otel.instrumentation.executors.include", "type": "list" }, @@ -21,20 +18,14 @@ ], "description": "The executor instrumentation ensures that context is automatically propagated when using common Java executors (e.g., ThreadPoolExecutor, ScheduledThreadPoolExecutor, ForkJoinPool). When a task is submitted, the current context is captured and bound to the task. Then, when the task eventually runs, even if it\u2019s on a different thread, the instrumentation reactivates that context, enabling consistent correlation across concurrent and asynchronous workflows.", "display_name": "Java Executors", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "library_link": "https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Executor.html", "name": "executors", "scope": { "name": "io.opentelemetry.executors" }, "source_path": "instrumentation/executors", - "tags": [ - "executors" - ] -} \ No newline at end of file + "tags": ["executors"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/external-annotations/external-annotations-8c92f339cf61.json b/ecosystem-explorer/public/data/javaagent/instrumentations/external-annotations/external-annotations-8c92f339cf61.json index 5e9790eb..89eac5d5 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/external-annotations/external-annotations-8c92f339cf61.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/external-annotations/external-annotations-8c92f339cf61.json @@ -4,10 +4,7 @@ "declarative_name": "java.external_annotations.include", "default": "", "description": "Semicolon-separated list of annotation class names to instrument.", - "examples": [ - "com.example.Trace", - "com.example.Trace;com.example.OtherTrace" - ], + "examples": ["com.example.Trace", "com.example.Trace;com.example.OtherTrace"], "name": "otel.instrumentation.external-annotations.include", "type": "list" }, @@ -26,12 +23,10 @@ "description": "The external-annotations instrumentation acts as a \"shim\" that automatically instruments methods annotated with custom or third-party tracing annotations. This is particularly useful if you have existing annotations (such as a custom @Trace or third-party annotation) that you want to leverage with OpenTelemetry. At runtime, this module recognizes those annotations and applies the appropriate OpenTelemetry instrumentation logic, including span creation and context propagation. Covers many common vendor annotations by default, and additional annotations can be targeted using the configuration property \"otel.instrumentation.external-annotations.include\".", "display_name": "External Annotations", "has_javaagent": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "name": "external-annotations", "scope": { "name": "io.opentelemetry.external-annotations" }, "source_path": "instrumentation/external-annotations" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/external-annotations/external-annotations-d65a552db9da.json b/ecosystem-explorer/public/data/javaagent/instrumentations/external-annotations/external-annotations-d65a552db9da.json index f998cb21..a00833ee 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/external-annotations/external-annotations-d65a552db9da.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/external-annotations/external-annotations-d65a552db9da.json @@ -4,10 +4,7 @@ "declarative_name": "java.external_annotations.include", "default": "", "description": "Configuration for trace annotations, in the form of a pattern that matches `'package.Annotation$Name;*'`.", - "examples": [ - "com.example.Trace", - "com.example.Trace;com.example.OtherTrace" - ], + "examples": ["com.example.Trace", "com.example.Trace;com.example.OtherTrace"], "name": "otel.instrumentation.external-annotations.include", "type": "string" }, @@ -26,12 +23,10 @@ "description": "The external-annotations instrumentation acts as a \"shim\" that automatically instruments methods annotated with custom or third-party tracing annotations. This is particularly useful if you have existing annotations (such as a custom @Trace or third-party annotation) that you want to leverage with OpenTelemetry. At runtime, this module recognizes those annotations and applies the appropriate OpenTelemetry instrumentation logic, including span creation and context propagation. Covers many common vendor annotations by default, and additional annotations can be targeted using the configuration property \"otel.instrumentation.external-annotations.include\".", "display_name": "External Annotations", "has_javaagent": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "name": "external-annotations", "scope": { "name": "io.opentelemetry.external-annotations" }, "source_path": "instrumentation/external-annotations" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/failsafe-3.0/failsafe-3.0-04c5b5a189cb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/failsafe-3.0/failsafe-3.0-04c5b5a189cb.json index e4a56abe..f53d6837 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/failsafe-3.0/failsafe-3.0-04c5b5a189cb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/failsafe-3.0/failsafe-3.0-04c5b5a189cb.json @@ -8,9 +8,7 @@ "name": "io.opentelemetry.failsafe-3.0" }, "source_path": "instrumentation/failsafe-3.0", - "tags": [ - "failsafe" - ], + "tags": ["failsafe"], "telemetry": [ { "metrics": [ @@ -86,4 +84,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/failsafe-3.0/failsafe-3.0-a2a4e4b0766b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/failsafe-3.0/failsafe-3.0-a2a4e4b0766b.json index deffb2aa..392d267f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/failsafe-3.0/failsafe-3.0-a2a4e4b0766b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/failsafe-3.0/failsafe-3.0-a2a4e4b0766b.json @@ -83,4 +83,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/finagle-http-23.11/finagle-http-23.11-1d874e9be8dc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/finagle-http-23.11/finagle-http-23.11-1d874e9be8dc.json index 7927c477..c9df6e86 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/finagle-http-23.11/finagle-http-23.11-1d874e9be8dc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/finagle-http-23.11/finagle-http-23.11-1d874e9be8dc.json @@ -1,9 +1,7 @@ { "description": "This instrumentation for Finagle HTTP clients and servers ensures that telemetry is correctly generated by the underlying Netty instrumentation. It augments existing telemetry by bridging the gap between Finagle's abstractions and Netty's pipeline, primarily for context propagation.", "display_name": "Finagle HTTP", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "com.twitter:finagle-http_2.13:[23.11.0,]", @@ -15,4 +13,4 @@ "name": "io.opentelemetry.finagle-http-23.11" }, "source_path": "instrumentation/finagle-http-23.11" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/finagle-http-23.11/finagle-http-23.11-96d656634c94.json b/ecosystem-explorer/public/data/javaagent/instrumentations/finagle-http-23.11/finagle-http-23.11-96d656634c94.json index 7f1e0a73..966f0da4 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/finagle-http-23.11/finagle-http-23.11-96d656634c94.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/finagle-http-23.11/finagle-http-23.11-96d656634c94.json @@ -1,9 +1,7 @@ { "description": "This instrumentation for Finagle HTTP clients and servers ensures that telemetry is correctly generated by the underlying Netty instrumentation. It augments existing telemetry by bridging the gap between Finagle's abstractions and Netty's pipeline, primarily for context propagation.", "display_name": "Finagle HTTP", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "com.twitter:finagle-http_2.13:[23.11.0,]", @@ -15,7 +13,5 @@ "name": "io.opentelemetry.finagle-http-23.11" }, "source_path": "instrumentation/finagle-http-23.11", - "tags": [ - "finagle" - ] -} \ No newline at end of file + "tags": ["finagle"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/finatra-2.9/finatra-2.9-1cc979ad30d3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/finatra-2.9/finatra-2.9-1cc979ad30d3.json index 2390fc5d..613968e2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/finatra-2.9/finatra-2.9-1cc979ad30d3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/finatra-2.9/finatra-2.9-1cc979ad30d3.json @@ -10,10 +10,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for the Finatra web framework (controller spans are disabled by default).", "display_name": "Finatra", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "com.twitter:finatra-http_2.11:[2.9.0,]", @@ -25,9 +22,7 @@ "name": "io.opentelemetry.finatra-2.9" }, "source_path": "instrumentation/finatra-2.9", - "tags": [ - "finatra" - ], + "tags": ["finatra"], "telemetry": [ { "spans": [ @@ -48,4 +43,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/finatra-2.9/finatra-2.9-8baad8ec43dd.json b/ecosystem-explorer/public/data/javaagent/instrumentations/finatra-2.9/finatra-2.9-8baad8ec43dd.json index 2ebd0ce7..fd6d958c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/finatra-2.9/finatra-2.9-8baad8ec43dd.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/finatra-2.9/finatra-2.9-8baad8ec43dd.json @@ -10,10 +10,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for the Finatra web framework (controller spans are disabled by default).", "display_name": "Finatra", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "com.twitter:finatra-http_2.11:[2.9.0,]", @@ -45,4 +42,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/geode-1.4/geode-1.4-98a1e965a350.json b/ecosystem-explorer/public/data/javaagent/instrumentations/geode-1.4/geode-1.4-98a1e965a350.json index 81d237f3..3d8a7d79 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/geode-1.4/geode-1.4-98a1e965a350.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/geode-1.4/geode-1.4-98a1e965a350.json @@ -10,22 +10,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Apache Geode cache operations.", "display_name": "Apache Geode", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.geode:geode-core:[1.4.0,)" - ], + "javaagent_target_versions": ["org.apache.geode:geode-core:[1.4.0,)"], "library_link": "https://geode.apache.org/", "name": "geode-1.4", "scope": { "name": "io.opentelemetry.geode-1.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/geode-1.4", - "tags": [ - "geode" - ], + "tags": ["geode"], "telemetry": [ { "spans": [ @@ -103,4 +96,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/geode-1.4/geode-1.4-f4b3dcc698cc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/geode-1.4/geode-1.4-f4b3dcc698cc.json index d53fd01d..80439a35 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/geode-1.4/geode-1.4-f4b3dcc698cc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/geode-1.4/geode-1.4-f4b3dcc698cc.json @@ -10,18 +10,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Apache Geode cache operations.", "display_name": "Apache Geode", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.geode:geode-core:[1.4.0,)" - ], + "javaagent_target_versions": ["org.apache.geode:geode-core:[1.4.0,)"], "library_link": "https://geode.apache.org/", "name": "geode-1.4", "scope": { "name": "io.opentelemetry.geode-1.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/geode-1.4", "telemetry": [ { @@ -100,4 +95,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/google-http-client-1.19/google-http-client-1.19-2c73bc94e86c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/google-http-client-1.19/google-http-client-1.19-2c73bc94e86c.json index d266f8d1..85fa3d24 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/google-http-client-1.19/google-http-client-1.19-2c73bc94e86c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/google-http-client-1.19/google-http-client-1.19-2c73bc94e86c.json @@ -40,19 +40,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the Google HTTP Client.", "display_name": "Google HTTP Client", "has_javaagent": true, - "javaagent_target_versions": [ - "com.google.http-client:google-http-client:[1.19.0,)" - ], + "javaagent_target_versions": ["com.google.http-client:google-http-client:[1.19.0,)"], "library_link": "https://github.com/googleapis/google-http-java-client", "name": "google-http-client-1.19", "scope": { "name": "io.opentelemetry.google-http-client-1.19", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/google-http-client-1.19", "telemetry": [ { @@ -121,4 +116,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/google-http-client-1.19/google-http-client-1.19-b0698a4f809e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/google-http-client-1.19/google-http-client-1.19-b0698a4f809e.json index f3d576b2..1210feec 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/google-http-client-1.19/google-http-client-1.19-b0698a4f809e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/google-http-client-1.19/google-http-client-1.19-b0698a4f809e.json @@ -40,23 +40,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the Google HTTP Client.", "display_name": "Google HTTP Client", "has_javaagent": true, - "javaagent_target_versions": [ - "com.google.http-client:google-http-client:[1.19.0,)" - ], + "javaagent_target_versions": ["com.google.http-client:google-http-client:[1.19.0,)"], "library_link": "https://github.com/googleapis/google-http-java-client", "name": "google-http-client-1.19", "scope": { "name": "io.opentelemetry.google-http-client-1.19", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/google-http-client-1.19", - "tags": [ - "google" - ], + "tags": ["google"], "telemetry": [ { "metrics": [ @@ -124,4 +117,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/grails-3.0/grails-3.0-19984cfa955e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/grails-3.0/grails-3.0-19984cfa955e.json index f3ec79e9..085715c1 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/grails-3.0/grails-3.0-19984cfa955e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/grails-3.0/grails-3.0-19984cfa955e.json @@ -10,14 +10,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Grails applications (controller spans are disabled by default).", "display_name": "Grails", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.grails:grails-web-url-mappings:[3.0,)" - ], + "javaagent_target_versions": ["org.grails:grails-web-url-mappings:[3.0,)"], "library_link": "https://grails.apache.org/", "name": "grails-3.0", "scope": { @@ -44,4 +39,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/grails-3.0/grails-3.0-35c603842154.json b/ecosystem-explorer/public/data/javaagent/instrumentations/grails-3.0/grails-3.0-35c603842154.json index 7815db14..1cbb7c51 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/grails-3.0/grails-3.0-35c603842154.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/grails-3.0/grails-3.0-35c603842154.json @@ -10,23 +10,16 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Grails applications (controller spans are disabled by default).", "display_name": "Grails", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.grails:grails-web-url-mappings:[3.0,)" - ], + "javaagent_target_versions": ["org.grails:grails-web-url-mappings:[3.0,)"], "library_link": "https://grails.apache.org/", "name": "grails-3.0", "scope": { "name": "io.opentelemetry.grails-3.0" }, "source_path": "instrumentation/grails-3.0", - "tags": [ - "grails" - ], + "tags": ["grails"], "telemetry": [ { "spans": [ @@ -47,4 +40,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-12.0/graphql-java-12.0-4412b7d81c98.json b/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-12.0/graphql-java-12.0-4412b7d81c98.json index b0a688ca..d9966b71 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-12.0/graphql-java-12.0-4412b7d81c98.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-12.0/graphql-java-12.0-4412b7d81c98.json @@ -26,17 +26,13 @@ "display_name": "GraphQL Java", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.graphql-java:graphql-java:[12,20)" - ], + "javaagent_target_versions": ["com.graphql-java:graphql-java:[12,20)"], "library_link": "https://www.graphql-java.com/", "name": "graphql-java-12.0", "scope": { "name": "io.opentelemetry.graphql-java-12.0" }, - "semantic_conventions": [ - "GRAPHQL_SERVER_SPANS" - ], + "semantic_conventions": ["GRAPHQL_SERVER_SPANS"], "source_path": "instrumentation/graphql-java/graphql-java-12.0", "telemetry": [ { @@ -62,4 +58,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-12.0/graphql-java-12.0-e706e62263ef.json b/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-12.0/graphql-java-12.0-e706e62263ef.json index e2768db7..07a8d49c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-12.0/graphql-java-12.0-e706e62263ef.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-12.0/graphql-java-12.0-e706e62263ef.json @@ -17,21 +17,15 @@ "display_name": "GraphQL Java", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.graphql-java:graphql-java:[12,20)" - ], + "javaagent_target_versions": ["com.graphql-java:graphql-java:[12,20)"], "library_link": "https://www.graphql-java.com/", "name": "graphql-java-12.0", "scope": { "name": "io.opentelemetry.graphql-java-12.0" }, - "semantic_conventions": [ - "GRAPHQL_SERVER_SPANS" - ], + "semantic_conventions": ["GRAPHQL_SERVER_SPANS"], "source_path": "instrumentation/graphql-java/graphql-java-12.0", - "tags": [ - "graphql" - ], + "tags": ["graphql"], "telemetry": [ { "spans": [ @@ -56,4 +50,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-20.0/graphql-java-20.0-3037cca098c7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-20.0/graphql-java-20.0-3037cca098c7.json index 6333e1a9..fe7f897c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-20.0/graphql-java-20.0-3037cca098c7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-20.0/graphql-java-20.0-3037cca098c7.json @@ -31,22 +31,16 @@ "display_name": "GraphQL Java", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.graphql-java:graphql-java:[20,)" - ], + "javaagent_target_versions": ["com.graphql-java:graphql-java:[20,)"], "library_link": "https://www.graphql-java.com/", "minimum_java_version": 11, "name": "graphql-java-20.0", "scope": { "name": "io.opentelemetry.graphql-java-20.0" }, - "semantic_conventions": [ - "GRAPHQL_SERVER_SPANS" - ], + "semantic_conventions": ["GRAPHQL_SERVER_SPANS"], "source_path": "instrumentation/graphql-java/graphql-java-20.0", - "tags": [ - "graphql" - ], + "tags": ["graphql"], "telemetry": [ { "spans": [ @@ -101,4 +95,4 @@ "when": "otel.instrumentation.graphql.data-fetcher.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-20.0/graphql-java-20.0-bee27ba75c69.json b/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-20.0/graphql-java-20.0-bee27ba75c69.json index 24a4b90c..37cbc419 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-20.0/graphql-java-20.0-bee27ba75c69.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/graphql-java-20.0/graphql-java-20.0-bee27ba75c69.json @@ -40,17 +40,13 @@ "display_name": "GraphQL Java", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.graphql-java:graphql-java:[20,)" - ], + "javaagent_target_versions": ["com.graphql-java:graphql-java:[20,)"], "library_link": "https://www.graphql-java.com/", "name": "graphql-java-20.0", "scope": { "name": "io.opentelemetry.graphql-java-20.0" }, - "semantic_conventions": [ - "GRAPHQL_SERVER_SPANS" - ], + "semantic_conventions": ["GRAPHQL_SERVER_SPANS"], "source_path": "instrumentation/graphql-java/graphql-java-20.0", "telemetry": [ { @@ -106,4 +102,4 @@ "when": "otel.instrumentation.graphql.data-fetcher.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/grizzly-2.3/grizzly-2.3-99225c69821f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/grizzly-2.3/grizzly-2.3-99225c69821f.json index ee7e4e2c..48783466 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/grizzly-2.3/grizzly-2.3-99225c69821f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/grizzly-2.3/grizzly-2.3-99225c69821f.json @@ -32,19 +32,14 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Grizzly.", "display_name": "Eclipse Grizzly", "has_javaagent": true, - "javaagent_target_versions": [ - "org.glassfish.grizzly:grizzly-http:[2.3,)" - ], + "javaagent_target_versions": ["org.glassfish.grizzly:grizzly-http:[2.3,)"], "library_link": "https://javaee.github.io/grizzly/httpserverframework.html", "name": "grizzly-2.3", "scope": { "name": "io.opentelemetry.grizzly-2.3", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/grizzly-2.3", "telemetry": [ { @@ -141,4 +136,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/grizzly-2.3/grizzly-2.3-f8a2e0488c18.json b/ecosystem-explorer/public/data/javaagent/instrumentations/grizzly-2.3/grizzly-2.3-f8a2e0488c18.json index e6dc323c..1491f93d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/grizzly-2.3/grizzly-2.3-f8a2e0488c18.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/grizzly-2.3/grizzly-2.3-f8a2e0488c18.json @@ -32,23 +32,16 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Grizzly.", "display_name": "Eclipse Grizzly", "has_javaagent": true, - "javaagent_target_versions": [ - "org.glassfish.grizzly:grizzly-http:[2.3,)" - ], + "javaagent_target_versions": ["org.glassfish.grizzly:grizzly-http:[2.3,)"], "library_link": "https://javaee.github.io/grizzly/httpserverframework.html", "name": "grizzly-2.3", "scope": { "name": "io.opentelemetry.grizzly-2.3", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/grizzly-2.3", - "tags": [ - "grizzly" - ], + "tags": ["grizzly"], "telemetry": [ { "metrics": [ @@ -144,4 +137,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/grpc-1.6/grpc-1.6-8ede5bf7fe9c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/grpc-1.6/grpc-1.6-8ede5bf7fe9c.json index a88239b5..08e2042c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/grpc-1.6/grpc-1.6-8ede5bf7fe9c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/grpc-1.6/grpc-1.6-8ede5bf7fe9c.json @@ -18,10 +18,7 @@ "declarative_name": "java.grpc.capture_metadata.client.request", "default": "", "description": "A comma-separated list of request metadata keys. gRPC client instrumentation will capture metadata values corresponding to configured keys as span attributes.", - "examples": [ - "custom-request-header", - "my-metadata-key,another-metadata-key" - ], + "examples": ["custom-request-header", "my-metadata-key,another-metadata-key"], "name": "otel.instrumentation.grpc.capture-metadata.client.request", "type": "list" }, @@ -37,9 +34,7 @@ "display_name": "gRPC", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.grpc:grpc-core:[1.6.0,)" - ], + "javaagent_target_versions": ["io.grpc:grpc-core:[1.6.0,)"], "library_link": "https://github.com/grpc/grpc-java", "name": "grpc-1.6", "scope": { @@ -779,4 +774,4 @@ "when": "otel.semconv-stability.opt-in=rpc" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/grpc-1.6/grpc-1.6-bfedb74d90c8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/grpc-1.6/grpc-1.6-bfedb74d90c8.json index 48b6fc9e..34f775f4 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/grpc-1.6/grpc-1.6-bfedb74d90c8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/grpc-1.6/grpc-1.6-bfedb74d90c8.json @@ -18,10 +18,7 @@ "declarative_name": "java.grpc.capture_metadata.client.request", "default": "", "description": "A comma-separated list of request metadata keys. gRPC client instrumentation will capture metadata values corresponding to configured keys as span attributes.", - "examples": [ - "custom-request-header", - "my-metadata-key,another-metadata-key" - ], + "examples": ["custom-request-header", "my-metadata-key,another-metadata-key"], "name": "otel.instrumentation.grpc.capture-metadata.client.request", "type": "list" }, @@ -37,9 +34,7 @@ "display_name": "gRPC", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.grpc:grpc-core:[1.6.0,)" - ], + "javaagent_target_versions": ["io.grpc:grpc-core:[1.6.0,)"], "library_link": "https://github.com/grpc/grpc-java", "name": "grpc-1.6", "scope": { @@ -52,9 +47,7 @@ "RPC_SERVER_METRICS" ], "source_path": "instrumentation/grpc-1.6", - "tags": [ - "grpc" - ], + "tags": ["grpc"], "telemetry": [ { "metrics": [ @@ -782,4 +775,4 @@ "when": "otel.semconv-stability.opt-in=rpc" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/guava-10.0/guava-10.0-61bcbc5ba812.json b/ecosystem-explorer/public/data/javaagent/instrumentations/guava-10.0/guava-10.0-61bcbc5ba812.json index f89e8f6a..5f0fb1ff 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/guava-10.0/guava-10.0-61bcbc5ba812.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/guava-10.0/guava-10.0-61bcbc5ba812.json @@ -10,21 +10,15 @@ ], "description": "This instrumentation enables context propagation for Guava ListenableFuture, it does not emit any telemetry on its own.", "display_name": "Guava", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.google.guava:guava:[10.0,]" - ], + "javaagent_target_versions": ["com.google.guava:guava:[10.0,]"], "library_link": "https://github.com/google/guava", "name": "guava-10.0", "scope": { "name": "io.opentelemetry.guava-10.0" }, "source_path": "instrumentation/guava-10.0", - "tags": [ - "guava" - ] -} \ No newline at end of file + "tags": ["guava"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/guava-10.0/guava-10.0-ef2c6f26a6d1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/guava-10.0/guava-10.0-ef2c6f26a6d1.json index 82b99e66..2e5f7738 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/guava-10.0/guava-10.0-ef2c6f26a6d1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/guava-10.0/guava-10.0-ef2c6f26a6d1.json @@ -10,18 +10,14 @@ ], "description": "This instrumentation enables context propagation for Guava ListenableFuture, it does not emit any telemetry on its own.", "display_name": "Guava", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.google.guava:guava:[10.0,]" - ], + "javaagent_target_versions": ["com.google.guava:guava:[10.0,]"], "library_link": "https://github.com/google/guava", "name": "guava-10.0", "scope": { "name": "io.opentelemetry.guava-10.0" }, "source_path": "instrumentation/guava-10.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/gwt-2.0/gwt-2.0-077ccac4eb88.json b/ecosystem-explorer/public/data/javaagent/instrumentations/gwt-2.0/gwt-2.0-077ccac4eb88.json index 46e7627b..36bd16f8 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/gwt-2.0/gwt-2.0-077ccac4eb88.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/gwt-2.0/gwt-2.0-077ccac4eb88.json @@ -11,13 +11,9 @@ "scope": { "name": "io.opentelemetry.gwt-2.0" }, - "semantic_conventions": [ - "RPC_SERVER_SPANS" - ], + "semantic_conventions": ["RPC_SERVER_SPANS"], "source_path": "instrumentation/gwt-2.0", - "tags": [ - "gwt" - ], + "tags": ["gwt"], "telemetry": [ { "spans": [ @@ -42,4 +38,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/gwt-2.0/gwt-2.0-7a55806a12fc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/gwt-2.0/gwt-2.0-7a55806a12fc.json index 537861f2..448ecd47 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/gwt-2.0/gwt-2.0-7a55806a12fc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/gwt-2.0/gwt-2.0-7a55806a12fc.json @@ -11,9 +11,7 @@ "scope": { "name": "io.opentelemetry.gwt-2.0" }, - "semantic_conventions": [ - "RPC_SERVER_SPANS" - ], + "semantic_conventions": ["RPC_SERVER_SPANS"], "source_path": "instrumentation/gwt-2.0", "telemetry": [ { @@ -39,4 +37,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/helidon-4.3/helidon-4.3-8b0f489f02ee.json b/ecosystem-explorer/public/data/javaagent/instrumentations/helidon-4.3/helidon-4.3-8b0f489f02ee.json index de0206c9..a9052ed9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/helidon-4.3/helidon-4.3-8b0f489f02ee.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/helidon-4.3/helidon-4.3-8b0f489f02ee.json @@ -31,14 +31,10 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for the Helidon HTTP server.", "display_name": "Helidon", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.helidon.webserver:helidon-webserver:[4.3.0,)" - ], + "javaagent_target_versions": ["io.helidon.webserver:helidon-webserver:[4.3.0,)"], "library_link": "https://helidon.io/", "minimum_java_version": 21, "name": "helidon-4.3", @@ -46,10 +42,7 @@ "name": "io.opentelemetry.helidon-4.3", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/helidon-4.3", "telemetry": [ { @@ -150,4 +143,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/helidon-4.3/helidon-4.3-b6afc5583d8c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/helidon-4.3/helidon-4.3-b6afc5583d8c.json index 05fddf0c..d10c84d9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/helidon-4.3/helidon-4.3-b6afc5583d8c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/helidon-4.3/helidon-4.3-b6afc5583d8c.json @@ -31,14 +31,10 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for the Helidon HTTP server.", "display_name": "Helidon", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.helidon.webserver:helidon-webserver:[4.3.0,)" - ], + "javaagent_target_versions": ["io.helidon.webserver:helidon-webserver:[4.3.0,)"], "library_link": "https://helidon.io/", "minimum_java_version": 21, "name": "helidon-4.3", @@ -46,14 +42,9 @@ "name": "io.opentelemetry.helidon-4.3", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/helidon-4.3", - "tags": [ - "helidon" - ], + "tags": ["helidon"], "telemetry": [ { "metrics": [ @@ -153,4 +144,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-3.3/hibernate-3.3-64324ddd1062.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-3.3/hibernate-3.3-64324ddd1062.json index 92d81ecb..4095cff5 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-3.3/hibernate-3.3-64324ddd1062.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-3.3/hibernate-3.3-64324ddd1062.json @@ -11,18 +11,14 @@ "description": "This instrumentation enables spans for Hibernate ORM operations.", "display_name": "Hibernate", "has_javaagent": true, - "javaagent_target_versions": [ - "org.hibernate:hibernate-core:[3.3.0.GA,4.0.0.Final)" - ], + "javaagent_target_versions": ["org.hibernate:hibernate-core:[3.3.0.GA,4.0.0.Final)"], "library_link": "https://hibernate.org/", "name": "hibernate-3.3", "scope": { "name": "io.opentelemetry.hibernate-3.3" }, "source_path": "instrumentation/hibernate/hibernate-3.3", - "tags": [ - "hibernate" - ], + "tags": ["hibernate"], "telemetry": [ { "spans": [ @@ -48,4 +44,4 @@ "when": "otel.instrumentation.hibernate.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-3.3/hibernate-3.3-85b202c05162.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-3.3/hibernate-3.3-85b202c05162.json index 79a06f00..3953f2a3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-3.3/hibernate-3.3-85b202c05162.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-3.3/hibernate-3.3-85b202c05162.json @@ -11,9 +11,7 @@ "description": "This instrumentation enables spans for Hibernate ORM operations.", "display_name": "Hibernate", "has_javaagent": true, - "javaagent_target_versions": [ - "org.hibernate:hibernate-core:[3.3.0.GA,4.0.0.Final)" - ], + "javaagent_target_versions": ["org.hibernate:hibernate-core:[3.3.0.GA,4.0.0.Final)"], "library_link": "https://hibernate.org/", "name": "hibernate-3.3", "scope": { @@ -45,4 +43,4 @@ "when": "otel.instrumentation.hibernate.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-4.0/hibernate-4.0-17c322530b43.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-4.0/hibernate-4.0-17c322530b43.json index b2d36c10..cffb125e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-4.0/hibernate-4.0-17c322530b43.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-4.0/hibernate-4.0-17c322530b43.json @@ -11,9 +11,7 @@ "description": "This instrumentation enables spans for Hibernate ORM operations.", "display_name": "Hibernate", "has_javaagent": true, - "javaagent_target_versions": [ - "org.hibernate:hibernate-core:[4.0.0.Final,6)" - ], + "javaagent_target_versions": ["org.hibernate:hibernate-core:[4.0.0.Final,6)"], "library_link": "https://hibernate.org/", "name": "hibernate-4.0", "scope": { @@ -45,4 +43,4 @@ "when": "otel.instrumentation.hibernate.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-4.0/hibernate-4.0-e9a9704639e3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-4.0/hibernate-4.0-e9a9704639e3.json index f63c6ebe..60a588fe 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-4.0/hibernate-4.0-e9a9704639e3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-4.0/hibernate-4.0-e9a9704639e3.json @@ -11,18 +11,14 @@ "description": "This instrumentation enables spans for Hibernate ORM operations.", "display_name": "Hibernate", "has_javaagent": true, - "javaagent_target_versions": [ - "org.hibernate:hibernate-core:[4.0.0.Final,6)" - ], + "javaagent_target_versions": ["org.hibernate:hibernate-core:[4.0.0.Final,6)"], "library_link": "https://hibernate.org/", "name": "hibernate-4.0", "scope": { "name": "io.opentelemetry.hibernate-4.0" }, "source_path": "instrumentation/hibernate/hibernate-4.0", - "tags": [ - "hibernate" - ], + "tags": ["hibernate"], "telemetry": [ { "spans": [ @@ -48,4 +44,4 @@ "when": "otel.instrumentation.hibernate.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-6.0/hibernate-6.0-b93fbc00717d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-6.0/hibernate-6.0-b93fbc00717d.json index aeff85b4..06af2908 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-6.0/hibernate-6.0-b93fbc00717d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-6.0/hibernate-6.0-b93fbc00717d.json @@ -10,9 +10,7 @@ "description": "This instrumentation enables spans for Hibernate ORM operations.", "display_name": "Hibernate", "has_javaagent": true, - "javaagent_target_versions": [ - "org.hibernate:hibernate-core:[6.0.0.Final,)" - ], + "javaagent_target_versions": ["org.hibernate:hibernate-core:[6.0.0.Final,)"], "library_link": "https://hibernate.org/", "minimum_java_version": 11, "name": "hibernate-6.0", @@ -20,9 +18,7 @@ "name": "io.opentelemetry.hibernate-6.0" }, "source_path": "instrumentation/hibernate/hibernate-6.0", - "tags": [ - "hibernate" - ], + "tags": ["hibernate"], "telemetry": [ { "spans": [ @@ -48,4 +44,4 @@ "when": "otel.instrumentation.hibernate.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-6.0/hibernate-6.0-ea560a2245d5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-6.0/hibernate-6.0-ea560a2245d5.json index 80294e1f..393ae151 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-6.0/hibernate-6.0-ea560a2245d5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-6.0/hibernate-6.0-ea560a2245d5.json @@ -10,9 +10,7 @@ "description": "This instrumentation enables spans for Hibernate ORM operations.", "display_name": "Hibernate", "has_javaagent": true, - "javaagent_target_versions": [ - "org.hibernate:hibernate-core:[6.0.0.Final,)" - ], + "javaagent_target_versions": ["org.hibernate:hibernate-core:[6.0.0.Final,)"], "library_link": "https://hibernate.org/", "minimum_java_version": 11, "name": "hibernate-6.0", @@ -45,4 +43,4 @@ "when": "otel.instrumentation.hibernate.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-procedure-call-4.3/hibernate-procedure-call-4.3-5c10cce8a64c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-procedure-call-4.3/hibernate-procedure-call-4.3-5c10cce8a64c.json index 97443ff8..9ca2167d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-procedure-call-4.3/hibernate-procedure-call-4.3-5c10cce8a64c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-procedure-call-4.3/hibernate-procedure-call-4.3-5c10cce8a64c.json @@ -11,18 +11,14 @@ "description": "This instrumentation enables spans for Hibernate stored procedure calls.", "display_name": "Hibernate", "has_javaagent": true, - "javaagent_target_versions": [ - "org.hibernate:hibernate-core:[4.3.0.Final,)" - ], + "javaagent_target_versions": ["org.hibernate:hibernate-core:[4.3.0.Final,)"], "library_link": "https://hibernate.org/", "name": "hibernate-procedure-call-4.3", "scope": { "name": "io.opentelemetry.hibernate-procedure-call-4.3" }, "source_path": "instrumentation/hibernate/hibernate-procedure-call-4.3", - "tags": [ - "hibernate" - ], + "tags": ["hibernate"], "telemetry": [ { "spans": [ @@ -48,4 +44,4 @@ "when": "otel.instrumentation.hibernate.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-procedure-call-4.3/hibernate-procedure-call-4.3-90413fb733a7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-procedure-call-4.3/hibernate-procedure-call-4.3-90413fb733a7.json index eb8e48dc..8c9e8402 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-procedure-call-4.3/hibernate-procedure-call-4.3-90413fb733a7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-procedure-call-4.3/hibernate-procedure-call-4.3-90413fb733a7.json @@ -11,9 +11,7 @@ "description": "This instrumentation enables spans for Hibernate stored procedure calls.", "display_name": "Hibernate", "has_javaagent": true, - "javaagent_target_versions": [ - "org.hibernate:hibernate-core:[4.3.0.Final,)" - ], + "javaagent_target_versions": ["org.hibernate:hibernate-core:[4.3.0.Final,)"], "library_link": "https://hibernate.org/", "name": "hibernate-procedure-call-4.3", "scope": { @@ -45,4 +43,4 @@ "when": "otel.instrumentation.hibernate.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-reactive-1.0/hibernate-reactive-1.0-7181cd20611a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-reactive-1.0/hibernate-reactive-1.0-7181cd20611a.json index 3191a257..2b107c26 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-reactive-1.0/hibernate-reactive-1.0-7181cd20611a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-reactive-1.0/hibernate-reactive-1.0-7181cd20611a.json @@ -1,20 +1,14 @@ { "description": "This instrumentation enables context propagation for Hibernate Reactive, it does not emit any telemetry on its own.", "display_name": "Hibernate Reactive", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.hibernate.reactive:hibernate-reactive-core:(,)" - ], + "javaagent_target_versions": ["org.hibernate.reactive:hibernate-reactive-core:(,)"], "library_link": "https://hibernate.org/reactive/", "name": "hibernate-reactive-1.0", "scope": { "name": "io.opentelemetry.hibernate-reactive-1.0" }, "source_path": "instrumentation/hibernate/hibernate-reactive-1.0", - "tags": [ - "hibernate" - ] -} \ No newline at end of file + "tags": ["hibernate"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-reactive-1.0/hibernate-reactive-1.0-ae040b18ed00.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-reactive-1.0/hibernate-reactive-1.0-ae040b18ed00.json index d024b08f..5ea14664 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-reactive-1.0/hibernate-reactive-1.0-ae040b18ed00.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hibernate-reactive-1.0/hibernate-reactive-1.0-ae040b18ed00.json @@ -1,17 +1,13 @@ { "description": "This instrumentation enables context propagation for Hibernate Reactive, it does not emit any telemetry on its own.", "display_name": "Hibernate Reactive", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.hibernate.reactive:hibernate-reactive-core:(,)" - ], + "javaagent_target_versions": ["org.hibernate.reactive:hibernate-reactive-core:(,)"], "library_link": "https://hibernate.org/reactive/", "name": "hibernate-reactive-1.0", "scope": { "name": "io.opentelemetry.hibernate-reactive-1.0" }, "source_path": "instrumentation/hibernate/hibernate-reactive-1.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hikaricp-3.0/hikaricp-3.0-c8a2df2052b4.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hikaricp-3.0/hikaricp-3.0-c8a2df2052b4.json index eff4fdd8..ab4b3d71 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hikaricp-3.0/hikaricp-3.0-c8a2df2052b4.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hikaricp-3.0/hikaricp-3.0-c8a2df2052b4.json @@ -3,21 +3,15 @@ "display_name": "HikariCP", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.zaxxer:HikariCP:[3.0.0,)" - ], + "javaagent_target_versions": ["com.zaxxer:HikariCP:[3.0.0,)"], "library_link": "https://github.com/brettwooldridge/HikariCP", "name": "hikaricp-3.0", "scope": { "name": "io.opentelemetry.hikaricp-3.0" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/hikaricp-3.0", - "tags": [ - "hikaricp" - ], + "tags": ["hikaricp"], "telemetry": [ { "metrics": [ @@ -246,4 +240,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hikaricp-3.0/hikaricp-3.0-fa0a4742c76e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hikaricp-3.0/hikaricp-3.0-fa0a4742c76e.json index b4a3cd5a..169b9fc0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hikaricp-3.0/hikaricp-3.0-fa0a4742c76e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hikaricp-3.0/hikaricp-3.0-fa0a4742c76e.json @@ -3,17 +3,13 @@ "display_name": "HikariCP", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.zaxxer:HikariCP:[3.0.0,)" - ], + "javaagent_target_versions": ["com.zaxxer:HikariCP:[3.0.0,)"], "library_link": "https://github.com/brettwooldridge/HikariCP", "name": "hikaricp-3.0", "scope": { "name": "io.opentelemetry.hikaricp-3.0" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/hikaricp-3.0", "telemetry": [ { @@ -243,4 +239,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/http-url-connection/http-url-connection-255e94fd5969.json b/ecosystem-explorer/public/data/javaagent/instrumentations/http-url-connection/http-url-connection-255e94fd5969.json index 9b1fc9c0..07d66c1c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/http-url-connection/http-url-connection-255e94fd5969.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/http-url-connection/http-url-connection-255e94fd5969.json @@ -45,19 +45,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for requests made using java.net.HttpURLConnection.", "display_name": "HttpURLConnection", "has_javaagent": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "library_link": "https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/HttpURLConnection.html", "name": "http-url-connection", "scope": { "name": "io.opentelemetry.http-url-connection", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/http-url-connection", "telemetry": [ { @@ -134,4 +129,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/http-url-connection/http-url-connection-cc8cbe8152f8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/http-url-connection/http-url-connection-cc8cbe8152f8.json index 6cf824bc..de5323a3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/http-url-connection/http-url-connection-cc8cbe8152f8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/http-url-connection/http-url-connection-cc8cbe8152f8.json @@ -45,23 +45,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for requests made using java.net.HttpURLConnection.", "display_name": "HttpURLConnection", "has_javaagent": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "library_link": "https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/HttpURLConnection.html", "name": "http-url-connection", "scope": { "name": "io.opentelemetry.http-url-connection", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/http-url-connection", - "tags": [ - "http" - ], + "tags": ["http"], "telemetry": [ { "metrics": [ @@ -137,4 +130,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hystrix-1.4/hystrix-1.4-23505f7160d8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hystrix-1.4/hystrix-1.4-23505f7160d8.json index 60613700..97b96be0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hystrix-1.4/hystrix-1.4-23505f7160d8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hystrix-1.4/hystrix-1.4-23505f7160d8.json @@ -10,9 +10,7 @@ "description": "This instrumentation enables spans for Hystrix command executions and fallbacks.", "display_name": "Netflix Hystrix", "has_javaagent": true, - "javaagent_target_versions": [ - "com.netflix.hystrix:hystrix-core:[1.4.0,)" - ], + "javaagent_target_versions": ["com.netflix.hystrix:hystrix-core:[1.4.0,)"], "library_link": "https://github.com/Netflix/Hystrix", "name": "hystrix-1.4", "scope": { @@ -52,4 +50,4 @@ "when": "otel.instrumentation.hystrix.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/hystrix-1.4/hystrix-1.4-6d4533938e1f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/hystrix-1.4/hystrix-1.4-6d4533938e1f.json index e1640788..d654114c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/hystrix-1.4/hystrix-1.4-6d4533938e1f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/hystrix-1.4/hystrix-1.4-6d4533938e1f.json @@ -10,18 +10,14 @@ "description": "This instrumentation enables spans for Hystrix command executions and fallbacks.", "display_name": "Netflix Hystrix", "has_javaagent": true, - "javaagent_target_versions": [ - "com.netflix.hystrix:hystrix-core:[1.4.0,)" - ], + "javaagent_target_versions": ["com.netflix.hystrix:hystrix-core:[1.4.0,)"], "library_link": "https://github.com/Netflix/Hystrix", "name": "hystrix-1.4", "scope": { "name": "io.opentelemetry.hystrix-1.4" }, "source_path": "instrumentation/hystrix-1.4", - "tags": [ - "hystrix" - ], + "tags": ["hystrix"], "telemetry": [ { "spans": [ @@ -55,4 +51,4 @@ "when": "otel.instrumentation.hystrix.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/iceberg-1.8/iceberg-1.8-8aa70eb6c51d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/iceberg-1.8/iceberg-1.8-8aa70eb6c51d.json index b6715801..102fcae5 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/iceberg-1.8/iceberg-1.8-8aa70eb6c51d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/iceberg-1.8/iceberg-1.8-8aa70eb6c51d.json @@ -154,4 +154,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/iceberg-1.8/iceberg-1.8-e146518b1cb6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/iceberg-1.8/iceberg-1.8-e146518b1cb6.json index d52860de..7c215dd0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/iceberg-1.8/iceberg-1.8-e146518b1cb6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/iceberg-1.8/iceberg-1.8-e146518b1cb6.json @@ -8,9 +8,7 @@ "name": "io.opentelemetry.iceberg-1.8" }, "source_path": "instrumentation/iceberg-1.8", - "tags": [ - "iceberg" - ], + "tags": ["iceberg"], "telemetry": [ { "metrics": [ @@ -157,4 +155,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/influxdb-2.4/influxdb-2.4-5f5b57724ed7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/influxdb-2.4/influxdb-2.4-5f5b57724ed7.json index faa0d5a8..2eaddfd0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/influxdb-2.4/influxdb-2.4-5f5b57724ed7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/influxdb-2.4/influxdb-2.4-5f5b57724ed7.json @@ -10,22 +10,15 @@ "description": "This instrumentation enables database client spans and metrics for the InfluxDB Java client.", "display_name": "InfluxDB Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.influxdb:influxdb-java:[2.4,)" - ], + "javaagent_target_versions": ["org.influxdb:influxdb-java:[2.4,)"], "library_link": "https://github.com/influxdata/influxdb-java", "name": "influxdb-2.4", "scope": { "name": "io.opentelemetry.influxdb-2.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/influxdb-2.4", - "tags": [ - "influxdb" - ], + "tags": ["influxdb"], "telemetry": [ { "spans": [ @@ -131,4 +124,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/influxdb-2.4/influxdb-2.4-e36546b1bc10.json b/ecosystem-explorer/public/data/javaagent/instrumentations/influxdb-2.4/influxdb-2.4-e36546b1bc10.json index ed49a2a6..a9d61882 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/influxdb-2.4/influxdb-2.4-e36546b1bc10.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/influxdb-2.4/influxdb-2.4-e36546b1bc10.json @@ -10,18 +10,13 @@ "description": "This instrumentation enables database client spans and metrics for the InfluxDB Java client.", "display_name": "InfluxDB Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.influxdb:influxdb-java:[2.4,)" - ], + "javaagent_target_versions": ["org.influxdb:influxdb-java:[2.4,)"], "library_link": "https://github.com/influxdata/influxdb-java", "name": "influxdb-2.4", "scope": { "name": "io.opentelemetry.influxdb-2.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/influxdb-2.4", "telemetry": [ { @@ -128,4 +123,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-client/java-http-client-6d60f1ce8120.json b/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-client/java-http-client-6d60f1ce8120.json index 11d4e6d1..b54b55f2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-client/java-http-client-6d60f1ce8120.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-client/java-http-client-6d60f1ce8120.json @@ -46,9 +46,7 @@ "display_name": "Java HTTP Client", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "Java 11+" - ], + "javaagent_target_versions": ["Java 11+"], "library_link": "https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/package-summary.html", "minimum_java_version": 11, "name": "java-http-client", @@ -56,14 +54,9 @@ "name": "io.opentelemetry.java-http-client", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/java-http-client", - "tags": [ - "java" - ], + "tags": ["java"], "telemetry": [ { "metrics": [ @@ -143,4 +136,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-client/java-http-client-8659d37e5ad2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-client/java-http-client-8659d37e5ad2.json index 7e54ee38..e886224b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-client/java-http-client-8659d37e5ad2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-client/java-http-client-8659d37e5ad2.json @@ -46,9 +46,7 @@ "display_name": "Java HTTP Client", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "Java 11+" - ], + "javaagent_target_versions": ["Java 11+"], "library_link": "https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/package-summary.html", "minimum_java_version": 11, "name": "java-http-client", @@ -56,10 +54,7 @@ "name": "io.opentelemetry.java-http-client", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/java-http-client", "telemetry": [ { @@ -140,4 +135,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-server/java-http-server-a49e926bacf6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-server/java-http-server-a49e926bacf6.json index 3088a781..50abb6d0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-server/java-http-server-a49e926bacf6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-server/java-http-server-a49e926bacf6.json @@ -39,19 +39,14 @@ "display_name": "Java HTTP Server", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "library_link": "https://docs.oracle.com/en/java/javase/21/docs/api/jdk.httpserver/module-summary.html", "name": "java-http-server", "scope": { "name": "io.opentelemetry.java-http-server", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/java-http-server", "telemetry": [ { @@ -152,4 +147,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-server/java-http-server-fa4c775830fa.json b/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-server/java-http-server-fa4c775830fa.json index 994755e3..cb76c11a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-server/java-http-server-fa4c775830fa.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/java-http-server/java-http-server-fa4c775830fa.json @@ -39,23 +39,16 @@ "display_name": "Java HTTP Server", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "library_link": "https://docs.oracle.com/en/java/javase/21/docs/api/jdk.httpserver/module-summary.html", "name": "java-http-server", "scope": { "name": "io.opentelemetry.java-http-server", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/java-http-server", - "tags": [ - "java" - ], + "tags": ["java"], "telemetry": [ { "metrics": [ @@ -155,4 +148,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/java-util-logging/java-util-logging-0876b7033566.json b/ecosystem-explorer/public/data/javaagent/instrumentations/java-util-logging/java-util-logging-0876b7033566.json index f06cac1c..f8be4192 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/java-util-logging/java-util-logging-0876b7033566.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/java-util-logging/java-util-logging-0876b7033566.json @@ -10,9 +10,7 @@ ], "description": "This instrumentation bridges Java Util Logging (JUL) log records to OpenTelemetry logs.", "display_name": "Java Util Logging (JUL)", - "features": [ - "LOGGING_BRIDGE" - ], + "features": ["LOGGING_BRIDGE"], "has_javaagent": true, "library_link": "https://docs.oracle.com/en/java/javase/11/docs/api/java.logging/java/util/logging/package-summary.html", "name": "java-util-logging", @@ -20,4 +18,4 @@ "name": "io.opentelemetry.java-util-logging" }, "source_path": "instrumentation/java-util-logging" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/java-util-logging/java-util-logging-e2400b6011ec.json b/ecosystem-explorer/public/data/javaagent/instrumentations/java-util-logging/java-util-logging-e2400b6011ec.json index 7d0cd830..7de23350 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/java-util-logging/java-util-logging-e2400b6011ec.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/java-util-logging/java-util-logging-e2400b6011ec.json @@ -10,9 +10,7 @@ ], "description": "This instrumentation bridges Java Util Logging (JUL) log records to OpenTelemetry logs.", "display_name": "Java Util Logging (JUL)", - "features": [ - "LOGGING_BRIDGE" - ], + "features": ["LOGGING_BRIDGE"], "has_javaagent": true, "library_link": "https://docs.oracle.com/en/java/javase/11/docs/api/java.logging/java/util/logging/package-summary.html", "name": "java-util-logging", @@ -20,7 +18,5 @@ "name": "io.opentelemetry.java-util-logging" }, "source_path": "instrumentation/java-util-logging", - "tags": [ - "java" - ] -} \ No newline at end of file + "tags": ["java"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-5.0/javalin-5.0-990f53b69879.json b/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-5.0/javalin-5.0-990f53b69879.json index 520d8f36..420bd5d7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-5.0/javalin-5.0-990f53b69879.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-5.0/javalin-5.0-990f53b69879.json @@ -1,13 +1,9 @@ { "description": "This instrumentation enriches existing HTTP server spans with route information, it does not emit any telemetry on its own.", "display_name": "Javalin", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.javalin:javalin:[5.0.0,7.0.0)" - ], + "javaagent_target_versions": ["io.javalin:javalin:[5.0.0,7.0.0)"], "library_link": "https://javalin.io/", "minimum_java_version": 11, "name": "javalin-5.0", @@ -15,7 +11,5 @@ "name": "io.opentelemetry.javalin-5.0" }, "source_path": "instrumentation/javalin/javalin-5.0", - "tags": [ - "javalin" - ] -} \ No newline at end of file + "tags": ["javalin"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-5.0/javalin-5.0-d4b07b0af7cb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-5.0/javalin-5.0-d4b07b0af7cb.json index b5706d26..2c590a65 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-5.0/javalin-5.0-d4b07b0af7cb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-5.0/javalin-5.0-d4b07b0af7cb.json @@ -1,13 +1,9 @@ { "description": "This instrumentation enriches existing HTTP server spans with route information, it does not emit any telemetry on its own.", "display_name": "Javalin", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.javalin:javalin:[5.0.0,7.0.0)" - ], + "javaagent_target_versions": ["io.javalin:javalin:[5.0.0,7.0.0)"], "library_link": "https://javalin.io/", "minimum_java_version": 11, "name": "javalin-5.0", @@ -15,4 +11,4 @@ "name": "io.opentelemetry.javalin-5.0" }, "source_path": "instrumentation/javalin/javalin-5.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-7.0/javalin-7.0-06083c258004.json b/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-7.0/javalin-7.0-06083c258004.json index 8f13eb77..252414ce 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-7.0/javalin-7.0-06083c258004.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-7.0/javalin-7.0-06083c258004.json @@ -1,13 +1,9 @@ { "description": "This instrumentation enriches existing HTTP server spans with route information, it does not emit any telemetry on its own.", "display_name": "Javalin", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.javalin:javalin:[7.0.0,)" - ], + "javaagent_target_versions": ["io.javalin:javalin:[7.0.0,)"], "library_link": "https://javalin.io/", "minimum_java_version": 17, "name": "javalin-7.0", @@ -15,7 +11,5 @@ "name": "io.opentelemetry.javalin-7.0" }, "source_path": "instrumentation/javalin/javalin-7.0", - "tags": [ - "javalin" - ] -} \ No newline at end of file + "tags": ["javalin"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-7.0/javalin-7.0-3d777d5b35fb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-7.0/javalin-7.0-3d777d5b35fb.json index 6286a366..00ad25e9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-7.0/javalin-7.0-3d777d5b35fb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/javalin-7.0/javalin-7.0-3d777d5b35fb.json @@ -1,13 +1,9 @@ { "description": "This instrumentation enriches existing HTTP server spans with route information, it does not emit any telemetry on its own.", "display_name": "Javalin", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.javalin:javalin:[7.0.0,)" - ], + "javaagent_target_versions": ["io.javalin:javalin:[7.0.0,)"], "library_link": "https://javalin.io/", "minimum_java_version": 17, "name": "javalin-7.0", @@ -15,4 +11,4 @@ "name": "io.opentelemetry.javalin-7.0" }, "source_path": "instrumentation/javalin/javalin-7.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-1.0/jaxrs-1.0-2f44a32057e5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-1.0/jaxrs-1.0-2f44a32057e5.json index 9b80c657..6bd6c553 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-1.0/jaxrs-1.0-2f44a32057e5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-1.0/jaxrs-1.0-2f44a32057e5.json @@ -11,14 +11,9 @@ "description": "This instrumentation enriches HTTP server spans with route information and enables controller spans for JAX-RS annotated methods (controller spans are disabled by default).", "disabled_by_default": true, "display_name": "JAX-RS 1.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "javax.ws.rs:jsr311-api:[0.5,)" - ], + "javaagent_target_versions": ["javax.ws.rs:jsr311-api:[0.5,)"], "library_link": "https://javaee.github.io/javaee-spec/javadocs/javax/ws/rs/package-summary.html", "name": "jaxrs-1.0", "scope": { @@ -45,4 +40,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-1.0/jaxrs-1.0-f6e0c9ccce04.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-1.0/jaxrs-1.0-f6e0c9ccce04.json index 71600480..61f96cba 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-1.0/jaxrs-1.0-f6e0c9ccce04.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-1.0/jaxrs-1.0-f6e0c9ccce04.json @@ -11,23 +11,16 @@ "description": "This instrumentation enriches HTTP server spans with route information and enables controller spans for JAX-RS annotated methods (controller spans are disabled by default).", "disabled_by_default": true, "display_name": "JAX-RS 1.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "javax.ws.rs:jsr311-api:[0.5,)" - ], + "javaagent_target_versions": ["javax.ws.rs:jsr311-api:[0.5,)"], "library_link": "https://javaee.github.io/javaee-spec/javadocs/javax/ws/rs/package-summary.html", "name": "jaxrs-1.0", "scope": { "name": "io.opentelemetry.jaxrs-1.0" }, "source_path": "instrumentation/jaxrs/jaxrs-1.0", - "tags": [ - "jaxrs" - ], + "tags": ["jaxrs"], "telemetry": [ { "spans": [ @@ -48,4 +41,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-annotations/jaxrs-2.0-annotations-4070520e35ea.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-annotations/jaxrs-2.0-annotations-4070520e35ea.json index c9de4a56..4400a4b0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-annotations/jaxrs-2.0-annotations-4070520e35ea.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-annotations/jaxrs-2.0-annotations-4070520e35ea.json @@ -18,23 +18,16 @@ "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS annotated methods (controller spans are disabled by default).", "disabled_by_default": true, "display_name": "JAX-RS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "javax.ws.rs:javax.ws.rs-api:[,]" - ], + "javaagent_target_versions": ["javax.ws.rs:javax.ws.rs-api:[,]"], "library_link": "https://javaee.github.io/javaee-spec/javadocs/javax/ws/rs/package-summary.html", "name": "jaxrs-2.0-annotations", "scope": { "name": "io.opentelemetry.jaxrs-2.0-annotations" }, "source_path": "instrumentation/jaxrs/jaxrs-2.0/jaxrs-2.0-annotations", - "tags": [ - "jaxrs" - ], + "tags": ["jaxrs"], "telemetry": [ { "spans": [ @@ -55,4 +48,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-annotations/jaxrs-2.0-annotations-d990df533f39.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-annotations/jaxrs-2.0-annotations-d990df533f39.json index c99fc81d..688b59ef 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-annotations/jaxrs-2.0-annotations-d990df533f39.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-annotations/jaxrs-2.0-annotations-d990df533f39.json @@ -18,14 +18,9 @@ "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS annotated methods (controller spans are disabled by default).", "disabled_by_default": true, "display_name": "JAX-RS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "javax.ws.rs:javax.ws.rs-api:[,]" - ], + "javaagent_target_versions": ["javax.ws.rs:javax.ws.rs-api:[,]"], "library_link": "https://javaee.github.io/javaee-spec/javadocs/javax/ws/rs/package-summary.html", "name": "jaxrs-2.0-annotations", "scope": { @@ -52,4 +47,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-cxf-3.2/jaxrs-2.0-cxf-3.2-ba3cbb3090c8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-cxf-3.2/jaxrs-2.0-cxf-3.2-ba3cbb3090c8.json index 952a1bda..53531389 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-cxf-3.2/jaxrs-2.0-cxf-3.2-ba3cbb3090c8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-cxf-3.2/jaxrs-2.0-cxf-3.2-ba3cbb3090c8.json @@ -17,10 +17,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using Apache CXF (controller spans are disabled by default).", "display_name": "Apache CXF JAX-RS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "org.apache.tomee:openejb-cxf-rs:(8,)", @@ -74,4 +71,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-cxf-3.2/jaxrs-2.0-cxf-3.2-d7a4f3993750.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-cxf-3.2/jaxrs-2.0-cxf-3.2-d7a4f3993750.json index 486afdbf..6e40c9b7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-cxf-3.2/jaxrs-2.0-cxf-3.2-d7a4f3993750.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-cxf-3.2/jaxrs-2.0-cxf-3.2-d7a4f3993750.json @@ -17,10 +17,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using Apache CXF (controller spans are disabled by default).", "display_name": "Apache CXF JAX-RS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "org.apache.tomee:openejb-cxf-rs:(8,)", @@ -32,9 +29,7 @@ "name": "io.opentelemetry.jaxrs-2.0-cxf-3.2" }, "source_path": "instrumentation/jaxrs/jaxrs-2.0/jaxrs-2.0-cxf-3.2", - "tags": [ - "jaxrs" - ], + "tags": ["jaxrs"], "telemetry": [ { "spans": [ @@ -77,4 +72,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-jersey-2.0/jaxrs-2.0-jersey-2.0-b8a834ff302a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-jersey-2.0/jaxrs-2.0-jersey-2.0-b8a834ff302a.json index 04112f7f..473f37d2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-jersey-2.0/jaxrs-2.0-jersey-2.0-b8a834ff302a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-jersey-2.0/jaxrs-2.0-jersey-2.0-b8a834ff302a.json @@ -17,10 +17,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using Jersey (controller spans are disabled by default).", "display_name": "Eclipse Jersey JAX-RS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "org.glassfish.jersey.core:jersey-server:[2.0,3.0.0)", @@ -74,4 +71,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-jersey-2.0/jaxrs-2.0-jersey-2.0-bfa0b47135bc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-jersey-2.0/jaxrs-2.0-jersey-2.0-bfa0b47135bc.json index 8ba39a9e..d7bd627c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-jersey-2.0/jaxrs-2.0-jersey-2.0-bfa0b47135bc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-jersey-2.0/jaxrs-2.0-jersey-2.0-bfa0b47135bc.json @@ -17,10 +17,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using Jersey (controller spans are disabled by default).", "display_name": "Eclipse Jersey JAX-RS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "org.glassfish.jersey.core:jersey-server:[2.0,3.0.0)", @@ -32,9 +29,7 @@ "name": "io.opentelemetry.jaxrs-2.0-jersey-2.0" }, "source_path": "instrumentation/jaxrs/jaxrs-2.0/jaxrs-2.0-jersey-2.0", - "tags": [ - "jaxrs" - ], + "tags": ["jaxrs"], "telemetry": [ { "spans": [ @@ -77,4 +72,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.0/jaxrs-2.0-resteasy-3.0-b390888d5705.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.0/jaxrs-2.0-resteasy-3.0-b390888d5705.json index 3fc8af1e..f5ce3992 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.0/jaxrs-2.0-resteasy-3.0-b390888d5705.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.0/jaxrs-2.0-resteasy-3.0-b390888d5705.json @@ -17,10 +17,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using RESTEasy (controller spans are disabled by default).", "display_name": "JBoss RESTEasy JAX-RS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "org.jboss.resteasy:resteasy-jaxrs:[3.0.0.Final,3.1.0.Final)", @@ -32,9 +29,7 @@ "name": "io.opentelemetry.jaxrs-2.0-resteasy-3.0" }, "source_path": "instrumentation/jaxrs/jaxrs-2.0/jaxrs-2.0-resteasy-3.0", - "tags": [ - "jaxrs" - ], + "tags": ["jaxrs"], "telemetry": [ { "spans": [ @@ -77,4 +72,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.0/jaxrs-2.0-resteasy-3.0-cbd16d2d31f8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.0/jaxrs-2.0-resteasy-3.0-cbd16d2d31f8.json index 5c925a2b..ab12c600 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.0/jaxrs-2.0-resteasy-3.0-cbd16d2d31f8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.0/jaxrs-2.0-resteasy-3.0-cbd16d2d31f8.json @@ -17,10 +17,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using RESTEasy (controller spans are disabled by default).", "display_name": "JBoss RESTEasy JAX-RS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "org.jboss.resteasy:resteasy-jaxrs:[3.0.0.Final,3.1.0.Final)", @@ -74,4 +71,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.1/jaxrs-2.0-resteasy-3.1-7c3d17cf6edf.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.1/jaxrs-2.0-resteasy-3.1-7c3d17cf6edf.json index 17c018a6..f9ce9f5e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.1/jaxrs-2.0-resteasy-3.1-7c3d17cf6edf.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.1/jaxrs-2.0-resteasy-3.1-7c3d17cf6edf.json @@ -15,10 +15,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using RESTEasy (controller spans are disabled by default).", "display_name": "JBoss RESTEasy JAX-RS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "org.jboss.resteasy:resteasy-jaxrs:[3.1.0.Final,3.5.0.Final)", @@ -30,9 +27,7 @@ "name": "io.opentelemetry.jaxrs-2.0-resteasy-3.1" }, "source_path": "instrumentation/jaxrs/jaxrs-2.0/jaxrs-2.0-resteasy-3.1", - "tags": [ - "jaxrs" - ], + "tags": ["jaxrs"], "telemetry": [ { "spans": [ @@ -75,4 +70,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.1/jaxrs-2.0-resteasy-3.1-ceb3c1987ca2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.1/jaxrs-2.0-resteasy-3.1-ceb3c1987ca2.json index f618e76e..fca36ae7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.1/jaxrs-2.0-resteasy-3.1-ceb3c1987ca2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-2.0-resteasy-3.1/jaxrs-2.0-resteasy-3.1-ceb3c1987ca2.json @@ -15,10 +15,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using RESTEasy (controller spans are disabled by default).", "display_name": "JBoss RESTEasy JAX-RS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "org.jboss.resteasy:resteasy-jaxrs:[3.1.0.Final,3.5.0.Final)", @@ -72,4 +69,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-annotations/jaxrs-3.0-annotations-506176134a63.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-annotations/jaxrs-3.0-annotations-506176134a63.json index ef80e5d2..aa98daf8 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-annotations/jaxrs-3.0-annotations-506176134a63.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-annotations/jaxrs-3.0-annotations-506176134a63.json @@ -18,14 +18,9 @@ "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS annotated methods (controller spans are disabled by default).", "disabled_by_default": true, "display_name": "JAX-RS 3.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "jakarta.ws.rs:jakarta.ws.rs-api:[3.0.0,)" - ], + "javaagent_target_versions": ["jakarta.ws.rs:jakarta.ws.rs-api:[3.0.0,)"], "library_link": "https://jakarta.ee/specifications/restful-ws/3.0/", "name": "jaxrs-3.0-annotations", "scope": { @@ -52,4 +47,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-annotations/jaxrs-3.0-annotations-b2f0cee7cb45.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-annotations/jaxrs-3.0-annotations-b2f0cee7cb45.json index 34a0e195..f9782b44 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-annotations/jaxrs-3.0-annotations-b2f0cee7cb45.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-annotations/jaxrs-3.0-annotations-b2f0cee7cb45.json @@ -18,23 +18,16 @@ "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS annotated methods (controller spans are disabled by default).", "disabled_by_default": true, "display_name": "JAX-RS 3.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "jakarta.ws.rs:jakarta.ws.rs-api:[3.0.0,)" - ], + "javaagent_target_versions": ["jakarta.ws.rs:jakarta.ws.rs-api:[3.0.0,)"], "library_link": "https://jakarta.ee/specifications/restful-ws/3.0/", "name": "jaxrs-3.0-annotations", "scope": { "name": "io.opentelemetry.jaxrs-3.0-annotations" }, "source_path": "instrumentation/jaxrs/jaxrs-3.0/jaxrs-3.0-annotations", - "tags": [ - "jaxrs" - ], + "tags": ["jaxrs"], "telemetry": [ { "spans": [ @@ -55,4 +48,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-jersey-3.0/jaxrs-3.0-jersey-3.0-5886b02cb6f2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-jersey-3.0/jaxrs-3.0-jersey-3.0-5886b02cb6f2.json index 622bf8d0..2702ec89 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-jersey-3.0/jaxrs-3.0-jersey-3.0-5886b02cb6f2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-jersey-3.0/jaxrs-3.0-jersey-3.0-5886b02cb6f2.json @@ -17,14 +17,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using Jersey (controller spans are disabled by default).", "display_name": "Eclipse Jersey JAX-RS 3.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.glassfish.jersey.core:jersey-server:[3.0.0,)" - ], + "javaagent_target_versions": ["org.glassfish.jersey.core:jersey-server:[3.0.0,)"], "library_link": "https://eclipse-ee4j.github.io/jersey/", "minimum_java_version": 11, "name": "jaxrs-3.0-jersey-3.0", @@ -74,4 +69,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-jersey-3.0/jaxrs-3.0-jersey-3.0-8f79cf4a4c5e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-jersey-3.0/jaxrs-3.0-jersey-3.0-8f79cf4a4c5e.json index dd549d09..797bebce 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-jersey-3.0/jaxrs-3.0-jersey-3.0-8f79cf4a4c5e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-jersey-3.0/jaxrs-3.0-jersey-3.0-8f79cf4a4c5e.json @@ -17,14 +17,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using Jersey (controller spans are disabled by default).", "display_name": "Eclipse Jersey JAX-RS 3.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.glassfish.jersey.core:jersey-server:[3.0.0,)" - ], + "javaagent_target_versions": ["org.glassfish.jersey.core:jersey-server:[3.0.0,)"], "library_link": "https://eclipse-ee4j.github.io/jersey/", "minimum_java_version": 11, "name": "jaxrs-3.0-jersey-3.0", @@ -32,9 +27,7 @@ "name": "io.opentelemetry.jaxrs-3.0-jersey-3.0" }, "source_path": "instrumentation/jaxrs/jaxrs-3.0/jaxrs-3.0-jersey-3.0", - "tags": [ - "jaxrs" - ], + "tags": ["jaxrs"], "telemetry": [ { "spans": [ @@ -77,4 +70,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-resteasy-6.0/jaxrs-3.0-resteasy-6.0-72b88d9f89a3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-resteasy-6.0/jaxrs-3.0-resteasy-6.0-72b88d9f89a3.json index c5e3ed59..f1cfc847 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-resteasy-6.0/jaxrs-3.0-resteasy-6.0-72b88d9f89a3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-resteasy-6.0/jaxrs-3.0-resteasy-6.0-72b88d9f89a3.json @@ -17,14 +17,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using RESTEasy (controller spans are disabled by default).", "display_name": "JBoss RESTEasy JAX-RS 3.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.jboss.resteasy:resteasy-core:[6.0.0.Final,)" - ], + "javaagent_target_versions": ["org.jboss.resteasy:resteasy-core:[6.0.0.Final,)"], "library_link": "https://resteasy.dev/", "minimum_java_version": 11, "name": "jaxrs-3.0-resteasy-6.0", @@ -32,9 +27,7 @@ "name": "io.opentelemetry.jaxrs-3.0-resteasy-6.0" }, "source_path": "instrumentation/jaxrs/jaxrs-3.0/jaxrs-3.0-resteasy-6.0", - "tags": [ - "jaxrs" - ], + "tags": ["jaxrs"], "telemetry": [ { "spans": [ @@ -77,4 +70,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-resteasy-6.0/jaxrs-3.0-resteasy-6.0-84a228443b32.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-resteasy-6.0/jaxrs-3.0-resteasy-6.0-84a228443b32.json index 38dcc437..972411e0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-resteasy-6.0/jaxrs-3.0-resteasy-6.0-84a228443b32.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxrs-3.0-resteasy-6.0/jaxrs-3.0-resteasy-6.0-84a228443b32.json @@ -17,14 +17,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JAX-RS methods when using RESTEasy (controller spans are disabled by default).", "display_name": "JBoss RESTEasy JAX-RS 3.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.jboss.resteasy:resteasy-core:[6.0.0.Final,)" - ], + "javaagent_target_versions": ["org.jboss.resteasy:resteasy-core:[6.0.0.Final,)"], "library_link": "https://resteasy.dev/", "minimum_java_version": 11, "name": "jaxrs-3.0-resteasy-6.0", @@ -74,4 +69,4 @@ "when": "otel.instrumentation.jaxrs.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0-axis2-1.6/jaxws-2.0-axis2-1.6-1b057e15a60f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0-axis2-1.6/jaxws-2.0-axis2-1.6-1b057e15a60f.json index 1ffaea42..435af828 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0-axis2-1.6/jaxws-2.0-axis2-1.6-1b057e15a60f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0-axis2-1.6/jaxws-2.0-axis2-1.6-1b057e15a60f.json @@ -10,23 +10,16 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Apache Axis2 JAX-WS web services (controller spans are disabled by default).", "display_name": "Apache Axis2 1.6 JAX-WS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.axis2:axis2-jaxws:[1.6.0,)" - ], + "javaagent_target_versions": ["org.apache.axis2:axis2-jaxws:[1.6.0,)"], "library_link": "https://axis.apache.org/axis2/java/core/", "name": "jaxws-2.0-axis2-1.6", "scope": { "name": "io.opentelemetry.jaxws-2.0-axis2-1.6" }, "source_path": "instrumentation/jaxws/jaxws-2.0-axis2-1.6", - "tags": [ - "jaxws" - ], + "tags": ["jaxws"], "telemetry": [ { "spans": [ @@ -38,4 +31,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0-axis2-1.6/jaxws-2.0-axis2-1.6-b1efb0323d90.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0-axis2-1.6/jaxws-2.0-axis2-1.6-b1efb0323d90.json index 1d783850..ca39506d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0-axis2-1.6/jaxws-2.0-axis2-1.6-b1efb0323d90.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0-axis2-1.6/jaxws-2.0-axis2-1.6-b1efb0323d90.json @@ -10,14 +10,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Apache Axis2 JAX-WS web services (controller spans are disabled by default).", "display_name": "Apache Axis2 1.6 JAX-WS 2.x", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.axis2:axis2-jaxws:[1.6.0,)" - ], + "javaagent_target_versions": ["org.apache.axis2:axis2-jaxws:[1.6.0,)"], "library_link": "https://axis.apache.org/axis2/java/core/", "name": "jaxws-2.0-axis2-1.6", "scope": { @@ -35,4 +30,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0/jaxws-2.0-0aed560f9777.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0/jaxws-2.0-0aed560f9777.json index 7485b137..2c11ed22 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0/jaxws-2.0-0aed560f9777.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0/jaxws-2.0-0aed560f9777.json @@ -10,13 +10,9 @@ ], "description": "This instrumentation enables controller spans for JAX-WS Provider implementations (controller spans are disabled by default).", "display_name": "JAX-WS", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "javax.xml.ws:jaxws-api:[2.0,]" - ], + "javaagent_target_versions": ["javax.xml.ws:jaxws-api:[2.0,]"], "library_link": "https://github.com/jakartaee/jax-ws-api", "name": "jaxws-2.0", "scope": { @@ -43,4 +39,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0/jaxws-2.0-31be45ec5db7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0/jaxws-2.0-31be45ec5db7.json index 031b402c..e6748a27 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0/jaxws-2.0-31be45ec5db7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-2.0/jaxws-2.0-31be45ec5db7.json @@ -10,22 +10,16 @@ ], "description": "This instrumentation enables controller spans for JAX-WS Provider implementations (controller spans are disabled by default).", "display_name": "JAX-WS", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "javax.xml.ws:jaxws-api:[2.0,]" - ], + "javaagent_target_versions": ["javax.xml.ws:jaxws-api:[2.0,]"], "library_link": "https://github.com/jakartaee/jax-ws-api", "name": "jaxws-2.0", "scope": { "name": "io.opentelemetry.jaxws-2.0" }, "source_path": "instrumentation/jaxws/jaxws-2.0", - "tags": [ - "jaxws" - ], + "tags": ["jaxws"], "telemetry": [ { "spans": [ @@ -46,4 +40,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-cxf-3.0/jaxws-cxf-3.0-64701ab51e99.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-cxf-3.0/jaxws-cxf-3.0-64701ab51e99.json index 0ed545ea..293e1ed3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-cxf-3.0/jaxws-cxf-3.0-64701ab51e99.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-cxf-3.0/jaxws-cxf-3.0-64701ab51e99.json @@ -10,23 +10,16 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Apache CXF JAX-WS web services (controller spans are disabled by default).", "display_name": "Apache CXF 3.x JAX-WS", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.cxf:cxf-rt-frontend-jaxws:[3.0.0,)" - ], + "javaagent_target_versions": ["org.apache.cxf:cxf-rt-frontend-jaxws:[3.0.0,)"], "library_link": "https://cxf.apache.org/", "name": "jaxws-cxf-3.0", "scope": { "name": "io.opentelemetry.jaxws-cxf-3.0" }, "source_path": "instrumentation/jaxws/jaxws-cxf-3.0", - "tags": [ - "jaxws" - ], + "tags": ["jaxws"], "telemetry": [ { "spans": [ @@ -38,4 +31,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-cxf-3.0/jaxws-cxf-3.0-6b1a062b5665.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-cxf-3.0/jaxws-cxf-3.0-6b1a062b5665.json index e5077083..78a12cd3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-cxf-3.0/jaxws-cxf-3.0-6b1a062b5665.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-cxf-3.0/jaxws-cxf-3.0-6b1a062b5665.json @@ -10,14 +10,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Apache CXF JAX-WS web services (controller spans are disabled by default).", "display_name": "Apache CXF 3.x JAX-WS", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.cxf:cxf-rt-frontend-jaxws:[3.0.0,)" - ], + "javaagent_target_versions": ["org.apache.cxf:cxf-rt-frontend-jaxws:[3.0.0,)"], "library_link": "https://cxf.apache.org/", "name": "jaxws-cxf-3.0", "scope": { @@ -35,4 +30,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-jws-api-1.1/jaxws-jws-api-1.1-842fd10d6dbf.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-jws-api-1.1/jaxws-jws-api-1.1-842fd10d6dbf.json index 6a24ba69..78d7476c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-jws-api-1.1/jaxws-jws-api-1.1-842fd10d6dbf.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-jws-api-1.1/jaxws-jws-api-1.1-842fd10d6dbf.json @@ -11,13 +11,9 @@ "description": "This instrumentation enables controller spans for methods annotated with the @WebService annotation from the JWS API (controller spans are disabled by default).", "disabled_by_default": true, "display_name": "JWS API", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "javax.jws:javax.jws-api:[1.1,]" - ], + "javaagent_target_versions": ["javax.jws:javax.jws-api:[1.1,]"], "library_link": "https://github.com/jakartaee/jws-api", "name": "jaxws-jws-api-1.1", "scope": { @@ -44,4 +40,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-jws-api-1.1/jaxws-jws-api-1.1-f2156c772c0d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-jws-api-1.1/jaxws-jws-api-1.1-f2156c772c0d.json index 7c93226b..073819d6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-jws-api-1.1/jaxws-jws-api-1.1-f2156c772c0d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-jws-api-1.1/jaxws-jws-api-1.1-f2156c772c0d.json @@ -11,22 +11,16 @@ "description": "This instrumentation enables controller spans for methods annotated with the @WebService annotation from the JWS API (controller spans are disabled by default).", "disabled_by_default": true, "display_name": "JWS API", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "javax.jws:javax.jws-api:[1.1,]" - ], + "javaagent_target_versions": ["javax.jws:javax.jws-api:[1.1,]"], "library_link": "https://github.com/jakartaee/jws-api", "name": "jaxws-jws-api-1.1", "scope": { "name": "io.opentelemetry.jaxws-jws-api-1.1" }, "source_path": "instrumentation/jaxws/jaxws-jws-api-1.1", - "tags": [ - "jaxws" - ], + "tags": ["jaxws"], "telemetry": [ { "spans": [ @@ -47,4 +41,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-metro-2.2/jaxws-metro-2.2-230b48c4f12b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-metro-2.2/jaxws-metro-2.2-230b48c4f12b.json index b483fe58..5c00ca21 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-metro-2.2/jaxws-metro-2.2-230b48c4f12b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-metro-2.2/jaxws-metro-2.2-230b48c4f12b.json @@ -9,14 +9,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Metro JAX-WS web services (controller spans are disabled by default).", "display_name": "Metro JAX-WS", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.sun.xml.ws:jaxws-rt:[2.2,)" - ], + "javaagent_target_versions": ["com.sun.xml.ws:jaxws-rt:[2.2,)"], "library_link": "https://javaee.github.io/metro/", "name": "jaxws-metro-2.2", "scope": { @@ -34,4 +29,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-metro-2.2/jaxws-metro-2.2-dedd35bd0cae.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-metro-2.2/jaxws-metro-2.2-dedd35bd0cae.json index a3e944a8..98943f3c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-metro-2.2/jaxws-metro-2.2-dedd35bd0cae.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jaxws-metro-2.2/jaxws-metro-2.2-dedd35bd0cae.json @@ -9,23 +9,16 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Metro JAX-WS web services (controller spans are disabled by default).", "display_name": "Metro JAX-WS", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.sun.xml.ws:jaxws-rt:[2.2.0.1,)" - ], + "javaagent_target_versions": ["com.sun.xml.ws:jaxws-rt:[2.2.0.1,)"], "library_link": "https://javaee.github.io/metro/", "name": "jaxws-metro-2.2", "scope": { "name": "io.opentelemetry.jaxws-metro-2.2" }, "source_path": "instrumentation/jaxws/jaxws-metro-2.2", - "tags": [ - "jaxws" - ], + "tags": ["jaxws"], "telemetry": [ { "spans": [ @@ -37,4 +30,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-appender-1.1/jboss-logmanager-appender-1.1-193fc89981d5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-appender-1.1/jboss-logmanager-appender-1.1-193fc89981d5.json index c502fbc3..6cb75813 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-appender-1.1/jboss-logmanager-appender-1.1-193fc89981d5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-appender-1.1/jboss-logmanager-appender-1.1-193fc89981d5.json @@ -11,10 +11,7 @@ "declarative_name": "java.jboss_logmanager.capture_mdc_attributes/development", "default": "", "description": "Controls which MDC attributes to capture. Use \"*\" to capture all MDC attributes or provide a comma-separated list of specific keys.", - "examples": [ - "custom-mdc-key", - "key1,key2,key3" - ], + "examples": ["custom-mdc-key", "key1,key2,key3"], "name": "otel.instrumentation.jboss-logmanager.experimental.capture-mdc-attributes", "type": "list" }, @@ -28,20 +25,14 @@ ], "description": "This instrumentation bridges JBoss LogManager log events to OpenTelemetry logs.", "display_name": "JBoss Log Manager", - "features": [ - "LOGGING_BRIDGE" - ], + "features": ["LOGGING_BRIDGE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.jboss.logmanager:jboss-logmanager:[1.1.0.GA,)" - ], + "javaagent_target_versions": ["org.jboss.logmanager:jboss-logmanager:[1.1.0.GA,)"], "library_link": "https://github.com/jboss-logging/jboss-logmanager", "name": "jboss-logmanager-appender-1.1", "scope": { "name": "io.opentelemetry.jboss-logmanager-appender-1.1" }, "source_path": "instrumentation/jboss-logmanager/jboss-logmanager-appender-1.1", - "tags": [ - "jboss" - ] -} \ No newline at end of file + "tags": ["jboss"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-appender-1.1/jboss-logmanager-appender-1.1-7cf31d0df152.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-appender-1.1/jboss-logmanager-appender-1.1-7cf31d0df152.json index fb09e3d6..e541bbf7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-appender-1.1/jboss-logmanager-appender-1.1-7cf31d0df152.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-appender-1.1/jboss-logmanager-appender-1.1-7cf31d0df152.json @@ -11,10 +11,7 @@ "declarative_name": "java.jboss_logmanager.capture_mdc_attributes/development", "default": "", "description": "Controls which MDC attributes to capture. Use \"*\" to capture all MDC attributes or provide a comma-separated list of specific keys.", - "examples": [ - "custom-mdc-key", - "key1,key2,key3" - ], + "examples": ["custom-mdc-key", "key1,key2,key3"], "name": "otel.instrumentation.jboss-logmanager.experimental.capture-mdc-attributes", "type": "list" }, @@ -28,17 +25,13 @@ ], "description": "This instrumentation bridges JBoss LogManager log events to OpenTelemetry logs.", "display_name": "JBoss Log Manager", - "features": [ - "LOGGING_BRIDGE" - ], + "features": ["LOGGING_BRIDGE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.jboss.logmanager:jboss-logmanager:[1.1.0.GA,)" - ], + "javaagent_target_versions": ["org.jboss.logmanager:jboss-logmanager:[1.1.0.GA,)"], "library_link": "https://github.com/jboss-logging/jboss-logmanager", "name": "jboss-logmanager-appender-1.1", "scope": { "name": "io.opentelemetry.jboss-logmanager-appender-1.1" }, "source_path": "instrumentation/jboss-logmanager/jboss-logmanager-appender-1.1" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-mdc-1.1/jboss-logmanager-mdc-1.1-8bc99ef758f7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-mdc-1.1/jboss-logmanager-mdc-1.1-8bc99ef758f7.json index 9ad47422..3489e41a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-mdc-1.1/jboss-logmanager-mdc-1.1-8bc99ef758f7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-mdc-1.1/jboss-logmanager-mdc-1.1-8bc99ef758f7.json @@ -2,13 +2,11 @@ "description": "This instrumentation adds trace context (trace ID, span ID, and trace flags) to the JBoss LogManager MDC, it does not emit any telemetry on its own.", "display_name": "JBoss Log Manager", "has_javaagent": true, - "javaagent_target_versions": [ - "org.jboss.logmanager:jboss-logmanager:[1.1.0.GA,)" - ], + "javaagent_target_versions": ["org.jboss.logmanager:jboss-logmanager:[1.1.0.GA,)"], "library_link": "https://github.com/jboss-logging/jboss-logmanager", "name": "jboss-logmanager-mdc-1.1", "scope": { "name": "io.opentelemetry.jboss-logmanager-mdc-1.1" }, "source_path": "instrumentation/jboss-logmanager/jboss-logmanager-mdc-1.1" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-mdc-1.1/jboss-logmanager-mdc-1.1-b1de94f954b2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-mdc-1.1/jboss-logmanager-mdc-1.1-b1de94f954b2.json index 87586843..25a9cd55 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-mdc-1.1/jboss-logmanager-mdc-1.1-b1de94f954b2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jboss-logmanager-mdc-1.1/jboss-logmanager-mdc-1.1-b1de94f954b2.json @@ -2,16 +2,12 @@ "description": "This instrumentation adds trace context (trace ID, span ID, and trace flags) to the JBoss LogManager MDC, it does not emit any telemetry on its own.", "display_name": "JBoss Log Manager", "has_javaagent": true, - "javaagent_target_versions": [ - "org.jboss.logmanager:jboss-logmanager:[1.1.0.GA,)" - ], + "javaagent_target_versions": ["org.jboss.logmanager:jboss-logmanager:[1.1.0.GA,)"], "library_link": "https://github.com/jboss-logging/jboss-logmanager", "name": "jboss-logmanager-mdc-1.1", "scope": { "name": "io.opentelemetry.jboss-logmanager-mdc-1.1" }, "source_path": "instrumentation/jboss-logmanager/jboss-logmanager-mdc-1.1", - "tags": [ - "jboss" - ] -} \ No newline at end of file + "tags": ["jboss"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jdbc/jdbc-bd2d7598efe4.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jdbc/jdbc-bd2d7598efe4.json index 7c9474a2..ad167863 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jdbc/jdbc-bd2d7598efe4.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jdbc/jdbc-bd2d7598efe4.json @@ -47,22 +47,15 @@ "display_name": "JDBC", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "library_link": "https://docs.oracle.com/javase/8/docs/api/java/sql/package-summary.html", "name": "jdbc", "scope": { "name": "io.opentelemetry.jdbc" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/jdbc", - "tags": [ - "jdbc" - ], + "tags": ["jdbc"], "telemetry": [ { "spans": [ @@ -230,4 +223,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jdbc/jdbc-d05a0d7569ec.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jdbc/jdbc-d05a0d7569ec.json index 8186e390..85cb6b68 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jdbc/jdbc-d05a0d7569ec.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jdbc/jdbc-d05a0d7569ec.json @@ -47,18 +47,13 @@ "display_name": "JDBC", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "library_link": "https://docs.oracle.com/javase/8/docs/api/java/sql/package-summary.html", "name": "jdbc", "scope": { "name": "io.opentelemetry.jdbc" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/jdbc", "telemetry": [ { @@ -227,4 +222,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-1.4/jedis-1.4-21e5e5c6e8c6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-1.4/jedis-1.4-21e5e5c6e8c6.json index f14b5af6..3d8b6c20 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-1.4/jedis-1.4-21e5e5c6e8c6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-1.4/jedis-1.4-21e5e5c6e8c6.json @@ -16,18 +16,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Jedis Redis operations.", "display_name": "Jedis", "has_javaagent": true, - "javaagent_target_versions": [ - "redis.clients:jedis:[1.4.0,3.0.0)" - ], + "javaagent_target_versions": ["redis.clients:jedis:[1.4.0,3.0.0)"], "library_link": "https://github.com/redis/jedis", "name": "jedis-1.4", "scope": { "name": "io.opentelemetry.jedis-1.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/jedis/jedis-1.4", "telemetry": [ { @@ -126,4 +121,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-1.4/jedis-1.4-869bd75fa0f9.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-1.4/jedis-1.4-869bd75fa0f9.json index d7a964ad..bd02a69a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-1.4/jedis-1.4-869bd75fa0f9.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-1.4/jedis-1.4-869bd75fa0f9.json @@ -16,22 +16,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Jedis Redis operations.", "display_name": "Jedis", "has_javaagent": true, - "javaagent_target_versions": [ - "redis.clients:jedis:[1.4.0,3.0.0)" - ], + "javaagent_target_versions": ["redis.clients:jedis:[1.4.0,3.0.0)"], "library_link": "https://github.com/redis/jedis", "name": "jedis-1.4", "scope": { "name": "io.opentelemetry.jedis-1.4" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/jedis/jedis-1.4", - "tags": [ - "jedis" - ], + "tags": ["jedis"], "telemetry": [ { "spans": [ @@ -129,4 +122,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-3.0/jedis-3.0-9b60e64c273a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-3.0/jedis-3.0-9b60e64c273a.json index 1ceea181..f6693533 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-3.0/jedis-3.0-9b60e64c273a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-3.0/jedis-3.0-9b60e64c273a.json @@ -16,18 +16,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Jedis Redis operations.", "display_name": "Jedis", "has_javaagent": true, - "javaagent_target_versions": [ - "redis.clients:jedis:[3.0.0,4)" - ], + "javaagent_target_versions": ["redis.clients:jedis:[3.0.0,4)"], "library_link": "https://github.com/redis/jedis", "name": "jedis-3.0", "scope": { "name": "io.opentelemetry.jedis-3.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/jedis/jedis-3.0", "telemetry": [ { @@ -154,4 +149,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-3.0/jedis-3.0-e87df436b1b0.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-3.0/jedis-3.0-e87df436b1b0.json index f4257cff..0c2b5b3b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-3.0/jedis-3.0-e87df436b1b0.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-3.0/jedis-3.0-e87df436b1b0.json @@ -16,22 +16,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Jedis Redis operations.", "display_name": "Jedis", "has_javaagent": true, - "javaagent_target_versions": [ - "redis.clients:jedis:[3.0.0,4)" - ], + "javaagent_target_versions": ["redis.clients:jedis:[3.0.0,4)"], "library_link": "https://github.com/redis/jedis", "name": "jedis-3.0", "scope": { "name": "io.opentelemetry.jedis-3.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/jedis/jedis-3.0", - "tags": [ - "jedis" - ], + "tags": ["jedis"], "telemetry": [ { "spans": [ @@ -157,4 +150,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-4.0/jedis-4.0-4244235ccd6a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-4.0/jedis-4.0-4244235ccd6a.json index 0b620e45..969529a6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-4.0/jedis-4.0-4244235ccd6a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-4.0/jedis-4.0-4244235ccd6a.json @@ -10,18 +10,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Jedis Redis operations.", "display_name": "Jedis", "has_javaagent": true, - "javaagent_target_versions": [ - "redis.clients:jedis:[4.0.0-beta1,)" - ], + "javaagent_target_versions": ["redis.clients:jedis:[4.0.0-beta1,)"], "library_link": "https://github.com/redis/jedis", "name": "jedis-4.0", "scope": { "name": "io.opentelemetry.jedis-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/jedis/jedis-4.0", "telemetry": [ { @@ -116,4 +111,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-4.0/jedis-4.0-9e1068330871.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-4.0/jedis-4.0-9e1068330871.json index deb7aa13..85332c0d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-4.0/jedis-4.0-9e1068330871.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jedis-4.0/jedis-4.0-9e1068330871.json @@ -10,22 +10,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Jedis Redis operations.", "display_name": "Jedis", "has_javaagent": true, - "javaagent_target_versions": [ - "redis.clients:jedis:[4.0.0-beta1,)" - ], + "javaagent_target_versions": ["redis.clients:jedis:[4.0.0-beta1,)"], "library_link": "https://github.com/redis/jedis", "name": "jedis-4.0", "scope": { "name": "io.opentelemetry.jedis-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/jedis/jedis-4.0", - "tags": [ - "jedis" - ], + "tags": ["jedis"], "telemetry": [ { "spans": [ @@ -119,4 +112,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-11.0/jetty-11.0-5022ace48bf6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-11.0/jetty-11.0-5022ace48bf6.json index 5620110d..1bd9a68b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-11.0/jetty-11.0-5022ace48bf6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-11.0/jetty-11.0-5022ace48bf6.json @@ -28,9 +28,7 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Jetty.", "display_name": "Eclipse Jetty", "has_javaagent": true, - "javaagent_target_versions": [ - "org.eclipse.jetty:jetty-server:[11, 12)" - ], + "javaagent_target_versions": ["org.eclipse.jetty:jetty-server:[11, 12)"], "library_link": "https://eclipse.dev/jetty/", "minimum_java_version": 11, "name": "jetty-11.0", @@ -38,14 +36,9 @@ "name": "io.opentelemetry.jetty-11.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/jetty/jetty-11.0", - "tags": [ - "jetty" - ], + "tags": ["jetty"], "telemetry": [ { "metrics": [ @@ -141,4 +134,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-11.0/jetty-11.0-92d07b1143a4.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-11.0/jetty-11.0-92d07b1143a4.json index 527df4e9..720f2b1a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-11.0/jetty-11.0-92d07b1143a4.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-11.0/jetty-11.0-92d07b1143a4.json @@ -28,9 +28,7 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Jetty.", "display_name": "Eclipse Jetty", "has_javaagent": true, - "javaagent_target_versions": [ - "org.eclipse.jetty:jetty-server:[11, 12)" - ], + "javaagent_target_versions": ["org.eclipse.jetty:jetty-server:[11, 12)"], "library_link": "https://eclipse.dev/jetty/", "minimum_java_version": 11, "name": "jetty-11.0", @@ -38,10 +36,7 @@ "name": "io.opentelemetry.jetty-11.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/jetty/jetty-11.0", "telemetry": [ { @@ -138,4 +133,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-12.0/jetty-12.0-588e2d532211.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-12.0/jetty-12.0-588e2d532211.json index f31369f6..2618d02d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-12.0/jetty-12.0-588e2d532211.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-12.0/jetty-12.0-588e2d532211.json @@ -28,9 +28,7 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Jetty.", "display_name": "Eclipse Jetty", "has_javaagent": true, - "javaagent_target_versions": [ - "org.eclipse.jetty:jetty-server:[12,)" - ], + "javaagent_target_versions": ["org.eclipse.jetty:jetty-server:[12,)"], "library_link": "https://eclipse.dev/jetty/", "minimum_java_version": 17, "name": "jetty-12.0", @@ -38,10 +36,7 @@ "name": "io.opentelemetry.jetty-12.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/jetty/jetty-12.0", "telemetry": [ { @@ -138,4 +133,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-12.0/jetty-12.0-76c3343cabe1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-12.0/jetty-12.0-76c3343cabe1.json index 391321f9..6c45269e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-12.0/jetty-12.0-76c3343cabe1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-12.0/jetty-12.0-76c3343cabe1.json @@ -28,9 +28,7 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Jetty.", "display_name": "Eclipse Jetty", "has_javaagent": true, - "javaagent_target_versions": [ - "org.eclipse.jetty:jetty-server:[12,)" - ], + "javaagent_target_versions": ["org.eclipse.jetty:jetty-server:[12,)"], "library_link": "https://eclipse.dev/jetty/", "minimum_java_version": 17, "name": "jetty-12.0", @@ -38,14 +36,9 @@ "name": "io.opentelemetry.jetty-12.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/jetty/jetty-12.0", - "tags": [ - "jetty" - ], + "tags": ["jetty"], "telemetry": [ { "metrics": [ @@ -141,4 +134,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-8.0/jetty-8.0-12977d0159c5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-8.0/jetty-8.0-12977d0159c5.json index 416f7315..878719b3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-8.0/jetty-8.0-12977d0159c5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-8.0/jetty-8.0-12977d0159c5.json @@ -27,27 +27,18 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Jetty.", "display_name": "Eclipse Jetty", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.eclipse.jetty:jetty-server:[8.0.0.v20110901,11)" - ], + "javaagent_target_versions": ["org.eclipse.jetty:jetty-server:[8.0.0.v20110901,11)"], "library_link": "https://eclipse.dev/jetty/", "name": "jetty-8.0", "scope": { "name": "io.opentelemetry.jetty-8.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/jetty/jetty-8.0", - "tags": [ - "jetty" - ], + "tags": ["jetty"], "telemetry": [ { "metrics": [ @@ -143,4 +134,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-8.0/jetty-8.0-1bb852bb50bc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-8.0/jetty-8.0-1bb852bb50bc.json index 0795e862..670be81d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-8.0/jetty-8.0-1bb852bb50bc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-8.0/jetty-8.0-1bb852bb50bc.json @@ -27,23 +27,16 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Jetty.", "display_name": "Eclipse Jetty", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.eclipse.jetty:jetty-server:[8.0.0.v20110901,11)" - ], + "javaagent_target_versions": ["org.eclipse.jetty:jetty-server:[8.0.0.v20110901,11)"], "library_link": "https://eclipse.dev/jetty/", "name": "jetty-8.0", "scope": { "name": "io.opentelemetry.jetty-8.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/jetty/jetty-8.0", "telemetry": [ { @@ -140,4 +133,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-12.0/jetty-httpclient-12.0-20489bd73cc8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-12.0/jetty-httpclient-12.0-20489bd73cc8.json index fbf790e1..7b6178e3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-12.0/jetty-httpclient-12.0-20489bd73cc8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-12.0/jetty-httpclient-12.0-20489bd73cc8.json @@ -46,9 +46,7 @@ "display_name": "Eclipse Jetty HTTP Client", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.eclipse.jetty:jetty-client:[12,)" - ], + "javaagent_target_versions": ["org.eclipse.jetty:jetty-client:[12,)"], "library_link": "https://eclipse.dev/jetty/", "minimum_java_version": 17, "name": "jetty-httpclient-12.0", @@ -56,10 +54,7 @@ "name": "io.opentelemetry.jetty-httpclient-12.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/jetty-httpclient/jetty-httpclient-12.0", "telemetry": [ { @@ -217,4 +212,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-12.0/jetty-httpclient-12.0-9e9bd67be8c9.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-12.0/jetty-httpclient-12.0-9e9bd67be8c9.json index f7403f2d..a961f895 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-12.0/jetty-httpclient-12.0-9e9bd67be8c9.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-12.0/jetty-httpclient-12.0-9e9bd67be8c9.json @@ -46,9 +46,7 @@ "display_name": "Eclipse Jetty HTTP Client", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.eclipse.jetty:jetty-client:[12,)" - ], + "javaagent_target_versions": ["org.eclipse.jetty:jetty-client:[12,)"], "library_link": "https://eclipse.dev/jetty/", "minimum_java_version": 17, "name": "jetty-httpclient-12.0", @@ -56,14 +54,9 @@ "name": "io.opentelemetry.jetty-httpclient-12.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/jetty-httpclient/jetty-httpclient-12.0", - "tags": [ - "jetty" - ], + "tags": ["jetty"], "telemetry": [ { "metrics": [ @@ -143,4 +136,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-9.2/jetty-httpclient-9.2-25eec05dae10.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-9.2/jetty-httpclient-9.2-25eec05dae10.json index fc62d8ca..662939f9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-9.2/jetty-httpclient-9.2-25eec05dae10.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-9.2/jetty-httpclient-9.2-25eec05dae10.json @@ -41,19 +41,14 @@ "display_name": "Eclipse Jetty HTTP Client", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.eclipse.jetty:jetty-client:[9.2,10)" - ], + "javaagent_target_versions": ["org.eclipse.jetty:jetty-client:[9.2,10)"], "library_link": "https://eclipse.dev/jetty/", "name": "jetty-httpclient-9.2", "scope": { "name": "io.opentelemetry.jetty-httpclient-9.2", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/jetty-httpclient/jetty-httpclient-9.2", "telemetry": [ { @@ -211,4 +206,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-9.2/jetty-httpclient-9.2-88f620da84ae.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-9.2/jetty-httpclient-9.2-88f620da84ae.json index a7fc0ac0..084590b3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-9.2/jetty-httpclient-9.2-88f620da84ae.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jetty-httpclient-9.2/jetty-httpclient-9.2-88f620da84ae.json @@ -41,23 +41,16 @@ "display_name": "Eclipse Jetty HTTP Client", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.eclipse.jetty:jetty-client:[9.2,10)" - ], + "javaagent_target_versions": ["org.eclipse.jetty:jetty-client:[9.2,10)"], "library_link": "https://eclipse.dev/jetty/", "name": "jetty-httpclient-9.2", "scope": { "name": "io.opentelemetry.jetty-httpclient-9.2", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/jetty-httpclient/jetty-httpclient-9.2", - "tags": [ - "jetty" - ], + "tags": ["jetty"], "telemetry": [ { "metrics": [ @@ -137,4 +130,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jfinal-3.2/jfinal-3.2-9d4f313d8843.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jfinal-3.2/jfinal-3.2-9d4f313d8843.json index cec720d8..0e6b4c37 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jfinal-3.2/jfinal-3.2-9d4f313d8843.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jfinal-3.2/jfinal-3.2-9d4f313d8843.json @@ -9,23 +9,16 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JFinal controller methods (controller spans are disabled by default).", "display_name": "JFinal", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.jfinal:jfinal:[3.2,)" - ], + "javaagent_target_versions": ["com.jfinal:jfinal:[3.2,)"], "library_link": "https://github.com/jfinal/jfinal", "name": "jfinal-3.2", "scope": { "name": "io.opentelemetry.jfinal-3.2" }, "source_path": "instrumentation/jfinal-3.2", - "tags": [ - "jfinal" - ], + "tags": ["jfinal"], "telemetry": [ { "spans": [ @@ -46,4 +39,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jfinal-3.2/jfinal-3.2-e720e494b56f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jfinal-3.2/jfinal-3.2-e720e494b56f.json index 90df1b3b..fdc4b002 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jfinal-3.2/jfinal-3.2-e720e494b56f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jfinal-3.2/jfinal-3.2-e720e494b56f.json @@ -9,14 +9,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for JFinal controller methods (controller spans are disabled by default).", "display_name": "JFinal", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.jfinal:jfinal:[3.2,)" - ], + "javaagent_target_versions": ["com.jfinal:jfinal:[3.2,)"], "library_link": "https://github.com/jfinal/jfinal", "name": "jfinal-3.2", "scope": { @@ -43,4 +38,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jms-1.1/jms-1.1-c3fa183b610d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jms-1.1/jms-1.1-c3fa183b610d.json index a524ab52..4cdaad8d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jms-1.1/jms-1.1-c3fa183b610d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jms-1.1/jms-1.1-c3fa183b610d.json @@ -26,9 +26,7 @@ "scope": { "name": "io.opentelemetry.jms-1.1" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/jms/jms-1.1", "telemetry": [ { @@ -87,4 +85,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jms-1.1/jms-1.1-e65110ba131a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jms-1.1/jms-1.1-e65110ba131a.json index 38aaaf7f..0d33abff 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jms-1.1/jms-1.1-e65110ba131a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jms-1.1/jms-1.1-e65110ba131a.json @@ -26,13 +26,9 @@ "scope": { "name": "io.opentelemetry.jms-1.1" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/jms/jms-1.1", - "tags": [ - "jms" - ], + "tags": ["jms"], "telemetry": [ { "spans": [ @@ -90,4 +86,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jms-3.0/jms-3.0-9ec08e8a8952.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jms-3.0/jms-3.0-9ec08e8a8952.json index 9f5b4bcb..e0188d78 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jms-3.0/jms-3.0-9ec08e8a8952.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jms-3.0/jms-3.0-9ec08e8a8952.json @@ -18,18 +18,14 @@ "description": "This instrumentation enables messaging spans for Jakarta JMS (Java Message Service) message producers and consumers.", "display_name": "JMS (Java Message Service)", "has_javaagent": true, - "javaagent_target_versions": [ - "jakarta.jms:jakarta.jms-api:[3.0.0,)" - ], + "javaagent_target_versions": ["jakarta.jms:jakarta.jms-api:[3.0.0,)"], "library_link": "https://jakarta.ee/specifications/messaging/3.0/", "minimum_java_version": 11, "name": "jms-3.0", "scope": { "name": "io.opentelemetry.jms-3.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/jms/jms-3.0", "telemetry": [ { @@ -84,4 +80,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jms-3.0/jms-3.0-a710cb3ee816.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jms-3.0/jms-3.0-a710cb3ee816.json index bc7d0aef..370f000d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jms-3.0/jms-3.0-a710cb3ee816.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jms-3.0/jms-3.0-a710cb3ee816.json @@ -18,22 +18,16 @@ "description": "This instrumentation enables messaging spans for Jakarta JMS (Java Message Service) message producers and consumers.", "display_name": "JMS (Java Message Service)", "has_javaagent": true, - "javaagent_target_versions": [ - "jakarta.jms:jakarta.jms-api:[3.0.0,)" - ], + "javaagent_target_versions": ["jakarta.jms:jakarta.jms-api:[3.0.0,)"], "library_link": "https://jakarta.ee/specifications/messaging/3.0/", "minimum_java_version": 11, "name": "jms-3.0", "scope": { "name": "io.opentelemetry.jms-3.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/jms/jms-3.0", - "tags": [ - "jms" - ], + "tags": ["jms"], "telemetry": [ { "spans": [ @@ -87,4 +81,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jmx-metrics/jmx-metrics-b72871c123a7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jmx-metrics/jmx-metrics-b72871c123a7.json index c0763119..3a45cac3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jmx-metrics/jmx-metrics-b72871c123a7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jmx-metrics/jmx-metrics-b72871c123a7.json @@ -8,4 +8,4 @@ "name": "io.opentelemetry.jmx-metrics" }, "source_path": "instrumentation/jmx-metrics" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jodd-http-4.2/jodd-http-4.2-88f4e39825b3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jodd-http-4.2/jodd-http-4.2-88f4e39825b3.json index 65f5fa18..febf56b1 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jodd-http-4.2/jodd-http-4.2-88f4e39825b3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jodd-http-4.2/jodd-http-4.2-88f4e39825b3.json @@ -40,23 +40,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for Jodd HTTP.", "display_name": "Jodd HTTP", "has_javaagent": true, - "javaagent_target_versions": [ - "org.jodd:jodd-http:[4.2.0,)" - ], + "javaagent_target_versions": ["org.jodd:jodd-http:[4.2.0,)"], "library_link": "https://http.jodd.org/", "name": "jodd-http-4.2", "scope": { "name": "io.opentelemetry.jodd-http-4.2", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/jodd-http-4.2", - "tags": [ - "jodd" - ], + "tags": ["jodd"], "telemetry": [ { "metrics": [ @@ -136,4 +129,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jodd-http-4.2/jodd-http-4.2-f3e739ed1bbe.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jodd-http-4.2/jodd-http-4.2-f3e739ed1bbe.json index c208ddc1..25bc5fb8 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jodd-http-4.2/jodd-http-4.2-f3e739ed1bbe.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jodd-http-4.2/jodd-http-4.2-f3e739ed1bbe.json @@ -40,19 +40,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for Jodd HTTP.", "display_name": "Jodd HTTP", "has_javaagent": true, - "javaagent_target_versions": [ - "org.jodd:jodd-http:[4.1.1,)" - ], + "javaagent_target_versions": ["org.jodd:jodd-http:[4.1.1,)"], "library_link": "https://http.jodd.org/", "name": "jodd-http-4.2", "scope": { "name": "io.opentelemetry.jodd-http-4.2", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/jodd-http-4.2", "telemetry": [ { @@ -133,4 +128,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-1.2/jsf-mojarra-1.2-d0e8ba9d31f4.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-1.2/jsf-mojarra-1.2-d0e8ba9d31f4.json index 091371e3..451bc106 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-1.2/jsf-mojarra-1.2-d0e8ba9d31f4.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-1.2/jsf-mojarra-1.2-d0e8ba9d31f4.json @@ -9,9 +9,7 @@ ], "description": "This instrumentation enables controller spans for Mojarra JSF action listeners (controller spans are disabled by default).", "display_name": "Eclipse Mojarra", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "com.sun.faces:jsf-impl:[2.1,2.2)", @@ -37,4 +35,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-1.2/jsf-mojarra-1.2-df0cfa080340.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-1.2/jsf-mojarra-1.2-df0cfa080340.json index 8ac8cc26..ee56f19f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-1.2/jsf-mojarra-1.2-df0cfa080340.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-1.2/jsf-mojarra-1.2-df0cfa080340.json @@ -9,9 +9,7 @@ ], "description": "This instrumentation enables controller spans for Mojarra JSF action listeners (controller spans are disabled by default).", "display_name": "JSF", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "com.sun.faces:jsf-impl:[2.1,2.2)", @@ -26,9 +24,7 @@ "name": "io.opentelemetry.jsf-mojarra-1.2" }, "source_path": "instrumentation/jsf/jsf-mojarra-1.2", - "tags": [ - "jsf" - ], + "tags": ["jsf"], "telemetry": [ { "spans": [ @@ -40,4 +36,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-3.0/jsf-mojarra-3.0-5e42d01255bf.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-3.0/jsf-mojarra-3.0-5e42d01255bf.json index b97a222e..1e8c8819 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-3.0/jsf-mojarra-3.0-5e42d01255bf.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-3.0/jsf-mojarra-3.0-5e42d01255bf.json @@ -9,13 +9,9 @@ ], "description": "This instrumentation enables controller spans for Mojarra JSF action listeners (controller spans are disabled by default).", "display_name": "Eclipse Mojarra", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.glassfish:jakarta.faces:[3,)" - ], + "javaagent_target_versions": ["org.glassfish:jakarta.faces:[3,)"], "library_link": "https://github.com/eclipse-ee4j/mojarra", "minimum_java_version": 11, "name": "jsf-mojarra-3.0", @@ -34,4 +30,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-3.0/jsf-mojarra-3.0-c4cd9e066033.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-3.0/jsf-mojarra-3.0-c4cd9e066033.json index 9502fe58..de27f67f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-3.0/jsf-mojarra-3.0-c4cd9e066033.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-mojarra-3.0/jsf-mojarra-3.0-c4cd9e066033.json @@ -9,13 +9,9 @@ ], "description": "This instrumentation enables controller spans for Mojarra JSF action listeners (controller spans are disabled by default).", "display_name": "JSF", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.glassfish:jakarta.faces:[3,)" - ], + "javaagent_target_versions": ["org.glassfish:jakarta.faces:[3,)"], "library_link": "https://github.com/eclipse-ee4j/mojarra", "minimum_java_version": 11, "name": "jsf-mojarra-3.0", @@ -23,9 +19,7 @@ "name": "io.opentelemetry.jsf-mojarra-3.0" }, "source_path": "instrumentation/jsf/jsf-mojarra-3.0", - "tags": [ - "jsf" - ], + "tags": ["jsf"], "telemetry": [ { "spans": [ @@ -37,4 +31,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-1.2/jsf-myfaces-1.2-3477f4fc80bc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-1.2/jsf-myfaces-1.2-3477f4fc80bc.json index 33726f6e..52769e2b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-1.2/jsf-myfaces-1.2-3477f4fc80bc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-1.2/jsf-myfaces-1.2-3477f4fc80bc.json @@ -9,22 +9,16 @@ ], "description": "This instrumentation enables controller spans for Apache MyFaces action listeners (controller spans are disabled by default).", "display_name": "JSF", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.myfaces.core:myfaces-impl:[1.2,3)" - ], + "javaagent_target_versions": ["org.apache.myfaces.core:myfaces-impl:[1.2,3)"], "library_link": "https://myfaces.apache.org/", "name": "jsf-myfaces-1.2", "scope": { "name": "io.opentelemetry.jsf-myfaces-1.2" }, "source_path": "instrumentation/jsf/jsf-myfaces-1.2", - "tags": [ - "jsf" - ], + "tags": ["jsf"], "telemetry": [ { "spans": [ @@ -36,4 +30,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-1.2/jsf-myfaces-1.2-4f8be6fdd7ae.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-1.2/jsf-myfaces-1.2-4f8be6fdd7ae.json index 01bdacb2..c727832b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-1.2/jsf-myfaces-1.2-4f8be6fdd7ae.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-1.2/jsf-myfaces-1.2-4f8be6fdd7ae.json @@ -9,13 +9,9 @@ ], "description": "This instrumentation enables controller spans for Apache MyFaces action listeners (controller spans are disabled by default).", "display_name": "Apache MyFaces", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.myfaces.core:myfaces-impl:[1.2,3)" - ], + "javaagent_target_versions": ["org.apache.myfaces.core:myfaces-impl:[1.2,3)"], "library_link": "https://myfaces.apache.org/", "name": "jsf-myfaces-1.2", "scope": { @@ -33,4 +29,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-3.0/jsf-myfaces-3.0-4cf24e37289d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-3.0/jsf-myfaces-3.0-4cf24e37289d.json index eaf4a0f2..17c66a56 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-3.0/jsf-myfaces-3.0-4cf24e37289d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-3.0/jsf-myfaces-3.0-4cf24e37289d.json @@ -9,13 +9,9 @@ ], "description": "This instrumentation enables controller spans for Apache MyFaces action listeners (controller spans are disabled by default).", "display_name": "Apache MyFaces", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.myfaces.core:myfaces-impl:[3,)" - ], + "javaagent_target_versions": ["org.apache.myfaces.core:myfaces-impl:[3,)"], "library_link": "https://myfaces.apache.org/", "minimum_java_version": 11, "name": "jsf-myfaces-3.0", @@ -34,4 +30,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-3.0/jsf-myfaces-3.0-77714a2032d6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-3.0/jsf-myfaces-3.0-77714a2032d6.json index 8c0932b3..b3a58454 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-3.0/jsf-myfaces-3.0-77714a2032d6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jsf-myfaces-3.0/jsf-myfaces-3.0-77714a2032d6.json @@ -9,13 +9,9 @@ ], "description": "This instrumentation enables controller spans for Apache MyFaces action listeners (controller spans are disabled by default).", "display_name": "JSF", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.myfaces.core:myfaces-impl:[3,)" - ], + "javaagent_target_versions": ["org.apache.myfaces.core:myfaces-impl:[3,)"], "library_link": "https://myfaces.apache.org/", "minimum_java_version": 11, "name": "jsf-myfaces-3.0", @@ -23,9 +19,7 @@ "name": "io.opentelemetry.jsf-myfaces-3.0" }, "source_path": "instrumentation/jsf/jsf-myfaces-3.0", - "tags": [ - "jsf" - ], + "tags": ["jsf"], "telemetry": [ { "spans": [ @@ -37,4 +31,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jsp-2.3/jsp-2.3-72dd48e6cf89.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jsp-2.3/jsp-2.3-72dd48e6cf89.json index 0e46b588..6b6498b6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jsp-2.3/jsp-2.3-72dd48e6cf89.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jsp-2.3/jsp-2.3-72dd48e6cf89.json @@ -15,22 +15,16 @@ ], "description": "This instrumentation enables view spans for JSP page rendering and compilation (view spans are disabled by default).", "display_name": "JSP (JavaServer Pages)", - "features": [ - "VIEW_SPANS" - ], + "features": ["VIEW_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.tomcat:tomcat-jasper:[7.0.19,10)" - ], + "javaagent_target_versions": ["org.apache.tomcat:tomcat-jasper:[7.0.19,10)"], "library_link": "https://jakarta.ee/specifications/pages/", "name": "jsp-2.3", "scope": { "name": "io.opentelemetry.jsp-2.3" }, "source_path": "instrumentation/jsp-2.3", - "tags": [ - "jsp" - ], + "tags": ["jsp"], "telemetry": [ { "spans": [ @@ -68,4 +62,4 @@ "when": "otel.instrumentation.common.experimental.view-telemetry.enabled=true,otel.instrumentation.jsp.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/jsp-2.3/jsp-2.3-8e0d8b8bb351.json b/ecosystem-explorer/public/data/javaagent/instrumentations/jsp-2.3/jsp-2.3-8e0d8b8bb351.json index 79f53036..2a03c3e6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/jsp-2.3/jsp-2.3-8e0d8b8bb351.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/jsp-2.3/jsp-2.3-8e0d8b8bb351.json @@ -15,13 +15,9 @@ ], "description": "This instrumentation enables view spans for JSP page rendering and compilation (view spans are disabled by default).", "display_name": "JSP (JavaServer Pages)", - "features": [ - "VIEW_SPANS" - ], + "features": ["VIEW_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.tomcat:tomcat-jasper:[7.0.19,10)" - ], + "javaagent_target_versions": ["org.apache.tomcat:tomcat-jasper:[7.0.19,10)"], "library_link": "https://jakarta.ee/specifications/pages/", "name": "jsp-2.3", "scope": { @@ -65,4 +61,4 @@ "when": "otel.instrumentation.common.experimental.view-telemetry.enabled=true,otel.instrumentation.jsp.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-0.11/kafka-clients-0.11-11cf4b89ede3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-0.11/kafka-clients-0.11-11cf4b89ede3.json index f98f38f6..a5232718 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-0.11/kafka-clients-0.11-11cf4b89ede3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-0.11/kafka-clients-0.11-11cf4b89ede3.json @@ -32,21 +32,15 @@ "description": "This instrumentation enables messaging spans for Kafka producers and consumers, and collects internal Kafka client metrics.", "display_name": "Apache Kafka Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.kafka:kafka-clients:[0.11.0.0,)" - ], + "javaagent_target_versions": ["org.apache.kafka:kafka-clients:[0.11.0.0,)"], "library_link": "https://kafka.apache.org/", "name": "kafka-clients-0.11", "scope": { "name": "io.opentelemetry.kafka-clients-0.11" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/kafka/kafka-clients/kafka-clients-0.11", - "tags": [ - "kafka" - ], + "tags": ["kafka"], "telemetry": [ { "spans": [ @@ -235,4 +229,4 @@ "when": "otel.instrumentation.kafka.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-0.11/kafka-clients-0.11-e81e9f732b3c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-0.11/kafka-clients-0.11-e81e9f732b3c.json index 9654c884..f8b620f4 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-0.11/kafka-clients-0.11-e81e9f732b3c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-0.11/kafka-clients-0.11-e81e9f732b3c.json @@ -32,17 +32,13 @@ "description": "This instrumentation enables messaging spans for Kafka producers and consumers, and collects internal Kafka client metrics.", "display_name": "Apache Kafka Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.kafka:kafka-clients:[0.11.0.0,)" - ], + "javaagent_target_versions": ["org.apache.kafka:kafka-clients:[0.11.0.0,)"], "library_link": "https://kafka.apache.org/", "name": "kafka-clients-0.11", "scope": { "name": "io.opentelemetry.kafka-clients-0.11" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/kafka/kafka-clients/kafka-clients-0.11", "telemetry": [ { @@ -236,4 +232,4 @@ "when": "otel.instrumentation.kafka.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-2.6/kafka-clients-2.6-453c676abac2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-2.6/kafka-clients-2.6-453c676abac2.json index b449b9e8..fd9a66c3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-2.6/kafka-clients-2.6-453c676abac2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-2.6/kafka-clients-2.6-453c676abac2.json @@ -7,13 +7,9 @@ "scope": { "name": "io.opentelemetry.kafka-clients-2.6" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/kafka/kafka-clients/kafka-clients-2.6", - "tags": [ - "kafka" - ], + "tags": ["kafka"], "telemetry": [ { "spans": [ @@ -95,4 +91,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-2.6/kafka-clients-2.6-d40bec080374.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-2.6/kafka-clients-2.6-d40bec080374.json index 356bece3..d9625a60 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-2.6/kafka-clients-2.6-d40bec080374.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-clients-2.6/kafka-clients-2.6-d40bec080374.json @@ -7,9 +7,7 @@ "scope": { "name": "io.opentelemetry.kafka-clients-2.6" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/kafka/kafka-clients/kafka-clients-2.6", "telemetry": [ { @@ -100,4 +98,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-connect-2.6/kafka-connect-2.6-089e72100d1e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-connect-2.6/kafka-connect-2.6-089e72100d1e.json index 71fcce5b..11f2ad57 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-connect-2.6/kafka-connect-2.6-089e72100d1e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-connect-2.6/kafka-connect-2.6-089e72100d1e.json @@ -2,17 +2,13 @@ "description": "This instrumentation enables messaging spans for Kafka Connect sink tasks.", "display_name": "Apache Kafka Connect", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.kafka:connect-api:[2.6.0,)" - ], + "javaagent_target_versions": ["org.apache.kafka:connect-api:[2.6.0,)"], "library_link": "https://kafka.apache.org/documentation/#connect", "name": "kafka-connect-2.6", "scope": { "name": "io.opentelemetry.kafka-connect-2.6" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/kafka/kafka-connect-2.6", "telemetry": [ { @@ -50,4 +46,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-connect-2.6/kafka-connect-2.6-fd2cc421fc98.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-connect-2.6/kafka-connect-2.6-fd2cc421fc98.json index 9f098b68..cff8585e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-connect-2.6/kafka-connect-2.6-fd2cc421fc98.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-connect-2.6/kafka-connect-2.6-fd2cc421fc98.json @@ -2,21 +2,15 @@ "description": "This instrumentation enables messaging spans for Kafka Connect sink tasks.", "display_name": "Apache Kafka Connect", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.kafka:connect-api:[2.6.0,)" - ], + "javaagent_target_versions": ["org.apache.kafka:connect-api:[2.6.0,)"], "library_link": "https://kafka.apache.org/documentation/#connect", "name": "kafka-connect-2.6", "scope": { "name": "io.opentelemetry.kafka-connect-2.6" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/kafka/kafka-connect-2.6", - "tags": [ - "kafka" - ], + "tags": ["kafka"], "telemetry": [ { "spans": [ @@ -53,4 +47,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-streams-0.11/kafka-streams-0.11-513428b74cbf.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-streams-0.11/kafka-streams-0.11-513428b74cbf.json index ad045e90..e94eedfe 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-streams-0.11/kafka-streams-0.11-513428b74cbf.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-streams-0.11/kafka-streams-0.11-513428b74cbf.json @@ -22,17 +22,13 @@ "description": "This instrumentation enables messaging spans for Kafka Streams processing.", "display_name": "Apache Kafka Streams", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.kafka:kafka-streams:[0.11.0.0,)" - ], + "javaagent_target_versions": ["org.apache.kafka:kafka-streams:[0.11.0.0,)"], "library_link": "https://kafka.apache.org/documentation/streams/", "name": "kafka-streams-0.11", "scope": { "name": "io.opentelemetry.kafka-streams-0.11" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/kafka/kafka-streams-0.11", "telemetry": [ { @@ -132,4 +128,4 @@ "when": "otel.instrumentation.kafka.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-streams-0.11/kafka-streams-0.11-ae383d29a446.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-streams-0.11/kafka-streams-0.11-ae383d29a446.json index 5ce0d01e..771fb065 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-streams-0.11/kafka-streams-0.11-ae383d29a446.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kafka-streams-0.11/kafka-streams-0.11-ae383d29a446.json @@ -22,21 +22,15 @@ "description": "This instrumentation enables messaging spans for Kafka Streams processing.", "display_name": "Apache Kafka Streams", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.kafka:kafka-streams:[0.11.0.0,)" - ], + "javaagent_target_versions": ["org.apache.kafka:kafka-streams:[0.11.0.0,)"], "library_link": "https://kafka.apache.org/documentation/streams/", "name": "kafka-streams-0.11", "scope": { "name": "io.opentelemetry.kafka-streams-0.11" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/kafka/kafka-streams-0.11", - "tags": [ - "kafka" - ], + "tags": ["kafka"], "telemetry": [ { "spans": [ @@ -135,4 +129,4 @@ "when": "otel.instrumentation.kafka.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-1.0/kotlinx-coroutines-1.0-11681c195f99.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-1.0/kotlinx-coroutines-1.0-11681c195f99.json index a7aff313..42dac4ec 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-1.0/kotlinx-coroutines-1.0-11681c195f99.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-1.0/kotlinx-coroutines-1.0-11681c195f99.json @@ -1,9 +1,7 @@ { "description": "This instrumentation enables context propagation for Kotlin coroutines and adds support for @WithSpan annotations on Kotlin suspend functions.", "display_name": "Kotlin Coroutines", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:[1.3.9,)", @@ -15,4 +13,4 @@ "name": "io.opentelemetry.kotlinx-coroutines-1.0" }, "source_path": "instrumentation/kotlinx-coroutines/kotlinx-coroutines-1.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-1.0/kotlinx-coroutines-1.0-9b25de6b4ab2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-1.0/kotlinx-coroutines-1.0-9b25de6b4ab2.json index 780f9d32..683be884 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-1.0/kotlinx-coroutines-1.0-9b25de6b4ab2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-1.0/kotlinx-coroutines-1.0-9b25de6b4ab2.json @@ -1,9 +1,7 @@ { "description": "This instrumentation enables context propagation for Kotlin coroutines and adds support for @WithSpan annotations on Kotlin suspend functions.", "display_name": "Kotlin Coroutines", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:[1.3.9,)", @@ -15,7 +13,5 @@ "name": "io.opentelemetry.kotlinx-coroutines-1.0" }, "source_path": "instrumentation/kotlinx-coroutines/kotlinx-coroutines-1.0", - "tags": [ - "kotlinx" - ] -} \ No newline at end of file + "tags": ["kotlinx"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-flow-1.3/kotlinx-coroutines-flow-1.3-1d14297682ed.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-flow-1.3/kotlinx-coroutines-flow-1.3-1d14297682ed.json index 762e5d2d..dc108965 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-flow-1.3/kotlinx-coroutines-flow-1.3-1d14297682ed.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-flow-1.3/kotlinx-coroutines-flow-1.3-1d14297682ed.json @@ -12,7 +12,5 @@ "name": "io.opentelemetry.kotlinx-coroutines-flow-1.3" }, "source_path": "instrumentation/kotlinx-coroutines/kotlinx-coroutines-flow-1.3", - "tags": [ - "kotlinx" - ] -} \ No newline at end of file + "tags": ["kotlinx"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-flow-1.3/kotlinx-coroutines-flow-1.3-ab92dae5a315.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-flow-1.3/kotlinx-coroutines-flow-1.3-ab92dae5a315.json index e4801a35..7ee5876a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-flow-1.3/kotlinx-coroutines-flow-1.3-ab92dae5a315.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kotlinx-coroutines-flow-1.3/kotlinx-coroutines-flow-1.3-ab92dae5a315.json @@ -12,4 +12,4 @@ "name": "io.opentelemetry.kotlinx-coroutines-flow-1.3" }, "source_path": "instrumentation/kotlinx-coroutines/kotlinx-coroutines-flow-1.3" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-1.0/ktor-1.0-d196d868f3de.json b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-1.0/ktor-1.0-d196d868f3de.json index 76c4504f..a0abf8f3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-1.0/ktor-1.0-d196d868f3de.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-1.0/ktor-1.0-d196d868f3de.json @@ -1,9 +1,7 @@ { "description": "This standalone instrumentation enables HTTP server spans and HTTP server metrics for the Ktor server.", "display_name": "Ktor", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_standalone_library": true, "library_link": "https://ktor.io/", "name": "ktor-1.0", @@ -11,14 +9,9 @@ "name": "io.opentelemetry.ktor-1.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/ktor/ktor-1.0", - "tags": [ - "ktor" - ], + "tags": ["ktor"], "telemetry": [ { "metrics": [ @@ -159,4 +152,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-1.0/ktor-1.0-e628d5f31da2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-1.0/ktor-1.0-e628d5f31da2.json index 01d71b1f..222e72d1 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-1.0/ktor-1.0-e628d5f31da2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-1.0/ktor-1.0-e628d5f31da2.json @@ -1,9 +1,7 @@ { "description": "This standalone instrumentation enables HTTP server spans and HTTP server metrics for the Ktor server.", "display_name": "Ktor", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_standalone_library": true, "library_link": "https://ktor.io/", "name": "ktor-1.0", @@ -11,10 +9,7 @@ "name": "io.opentelemetry.ktor-1.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/ktor/ktor-1.0", "telemetry": [ { @@ -156,4 +151,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-2.0/ktor-2.0-35e7ae5c721a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-2.0/ktor-2.0-35e7ae5c721a.json index aa7eae5f..96ea334a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-2.0/ktor-2.0-35e7ae5c721a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-2.0/ktor-2.0-35e7ae5c721a.json @@ -57,9 +57,7 @@ ], "description": "This instrumentation provides HTTP server spans and HTTP server metrics for the Ktor server, and HTTP client spans and HTTP client metrics for the Ktor HTTP client.", "display_name": "Ktor", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, "javaagent_target_versions": [ @@ -289,4 +287,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-2.0/ktor-2.0-55d222092ea0.json b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-2.0/ktor-2.0-55d222092ea0.json index 7c22948d..26e53d9d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-2.0/ktor-2.0-55d222092ea0.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-2.0/ktor-2.0-55d222092ea0.json @@ -57,9 +57,7 @@ ], "description": "This instrumentation provides HTTP server spans and HTTP server metrics for the Ktor server, and HTTP client spans and HTTP client metrics for the Ktor HTTP client.", "display_name": "Ktor", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, "javaagent_target_versions": [ @@ -79,9 +77,7 @@ "HTTP_CLIENT_METRICS" ], "source_path": "instrumentation/ktor/ktor-2.0", - "tags": [ - "ktor" - ], + "tags": ["ktor"], "telemetry": [ { "metrics": [ @@ -292,4 +288,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-3.0/ktor-3.0-b2026cc1357a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-3.0/ktor-3.0-b2026cc1357a.json index eae35745..bdd0ebc0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-3.0/ktor-3.0-b2026cc1357a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-3.0/ktor-3.0-b2026cc1357a.json @@ -57,9 +57,7 @@ ], "description": "This instrumentation provides HTTP server spans and HTTP server metrics for the Ktor server, and HTTP client spans and HTTP client metrics for the Ktor HTTP client.", "display_name": "Ktor", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, "javaagent_target_versions": [ @@ -79,9 +77,7 @@ "HTTP_CLIENT_METRICS" ], "source_path": "instrumentation/ktor/ktor-3.0", - "tags": [ - "ktor" - ], + "tags": ["ktor"], "telemetry": [ { "metrics": [ @@ -464,4 +460,4 @@ "when": "otel.instrumentation.http.server.emit-experimental-telemetry=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-3.0/ktor-3.0-d1dd4fc47a3e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-3.0/ktor-3.0-d1dd4fc47a3e.json index 32356f70..075a7bea 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-3.0/ktor-3.0-d1dd4fc47a3e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/ktor-3.0/ktor-3.0-d1dd4fc47a3e.json @@ -57,9 +57,7 @@ ], "description": "This instrumentation provides HTTP server spans and HTTP server metrics for the Ktor server, and HTTP client spans and HTTP client metrics for the Ktor HTTP client.", "display_name": "Ktor", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, "javaagent_target_versions": [ @@ -461,4 +459,4 @@ "when": "otel.instrumentation.http.server.emit-experimental-telemetry=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kubernetes-client-7.0/kubernetes-client-7.0-3047a4b3c893.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kubernetes-client-7.0/kubernetes-client-7.0-3047a4b3c893.json index 1569ecff..fa02c04b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kubernetes-client-7.0/kubernetes-client-7.0-3047a4b3c893.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kubernetes-client-7.0/kubernetes-client-7.0-3047a4b3c893.json @@ -46,19 +46,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the Kubernetes Client for Java.", "display_name": "Kubernetes Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.kubernetes:client-java-api:[7.0.0,)" - ], + "javaagent_target_versions": ["io.kubernetes:client-java-api:[7.0.0,)"], "library_link": "https://github.com/kubernetes-client/java", "name": "kubernetes-client-7.0", "scope": { "name": "io.opentelemetry.kubernetes-client-7.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/kubernetes-client-7.0", "telemetry": [ { @@ -200,4 +195,4 @@ "when": "otel.instrumentation.kubernetes-client.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/kubernetes-client-7.0/kubernetes-client-7.0-d52a6c173bd8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/kubernetes-client-7.0/kubernetes-client-7.0-d52a6c173bd8.json index 3649f1c4..a2a2d871 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/kubernetes-client-7.0/kubernetes-client-7.0-d52a6c173bd8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/kubernetes-client-7.0/kubernetes-client-7.0-d52a6c173bd8.json @@ -46,23 +46,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for the Kubernetes Client for Java.", "display_name": "Kubernetes Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.kubernetes:client-java-api:[7.0.0,)" - ], + "javaagent_target_versions": ["io.kubernetes:client-java-api:[7.0.0,)"], "library_link": "https://github.com/kubernetes-client/java", "name": "kubernetes-client-7.0", "scope": { "name": "io.opentelemetry.kubernetes-client-7.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/kubernetes-client-7.0", - "tags": [ - "kubernetes" - ], + "tags": ["kubernetes"], "telemetry": [ { "metrics": [ @@ -203,4 +196,4 @@ "when": "otel.instrumentation.kubernetes-client.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-4.0/lettuce-4.0-0316e4311a27.json b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-4.0/lettuce-4.0-0316e4311a27.json index d90b9f0a..7ec21e42 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-4.0/lettuce-4.0-0316e4311a27.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-4.0/lettuce-4.0-0316e4311a27.json @@ -22,22 +22,15 @@ "description": "This instrumentation enables database client spans and database client metrics for the Lettuce Redis client.", "display_name": "Lettuce", "has_javaagent": true, - "javaagent_target_versions": [ - "biz.paluch.redis:lettuce:[4.0.Final,)" - ], + "javaagent_target_versions": ["biz.paluch.redis:lettuce:[4.0.Final,)"], "library_link": "https://github.com/redis/lettuce", "name": "lettuce-4.0", "scope": { "name": "io.opentelemetry.lettuce-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/lettuce/lettuce-4.0", - "tags": [ - "lettuce" - ], + "tags": ["lettuce"], "telemetry": [ { "spans": [ @@ -157,4 +150,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-4.0/lettuce-4.0-596d1bf32ceb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-4.0/lettuce-4.0-596d1bf32ceb.json index db49630a..39ebe8b2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-4.0/lettuce-4.0-596d1bf32ceb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-4.0/lettuce-4.0-596d1bf32ceb.json @@ -22,18 +22,13 @@ "description": "This instrumentation enables database client spans and database client metrics for the Lettuce Redis client.", "display_name": "Lettuce", "has_javaagent": true, - "javaagent_target_versions": [ - "biz.paluch.redis:lettuce:[4.0.Final,)" - ], + "javaagent_target_versions": ["biz.paluch.redis:lettuce:[4.0.Final,)"], "library_link": "https://github.com/redis/lettuce", "name": "lettuce-4.0", "scope": { "name": "io.opentelemetry.lettuce-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/lettuce/lettuce-4.0", "telemetry": [ { @@ -154,4 +149,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.0/lettuce-5.0-6ed4bc90b935.json b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.0/lettuce-5.0-6ed4bc90b935.json index 665b8a92..aadb840c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.0/lettuce-5.0-6ed4bc90b935.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.0/lettuce-5.0-6ed4bc90b935.json @@ -28,18 +28,13 @@ "description": "This instrumentation enables database client spans and database client metrics for the Lettuce Redis client.", "display_name": "Lettuce", "has_javaagent": true, - "javaagent_target_versions": [ - "io.lettuce:lettuce-core:[5.0.0.RELEASE,5.1.0.RELEASE)" - ], + "javaagent_target_versions": ["io.lettuce:lettuce-core:[5.0.0.RELEASE,5.1.0.RELEASE)"], "library_link": "https://github.com/redis/lettuce", "name": "lettuce-5.0", "scope": { "name": "io.opentelemetry.lettuce-5.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/lettuce/lettuce-5.0", "telemetry": [ { @@ -176,4 +171,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.0/lettuce-5.0-7a47f08a121e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.0/lettuce-5.0-7a47f08a121e.json index f7eafab8..a5d82d78 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.0/lettuce-5.0-7a47f08a121e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.0/lettuce-5.0-7a47f08a121e.json @@ -28,22 +28,15 @@ "description": "This instrumentation enables database client spans and database client metrics for the Lettuce Redis client.", "display_name": "Lettuce", "has_javaagent": true, - "javaagent_target_versions": [ - "io.lettuce:lettuce-core:[5.0.0.RELEASE,5.1.0.RELEASE)" - ], + "javaagent_target_versions": ["io.lettuce:lettuce-core:[5.0.0.RELEASE,5.1.0.RELEASE)"], "library_link": "https://github.com/redis/lettuce", "name": "lettuce-5.0", "scope": { "name": "io.opentelemetry.lettuce-5.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/lettuce/lettuce-5.0", - "tags": [ - "lettuce" - ], + "tags": ["lettuce"], "telemetry": [ { "spans": [ @@ -179,4 +172,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.1/lettuce-5.1-11dd4e44f3ef.json b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.1/lettuce-5.1-11dd4e44f3ef.json index 2650a4b5..ee4fd734 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.1/lettuce-5.1-11dd4e44f3ef.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.1/lettuce-5.1-11dd4e44f3ef.json @@ -17,18 +17,13 @@ "display_name": "Lettuce", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.lettuce:lettuce-core:[5.1.0.RELEASE,)" - ], + "javaagent_target_versions": ["io.lettuce:lettuce-core:[5.1.0.RELEASE,)"], "library_link": "https://github.com/redis/lettuce", "name": "lettuce-5.1", "scope": { "name": "io.opentelemetry.lettuce-5.1" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/lettuce/lettuce-5.1", "telemetry": [ { @@ -155,4 +150,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.1/lettuce-5.1-26a72d1987f8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.1/lettuce-5.1-26a72d1987f8.json index d906095a..02317988 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.1/lettuce-5.1-26a72d1987f8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/lettuce-5.1/lettuce-5.1-26a72d1987f8.json @@ -17,22 +17,15 @@ "display_name": "Lettuce", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.lettuce:lettuce-core:[5.1.0.RELEASE,)" - ], + "javaagent_target_versions": ["io.lettuce:lettuce-core:[5.1.0.RELEASE,)"], "library_link": "https://github.com/redis/lettuce", "name": "lettuce-5.1", "scope": { "name": "io.opentelemetry.lettuce-5.1" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/lettuce/lettuce-5.1", - "tags": [ - "lettuce" - ], + "tags": ["lettuce"], "telemetry": [ { "spans": [ @@ -158,4 +151,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-20.0/liberty-20.0-621b192ea09c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-20.0/liberty-20.0-621b192ea09c.json index 9913c1d1..53380f45 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-20.0/liberty-20.0-621b192ea09c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-20.0/liberty-20.0-621b192ea09c.json @@ -51,9 +51,6 @@ "scope": { "name": "io.opentelemetry.liberty-20.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/liberty/liberty-20.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-20.0/liberty-20.0-643e91094bbb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-20.0/liberty-20.0-643e91094bbb.json index d86aacc9..f538c271 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-20.0/liberty-20.0-643e91094bbb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-20.0/liberty-20.0-643e91094bbb.json @@ -8,7 +8,5 @@ "name": "io.opentelemetry.liberty-20.0" }, "source_path": "instrumentation/liberty/liberty-20.0", - "tags": [ - "liberty" - ] -} \ No newline at end of file + "tags": ["liberty"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-dispatcher-20.0/liberty-dispatcher-20.0-2c6399591199.json b/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-dispatcher-20.0/liberty-dispatcher-20.0-2c6399591199.json index 8cc2f5d6..eabdfa58 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-dispatcher-20.0/liberty-dispatcher-20.0-2c6399591199.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-dispatcher-20.0/liberty-dispatcher-20.0-2c6399591199.json @@ -37,9 +37,6 @@ "scope": { "name": "io.opentelemetry.liberty-dispatcher-20.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/liberty/liberty-dispatcher-20.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-dispatcher-20.0/liberty-dispatcher-20.0-50609433bb96.json b/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-dispatcher-20.0/liberty-dispatcher-20.0-50609433bb96.json index 3467fb02..e6226ffd 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-dispatcher-20.0/liberty-dispatcher-20.0-50609433bb96.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/liberty-dispatcher-20.0/liberty-dispatcher-20.0-50609433bb96.json @@ -8,7 +8,5 @@ "name": "io.opentelemetry.liberty-dispatcher-20.0" }, "source_path": "instrumentation/liberty/liberty-dispatcher-20.0", - "tags": [ - "liberty" - ] -} \ No newline at end of file + "tags": ["liberty"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-1.2/log4j-appender-1.2-ac4b98ac41d7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-1.2/log4j-appender-1.2-ac4b98ac41d7.json index 6046af74..5a752a52 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-1.2/log4j-appender-1.2-ac4b98ac41d7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-1.2/log4j-appender-1.2-ac4b98ac41d7.json @@ -27,20 +27,14 @@ ], "description": "This instrumentation bridges Log4j log events to OpenTelemetry logs.", "display_name": "Log4j", - "features": [ - "LOGGING_BRIDGE" - ], + "features": ["LOGGING_BRIDGE"], "has_javaagent": true, - "javaagent_target_versions": [ - "log4j:log4j:[1.2,)" - ], + "javaagent_target_versions": ["log4j:log4j:[1.2,)"], "library_link": "https://logging.apache.org/log4j/1.2/", "name": "log4j-appender-1.2", "scope": { "name": "io.opentelemetry.log4j-appender-1.2" }, "source_path": "instrumentation/log4j/log4j-appender-1.2", - "tags": [ - "log4j" - ] -} \ No newline at end of file + "tags": ["log4j"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-1.2/log4j-appender-1.2-f9421420abc7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-1.2/log4j-appender-1.2-f9421420abc7.json index b4be6c1f..c257c57d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-1.2/log4j-appender-1.2-f9421420abc7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-1.2/log4j-appender-1.2-f9421420abc7.json @@ -27,17 +27,13 @@ ], "description": "This instrumentation bridges Log4j log events to OpenTelemetry logs.", "display_name": "Log4j", - "features": [ - "LOGGING_BRIDGE" - ], + "features": ["LOGGING_BRIDGE"], "has_javaagent": true, - "javaagent_target_versions": [ - "log4j:log4j:[1.2,)" - ], + "javaagent_target_versions": ["log4j:log4j:[1.2,)"], "library_link": "https://logging.apache.org/log4j/1.2/", "name": "log4j-appender-1.2", "scope": { "name": "io.opentelemetry.log4j-appender-1.2" }, "source_path": "instrumentation/log4j/log4j-appender-1.2" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-2.17/log4j-appender-2.17-27e853d4db16.json b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-2.17/log4j-appender-2.17-27e853d4db16.json index 8b61059a..7d2e9671 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-2.17/log4j-appender-2.17-27e853d4db16.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-2.17/log4j-appender-2.17-27e853d4db16.json @@ -39,21 +39,15 @@ ], "description": "This instrumentation bridges Log4j log events to OpenTelemetry logs.", "display_name": "Log4j", - "features": [ - "LOGGING_BRIDGE" - ], + "features": ["LOGGING_BRIDGE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.apache.logging.log4j:log4j-core:[2.0,)" - ], + "javaagent_target_versions": ["org.apache.logging.log4j:log4j-core:[2.0,)"], "library_link": "https://logging.apache.org/log4j/2.x/", "name": "log4j-appender-2.17", "scope": { "name": "io.opentelemetry.log4j-appender-2.17" }, "source_path": "instrumentation/log4j/log4j-appender-2.17", - "tags": [ - "log4j" - ] -} \ No newline at end of file + "tags": ["log4j"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-2.17/log4j-appender-2.17-32695fd153eb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-2.17/log4j-appender-2.17-32695fd153eb.json index 9ce1a6de..c8421058 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-2.17/log4j-appender-2.17-32695fd153eb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-appender-2.17/log4j-appender-2.17-32695fd153eb.json @@ -39,18 +39,14 @@ ], "description": "This instrumentation bridges Log4j log events to OpenTelemetry logs.", "display_name": "Log4j", - "features": [ - "LOGGING_BRIDGE" - ], + "features": ["LOGGING_BRIDGE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.apache.logging.log4j:log4j-core:[2.0,)" - ], + "javaagent_target_versions": ["org.apache.logging.log4j:log4j-core:[2.0,)"], "library_link": "https://logging.apache.org/log4j/2.x/", "name": "log4j-appender-2.17", "scope": { "name": "io.opentelemetry.log4j-appender-2.17" }, "source_path": "instrumentation/log4j/log4j-appender-2.17" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.17/log4j-context-data-2.17-4ba5a65d0105.json b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.17/log4j-context-data-2.17-4ba5a65d0105.json index d4d47157..3405157e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.17/log4j-context-data-2.17-4ba5a65d0105.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.17/log4j-context-data-2.17-4ba5a65d0105.json @@ -34,16 +34,12 @@ "description": "This instrumentation adds trace context (trace ID, span ID, and trace flags) to Log4j's ThreadContext, it does not emit any telemetry on its own.", "display_name": "Log4j", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.logging.log4j:log4j-core:[2.17.0,)" - ], + "javaagent_target_versions": ["org.apache.logging.log4j:log4j-core:[2.17.0,)"], "library_link": "https://logging.apache.org/log4j/2.x/", "name": "log4j-context-data-2.17", "scope": { "name": "io.opentelemetry.log4j-context-data-2.17" }, "source_path": "instrumentation/log4j/log4j-context-data/log4j-context-data-2.17", - "tags": [ - "log4j" - ] -} \ No newline at end of file + "tags": ["log4j"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.17/log4j-context-data-2.17-cb406c7b00c2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.17/log4j-context-data-2.17-cb406c7b00c2.json index 11af59be..6a433241 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.17/log4j-context-data-2.17-cb406c7b00c2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.17/log4j-context-data-2.17-cb406c7b00c2.json @@ -34,13 +34,11 @@ "description": "This instrumentation adds trace context (trace ID, span ID, and trace flags) to Log4j's ThreadContext, it does not emit any telemetry on its own.", "display_name": "Log4j", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.logging.log4j:log4j-core:[2.17.0,)" - ], + "javaagent_target_versions": ["org.apache.logging.log4j:log4j-core:[2.17.0,)"], "library_link": "https://logging.apache.org/log4j/2.x/", "name": "log4j-context-data-2.17", "scope": { "name": "io.opentelemetry.log4j-context-data-2.17" }, "source_path": "instrumentation/log4j/log4j-context-data/log4j-context-data-2.17" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.7/log4j-context-data-2.7-3d4f9549aa89.json b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.7/log4j-context-data-2.7-3d4f9549aa89.json index 9f2874b9..1985f989 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.7/log4j-context-data-2.7-3d4f9549aa89.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.7/log4j-context-data-2.7-3d4f9549aa89.json @@ -34,16 +34,12 @@ "description": "This instrumentation adds trace context (trace ID, span ID, and trace flags) to Log4j's ThreadContext, it does not emit any telemetry on its own.", "display_name": "Log4j", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.logging.log4j:log4j-core:[2.7,2.17.0)" - ], + "javaagent_target_versions": ["org.apache.logging.log4j:log4j-core:[2.7,2.17.0)"], "library_link": "https://logging.apache.org/log4j/2.x/", "name": "log4j-context-data-2.7", "scope": { "name": "io.opentelemetry.log4j-context-data-2.7" }, "source_path": "instrumentation/log4j/log4j-context-data/log4j-context-data-2.7", - "tags": [ - "log4j" - ] -} \ No newline at end of file + "tags": ["log4j"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.7/log4j-context-data-2.7-d7c13e7f316a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.7/log4j-context-data-2.7-d7c13e7f316a.json index 43d4bf47..954b00cf 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.7/log4j-context-data-2.7-d7c13e7f316a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-context-data-2.7/log4j-context-data-2.7-d7c13e7f316a.json @@ -34,13 +34,11 @@ "description": "This instrumentation adds trace context (trace ID, span ID, and trace flags) to Log4j's ThreadContext, it does not emit any telemetry on its own.", "display_name": "Log4j", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.logging.log4j:log4j-core:[2.7,2.17.0)" - ], + "javaagent_target_versions": ["org.apache.logging.log4j:log4j-core:[2.7,2.17.0)"], "library_link": "https://logging.apache.org/log4j/2.x/", "name": "log4j-context-data-2.7", "scope": { "name": "io.opentelemetry.log4j-context-data-2.7" }, "source_path": "instrumentation/log4j/log4j-context-data/log4j-context-data-2.7" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-mdc-1.2/log4j-mdc-1.2-241436cf41fd.json b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-mdc-1.2/log4j-mdc-1.2-241436cf41fd.json index 7987f35a..3c608ffe 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-mdc-1.2/log4j-mdc-1.2-241436cf41fd.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-mdc-1.2/log4j-mdc-1.2-241436cf41fd.json @@ -28,13 +28,11 @@ "description": "This instrumentation adds trace context (trace ID, span ID, and trace flags) to the Log4j MDC, it does not emit any telemetry on its own.", "display_name": "Log4j", "has_javaagent": true, - "javaagent_target_versions": [ - "log4j:log4j:[1.2,)" - ], + "javaagent_target_versions": ["log4j:log4j:[1.2,)"], "library_link": "https://logging.apache.org/log4j/1.2/", "name": "log4j-mdc-1.2", "scope": { "name": "io.opentelemetry.log4j-mdc-1.2" }, "source_path": "instrumentation/log4j/log4j-mdc-1.2" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-mdc-1.2/log4j-mdc-1.2-58eb1dac3d5e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-mdc-1.2/log4j-mdc-1.2-58eb1dac3d5e.json index 8a1a17ee..fb70a4aa 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-mdc-1.2/log4j-mdc-1.2-58eb1dac3d5e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/log4j-mdc-1.2/log4j-mdc-1.2-58eb1dac3d5e.json @@ -28,16 +28,12 @@ "description": "This instrumentation adds trace context (trace ID, span ID, and trace flags) to the Log4j MDC, it does not emit any telemetry on its own.", "display_name": "Log4j", "has_javaagent": true, - "javaagent_target_versions": [ - "log4j:log4j:[1.2,)" - ], + "javaagent_target_versions": ["log4j:log4j:[1.2,)"], "library_link": "https://logging.apache.org/log4j/1.2/", "name": "log4j-mdc-1.2", "scope": { "name": "io.opentelemetry.log4j-mdc-1.2" }, "source_path": "instrumentation/log4j/log4j-mdc-1.2", - "tags": [ - "log4j" - ] -} \ No newline at end of file + "tags": ["log4j"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/logback-appender-1.0/logback-appender-1.0-334361567d90.json b/ecosystem-explorer/public/data/javaagent/instrumentations/logback-appender-1.0/logback-appender-1.0-334361567d90.json index e2e0ab42..3059d196 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/logback-appender-1.0/logback-appender-1.0-334361567d90.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/logback-appender-1.0/logback-appender-1.0-334361567d90.json @@ -80,21 +80,15 @@ ], "description": "This instrumentation bridges Logback log events to OpenTelemetry logs.", "display_name": "Logback", - "features": [ - "LOGGING_BRIDGE" - ], + "features": ["LOGGING_BRIDGE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "ch.qos.logback:logback-classic:[0.9.16,)" - ], + "javaagent_target_versions": ["ch.qos.logback:logback-classic:[0.9.16,)"], "library_link": "https://logback.qos.ch/", "name": "logback-appender-1.0", "scope": { "name": "io.opentelemetry.logback-appender-1.0" }, "source_path": "instrumentation/logback/logback-appender-1.0", - "tags": [ - "logback" - ] -} \ No newline at end of file + "tags": ["logback"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/logback-appender-1.0/logback-appender-1.0-3e33393fc2d8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/logback-appender-1.0/logback-appender-1.0-3e33393fc2d8.json index 4f0f4b41..2f4a7be5 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/logback-appender-1.0/logback-appender-1.0-3e33393fc2d8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/logback-appender-1.0/logback-appender-1.0-3e33393fc2d8.json @@ -80,18 +80,14 @@ ], "description": "This instrumentation bridges Logback log events to OpenTelemetry logs.", "display_name": "Logback", - "features": [ - "LOGGING_BRIDGE" - ], + "features": ["LOGGING_BRIDGE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "ch.qos.logback:logback-classic:[0.9.16,)" - ], + "javaagent_target_versions": ["ch.qos.logback:logback-classic:[0.9.16,)"], "library_link": "https://logback.qos.ch/", "name": "logback-appender-1.0", "scope": { "name": "io.opentelemetry.logback-appender-1.0" }, "source_path": "instrumentation/logback/logback-appender-1.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/logback-mdc-1.0/logback-mdc-1.0-1dfc87674164.json b/ecosystem-explorer/public/data/javaagent/instrumentations/logback-mdc-1.0/logback-mdc-1.0-1dfc87674164.json index 07ca433d..6da9a8b4 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/logback-mdc-1.0/logback-mdc-1.0-1dfc87674164.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/logback-mdc-1.0/logback-mdc-1.0-1dfc87674164.json @@ -35,13 +35,11 @@ "display_name": "Logback", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "ch.qos.logback:logback-classic:[1.0.0,1.2.3]" - ], + "javaagent_target_versions": ["ch.qos.logback:logback-classic:[1.0.0,1.2.3]"], "library_link": "https://logback.qos.ch/", "name": "logback-mdc-1.0", "scope": { "name": "io.opentelemetry.logback-mdc-1.0" }, "source_path": "instrumentation/logback/logback-mdc-1.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/logback-mdc-1.0/logback-mdc-1.0-7b048d64a5e4.json b/ecosystem-explorer/public/data/javaagent/instrumentations/logback-mdc-1.0/logback-mdc-1.0-7b048d64a5e4.json index c080b888..c27d8b88 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/logback-mdc-1.0/logback-mdc-1.0-7b048d64a5e4.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/logback-mdc-1.0/logback-mdc-1.0-7b048d64a5e4.json @@ -35,16 +35,12 @@ "display_name": "Logback", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "ch.qos.logback:logback-classic:[1.0.0,1.2.3]" - ], + "javaagent_target_versions": ["ch.qos.logback:logback-classic:[1.0.0,1.2.3]"], "library_link": "https://logback.qos.ch/", "name": "logback-mdc-1.0", "scope": { "name": "io.opentelemetry.logback-mdc-1.0" }, "source_path": "instrumentation/logback/logback-mdc-1.0", - "tags": [ - "logback" - ] -} \ No newline at end of file + "tags": ["logback"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/methods/methods-441fe7278b5c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/methods/methods-441fe7278b5c.json index a315d384..9ddb6d3e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/methods/methods-441fe7278b5c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/methods/methods-441fe7278b5c.json @@ -2,12 +2,10 @@ "description": "Provides a flexible way to capture telemetry at the method level in JVM applications. By weaving instrumentation into targeted methods at runtime based on the \"otel.instrumentation.methods.include\" configuration property, it measures entry and exit points, execution duration and exception occurrences. The resulting data is automatically translated into OpenTelemetry traces.", "display_name": "Methods", "has_javaagent": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "name": "methods", "scope": { "name": "io.opentelemetry.methods" }, "source_path": "instrumentation/methods" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/micrometer-1.5/micrometer-1.5-75085538a3c3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/micrometer-1.5/micrometer-1.5-75085538a3c3.json index 1fb4cfab..6690283a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/micrometer-1.5/micrometer-1.5-75085538a3c3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/micrometer-1.5/micrometer-1.5-75085538a3c3.json @@ -24,13 +24,11 @@ "display_name": "Micrometer", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.micrometer:micrometer-core:[1.5.0,)" - ], + "javaagent_target_versions": ["io.micrometer:micrometer-core:[1.5.0,)"], "library_link": "https://micrometer.io/", "name": "micrometer-1.5", "scope": { "name": "io.opentelemetry.micrometer-1.5" }, "source_path": "instrumentation/micrometer/micrometer-1.5" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/micrometer-1.5/micrometer-1.5-7dd82b70283b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/micrometer-1.5/micrometer-1.5-7dd82b70283b.json index 20f029a3..fe25d714 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/micrometer-1.5/micrometer-1.5-7dd82b70283b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/micrometer-1.5/micrometer-1.5-7dd82b70283b.json @@ -4,16 +4,12 @@ "display_name": "Micrometer", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.micrometer:micrometer-core:[1.5.0,)" - ], + "javaagent_target_versions": ["io.micrometer:micrometer-core:[1.5.0,)"], "library_link": "https://micrometer.io/", "name": "micrometer-1.5", "scope": { "name": "io.opentelemetry.micrometer-1.5" }, "source_path": "instrumentation/micrometer/micrometer-1.5", - "tags": [ - "micrometer" - ] -} \ No newline at end of file + "tags": ["micrometer"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.1/mongo-3.1-bfa015cc3734.json b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.1/mongo-3.1-bfa015cc3734.json index e4391659..89548c2e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.1/mongo-3.1-bfa015cc3734.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.1/mongo-3.1-bfa015cc3734.json @@ -17,22 +17,15 @@ "display_name": "MongoDB Driver", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.mongodb:mongo-java-driver:[3.1,)" - ], + "javaagent_target_versions": ["org.mongodb:mongo-java-driver:[3.1,)"], "library_link": "https://www.mongodb.com/docs/drivers/java-drivers/", "name": "mongo-3.1", "scope": { "name": "io.opentelemetry.mongo-3.1" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/mongo/mongo-3.1", - "tags": [ - "mongo" - ], + "tags": ["mongo"], "telemetry": [ { "spans": [ @@ -150,4 +143,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.1/mongo-3.1-fdffea068c83.json b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.1/mongo-3.1-fdffea068c83.json index 6a53cd5b..7f977d23 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.1/mongo-3.1-fdffea068c83.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.1/mongo-3.1-fdffea068c83.json @@ -17,18 +17,13 @@ "display_name": "MongoDB Driver", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.mongodb:mongo-java-driver:[3.1,)" - ], + "javaagent_target_versions": ["org.mongodb:mongo-java-driver:[3.1,)"], "library_link": "https://www.mongodb.com/docs/drivers/java-drivers/", "name": "mongo-3.1", "scope": { "name": "io.opentelemetry.mongo-3.1" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/mongo/mongo-3.1", "telemetry": [ { @@ -147,4 +142,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.7/mongo-3.7-68386e84e9e8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.7/mongo-3.7-68386e84e9e8.json index 4600e01f..e0ffd422 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.7/mongo-3.7-68386e84e9e8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.7/mongo-3.7-68386e84e9e8.json @@ -25,14 +25,9 @@ "scope": { "name": "io.opentelemetry.mongo-3.7" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/mongo/mongo-3.7", - "tags": [ - "mongo" - ], + "tags": ["mongo"], "telemetry": [ { "spans": [ @@ -150,4 +145,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.7/mongo-3.7-c9ab82402fd9.json b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.7/mongo-3.7-c9ab82402fd9.json index ad5e5d76..dca8669b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.7/mongo-3.7-c9ab82402fd9.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-3.7/mongo-3.7-c9ab82402fd9.json @@ -25,10 +25,7 @@ "scope": { "name": "io.opentelemetry.mongo-3.7" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/mongo/mongo-3.7", "telemetry": [ { @@ -147,4 +144,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-4.0/mongo-4.0-215c07de84de.json b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-4.0/mongo-4.0-215c07de84de.json index 9d2f8b49..87ddfa5c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-4.0/mongo-4.0-215c07de84de.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-4.0/mongo-4.0-215c07de84de.json @@ -16,22 +16,15 @@ "description": "This instrumentation enables database client spans and database client metrics for the MongoDB Java driver.", "display_name": "MongoDB Driver", "has_javaagent": true, - "javaagent_target_versions": [ - "org.mongodb:mongodb-driver-core:[4.0,)" - ], + "javaagent_target_versions": ["org.mongodb:mongodb-driver-core:[4.0,)"], "library_link": "https://www.mongodb.com/docs/drivers/java-drivers/", "name": "mongo-4.0", "scope": { "name": "io.opentelemetry.mongo-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/mongo/mongo-4.0", - "tags": [ - "mongo" - ], + "tags": ["mongo"], "telemetry": [ { "spans": [ @@ -149,4 +142,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-4.0/mongo-4.0-73b2d3699b98.json b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-4.0/mongo-4.0-73b2d3699b98.json index 55bdf183..378d41ab 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-4.0/mongo-4.0-73b2d3699b98.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-4.0/mongo-4.0-73b2d3699b98.json @@ -16,18 +16,13 @@ "description": "This instrumentation enables database client spans and database client metrics for the MongoDB Java driver.", "display_name": "MongoDB Driver", "has_javaagent": true, - "javaagent_target_versions": [ - "org.mongodb:mongodb-driver-core:[4.0,)" - ], + "javaagent_target_versions": ["org.mongodb:mongodb-driver-core:[4.0,)"], "library_link": "https://www.mongodb.com/docs/drivers/java-drivers/", "name": "mongo-4.0", "scope": { "name": "io.opentelemetry.mongo-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/mongo/mongo-4.0", "telemetry": [ { @@ -146,4 +141,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-async-3.3/mongo-async-3.3-772d866fbeaa.json b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-async-3.3/mongo-async-3.3-772d866fbeaa.json index c18bd7b8..eafa2945 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-async-3.3/mongo-async-3.3-772d866fbeaa.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-async-3.3/mongo-async-3.3-772d866fbeaa.json @@ -16,22 +16,15 @@ "description": "This instrumentation enables database client spans and database client metrics for the MongoDB async Java driver.", "display_name": "MongoDB Driver (Async)", "has_javaagent": true, - "javaagent_target_versions": [ - "org.mongodb:mongodb-driver-async:[3.3,)" - ], + "javaagent_target_versions": ["org.mongodb:mongodb-driver-async:[3.3,)"], "library_link": "https://www.mongodb.com/docs/drivers/java-drivers/", "name": "mongo-async-3.3", "scope": { "name": "io.opentelemetry.mongo-async-3.3" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/mongo/mongo-async-3.3", - "tags": [ - "mongo" - ], + "tags": ["mongo"], "telemetry": [ { "spans": [ @@ -149,4 +142,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-async-3.3/mongo-async-3.3-efb96427bc35.json b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-async-3.3/mongo-async-3.3-efb96427bc35.json index 2bed13c1..ad6f23be 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-async-3.3/mongo-async-3.3-efb96427bc35.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/mongo-async-3.3/mongo-async-3.3-efb96427bc35.json @@ -16,18 +16,13 @@ "description": "This instrumentation enables database client spans and database client metrics for the MongoDB async Java driver.", "display_name": "MongoDB Driver (Async)", "has_javaagent": true, - "javaagent_target_versions": [ - "org.mongodb:mongodb-driver-async:[3.3,)" - ], + "javaagent_target_versions": ["org.mongodb:mongodb-driver-async:[3.3,)"], "library_link": "https://www.mongodb.com/docs/drivers/java-drivers/", "name": "mongo-async-3.3", "scope": { "name": "io.opentelemetry.mongo-async-3.3" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/mongo/mongo-async-3.3", "telemetry": [ { @@ -146,4 +141,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/mybatis-3.2/mybatis-3.2-1ea373e38f10.json b/ecosystem-explorer/public/data/javaagent/instrumentations/mybatis-3.2/mybatis-3.2-1ea373e38f10.json index 85851ad4..a5a89a17 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/mybatis-3.2/mybatis-3.2-1ea373e38f10.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/mybatis-3.2/mybatis-3.2-1ea373e38f10.json @@ -3,9 +3,7 @@ "disabled_by_default": true, "display_name": "MyBatis", "has_javaagent": true, - "javaagent_target_versions": [ - "org.mybatis:mybatis:[3.2.0,)" - ], + "javaagent_target_versions": ["org.mybatis:mybatis:[3.2.0,)"], "library_link": "https://mybatis.org/mybatis-3/", "name": "mybatis-3.2", "scope": { @@ -32,4 +30,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/mybatis-3.2/mybatis-3.2-3ad9b1c911c2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/mybatis-3.2/mybatis-3.2-3ad9b1c911c2.json index 9733f317..e3443d8b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/mybatis-3.2/mybatis-3.2-3ad9b1c911c2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/mybatis-3.2/mybatis-3.2-3ad9b1c911c2.json @@ -3,18 +3,14 @@ "disabled_by_default": true, "display_name": "MyBatis", "has_javaagent": true, - "javaagent_target_versions": [ - "org.mybatis:mybatis:[3.2.0,)" - ], + "javaagent_target_versions": ["org.mybatis:mybatis:[3.2.0,)"], "library_link": "https://mybatis.org/mybatis-3/", "name": "mybatis-3.2", "scope": { "name": "io.opentelemetry.mybatis-3.2" }, "source_path": "instrumentation/mybatis-3.2", - "tags": [ - "mybatis" - ], + "tags": ["mybatis"], "telemetry": [ { "spans": [ @@ -35,4 +31,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/nats-2.17/nats-2.17-11fb09e67762.json b/ecosystem-explorer/public/data/javaagent/instrumentations/nats-2.17/nats-2.17-11fb09e67762.json index 8e194a70..9abe64ab 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/nats-2.17/nats-2.17-11fb09e67762.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/nats-2.17/nats-2.17-11fb09e67762.json @@ -11,17 +11,13 @@ "display_name": "NATS Client", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.nats:jnats:[2.17.2,)" - ], + "javaagent_target_versions": ["io.nats:jnats:[2.17.2,)"], "library_link": "https://nats.io/", "name": "nats-2.17", "scope": { "name": "io.opentelemetry.nats-2.17" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/nats/nats-2.17", "telemetry": [ { @@ -96,4 +92,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/nats-2.17/nats-2.17-b6ac1610ff70.json b/ecosystem-explorer/public/data/javaagent/instrumentations/nats-2.17/nats-2.17-b6ac1610ff70.json index f39b4445..cb46825c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/nats-2.17/nats-2.17-b6ac1610ff70.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/nats-2.17/nats-2.17-b6ac1610ff70.json @@ -11,21 +11,15 @@ "display_name": "NATS Client", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.nats:jnats:[2.17.2,)" - ], + "javaagent_target_versions": ["io.nats:jnats:[2.17.2,)"], "library_link": "https://nats.io/", "name": "nats-2.17", "scope": { "name": "io.opentelemetry.nats-2.17" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/nats/nats-2.17", - "tags": [ - "nats" - ], + "tags": ["nats"], "telemetry": [ { "spans": [ @@ -99,4 +93,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-3.8/netty-3.8-4d7e0c0e9aa9.json b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-3.8/netty-3.8-4d7e0c0e9aa9.json index 13c692aa..7efcccf9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-3.8/netty-3.8-4d7e0c0e9aa9.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-3.8/netty-3.8-4d7e0c0e9aa9.json @@ -58,9 +58,7 @@ "description": "This instrumentation enables HTTP client spans, HTTP client metrics, HTTP server spans, and HTTP server metrics for the Netty framework.", "display_name": "Netty HTTP codec", "has_javaagent": true, - "javaagent_target_versions": [ - "io.netty:netty:[3.8.0.Final,4)" - ], + "javaagent_target_versions": ["io.netty:netty:[3.8.0.Final,4)"], "library_link": "https://netty.io/", "name": "netty-3.8", "scope": { @@ -74,9 +72,7 @@ "HTTP_SERVER_METRICS" ], "source_path": "instrumentation/netty/netty-3.8", - "tags": [ - "netty" - ], + "tags": ["netty"], "telemetry": [ { "metrics": [ @@ -250,4 +246,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-3.8/netty-3.8-640f4049ecd2.json b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-3.8/netty-3.8-640f4049ecd2.json index 4f0ff7ce..8568541f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-3.8/netty-3.8-640f4049ecd2.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-3.8/netty-3.8-640f4049ecd2.json @@ -58,9 +58,7 @@ "description": "This instrumentation enables HTTP client spans, HTTP client metrics, HTTP server spans, and HTTP server metrics for the Netty framework.", "display_name": "Netty HTTP codec", "has_javaagent": true, - "javaagent_target_versions": [ - "io.netty:netty:[3.8.0.Final,4)" - ], + "javaagent_target_versions": ["io.netty:netty:[3.8.0.Final,4)"], "library_link": "https://netty.io/", "name": "netty-3.8", "scope": { @@ -247,4 +245,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.0/netty-4.0-53ff267d6c44.json b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.0/netty-4.0-53ff267d6c44.json index e5a37884..6073ded9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.0/netty-4.0-53ff267d6c44.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.0/netty-4.0-53ff267d6c44.json @@ -260,4 +260,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.0/netty-4.0-7740794a825f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.0/netty-4.0-7740794a825f.json index 0c6fb996..32dafd13 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.0/netty-4.0-7740794a825f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.0/netty-4.0-7740794a825f.json @@ -87,9 +87,7 @@ "HTTP_SERVER_METRICS" ], "source_path": "instrumentation/netty/netty-4.0", - "tags": [ - "netty" - ], + "tags": ["netty"], "telemetry": [ { "metrics": [ @@ -263,4 +261,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.1/netty-4.1-caefdb05df88.json b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.1/netty-4.1-caefdb05df88.json index 9e519759..06c42585 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.1/netty-4.1-caefdb05df88.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.1/netty-4.1-caefdb05df88.json @@ -88,9 +88,7 @@ "HTTP_SERVER_METRICS" ], "source_path": "instrumentation/netty/netty-4.1", - "tags": [ - "netty" - ], + "tags": ["netty"], "telemetry": [ { "metrics": [ @@ -264,4 +262,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.1/netty-4.1-ce84876cb10b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.1/netty-4.1-ce84876cb10b.json index 3e0294b7..553cbd5e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.1/netty-4.1-ce84876cb10b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/netty-4.1/netty-4.1-ce84876cb10b.json @@ -261,4 +261,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-2.2/okhttp-2.2-73a70e4a3948.json b/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-2.2/okhttp-2.2-73a70e4a3948.json index ed676c44..90dad2d7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-2.2/okhttp-2.2-73a70e4a3948.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-2.2/okhttp-2.2-73a70e4a3948.json @@ -40,18 +40,13 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for OkHttp.", "display_name": "OkHttp", "has_javaagent": true, - "javaagent_target_versions": [ - "com.squareup.okhttp:okhttp:[2.2,3)" - ], + "javaagent_target_versions": ["com.squareup.okhttp:okhttp:[2.2,3)"], "name": "okhttp-2.2", "scope": { "name": "io.opentelemetry.okhttp-2.2", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/okhttp/okhttp-2.2", "telemetry": [ { @@ -209,4 +204,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-2.2/okhttp-2.2-a8350a0e3c91.json b/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-2.2/okhttp-2.2-a8350a0e3c91.json index d440af8a..10c19885 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-2.2/okhttp-2.2-a8350a0e3c91.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-2.2/okhttp-2.2-a8350a0e3c91.json @@ -40,22 +40,15 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for OkHttp.", "display_name": "OkHttp", "has_javaagent": true, - "javaagent_target_versions": [ - "com.squareup.okhttp:okhttp:[2.2,3)" - ], + "javaagent_target_versions": ["com.squareup.okhttp:okhttp:[2.2,3)"], "name": "okhttp-2.2", "scope": { "name": "io.opentelemetry.okhttp-2.2", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/okhttp/okhttp-2.2", - "tags": [ - "okhttp" - ], + "tags": ["okhttp"], "telemetry": [ { "metrics": [ @@ -135,4 +128,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-3.0/okhttp-3.0-322897d47bb9.json b/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-3.0/okhttp-3.0-322897d47bb9.json index d02eab71..3791fe20 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-3.0/okhttp-3.0-322897d47bb9.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-3.0/okhttp-3.0-322897d47bb9.json @@ -41,19 +41,14 @@ "display_name": "OkHttp", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.squareup.okhttp3:okhttp:[3.0,)" - ], + "javaagent_target_versions": ["com.squareup.okhttp3:okhttp:[3.0,)"], "library_link": "https://square.github.io/okhttp/", "name": "okhttp-3.0", "scope": { "name": "io.opentelemetry.okhttp-3.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/okhttp/okhttp-3.0", "telemetry": [ { @@ -235,4 +230,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-3.0/okhttp-3.0-c92249ca6910.json b/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-3.0/okhttp-3.0-c92249ca6910.json index 674571f6..f2a9fe7d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-3.0/okhttp-3.0-c92249ca6910.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/okhttp-3.0/okhttp-3.0-c92249ca6910.json @@ -41,23 +41,16 @@ "display_name": "OkHttp", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.squareup.okhttp3:okhttp:[3.0,)" - ], + "javaagent_target_versions": ["com.squareup.okhttp3:okhttp:[3.0,)"], "library_link": "https://square.github.io/okhttp/", "name": "okhttp-3.0", "scope": { "name": "io.opentelemetry.okhttp-3.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/okhttp/okhttp-3.0", - "tags": [ - "okhttp" - ], + "tags": ["okhttp"], "telemetry": [ { "metrics": [ @@ -149,4 +142,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/openai-java-1.1/openai-java-1.1-387293075e4b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/openai-java-1.1/openai-java-1.1-387293075e4b.json index e0112a22..1db0883b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/openai-java-1.1/openai-java-1.1-387293075e4b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/openai-java-1.1/openai-java-1.1-387293075e4b.json @@ -11,18 +11,13 @@ "display_name": "OpenAI Java SDK", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.openai:openai-java:[1.1.0,3)" - ], + "javaagent_target_versions": ["com.openai:openai-java:[1.1.0,3)"], "library_link": "https://github.com/openai/openai-java", "name": "openai-java-1.1", "scope": { "name": "io.opentelemetry.openai-java-1.1" }, - "semantic_conventions": [ - "GENAI_CLIENT_SPANS", - "GENAI_CLIENT_METRICS" - ], + "semantic_conventions": ["GENAI_CLIENT_SPANS", "GENAI_CLIENT_METRICS"], "source_path": "instrumentation/openai/openai-java-1.1", "telemetry": [ { @@ -181,4 +176,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/openai-java-1.1/openai-java-1.1-f9d2ebf41243.json b/ecosystem-explorer/public/data/javaagent/instrumentations/openai-java-1.1/openai-java-1.1-f9d2ebf41243.json index 35e5be1e..0996c6b0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/openai-java-1.1/openai-java-1.1-f9d2ebf41243.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/openai-java-1.1/openai-java-1.1-f9d2ebf41243.json @@ -11,22 +11,15 @@ "display_name": "OpenAI Java SDK", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.openai:openai-java:[1.1.0,3)" - ], + "javaagent_target_versions": ["com.openai:openai-java:[1.1.0,3)"], "library_link": "https://github.com/openai/openai-java", "name": "openai-java-1.1", "scope": { "name": "io.opentelemetry.openai-java-1.1" }, - "semantic_conventions": [ - "GENAI_CLIENT_SPANS", - "GENAI_CLIENT_METRICS" - ], + "semantic_conventions": ["GENAI_CLIENT_SPANS", "GENAI_CLIENT_METRICS"], "source_path": "instrumentation/openai/openai-java-1.1", - "tags": [ - "openai" - ], + "tags": ["openai"], "telemetry": [ { "metrics": [ @@ -184,4 +177,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-java-3.0/opensearch-java-3.0-7c38f10f84be.json b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-java-3.0/opensearch-java-3.0-7c38f10f84be.json index 4080da37..ea99c71d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-java-3.0/opensearch-java-3.0-7c38f10f84be.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-java-3.0/opensearch-java-3.0-7c38f10f84be.json @@ -2,23 +2,16 @@ "description": "This instrumentation enables database client spans and database client metrics for the OpenSearch Java client.", "display_name": "OpenSearch Java Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.opensearch.client:opensearch-java:[3.0,)" - ], + "javaagent_target_versions": ["org.opensearch.client:opensearch-java:[3.0,)"], "library_link": "https://docs.opensearch.org/latest/clients/java/", "minimum_java_version": 11, "name": "opensearch-java-3.0", "scope": { "name": "io.opentelemetry.opensearch-java-3.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/opensearch/opensearch-java-3.0", - "tags": [ - "opensearch" - ], + "tags": ["opensearch"], "telemetry": [ { "spans": [ @@ -84,4 +77,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-java-3.0/opensearch-java-3.0-e5f580f62b45.json b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-java-3.0/opensearch-java-3.0-e5f580f62b45.json index 0f1b3d79..a1c9ad94 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-java-3.0/opensearch-java-3.0-e5f580f62b45.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-java-3.0/opensearch-java-3.0-e5f580f62b45.json @@ -2,19 +2,14 @@ "description": "This instrumentation enables database client spans and database client metrics for the OpenSearch Java client.", "display_name": "OpenSearch Java Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.opensearch.client:opensearch-java:[3.0,)" - ], + "javaagent_target_versions": ["org.opensearch.client:opensearch-java:[3.0,)"], "library_link": "https://docs.opensearch.org/latest/clients/java/", "minimum_java_version": 11, "name": "opensearch-java-3.0", "scope": { "name": "io.opentelemetry.opensearch-java-3.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/opensearch/opensearch-java-3.0", "telemetry": [ { @@ -81,4 +76,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-1.0/opensearch-rest-1.0-8366f18347cc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-1.0/opensearch-rest-1.0-8366f18347cc.json index 5ee45b9a..b3b64e87 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-1.0/opensearch-rest-1.0-8366f18347cc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-1.0/opensearch-rest-1.0-8366f18347cc.json @@ -2,23 +2,16 @@ "description": "This instrumentation enables database client spans and database client metrics for OpenSearch REST clients.", "display_name": "OpenSearch REST Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.opensearch.client:opensearch-rest-client:[1.0,3.0)" - ], + "javaagent_target_versions": ["org.opensearch.client:opensearch-rest-client:[1.0,3.0)"], "library_link": "https://docs.opensearch.org/latest/clients/", "minimum_java_version": 11, "name": "opensearch-rest-1.0", "scope": { "name": "io.opentelemetry.opensearch-rest-1.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/opensearch/opensearch-rest-1.0", - "tags": [ - "opensearch" - ], + "tags": ["opensearch"], "telemetry": [ { "spans": [ @@ -84,4 +77,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-1.0/opensearch-rest-1.0-cf5d3f44a6ea.json b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-1.0/opensearch-rest-1.0-cf5d3f44a6ea.json index b544ce7d..43249646 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-1.0/opensearch-rest-1.0-cf5d3f44a6ea.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-1.0/opensearch-rest-1.0-cf5d3f44a6ea.json @@ -2,19 +2,14 @@ "description": "This instrumentation enables database client spans and database client metrics for OpenSearch REST clients.", "display_name": "OpenSearch REST Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.opensearch.client:opensearch-rest-client:[1.0,3.0)" - ], + "javaagent_target_versions": ["org.opensearch.client:opensearch-rest-client:[1.0,3.0)"], "library_link": "https://docs.opensearch.org/latest/clients/", "minimum_java_version": 11, "name": "opensearch-rest-1.0", "scope": { "name": "io.opentelemetry.opensearch-rest-1.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/opensearch/opensearch-rest-1.0", "telemetry": [ { @@ -81,4 +76,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-3.0/opensearch-rest-3.0-16d2a056e636.json b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-3.0/opensearch-rest-3.0-16d2a056e636.json index 667bb39b..bc1e63f9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-3.0/opensearch-rest-3.0-16d2a056e636.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-3.0/opensearch-rest-3.0-16d2a056e636.json @@ -2,19 +2,14 @@ "description": "This instrumentation enables database client spans and database client metrics for OpenSearch REST clients.", "display_name": "OpenSearch REST Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.opensearch.client:opensearch-rest-client:[3.0,)" - ], + "javaagent_target_versions": ["org.opensearch.client:opensearch-rest-client:[3.0,)"], "library_link": "https://docs.opensearch.org/latest/clients/", "minimum_java_version": 11, "name": "opensearch-rest-3.0", "scope": { "name": "io.opentelemetry.opensearch-rest-3.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/opensearch/opensearch-rest-3.0", "telemetry": [ { @@ -81,4 +76,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-3.0/opensearch-rest-3.0-d6038ebb079d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-3.0/opensearch-rest-3.0-d6038ebb079d.json index 168bb851..39415e72 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-3.0/opensearch-rest-3.0-d6038ebb079d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/opensearch-rest-3.0/opensearch-rest-3.0-d6038ebb079d.json @@ -2,23 +2,16 @@ "description": "This instrumentation enables database client spans and database client metrics for OpenSearch REST clients.", "display_name": "OpenSearch REST Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.opensearch.client:opensearch-rest-client:[3.0,)" - ], + "javaagent_target_versions": ["org.opensearch.client:opensearch-rest-client:[3.0,)"], "library_link": "https://docs.opensearch.org/latest/clients/", "minimum_java_version": 11, "name": "opensearch-rest-3.0", "scope": { "name": "io.opentelemetry.opensearch-rest-3.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/opensearch/opensearch-rest-3.0", - "tags": [ - "opensearch" - ], + "tags": ["opensearch"], "telemetry": [ { "spans": [ @@ -84,4 +77,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/opentelemetry-extension-annotations-1.0/opentelemetry-extension-annotations-1.0-95c0b698dc1c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/opentelemetry-extension-annotations-1.0/opentelemetry-extension-annotations-1.0-95c0b698dc1c.json index bdebd0fd..08b1d400 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/opentelemetry-extension-annotations-1.0/opentelemetry-extension-annotations-1.0-95c0b698dc1c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/opentelemetry-extension-annotations-1.0/opentelemetry-extension-annotations-1.0-95c0b698dc1c.json @@ -2,12 +2,10 @@ "description": "Instruments methods annotated with OpenTelemetry extension annotations, such as @WithSpan and @SpanAttribute.", "display_name": "OpenTelemetry Extension Annotations", "has_javaagent": true, - "javaagent_target_versions": [ - "io.opentelemetry:opentelemetry-extension-annotations:[0.16.0,)" - ], + "javaagent_target_versions": ["io.opentelemetry:opentelemetry-extension-annotations:[0.16.0,)"], "name": "opentelemetry-extension-annotations-1.0", "scope": { "name": "io.opentelemetry.opentelemetry-extension-annotations-1.0" }, "source_path": "instrumentation/opentelemetry-extension-annotations-1.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/opentelemetry-instrumentation-annotations-1.16/opentelemetry-instrumentation-annotations-1.16-a8aea4f6f24b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/opentelemetry-instrumentation-annotations-1.16/opentelemetry-instrumentation-annotations-1.16-a8aea4f6f24b.json index 3da33e2c..8cfe9a87 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/opentelemetry-instrumentation-annotations-1.16/opentelemetry-instrumentation-annotations-1.16-a8aea4f6f24b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/opentelemetry-instrumentation-annotations-1.16/opentelemetry-instrumentation-annotations-1.16-a8aea4f6f24b.json @@ -2,12 +2,10 @@ "description": "Instruments methods annotated with OpenTelemetry instrumentation annotations, such as @WithSpan and @SpanAttribute.", "display_name": "OpenTelemetry Instrumentation Annotations", "has_javaagent": true, - "javaagent_target_versions": [ - "io.opentelemetry:opentelemetry-instrumentation-annotations:(,)" - ], + "javaagent_target_versions": ["io.opentelemetry:opentelemetry-instrumentation-annotations:(,)"], "name": "opentelemetry-instrumentation-annotations-1.16", "scope": { "name": "io.opentelemetry.opentelemetry-instrumentation-annotations-1.16" }, "source_path": "instrumentation/opentelemetry-instrumentation-annotations-1.16" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/oracle-ucp-11.2/oracle-ucp-11.2-030500dece47.json b/ecosystem-explorer/public/data/javaagent/instrumentations/oracle-ucp-11.2/oracle-ucp-11.2-030500dece47.json index 65c03c3b..67e49e00 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/oracle-ucp-11.2/oracle-ucp-11.2-030500dece47.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/oracle-ucp-11.2/oracle-ucp-11.2-030500dece47.json @@ -3,17 +3,13 @@ "display_name": "Oracle UCP", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.oracle.database.jdbc:ucp:[,)" - ], + "javaagent_target_versions": ["com.oracle.database.jdbc:ucp:[,)"], "library_link": "https://docs.oracle.com/database/121/JJUCP/", "name": "oracle-ucp-11.2", "scope": { "name": "io.opentelemetry.oracle-ucp-11.2" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/oracle-ucp-11.2", "telemetry": [ { @@ -113,4 +109,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/oracle-ucp-11.2/oracle-ucp-11.2-7a580ff7c8f1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/oracle-ucp-11.2/oracle-ucp-11.2-7a580ff7c8f1.json index abe4cb3e..f29d42ff 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/oracle-ucp-11.2/oracle-ucp-11.2-7a580ff7c8f1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/oracle-ucp-11.2/oracle-ucp-11.2-7a580ff7c8f1.json @@ -3,21 +3,15 @@ "display_name": "Oracle UCP", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.oracle.database.jdbc:ucp:[,)" - ], + "javaagent_target_versions": ["com.oracle.database.jdbc:ucp:[,)"], "library_link": "https://docs.oracle.com/database/121/JJUCP/", "name": "oracle-ucp-11.2", "scope": { "name": "io.opentelemetry.oracle-ucp-11.2" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/oracle-ucp-11.2", - "tags": [ - "oracle" - ], + "tags": ["oracle"], "telemetry": [ { "metrics": [ @@ -116,4 +110,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/oshi/oshi-a74a273bb033.json b/ecosystem-explorer/public/data/javaagent/instrumentations/oshi/oshi-a74a273bb033.json index 745d864d..0935eb18 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/oshi/oshi-a74a273bb033.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/oshi/oshi-a74a273bb033.json @@ -11,21 +11,15 @@ "display_name": "OSHI", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.github.oshi:oshi-core:[5.3.1,)" - ], + "javaagent_target_versions": ["com.github.oshi:oshi-core:[5.3.1,)"], "library_link": "https://github.com/oshi/oshi/", "name": "oshi", "scope": { "name": "io.opentelemetry.oshi" }, - "semantic_conventions": [ - "SYSTEM_METRICS" - ], + "semantic_conventions": ["SYSTEM_METRICS"], "source_path": "instrumentation/oshi", - "tags": [ - "oshi" - ], + "tags": ["oshi"], "telemetry": [ { "metrics": [ @@ -286,4 +280,4 @@ "when": "otel.instrumentation.oshi.experimental-metrics.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/oshi/oshi-f280748ac584.json b/ecosystem-explorer/public/data/javaagent/instrumentations/oshi/oshi-f280748ac584.json index fbe3d8eb..90199d27 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/oshi/oshi-f280748ac584.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/oshi/oshi-f280748ac584.json @@ -11,17 +11,13 @@ "display_name": "OSHI", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "com.github.oshi:oshi-core:[5.0.0,)" - ], + "javaagent_target_versions": ["com.github.oshi:oshi-core:[5.0.0,)"], "library_link": "https://github.com/oshi/oshi/", "name": "oshi", "scope": { "name": "io.opentelemetry.oshi" }, - "semantic_conventions": [ - "SYSTEM_METRICS" - ], + "semantic_conventions": ["SYSTEM_METRICS"], "source_path": "instrumentation/oshi", "telemetry": [ { @@ -283,4 +279,4 @@ "when": "otel.instrumentation.oshi.experimental-metrics.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/payara/payara-4f7bc7a7e764.json b/ecosystem-explorer/public/data/javaagent/instrumentations/payara/payara-4f7bc7a7e764.json index a19bc3d9..e3b1ce5e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/payara/payara-4f7bc7a7e764.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/payara/payara-4f7bc7a7e764.json @@ -8,4 +8,4 @@ "name": "io.opentelemetry.payara" }, "source_path": "instrumentation/payara" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/payara/payara-fdc3fc1b0f49.json b/ecosystem-explorer/public/data/javaagent/instrumentations/payara/payara-fdc3fc1b0f49.json index a98bead4..8aaffdd7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/payara/payara-fdc3fc1b0f49.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/payara/payara-fdc3fc1b0f49.json @@ -8,7 +8,5 @@ "name": "io.opentelemetry.payara" }, "source_path": "instrumentation/payara", - "tags": [ - "payara" - ] -} \ No newline at end of file + "tags": ["payara"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-actor-1.0/pekko-actor-1.0-43727b1a4c93.json b/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-actor-1.0/pekko-actor-1.0-43727b1a4c93.json index 881d4cc6..64fe3825 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-actor-1.0/pekko-actor-1.0-43727b1a4c93.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-actor-1.0/pekko-actor-1.0-43727b1a4c93.json @@ -1,9 +1,7 @@ { "description": "This instrumentation provides context propagation for Pekko actors, it does not emit any telemetry on its own.", "display_name": "Pekko Actors", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "org.apache.pekko:pekko-actor_3:[1.0,)", @@ -16,4 +14,4 @@ "name": "io.opentelemetry.pekko-actor-1.0" }, "source_path": "instrumentation/pekko/pekko-actor-1.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-actor-1.0/pekko-actor-1.0-76eb9a74f712.json b/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-actor-1.0/pekko-actor-1.0-76eb9a74f712.json index 4881e8d4..177e7291 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-actor-1.0/pekko-actor-1.0-76eb9a74f712.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-actor-1.0/pekko-actor-1.0-76eb9a74f712.json @@ -1,9 +1,7 @@ { "description": "This instrumentation provides context propagation for Pekko actors, it does not emit any telemetry on its own.", "display_name": "Pekko Actors", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "org.apache.pekko:pekko-actor_3:[1.0,)", @@ -16,7 +14,5 @@ "name": "io.opentelemetry.pekko-actor-1.0" }, "source_path": "instrumentation/pekko/pekko-actor-1.0", - "tags": [ - "pekko" - ] -} \ No newline at end of file + "tags": ["pekko"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-http-1.0/pekko-http-1.0-92438b90b7d3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-http-1.0/pekko-http-1.0-92438b90b7d3.json index 8d10b3b7..5db3fb0a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-http-1.0/pekko-http-1.0-92438b90b7d3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-http-1.0/pekko-http-1.0-92438b90b7d3.json @@ -57,9 +57,7 @@ ], "description": "This instrumentation enables HTTP client spans and metrics for the Pekko HTTP client, and HTTP server spans and metrics for the Pekko HTTP server.", "display_name": "Pekko HTTP", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "javaagent_target_versions": [ "com.softwaremill.sttp.tapir:tapir-pekko-http-server_3:[1.7,)", @@ -82,9 +80,7 @@ "HTTP_SERVER_METRICS" ], "source_path": "instrumentation/pekko/pekko-http-1.0", - "tags": [ - "pekko" - ], + "tags": ["pekko"], "telemetry": [ { "metrics": [ @@ -242,4 +238,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-http-1.0/pekko-http-1.0-fdca23ceab3a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-http-1.0/pekko-http-1.0-fdca23ceab3a.json index fd714e9e..2bac343f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-http-1.0/pekko-http-1.0-fdca23ceab3a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/pekko-http-1.0/pekko-http-1.0-fdca23ceab3a.json @@ -57,9 +57,7 @@ ], "description": "This instrumentation enables HTTP client spans and metrics for the Pekko HTTP client, and HTTP server spans and metrics for the Pekko HTTP server.", "display_name": "Pekko HTTP", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "javaagent_target_versions": [ "com.softwaremill.sttp.tapir:tapir-pekko-http-server_3:[1.7,)", @@ -239,4 +237,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.4/play-mvc-2.4-79701c043251.json b/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.4/play-mvc-2.4-79701c043251.json index 06a8a26b..5d8c172f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.4/play-mvc-2.4-79701c043251.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.4/play-mvc-2.4-79701c043251.json @@ -9,23 +9,16 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Play Framework (controller spans are disabled by default).", "display_name": "Play MVC", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.typesafe.play:play_2.11:[2.4.0,2.6)" - ], + "javaagent_target_versions": ["com.typesafe.play:play_2.11:[2.4.0,2.6)"], "library_link": "https://www.playframework.com/", "name": "play-mvc-2.4", "scope": { "name": "io.opentelemetry.play-mvc-2.4" }, "source_path": "instrumentation/play/play-mvc/play-mvc-2.4", - "tags": [ - "play" - ], + "tags": ["play"], "telemetry": [ { "spans": [ @@ -37,4 +30,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.4/play-mvc-2.4-a69b51527c6d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.4/play-mvc-2.4-a69b51527c6d.json index 4ef11df3..ed709525 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.4/play-mvc-2.4-a69b51527c6d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.4/play-mvc-2.4-a69b51527c6d.json @@ -9,14 +9,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Play Framework (controller spans are disabled by default).", "display_name": "Play MVC", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.typesafe.play:play_2.11:[2.4.0,2.6)" - ], + "javaagent_target_versions": ["com.typesafe.play:play_2.11:[2.4.0,2.6)"], "library_link": "https://www.playframework.com/", "name": "play-mvc-2.4", "scope": { @@ -34,4 +29,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.6/play-mvc-2.6-30eb3bbf5d0e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.6/play-mvc-2.6-30eb3bbf5d0e.json index 56eec4fe..849f6cb9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.6/play-mvc-2.6-30eb3bbf5d0e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.6/play-mvc-2.6-30eb3bbf5d0e.json @@ -9,10 +9,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Play Framework actions (controller spans are disabled by default).", "display_name": "Play MVC", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "com.typesafe.play:play_$scalaVersion:[2.6.0,)", @@ -25,9 +22,7 @@ "name": "io.opentelemetry.play-mvc-2.6" }, "source_path": "instrumentation/play/play-mvc/play-mvc-2.6", - "tags": [ - "play" - ], + "tags": ["play"], "telemetry": [ { "spans": [ @@ -39,4 +34,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.6/play-mvc-2.6-d9bf9ffca7dc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.6/play-mvc-2.6-d9bf9ffca7dc.json index 3ac7180c..cb2f9a4a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.6/play-mvc-2.6-d9bf9ffca7dc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/play-mvc-2.6/play-mvc-2.6-d9bf9ffca7dc.json @@ -9,10 +9,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Play Framework actions (controller spans are disabled by default).", "display_name": "Play MVC", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "com.typesafe.play:play_$scalaVersion:[2.6.0,)", @@ -36,4 +33,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-1.0/play-ws-1.0-1daf69a439a7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-1.0/play-ws-1.0-1daf69a439a7.json index ae1623d1..ecc76a71 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-1.0/play-ws-1.0-1daf69a439a7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-1.0/play-ws-1.0-1daf69a439a7.json @@ -50,10 +50,7 @@ "name": "io.opentelemetry.play-ws-1.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/play/play-ws/play-ws-1.0", "telemetry": [ { @@ -134,4 +131,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-1.0/play-ws-1.0-bb18d6809edc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-1.0/play-ws-1.0-bb18d6809edc.json index a2ddc33f..071735c5 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-1.0/play-ws-1.0-bb18d6809edc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-1.0/play-ws-1.0-bb18d6809edc.json @@ -50,14 +50,9 @@ "name": "io.opentelemetry.play-ws-1.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/play/play-ws/play-ws-1.0", - "tags": [ - "play" - ], + "tags": ["play"], "telemetry": [ { "metrics": [ @@ -137,4 +132,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.0/play-ws-2.0-4773816b5e5a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.0/play-ws-2.0-4773816b5e5a.json index 1a8a964c..dc16b069 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.0/play-ws-2.0-4773816b5e5a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.0/play-ws-2.0-4773816b5e5a.json @@ -51,14 +51,9 @@ "name": "io.opentelemetry.play-ws-2.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/play/play-ws/play-ws-2.0", - "tags": [ - "play" - ], + "tags": ["play"], "telemetry": [ { "metrics": [ @@ -138,4 +133,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.0/play-ws-2.0-f7783d575b7a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.0/play-ws-2.0-f7783d575b7a.json index 0fc4a23d..ffe6010f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.0/play-ws-2.0-f7783d575b7a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.0/play-ws-2.0-f7783d575b7a.json @@ -51,10 +51,7 @@ "name": "io.opentelemetry.play-ws-2.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/play/play-ws/play-ws-2.0", "telemetry": [ { @@ -135,4 +132,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.1/play-ws-2.1-8bc25e939c90.json b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.1/play-ws-2.1-8bc25e939c90.json index 0079cf8c..5c021dc4 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.1/play-ws-2.1-8bc25e939c90.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.1/play-ws-2.1-8bc25e939c90.json @@ -50,10 +50,7 @@ "name": "io.opentelemetry.play-ws-2.1", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/play/play-ws/play-ws-2.1", "telemetry": [ { @@ -134,4 +131,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.1/play-ws-2.1-ad278703a972.json b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.1/play-ws-2.1-ad278703a972.json index 4a109c70..d96ea39a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.1/play-ws-2.1-ad278703a972.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/play-ws-2.1/play-ws-2.1-ad278703a972.json @@ -50,14 +50,9 @@ "name": "io.opentelemetry.play-ws-2.1", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/play/play-ws/play-ws-2.1", - "tags": [ - "play" - ], + "tags": ["play"], "telemetry": [ { "metrics": [ @@ -137,4 +132,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/powerjob-4.0/powerjob-4.0-13570d16db06.json b/ecosystem-explorer/public/data/javaagent/instrumentations/powerjob-4.0/powerjob-4.0-13570d16db06.json index 81032a00..436612f2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/powerjob-4.0/powerjob-4.0-13570d16db06.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/powerjob-4.0/powerjob-4.0-13570d16db06.json @@ -10,18 +10,14 @@ "description": "This instrumentation enables spans for PowerJob job processor executions.", "display_name": "PowerJob", "has_javaagent": true, - "javaagent_target_versions": [ - "tech.powerjob:powerjob-worker:[4.0.0,)" - ], + "javaagent_target_versions": ["tech.powerjob:powerjob-worker:[4.0.0,)"], "library_link": "https://github.com/PowerJob/PowerJob", "name": "powerjob-4.0", "scope": { "name": "io.opentelemetry.powerjob-4.0" }, "source_path": "instrumentation/powerjob-4.0", - "tags": [ - "powerjob" - ], + "tags": ["powerjob"], "telemetry": [ { "spans": [ @@ -76,4 +72,4 @@ "when": "otel.instrumentation.powerjob.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/powerjob-4.0/powerjob-4.0-e05195a86b78.json b/ecosystem-explorer/public/data/javaagent/instrumentations/powerjob-4.0/powerjob-4.0-e05195a86b78.json index 74c41d3e..b6fa2dad 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/powerjob-4.0/powerjob-4.0-e05195a86b78.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/powerjob-4.0/powerjob-4.0-e05195a86b78.json @@ -10,9 +10,7 @@ "description": "This instrumentation enables spans for PowerJob job processor executions.", "display_name": "PowerJob", "has_javaagent": true, - "javaagent_target_versions": [ - "tech.powerjob:powerjob-worker:[4.0.0,)" - ], + "javaagent_target_versions": ["tech.powerjob:powerjob-worker:[4.0.0,)"], "library_link": "https://github.com/PowerJob/PowerJob", "name": "powerjob-4.0", "scope": { @@ -73,4 +71,4 @@ "when": "otel.instrumentation.powerjob.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/pulsar-2.8/pulsar-2.8-66de44787b26.json b/ecosystem-explorer/public/data/javaagent/instrumentations/pulsar-2.8/pulsar-2.8-66de44787b26.json index 7f1bb12e..e9e6372d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/pulsar-2.8/pulsar-2.8-66de44787b26.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/pulsar-2.8/pulsar-2.8-66de44787b26.json @@ -22,17 +22,13 @@ "description": "This instrumentation enables messaging spans for Apache Pulsar message producers and consumers.", "display_name": "Apache Pulsar Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.pulsar:pulsar-client:[2.8.0,)" - ], + "javaagent_target_versions": ["org.apache.pulsar:pulsar-client:[2.8.0,)"], "library_link": "https://pulsar.apache.org/", "name": "pulsar-2.8", "scope": { "name": "io.opentelemetry.pulsar-2.8" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/pulsar/pulsar-2.8", "telemetry": [ { @@ -384,4 +380,4 @@ "when": "otel.instrumentation.pulsar.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/pulsar-2.8/pulsar-2.8-c00672bd43d9.json b/ecosystem-explorer/public/data/javaagent/instrumentations/pulsar-2.8/pulsar-2.8-c00672bd43d9.json index bf52c444..19aa136f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/pulsar-2.8/pulsar-2.8-c00672bd43d9.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/pulsar-2.8/pulsar-2.8-c00672bd43d9.json @@ -22,21 +22,15 @@ "description": "This instrumentation enables messaging spans for Apache Pulsar message producers and consumers.", "display_name": "Apache Pulsar Client", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.pulsar:pulsar-client:[2.8.0,)" - ], + "javaagent_target_versions": ["org.apache.pulsar:pulsar-client:[2.8.0,)"], "library_link": "https://pulsar.apache.org/", "name": "pulsar-2.8", "scope": { "name": "io.opentelemetry.pulsar-2.8" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/pulsar/pulsar-2.8", - "tags": [ - "pulsar" - ], + "tags": ["pulsar"], "telemetry": [ { "metrics": [ @@ -387,4 +381,4 @@ "when": "otel.instrumentation.pulsar.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/quarkus-resteasy-reactive/quarkus-resteasy-reactive-224270720fc0.json b/ecosystem-explorer/public/data/javaagent/instrumentations/quarkus-resteasy-reactive/quarkus-resteasy-reactive-224270720fc0.json index 006d5075..30981c6d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/quarkus-resteasy-reactive/quarkus-resteasy-reactive-224270720fc0.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/quarkus-resteasy-reactive/quarkus-resteasy-reactive-224270720fc0.json @@ -1,20 +1,14 @@ { "description": "This instrumentation enriches HTTP server spans with route information for Quarkus RESTEasy Reactive, it does not emit any telemetry on its own.", "display_name": "Quarkus RESTEasy Reactive", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.quarkus:quarkus-resteasy-reactive:(,3.9.0)" - ], + "javaagent_target_versions": ["io.quarkus:quarkus-resteasy-reactive:(,3.9.0)"], "library_link": "https://quarkus.io/guides/resteasy-reactive/", "name": "quarkus-resteasy-reactive", "scope": { "name": "io.opentelemetry.quarkus-resteasy-reactive" }, "source_path": "instrumentation/quarkus-resteasy-reactive", - "tags": [ - "quarkus" - ] -} \ No newline at end of file + "tags": ["quarkus"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/quarkus-resteasy-reactive/quarkus-resteasy-reactive-f7d47cce1aea.json b/ecosystem-explorer/public/data/javaagent/instrumentations/quarkus-resteasy-reactive/quarkus-resteasy-reactive-f7d47cce1aea.json index ba316897..0195a6ca 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/quarkus-resteasy-reactive/quarkus-resteasy-reactive-f7d47cce1aea.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/quarkus-resteasy-reactive/quarkus-resteasy-reactive-f7d47cce1aea.json @@ -1,9 +1,7 @@ { "description": "This instrumentation enriches HTTP server spans with route information for Quarkus RESTEasy Reactive, it does not emit any telemetry on its own.", "display_name": "Quarkus RESTEasy Reactive", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "javaagent_target_versions": [ "io.quarkus:quarkus-rest:[3.9.0,)", @@ -15,4 +13,4 @@ "name": "io.opentelemetry.quarkus-resteasy-reactive" }, "source_path": "instrumentation/quarkus-resteasy-reactive" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/quartz-2.0/quartz-2.0-4cf87020850b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/quartz-2.0/quartz-2.0-4cf87020850b.json index 0d5f619a..46116afe 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/quartz-2.0/quartz-2.0-4cf87020850b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/quartz-2.0/quartz-2.0-4cf87020850b.json @@ -11,18 +11,14 @@ "display_name": "Quartz", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.quartz-scheduler:quartz:[2.0.0,)" - ], + "javaagent_target_versions": ["org.quartz-scheduler:quartz:[2.0.0,)"], "library_link": "https://www.quartz-scheduler.org/", "name": "quartz-2.0", "scope": { "name": "io.opentelemetry.quartz-2.0" }, "source_path": "instrumentation/quartz-2.0", - "tags": [ - "quartz" - ], + "tags": ["quartz"], "telemetry": [ { "spans": [ @@ -65,4 +61,4 @@ "when": "otel.instrumentation.quartz.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/quartz-2.0/quartz-2.0-abc6b7aefd24.json b/ecosystem-explorer/public/data/javaagent/instrumentations/quartz-2.0/quartz-2.0-abc6b7aefd24.json index d8db8067..cace348d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/quartz-2.0/quartz-2.0-abc6b7aefd24.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/quartz-2.0/quartz-2.0-abc6b7aefd24.json @@ -11,9 +11,7 @@ "display_name": "Quartz", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.quartz-scheduler:quartz:[2.0.0,)" - ], + "javaagent_target_versions": ["org.quartz-scheduler:quartz:[2.0.0,)"], "library_link": "https://www.quartz-scheduler.org/", "name": "quartz-2.0", "scope": { @@ -62,4 +60,4 @@ "when": "otel.instrumentation.quartz.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/r2dbc-1.0/r2dbc-1.0-ae35d42912e1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/r2dbc-1.0/r2dbc-1.0-ae35d42912e1.json index 06f8460f..259a9382 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/r2dbc-1.0/r2dbc-1.0-ae35d42912e1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/r2dbc-1.0/r2dbc-1.0-ae35d42912e1.json @@ -29,18 +29,13 @@ "display_name": "R2DBC", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.r2dbc:r2dbc-spi:[0.9.0.RELEASE,)" - ], + "javaagent_target_versions": ["io.r2dbc:r2dbc-spi:[0.9.0.RELEASE,)"], "library_link": "https://r2dbc.io/", "name": "r2dbc-1.0", "scope": { "name": "io.opentelemetry.r2dbc-1.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/r2dbc-1.0", "telemetry": [ { @@ -163,4 +158,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/r2dbc-1.0/r2dbc-1.0-c958bf7af03f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/r2dbc-1.0/r2dbc-1.0-c958bf7af03f.json index b6330073..13927df0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/r2dbc-1.0/r2dbc-1.0-c958bf7af03f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/r2dbc-1.0/r2dbc-1.0-c958bf7af03f.json @@ -29,22 +29,15 @@ "display_name": "R2DBC", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.r2dbc:r2dbc-spi:[1.0.0.RELEASE,)" - ], + "javaagent_target_versions": ["io.r2dbc:r2dbc-spi:[1.0.0.RELEASE,)"], "library_link": "https://r2dbc.io/", "name": "r2dbc-1.0", "scope": { "name": "io.opentelemetry.r2dbc-1.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/r2dbc-1.0", - "tags": [ - "r2dbc" - ], + "tags": ["r2dbc"], "telemetry": [ { "spans": [ @@ -166,4 +159,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rabbitmq-2.7/rabbitmq-2.7-2749fb9436cd.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rabbitmq-2.7/rabbitmq-2.7-2749fb9436cd.json index 669aa9ae..0b8c6699 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rabbitmq-2.7/rabbitmq-2.7-2749fb9436cd.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rabbitmq-2.7/rabbitmq-2.7-2749fb9436cd.json @@ -22,17 +22,13 @@ "description": "This instrumentation enables messaging spans for RabbitMQ message producers and consumers.", "display_name": "RabbitMQ", "has_javaagent": true, - "javaagent_target_versions": [ - "com.rabbitmq:amqp-client:[2.7.0,)" - ], + "javaagent_target_versions": ["com.rabbitmq:amqp-client:[2.7.0,)"], "library_link": "https://www.rabbitmq.com/client-libraries/java-api-guide", "name": "rabbitmq-2.7", "scope": { "name": "io.opentelemetry.rabbitmq-2.7" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/rabbitmq-2.7", "telemetry": [ { @@ -260,4 +256,4 @@ "when": "otel.instrumentation.rabbitmq.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rabbitmq-2.7/rabbitmq-2.7-a7bd79612378.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rabbitmq-2.7/rabbitmq-2.7-a7bd79612378.json index 0b6c714d..4d1d2689 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rabbitmq-2.7/rabbitmq-2.7-a7bd79612378.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rabbitmq-2.7/rabbitmq-2.7-a7bd79612378.json @@ -22,21 +22,15 @@ "description": "This instrumentation enables messaging spans for RabbitMQ message producers and consumers.", "display_name": "RabbitMQ", "has_javaagent": true, - "javaagent_target_versions": [ - "com.rabbitmq:amqp-client:[2.7.0,)" - ], + "javaagent_target_versions": ["com.rabbitmq:amqp-client:[2.7.0,)"], "library_link": "https://www.rabbitmq.com/client-libraries/java-api-guide", "name": "rabbitmq-2.7", "scope": { "name": "io.opentelemetry.rabbitmq-2.7" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/rabbitmq-2.7", - "tags": [ - "rabbitmq" - ], + "tags": ["rabbitmq"], "telemetry": [ { "spans": [ @@ -263,4 +257,4 @@ "when": "otel.instrumentation.rabbitmq.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.4/ratpack-1.4-75ea5c39a0a7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.4/ratpack-1.4-75ea5c39a0a7.json index 47ee3fbb..6e4f2f6a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.4/ratpack-1.4-75ea5c39a0a7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.4/ratpack-1.4-75ea5c39a0a7.json @@ -9,14 +9,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Ratpack handlers (controller spans are disabled by default).", "display_name": "Ratpack", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.ratpack:ratpack-core:[1.4.0,)" - ], + "javaagent_target_versions": ["io.ratpack:ratpack-core:[1.4.0,)"], "library_link": "https://ratpack.io/", "name": "ratpack-1.4", "scope": { @@ -34,4 +29,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.4/ratpack-1.4-e6d1a9025815.json b/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.4/ratpack-1.4-e6d1a9025815.json index 9969b93d..046df004 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.4/ratpack-1.4-e6d1a9025815.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.4/ratpack-1.4-e6d1a9025815.json @@ -9,23 +9,16 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Ratpack handlers (controller spans are disabled by default).", "display_name": "Ratpack", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.ratpack:ratpack-core:[1.4.0,)" - ], + "javaagent_target_versions": ["io.ratpack:ratpack-core:[1.4.0,)"], "library_link": "https://ratpack.io/", "name": "ratpack-1.4", "scope": { "name": "io.opentelemetry.ratpack-1.4" }, "source_path": "instrumentation/ratpack/ratpack-1.4", - "tags": [ - "ratpack" - ], + "tags": ["ratpack"], "telemetry": [ { "spans": [ @@ -37,4 +30,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.7/ratpack-1.7-39c9b0045a49.json b/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.7/ratpack-1.7-39c9b0045a49.json index 5ebdc233..f5bef35f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.7/ratpack-1.7-39c9b0045a49.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.7/ratpack-1.7-39c9b0045a49.json @@ -63,15 +63,10 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Ratpack servers, HTTP client spans and HTTP client metrics for Ratpack HTTP clients, and enables controller spans for Ratpack handlers (controller spans are disabled by default).", "display_name": "Ratpack", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.ratpack:ratpack-core:[1.7.0,)" - ], + "javaagent_target_versions": ["io.ratpack:ratpack-core:[1.7.0,)"], "library_link": "https://ratpack.io/", "name": "ratpack-1.7", "scope": { @@ -246,4 +241,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.7/ratpack-1.7-abcb1f5f8a5f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.7/ratpack-1.7-abcb1f5f8a5f.json index 7a312205..35bddebe 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.7/ratpack-1.7-abcb1f5f8a5f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/ratpack-1.7/ratpack-1.7-abcb1f5f8a5f.json @@ -63,15 +63,10 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Ratpack servers, HTTP client spans and HTTP client metrics for Ratpack HTTP clients, and enables controller spans for Ratpack handlers (controller spans are disabled by default).", "display_name": "Ratpack", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.ratpack:ratpack-core:[1.7.0,)" - ], + "javaagent_target_versions": ["io.ratpack:ratpack-core:[1.7.0,)"], "library_link": "https://ratpack.io/", "name": "ratpack-1.7", "scope": { @@ -85,9 +80,7 @@ "HTTP_CLIENT_METRICS" ], "source_path": "instrumentation/ratpack/ratpack-1.7", - "tags": [ - "ratpack" - ], + "tags": ["ratpack"], "telemetry": [ { "metrics": [ @@ -249,4 +242,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.1/reactor-3.1-29de3284189e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.1/reactor-3.1-29de3284189e.json index 5a95c536..ea660cb9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.1/reactor-3.1-29de3284189e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.1/reactor-3.1-29de3284189e.json @@ -9,21 +9,15 @@ ], "description": "This instrumentation enables context propagation for Project Reactor reactive streams, it does not emit any telemetry on its own.", "display_name": "Reactor", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.projectreactor:reactor-core:[3.1.0.RELEASE,)" - ], + "javaagent_target_versions": ["io.projectreactor:reactor-core:[3.1.0.RELEASE,)"], "library_link": "https://projectreactor.io/", "name": "reactor-3.1", "scope": { "name": "io.opentelemetry.reactor-3.1" }, "source_path": "instrumentation/reactor/reactor-3.1", - "tags": [ - "reactor" - ] -} \ No newline at end of file + "tags": ["reactor"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.1/reactor-3.1-8f828a53895a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.1/reactor-3.1-8f828a53895a.json index e4d9e30f..1d26b5e1 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.1/reactor-3.1-8f828a53895a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.1/reactor-3.1-8f828a53895a.json @@ -9,18 +9,14 @@ ], "description": "This instrumentation enables context propagation for Project Reactor reactive streams, it does not emit any telemetry on its own.", "display_name": "Reactor", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.projectreactor:reactor-core:[3.1.0.RELEASE,)" - ], + "javaagent_target_versions": ["io.projectreactor:reactor-core:[3.1.0.RELEASE,)"], "library_link": "https://projectreactor.io/", "name": "reactor-3.1", "scope": { "name": "io.opentelemetry.reactor-3.1" }, "source_path": "instrumentation/reactor/reactor-3.1" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.4/reactor-3.4-e02428d2fa72.json b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.4/reactor-3.4-e02428d2fa72.json index c7f3e28a..0b054c4c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.4/reactor-3.4-e02428d2fa72.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-3.4/reactor-3.4-e02428d2fa72.json @@ -1,17 +1,13 @@ { "description": "This instrumentation enables context propagation for Project Reactor reactive streams, it does not emit any telemetry on its own.", "display_name": "Reactor", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.projectreactor:reactor-core:[3.4.0,)" - ], + "javaagent_target_versions": ["io.projectreactor:reactor-core:[3.4.0,)"], "library_link": "https://projectreactor.io/", "name": "reactor-3.4", "scope": { "name": "io.opentelemetry.reactor-3.4" }, "source_path": "instrumentation/reactor/reactor-3.4" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-kafka-1.0/reactor-kafka-1.0-55fe8744f6d3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-kafka-1.0/reactor-kafka-1.0-55fe8744f6d3.json index 7ad30aeb..8663db2a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-kafka-1.0/reactor-kafka-1.0-55fe8744f6d3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-kafka-1.0/reactor-kafka-1.0-55fe8744f6d3.json @@ -22,17 +22,13 @@ "description": "This instrumentation enables messaging spans for Reactor Kafka message consumers.", "display_name": "Reactor Kafka", "has_javaagent": true, - "javaagent_target_versions": [ - "io.projectreactor.kafka:reactor-kafka:[1.0.0,)" - ], + "javaagent_target_versions": ["io.projectreactor.kafka:reactor-kafka:[1.0.0,)"], "library_link": "https://projectreactor.io/docs/kafka/release/reference/", "name": "reactor-kafka-1.0", "scope": { "name": "io.opentelemetry.reactor-kafka-1.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/reactor/reactor-kafka-1.0", "telemetry": [ { @@ -124,4 +120,4 @@ "when": "otel.instrumentation.kafka.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-kafka-1.0/reactor-kafka-1.0-bc3fd700c678.json b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-kafka-1.0/reactor-kafka-1.0-bc3fd700c678.json index 41cf8d1b..1e391498 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-kafka-1.0/reactor-kafka-1.0-bc3fd700c678.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-kafka-1.0/reactor-kafka-1.0-bc3fd700c678.json @@ -22,21 +22,15 @@ "description": "This instrumentation enables messaging spans for Reactor Kafka message consumers.", "display_name": "Reactor Kafka", "has_javaagent": true, - "javaagent_target_versions": [ - "io.projectreactor.kafka:reactor-kafka:[1.0.0,)" - ], + "javaagent_target_versions": ["io.projectreactor.kafka:reactor-kafka:[1.0.0,)"], "library_link": "https://projectreactor.io/docs/kafka/release/reference/", "name": "reactor-kafka-1.0", "scope": { "name": "io.opentelemetry.reactor-kafka-1.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/reactor/reactor-kafka-1.0", - "tags": [ - "reactor" - ], + "tags": ["reactor"], "telemetry": [ { "spans": [ @@ -127,4 +121,4 @@ "when": "otel.instrumentation.kafka.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-0.9/reactor-netty-0.9-76e973092411.json b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-0.9/reactor-netty-0.9-76e973092411.json index 1741e71c..3b65e3e4 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-0.9/reactor-netty-0.9-76e973092411.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-0.9/reactor-netty-0.9-76e973092411.json @@ -1,17 +1,13 @@ { "description": "This instrumentation enables context propagation for Reactor Netty HTTP client, it does not emit any telemetry on its own.", "display_name": "Reactor Netty", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.projectreactor.netty:reactor-netty:[0.8.2.RELEASE,1.0.0)" - ], + "javaagent_target_versions": ["io.projectreactor.netty:reactor-netty:[0.8.2.RELEASE,1.0.0)"], "library_link": "https://projectreactor.io/docs/netty/release/reference/", "name": "reactor-netty-0.9", "scope": { "name": "io.opentelemetry.reactor-netty-0.9" }, "source_path": "instrumentation/reactor/reactor-netty/reactor-netty-0.9" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-0.9/reactor-netty-0.9-e4cfbfa3f236.json b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-0.9/reactor-netty-0.9-e4cfbfa3f236.json index b37fe55e..b44f950f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-0.9/reactor-netty-0.9-e4cfbfa3f236.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-0.9/reactor-netty-0.9-e4cfbfa3f236.json @@ -1,20 +1,14 @@ { "description": "This instrumentation enables context propagation for Reactor Netty HTTP client, it does not emit any telemetry on its own.", "display_name": "Reactor Netty", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.projectreactor.netty:reactor-netty:[0.8.2.RELEASE,1.0.0)" - ], + "javaagent_target_versions": ["io.projectreactor.netty:reactor-netty:[0.8.2.RELEASE,1.0.0)"], "library_link": "https://projectreactor.io/docs/netty/release/reference/", "name": "reactor-netty-0.9", "scope": { "name": "io.opentelemetry.reactor-netty-0.9" }, "source_path": "instrumentation/reactor/reactor-netty/reactor-netty-0.9", - "tags": [ - "reactor" - ] -} \ No newline at end of file + "tags": ["reactor"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-1.0/reactor-netty-1.0-5653dc267201.json b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-1.0/reactor-netty-1.0-5653dc267201.json index 0320f4d2..480696bd 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-1.0/reactor-netty-1.0-5653dc267201.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-1.0/reactor-netty-1.0-5653dc267201.json @@ -56,14 +56,9 @@ "name": "io.opentelemetry.reactor-netty-1.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/reactor/reactor-netty/reactor-netty-1.0", - "tags": [ - "reactor" - ], + "tags": ["reactor"], "telemetry": [ { "metrics": [ @@ -155,4 +150,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-1.0/reactor-netty-1.0-a9954676c913.json b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-1.0/reactor-netty-1.0-a9954676c913.json index 1613f59e..b7ec3ec7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-1.0/reactor-netty-1.0-a9954676c913.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/reactor-netty-1.0/reactor-netty-1.0-a9954676c913.json @@ -56,10 +56,7 @@ "name": "io.opentelemetry.reactor-netty-1.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/reactor/reactor-netty/reactor-netty-1.0", "telemetry": [ { @@ -152,4 +149,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rediscala-1.8/rediscala-1.8-ba2b683a0387.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rediscala-1.8/rediscala-1.8-ba2b683a0387.json index 9249ab91..168cdbff 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rediscala-1.8/rediscala-1.8-ba2b683a0387.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rediscala-1.8/rediscala-1.8-ba2b683a0387.json @@ -16,10 +16,7 @@ "scope": { "name": "io.opentelemetry.rediscala-1.8" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/rediscala-1.8", "telemetry": [ { @@ -78,4 +75,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rediscala-1.8/rediscala-1.8-e772063b6455.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rediscala-1.8/rediscala-1.8-e772063b6455.json index 9009aeca..f5106573 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rediscala-1.8/rediscala-1.8-e772063b6455.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rediscala-1.8/rediscala-1.8-e772063b6455.json @@ -16,14 +16,9 @@ "scope": { "name": "io.opentelemetry.rediscala-1.8" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/rediscala-1.8", - "tags": [ - "rediscala" - ], + "tags": ["rediscala"], "telemetry": [ { "spans": [ @@ -81,4 +76,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.0/redisson-3.0-8e52709dce8f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.0/redisson-3.0-8e52709dce8f.json index 329f8bba..fea33f6a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.0/redisson-3.0-8e52709dce8f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.0/redisson-3.0-8e52709dce8f.json @@ -2,18 +2,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Redisson Redis client operations.", "display_name": "Redisson", "has_javaagent": true, - "javaagent_target_versions": [ - "org.redisson:redisson:[3.0.0,3.17.0)" - ], + "javaagent_target_versions": ["org.redisson:redisson:[3.0.0,3.17.0)"], "library_link": "https://github.com/redisson/redisson", "name": "redisson-3.0", "scope": { "name": "io.opentelemetry.redisson-3.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/redisson/redisson-3.0", "telemetry": [ { @@ -51,4 +46,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.0/redisson-3.0-c8ba15a9365f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.0/redisson-3.0-c8ba15a9365f.json index 7e7bdc69..1a4860cd 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.0/redisson-3.0-c8ba15a9365f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.0/redisson-3.0-c8ba15a9365f.json @@ -2,22 +2,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Redisson Redis client operations.", "display_name": "Redisson", "has_javaagent": true, - "javaagent_target_versions": [ - "org.redisson:redisson:[3.0.0,3.17.0)" - ], + "javaagent_target_versions": ["org.redisson:redisson:[3.0.0,3.17.0)"], "library_link": "https://github.com/redisson/redisson", "name": "redisson-3.0", "scope": { "name": "io.opentelemetry.redisson-3.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/redisson/redisson-3.0", - "tags": [ - "redisson" - ], + "tags": ["redisson"], "telemetry": [ { "spans": [ @@ -54,4 +47,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.17/redisson-3.17-f1479834e82f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.17/redisson-3.17-f1479834e82f.json index 5870f6e3..71c6ca87 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.17/redisson-3.17-f1479834e82f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.17/redisson-3.17-f1479834e82f.json @@ -2,22 +2,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Redisson Redis client operations.", "display_name": "Redisson", "has_javaagent": true, - "javaagent_target_versions": [ - "org.redisson:redisson:[3.17.0,)" - ], + "javaagent_target_versions": ["org.redisson:redisson:[3.17.0,)"], "library_link": "https://github.com/redisson/redisson", "name": "redisson-3.17", "scope": { "name": "io.opentelemetry.redisson-3.17" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/redisson/redisson-3.17", - "tags": [ - "redisson" - ], + "tags": ["redisson"], "telemetry": [ { "spans": [ @@ -111,4 +104,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.17/redisson-3.17-f70e53e28ef7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.17/redisson-3.17-f70e53e28ef7.json index 45ded214..a90e43ac 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.17/redisson-3.17-f70e53e28ef7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/redisson-3.17/redisson-3.17-f70e53e28ef7.json @@ -2,18 +2,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Redisson Redis client operations.", "display_name": "Redisson", "has_javaagent": true, - "javaagent_target_versions": [ - "org.redisson:redisson:[3.17.0,)" - ], + "javaagent_target_versions": ["org.redisson:redisson:[3.17.0,)"], "library_link": "https://github.com/redisson/redisson", "name": "redisson-3.17", "scope": { "name": "io.opentelemetry.redisson-3.17" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/redisson/redisson-3.17", "telemetry": [ { @@ -108,4 +103,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/resources/resources-9053ceab3cb7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/resources/resources-9053ceab3cb7.json index 4ffd96cd..5a2a44af 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/resources/resources-9053ceab3cb7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/resources/resources-9053ceab3cb7.json @@ -7,7 +7,5 @@ "name": "io.opentelemetry.resources" }, "source_path": "instrumentation/resources", - "tags": [ - "resources" - ] -} \ No newline at end of file + "tags": ["resources"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/resources/resources-d6cd94c0e411.json b/ecosystem-explorer/public/data/javaagent/instrumentations/resources/resources-d6cd94c0e411.json index e0175414..114ec690 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/resources/resources-d6cd94c0e411.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/resources/resources-d6cd94c0e411.json @@ -1,13 +1,11 @@ { "description": "This instrumentation automatically detects and populates OpenTelemetry resource attributes for the host, OS, process, and container environment. It does not emit any telemetry on its own.", "display_name": "Resource Detectors", - "features": [ - "RESOURCE_DETECTOR" - ], + "features": ["RESOURCE_DETECTOR"], "has_standalone_library": true, "name": "resources", "scope": { "name": "io.opentelemetry.resources" }, "source_path": "instrumentation/resources" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-1.1/restlet-1.1-2838180032af.json b/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-1.1/restlet-1.1-2838180032af.json index 2d289bcc..baac1e87 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-1.1/restlet-1.1-2838180032af.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-1.1/restlet-1.1-2838180032af.json @@ -27,24 +27,17 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Restlet servers.", "display_name": "Restlet", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.restlet:org.restlet:[1.1.0, 1.2-M1)" - ], + "javaagent_target_versions": ["org.restlet:org.restlet:[1.1.0, 1.2-M1)"], "library_link": "https://restlet.github.io/", "name": "restlet-1.1", "scope": { "name": "io.opentelemetry.restlet-1.1", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/restlet/restlet-1.1", "telemetry": [ { @@ -149,4 +142,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-1.1/restlet-1.1-3bac56382389.json b/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-1.1/restlet-1.1-3bac56382389.json index 01a0c30a..fcfd9c98 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-1.1/restlet-1.1-3bac56382389.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-1.1/restlet-1.1-3bac56382389.json @@ -27,28 +27,19 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Restlet servers.", "display_name": "Restlet", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.restlet:org.restlet:[1.1.0, 1.2-M1)" - ], + "javaagent_target_versions": ["org.restlet:org.restlet:[1.1.0, 1.2-M1)"], "library_link": "https://restlet.github.io/", "name": "restlet-1.1", "scope": { "name": "io.opentelemetry.restlet-1.1", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/restlet/restlet-1.1", - "tags": [ - "restlet" - ], + "tags": ["restlet"], "telemetry": [ { "metrics": [ @@ -152,4 +143,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-2.0/restlet-2.0-828e8b060ea3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-2.0/restlet-2.0-828e8b060ea3.json index b72d4671..ddbf2112 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-2.0/restlet-2.0-828e8b060ea3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-2.0/restlet-2.0-828e8b060ea3.json @@ -27,28 +27,19 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Restlet servers.", "display_name": "Restlet", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.restlet.jse:org.restlet:[2.0.0,)" - ], + "javaagent_target_versions": ["org.restlet.jse:org.restlet:[2.0.0,)"], "library_link": "https://restlet.github.io/", "name": "restlet-2.0", "scope": { "name": "io.opentelemetry.restlet-2.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/restlet/restlet-2.0", - "tags": [ - "restlet" - ], + "tags": ["restlet"], "telemetry": [ { "metrics": [ @@ -152,4 +143,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-2.0/restlet-2.0-920027881fbb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-2.0/restlet-2.0-920027881fbb.json index e2f9858c..0071a779 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-2.0/restlet-2.0-920027881fbb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/restlet-2.0/restlet-2.0-920027881fbb.json @@ -27,24 +27,17 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Restlet servers.", "display_name": "Restlet", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.restlet.jse:org.restlet:[2.0.0,)" - ], + "javaagent_target_versions": ["org.restlet.jse:org.restlet:[2.0.0,)"], "library_link": "https://restlet.github.io/", "name": "restlet-2.0", "scope": { "name": "io.opentelemetry.restlet-2.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/restlet/restlet-2.0", "telemetry": [ { @@ -149,4 +142,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rmi/rmi-a1712d9be7a6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rmi/rmi-a1712d9be7a6.json index 44f5ae48..06e29d31 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rmi/rmi-a1712d9be7a6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rmi/rmi-a1712d9be7a6.json @@ -2,18 +2,13 @@ "description": "This instrumentation enables RPC client spans and RPC server spans for Java RMI (Remote Method Invocation).", "display_name": "RMI (Remote Method Invocation)", "has_javaagent": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "library_link": "https://docs.oracle.com/en/java/javase/17/docs/api/java.rmi/java/rmi/package-summary.html", "name": "rmi", "scope": { "name": "io.opentelemetry.rmi" }, - "semantic_conventions": [ - "RPC_CLIENT_SPANS", - "RPC_SERVER_SPANS" - ], + "semantic_conventions": ["RPC_CLIENT_SPANS", "RPC_SERVER_SPANS"], "source_path": "instrumentation/rmi", "telemetry": [ { @@ -56,4 +51,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rmi/rmi-bb649d70df5c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rmi/rmi-bb649d70df5c.json index 96176835..ffc49927 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rmi/rmi-bb649d70df5c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rmi/rmi-bb649d70df5c.json @@ -2,22 +2,15 @@ "description": "This instrumentation enables RPC client spans and RPC server spans for Java RMI (Remote Method Invocation).", "display_name": "RMI (Remote Method Invocation)", "has_javaagent": true, - "javaagent_target_versions": [ - "Java 8+" - ], + "javaagent_target_versions": ["Java 8+"], "library_link": "https://docs.oracle.com/en/java/javase/17/docs/api/java.rmi/java/rmi/package-summary.html", "name": "rmi", "scope": { "name": "io.opentelemetry.rmi" }, - "semantic_conventions": [ - "RPC_CLIENT_SPANS", - "RPC_SERVER_SPANS" - ], + "semantic_conventions": ["RPC_CLIENT_SPANS", "RPC_SERVER_SPANS"], "source_path": "instrumentation/rmi", - "tags": [ - "rmi" - ], + "tags": ["rmi"], "telemetry": [ { "spans": [ @@ -59,4 +52,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-4.8/rocketmq-client-4.8-768c702beb47.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-4.8/rocketmq-client-4.8-768c702beb47.json index 1129ebf8..080827b6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-4.8/rocketmq-client-4.8-768c702beb47.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-4.8/rocketmq-client-4.8-768c702beb47.json @@ -17,21 +17,15 @@ "display_name": "Apache RocketMQ Client - Remoting Protocol", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.apache.rocketmq:rocketmq-client:[4.0.0,)" - ], + "javaagent_target_versions": ["org.apache.rocketmq:rocketmq-client:[4.0.0,)"], "library_link": "https://rocketmq.apache.org/", "name": "rocketmq-client-4.8", "scope": { "name": "io.opentelemetry.rocketmq-client-4.8" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/rocketmq/rocketmq-client-4.8", - "tags": [ - "rocketmq" - ], + "tags": ["rocketmq"], "telemetry": [ { "spans": [ @@ -164,4 +158,4 @@ "when": "otel.instrumentation.rocketmq-client.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-4.8/rocketmq-client-4.8-eb74f92f8412.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-4.8/rocketmq-client-4.8-eb74f92f8412.json index 5535f7ae..6bd729c9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-4.8/rocketmq-client-4.8-eb74f92f8412.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-4.8/rocketmq-client-4.8-eb74f92f8412.json @@ -17,17 +17,13 @@ "display_name": "Apache RocketMQ Client - Remoting Protocol", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.apache.rocketmq:rocketmq-client:[4.0.0,)" - ], + "javaagent_target_versions": ["org.apache.rocketmq:rocketmq-client:[4.0.0,)"], "library_link": "https://rocketmq.apache.org/", "name": "rocketmq-client-4.8", "scope": { "name": "io.opentelemetry.rocketmq-client-4.8" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/rocketmq/rocketmq-client-4.8", "telemetry": [ { @@ -161,4 +157,4 @@ "when": "otel.instrumentation.rocketmq-client.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-5.0/rocketmq-client-5.0-0cc26a213b2b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-5.0/rocketmq-client-5.0-0cc26a213b2b.json index d0be7b90..891ef28e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-5.0/rocketmq-client-5.0-0cc26a213b2b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-5.0/rocketmq-client-5.0-0cc26a213b2b.json @@ -16,17 +16,13 @@ "description": "This instrumentation enables messaging spans for Apache RocketMQ message producers and consumers using the gRPC/Protobuf Protocol.", "display_name": "Apache RocketMQ Client - gRPC Protocol", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.rocketmq:rocketmq-client-java:[5.0.0,)" - ], + "javaagent_target_versions": ["org.apache.rocketmq:rocketmq-client-java:[5.0.0,)"], "library_link": "https://rocketmq.apache.org/", "name": "rocketmq-client-5.0", "scope": { "name": "io.opentelemetry.rocketmq-client-5.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/rocketmq/rocketmq-client-5.0", "telemetry": [ { @@ -129,4 +125,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-5.0/rocketmq-client-5.0-c0c8a2db397d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-5.0/rocketmq-client-5.0-c0c8a2db397d.json index f85f7d68..2af0dc1e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-5.0/rocketmq-client-5.0-c0c8a2db397d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rocketmq-client-5.0/rocketmq-client-5.0-c0c8a2db397d.json @@ -16,21 +16,15 @@ "description": "This instrumentation enables messaging spans for Apache RocketMQ message producers and consumers using the gRPC/Protobuf Protocol.", "display_name": "Apache RocketMQ Client - gRPC Protocol", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.rocketmq:rocketmq-client-java:[5.0.0,)" - ], + "javaagent_target_versions": ["org.apache.rocketmq:rocketmq-client-java:[5.0.0,)"], "library_link": "https://rocketmq.apache.org/", "name": "rocketmq-client-5.0", "scope": { "name": "io.opentelemetry.rocketmq-client-5.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/rocketmq/rocketmq-client-5.0", - "tags": [ - "rocketmq" - ], + "tags": ["rocketmq"], "telemetry": [ { "spans": [ @@ -132,4 +126,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java17/runtime-telemetry-java17-07c65cd200fb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java17/runtime-telemetry-java17-07c65cd200fb.json index 89be8054..ddae47a0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java17/runtime-telemetry-java17-07c65cd200fb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java17/runtime-telemetry-java17-07c65cd200fb.json @@ -9,8 +9,6 @@ "scope": { "name": "io.opentelemetry.runtime-telemetry-java17" }, - "semantic_conventions": [ - "JVM_RUNTIME_METRICS" - ], + "semantic_conventions": ["JVM_RUNTIME_METRICS"], "source_path": "instrumentation/runtime-telemetry/runtime-telemetry-java17" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java17/runtime-telemetry-java17-d0dc7fb3ab86.json b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java17/runtime-telemetry-java17-d0dc7fb3ab86.json index 736e6596..ffca0f24 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java17/runtime-telemetry-java17-d0dc7fb3ab86.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java17/runtime-telemetry-java17-d0dc7fb3ab86.json @@ -9,11 +9,7 @@ "scope": { "name": "io.opentelemetry.runtime-telemetry-java17" }, - "semantic_conventions": [ - "JVM_RUNTIME_METRICS" - ], + "semantic_conventions": ["JVM_RUNTIME_METRICS"], "source_path": "instrumentation/runtime-telemetry/runtime-telemetry-java17", - "tags": [ - "runtime" - ] -} \ No newline at end of file + "tags": ["runtime"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java8/runtime-telemetry-java8-d285f87f845c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java8/runtime-telemetry-java8-d285f87f845c.json index d223ab5f..79523d92 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java8/runtime-telemetry-java8-d285f87f845c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java8/runtime-telemetry-java8-d285f87f845c.json @@ -8,11 +8,7 @@ "scope": { "name": "io.opentelemetry.runtime-telemetry-java8" }, - "semantic_conventions": [ - "JVM_RUNTIME_METRICS" - ], + "semantic_conventions": ["JVM_RUNTIME_METRICS"], "source_path": "instrumentation/runtime-telemetry/runtime-telemetry-java8", - "tags": [ - "runtime" - ] -} \ No newline at end of file + "tags": ["runtime"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java8/runtime-telemetry-java8-e90c62c4a47e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java8/runtime-telemetry-java8-e90c62c4a47e.json index 4579b75c..933c1535 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java8/runtime-telemetry-java8-e90c62c4a47e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry-java8/runtime-telemetry-java8-e90c62c4a47e.json @@ -8,8 +8,6 @@ "scope": { "name": "io.opentelemetry.runtime-telemetry-java8" }, - "semantic_conventions": [ - "JVM_RUNTIME_METRICS" - ], + "semantic_conventions": ["JVM_RUNTIME_METRICS"], "source_path": "instrumentation/runtime-telemetry/runtime-telemetry-java8" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry/runtime-telemetry-04c4abc0ed3c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry/runtime-telemetry-04c4abc0ed3c.json index 161cc4bd..3e4105ad 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry/runtime-telemetry-04c4abc0ed3c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry/runtime-telemetry-04c4abc0ed3c.json @@ -34,9 +34,7 @@ "scope": { "name": "io.opentelemetry.runtime-telemetry" }, - "semantic_conventions": [ - "JVM_RUNTIME_METRICS" - ], + "semantic_conventions": ["JVM_RUNTIME_METRICS"], "source_path": "instrumentation/runtime-telemetry", "telemetry": [ { @@ -514,4 +512,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry/runtime-telemetry-c0b7114e3b3c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry/runtime-telemetry-c0b7114e3b3c.json index 4692ebd8..d28f921f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry/runtime-telemetry-c0b7114e3b3c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/runtime-telemetry/runtime-telemetry-c0b7114e3b3c.json @@ -34,13 +34,9 @@ "scope": { "name": "io.opentelemetry.runtime-telemetry" }, - "semantic_conventions": [ - "JVM_RUNTIME_METRICS" - ], + "semantic_conventions": ["JVM_RUNTIME_METRICS"], "source_path": "instrumentation/runtime-telemetry", - "tags": [ - "runtime" - ], + "tags": ["runtime"], "telemetry": [ { "metrics": [ @@ -517,4 +513,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-2.0/rxjava-2.0-05f77d55dd97.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-2.0/rxjava-2.0-05f77d55dd97.json index 10eda1ab..da3a111f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-2.0/rxjava-2.0-05f77d55dd97.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-2.0/rxjava-2.0-05f77d55dd97.json @@ -9,21 +9,15 @@ ], "description": "This instrumentation enables context propagation for RxJava 2 reactive streams and adds support for @WithSpan annotations on methods that return RxJava 2 types. It does not emit any telemetry on its own.", "display_name": "RxJava", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.reactivex.rxjava2:rxjava:[2.0.6,)" - ], + "javaagent_target_versions": ["io.reactivex.rxjava2:rxjava:[2.0.6,)"], "library_link": "https://github.com/ReactiveX/RxJava/tree/2.x", "name": "rxjava-2.0", "scope": { "name": "io.opentelemetry.rxjava-2.0" }, "source_path": "instrumentation/rxjava/rxjava-2.0", - "tags": [ - "rxjava" - ] -} \ No newline at end of file + "tags": ["rxjava"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-2.0/rxjava-2.0-54a6aa766c7b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-2.0/rxjava-2.0-54a6aa766c7b.json index e144d34b..55eb003c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-2.0/rxjava-2.0-54a6aa766c7b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-2.0/rxjava-2.0-54a6aa766c7b.json @@ -9,18 +9,14 @@ ], "description": "This instrumentation enables context propagation for RxJava 2 reactive streams and adds support for @WithSpan annotations on methods that return RxJava 2 types. It does not emit any telemetry on its own.", "display_name": "RxJava", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.reactivex.rxjava2:rxjava:[2.0.6,)" - ], + "javaagent_target_versions": ["io.reactivex.rxjava2:rxjava:[2.0.6,)"], "library_link": "https://github.com/ReactiveX/RxJava/tree/2.x", "name": "rxjava-2.0", "scope": { "name": "io.opentelemetry.rxjava-2.0" }, "source_path": "instrumentation/rxjava/rxjava-2.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.0/rxjava-3.0-57f561f199f3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.0/rxjava-3.0-57f561f199f3.json index 835d069f..0a2d7622 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.0/rxjava-3.0-57f561f199f3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.0/rxjava-3.0-57f561f199f3.json @@ -9,18 +9,14 @@ ], "description": "This instrumentation enables context propagation for RxJava 3 reactive streams and adds support for @WithSpan annotations on methods that return RxJava 3 types. It does not emit any telemetry on its own.", "display_name": "RxJava", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.reactivex.rxjava3:rxjava:[3.0.0,3.1.0]" - ], + "javaagent_target_versions": ["io.reactivex.rxjava3:rxjava:[3.0.0,3.1.0]"], "library_link": "https://github.com/ReactiveX/RxJava/tree/3.x", "name": "rxjava-3.0", "scope": { "name": "io.opentelemetry.rxjava-3.0" }, "source_path": "instrumentation/rxjava/rxjava-3.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.0/rxjava-3.0-9b4195f24511.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.0/rxjava-3.0-9b4195f24511.json index 6c322619..c59eb6a7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.0/rxjava-3.0-9b4195f24511.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.0/rxjava-3.0-9b4195f24511.json @@ -9,21 +9,15 @@ ], "description": "This instrumentation enables context propagation for RxJava 3 reactive streams and adds support for @WithSpan annotations on methods that return RxJava 3 types. It does not emit any telemetry on its own.", "display_name": "RxJava", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.reactivex.rxjava3:rxjava:[3.0.0,3.1.0]" - ], + "javaagent_target_versions": ["io.reactivex.rxjava3:rxjava:[3.0.0,3.1.0]"], "library_link": "https://github.com/ReactiveX/RxJava/tree/3.x", "name": "rxjava-3.0", "scope": { "name": "io.opentelemetry.rxjava-3.0" }, "source_path": "instrumentation/rxjava/rxjava-3.0", - "tags": [ - "rxjava" - ] -} \ No newline at end of file + "tags": ["rxjava"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.1.1/rxjava-3.1.1-bcdd8c9da094.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.1.1/rxjava-3.1.1-bcdd8c9da094.json index 955885a0..301ad11e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.1.1/rxjava-3.1.1-bcdd8c9da094.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.1.1/rxjava-3.1.1-bcdd8c9da094.json @@ -9,18 +9,14 @@ ], "description": "This instrumentation enables context propagation for RxJava 3 reactive streams and adds support for @WithSpan annotations on methods that return RxJava 3 types. It does not emit any telemetry on its own.", "display_name": "RxJava", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.reactivex.rxjava3:rxjava:[3.1.1,)" - ], + "javaagent_target_versions": ["io.reactivex.rxjava3:rxjava:[3.1.1,)"], "library_link": "https://github.com/ReactiveX/RxJava/tree/3.x", "name": "rxjava-3.1.1", "scope": { "name": "io.opentelemetry.rxjava-3.1.1" }, "source_path": "instrumentation/rxjava/rxjava-3.1.1" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.1.1/rxjava-3.1.1-d63f99a986d5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.1.1/rxjava-3.1.1-d63f99a986d5.json index 72fae8bc..c06cdb75 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.1.1/rxjava-3.1.1-d63f99a986d5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/rxjava-3.1.1/rxjava-3.1.1-d63f99a986d5.json @@ -9,21 +9,15 @@ ], "description": "This instrumentation enables context propagation for RxJava 3 reactive streams and adds support for @WithSpan annotations on methods that return RxJava 3 types. It does not emit any telemetry on its own.", "display_name": "RxJava", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "io.reactivex.rxjava3:rxjava:[3.1.1,)" - ], + "javaagent_target_versions": ["io.reactivex.rxjava3:rxjava:[3.1.1,)"], "library_link": "https://github.com/ReactiveX/RxJava/tree/3.x", "name": "rxjava-3.1.1", "scope": { "name": "io.opentelemetry.rxjava-3.1.1" }, "source_path": "instrumentation/rxjava/rxjava-3.1.1", - "tags": [ - "rxjava" - ] -} \ No newline at end of file + "tags": ["rxjava"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/scala-fork-join-2.8/scala-fork-join-2.8-26cdace0e9ce.json b/ecosystem-explorer/public/data/javaagent/instrumentations/scala-fork-join-2.8/scala-fork-join-2.8-26cdace0e9ce.json index a01dcaf2..efec5f56 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/scala-fork-join-2.8/scala-fork-join-2.8-26cdace0e9ce.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/scala-fork-join-2.8/scala-fork-join-2.8-26cdace0e9ce.json @@ -2,13 +2,11 @@ "description": "This instrumentation enables context propagation for Scala fork-join tasks, it does not emit any telemetry on its own.", "display_name": "Scala ForkJoinPool", "has_javaagent": true, - "javaagent_target_versions": [ - "org.scala-lang:scala-library:[2.8.0,2.12.0)" - ], + "javaagent_target_versions": ["org.scala-lang:scala-library:[2.8.0,2.12.0)"], "library_link": "https://www.scala-lang.org/api/2.12.0/scala/concurrent/forkjoin/package$$ForkJoinPool$.html", "name": "scala-fork-join-2.8", "scope": { "name": "io.opentelemetry.scala-fork-join-2.8" }, "source_path": "instrumentation/scala-fork-join-2.8" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/scala-fork-join-2.8/scala-fork-join-2.8-7fea4e3e1506.json b/ecosystem-explorer/public/data/javaagent/instrumentations/scala-fork-join-2.8/scala-fork-join-2.8-7fea4e3e1506.json index 3a8892c7..f61ff3ae 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/scala-fork-join-2.8/scala-fork-join-2.8-7fea4e3e1506.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/scala-fork-join-2.8/scala-fork-join-2.8-7fea4e3e1506.json @@ -2,16 +2,12 @@ "description": "This instrumentation enables context propagation for Scala fork-join tasks, it does not emit any telemetry on its own.", "display_name": "Scala ForkJoinPool", "has_javaagent": true, - "javaagent_target_versions": [ - "org.scala-lang:scala-library:[2.8.0,2.12.0)" - ], + "javaagent_target_versions": ["org.scala-lang:scala-library:[2.8.0,2.12.0)"], "library_link": "https://www.scala-lang.org/api/2.12.0/scala/concurrent/forkjoin/package$$ForkJoinPool$.html", "name": "scala-fork-join-2.8", "scope": { "name": "io.opentelemetry.scala-fork-join-2.8" }, "source_path": "instrumentation/scala-fork-join-2.8", - "tags": [ - "scala" - ] -} \ No newline at end of file + "tags": ["scala"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-2.2/servlet-2.2-9d7a987ff886.json b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-2.2/servlet-2.2-9d7a987ff886.json index 87f13674..2b0cf5da 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-2.2/servlet-2.2-9d7a987ff886.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-2.2/servlet-2.2-9d7a987ff886.json @@ -21,23 +21,16 @@ ], "description": "This instrumentation enables HTTP server spans and metrics for Java Servlet API.", "display_name": "Servlet", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "javax.servlet:servlet-api:[2.2, 3.0)" - ], + "javaagent_target_versions": ["javax.servlet:servlet-api:[2.2, 3.0)"], "library_link": "https://javaee.github.io/servlet-spec/", "name": "servlet-2.2", "scope": { "name": "io.opentelemetry.servlet-2.2", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/servlet/servlet-2.2", "telemetry": [ { @@ -143,4 +136,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-2.2/servlet-2.2-a626192f61e9.json b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-2.2/servlet-2.2-a626192f61e9.json index b7a26b46..c4c23f0b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-2.2/servlet-2.2-a626192f61e9.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-2.2/servlet-2.2-a626192f61e9.json @@ -21,26 +21,17 @@ ], "description": "This instrumentation enables HTTP server spans and metrics for Java Servlet API.", "display_name": "Servlet", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "javax.servlet:servlet-api:[2.2, 3.0)" - ], + "javaagent_target_versions": ["javax.servlet:servlet-api:[2.2, 3.0)"], "library_link": "https://javaee.github.io/servlet-spec/", "name": "servlet-2.2", "scope": { "name": "io.opentelemetry.servlet-2.2" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/servlet/servlet-2.2", - "tags": [ - "servlet" - ], + "tags": ["servlet"], "telemetry": [ { "metrics": [ @@ -145,4 +136,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-3.0/servlet-3.0-d20f61ae7a53.json b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-3.0/servlet-3.0-d20f61ae7a53.json index e23ef3e2..66ad5ca7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-3.0/servlet-3.0-d20f61ae7a53.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-3.0/servlet-3.0-d20f61ae7a53.json @@ -21,27 +21,18 @@ ], "description": "This instrumentation enables HTTP server spans and metrics for Java Servlet API.", "display_name": "Servlet", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "javax.servlet:javax.servlet-api:[3.0,)" - ], + "javaagent_target_versions": ["javax.servlet:javax.servlet-api:[3.0,)"], "library_link": "https://javaee.github.io/servlet-spec/", "name": "servlet-3.0", "scope": { "name": "io.opentelemetry.servlet-3.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/servlet/servlet-3.0", - "tags": [ - "servlet" - ], + "tags": ["servlet"], "telemetry": [ { "metrics": [ @@ -158,4 +149,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-3.0/servlet-3.0-e3eb03e57c68.json b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-3.0/servlet-3.0-e3eb03e57c68.json index 07016112..7afd9e1d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-3.0/servlet-3.0-e3eb03e57c68.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-3.0/servlet-3.0-e3eb03e57c68.json @@ -21,24 +21,17 @@ ], "description": "This instrumentation enables HTTP server spans and metrics for Java Servlet API.", "display_name": "Servlet", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "javax.servlet:javax.servlet-api:[3.0,)" - ], + "javaagent_target_versions": ["javax.servlet:javax.servlet-api:[3.0,)"], "library_link": "https://javaee.github.io/servlet-spec/", "name": "servlet-3.0", "scope": { "name": "io.opentelemetry.servlet-3.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/servlet/servlet-3.0", "telemetry": [ { @@ -156,4 +149,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-5.0/servlet-5.0-825fa9b9cb38.json b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-5.0/servlet-5.0-825fa9b9cb38.json index b977e89e..051031ea 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-5.0/servlet-5.0-825fa9b9cb38.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-5.0/servlet-5.0-825fa9b9cb38.json @@ -21,24 +21,17 @@ ], "description": "This instrumentation enables HTTP server spans and metrics for Jakarta Servlet API.", "display_name": "Servlet", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "jakarta.servlet:jakarta.servlet-api:[5.0.0,)" - ], + "javaagent_target_versions": ["jakarta.servlet:jakarta.servlet-api:[5.0.0,)"], "library_link": "https://jakarta.ee/specifications/servlet/", "name": "servlet-5.0", "scope": { "name": "io.opentelemetry.servlet-5.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/servlet/servlet-5.0", "telemetry": [ { @@ -156,4 +149,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-5.0/servlet-5.0-eb1685977348.json b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-5.0/servlet-5.0-eb1685977348.json index ffe4e99a..ac1e128c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-5.0/servlet-5.0-eb1685977348.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/servlet-5.0/servlet-5.0-eb1685977348.json @@ -21,27 +21,18 @@ ], "description": "This instrumentation enables HTTP server spans and metrics for Jakarta Servlet API.", "display_name": "Servlet", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "jakarta.servlet:jakarta.servlet-api:[5.0.0,)" - ], + "javaagent_target_versions": ["jakarta.servlet:jakarta.servlet-api:[5.0.0,)"], "library_link": "https://jakarta.ee/specifications/servlet/", "name": "servlet-5.0", "scope": { "name": "io.opentelemetry.servlet-5.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/servlet/servlet-5.0", - "tags": [ - "servlet" - ], + "tags": ["servlet"], "telemetry": [ { "metrics": [ @@ -158,4 +149,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spark-2.3/spark-2.3-517b872aa3ef.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spark-2.3/spark-2.3-517b872aa3ef.json index 5575f3d9..15b0f805 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spark-2.3/spark-2.3-517b872aa3ef.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spark-2.3/spark-2.3-517b872aa3ef.json @@ -1,17 +1,13 @@ { "description": "This instrumentation does not emit telemetry on its own. Instead, it extracts the HTTP route and attaches it to HTTP server spans and HTTP server metrics.", "display_name": "Spark Web Framework", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.sparkjava:spark-core:[2.3,)" - ], + "javaagent_target_versions": ["com.sparkjava:spark-core:[2.3,)"], "library_link": "https://sparkjava.com/", "name": "spark-2.3", "scope": { "name": "io.opentelemetry.spark-2.3" }, "source_path": "instrumentation/spark-2.3" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spark-2.3/spark-2.3-e60dcf06359d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spark-2.3/spark-2.3-e60dcf06359d.json index 3f7a2700..18aa004f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spark-2.3/spark-2.3-e60dcf06359d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spark-2.3/spark-2.3-e60dcf06359d.json @@ -1,20 +1,14 @@ { "description": "This instrumentation does not emit telemetry on its own. Instead, it extracts the HTTP route and attaches it to HTTP server spans and HTTP server metrics.", "display_name": "Spark Web Framework", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "com.sparkjava:spark-core:[2.3,)" - ], + "javaagent_target_versions": ["com.sparkjava:spark-core:[2.3,)"], "library_link": "https://sparkjava.com/", "name": "spark-2.3", "scope": { "name": "io.opentelemetry.spark-2.3" }, "source_path": "instrumentation/spark-2.3", - "tags": [ - "spark" - ] -} \ No newline at end of file + "tags": ["spark"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-batch-3.0/spring-batch-3.0-31c2dab82c2a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-batch-3.0/spring-batch-3.0-31c2dab82c2a.json index 2ef05eac..fced5796 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-batch-3.0/spring-batch-3.0-31c2dab82c2a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-batch-3.0/spring-batch-3.0-31c2dab82c2a.json @@ -23,18 +23,14 @@ "disabled_by_default": true, "display_name": "Spring Batch", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework.batch:spring-batch-core:[3.0.0.RELEASE,5)" - ], + "javaagent_target_versions": ["org.springframework.batch:spring-batch-core:[3.0.0.RELEASE,5)"], "library_link": "https://spring.io/projects/spring-batch", "name": "spring-batch-3.0", "scope": { "name": "io.opentelemetry.spring-batch-3.0" }, "source_path": "instrumentation/spring/spring-batch-3.0", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -51,4 +47,4 @@ "when": "otel.instrumentation.spring-batch.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-batch-3.0/spring-batch-3.0-6e6cc9d4a4e3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-batch-3.0/spring-batch-3.0-6e6cc9d4a4e3.json index 1efc6895..f5a9117b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-batch-3.0/spring-batch-3.0-6e6cc9d4a4e3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-batch-3.0/spring-batch-3.0-6e6cc9d4a4e3.json @@ -23,9 +23,7 @@ "disabled_by_default": true, "display_name": "Spring Batch", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework.batch:spring-batch-core:[3.0.0.RELEASE,5)" - ], + "javaagent_target_versions": ["org.springframework.batch:spring-batch-core:[3.0.0.RELEASE,5)"], "library_link": "https://spring.io/projects/spring-batch", "name": "spring-batch-3.0", "scope": { @@ -57,4 +55,4 @@ "when": "otel.instrumentation.spring-batch.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-actuator-autoconfigure-2.0/spring-boot-actuator-autoconfigure-2.0-24e0dc28966e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-actuator-autoconfigure-2.0/spring-boot-actuator-autoconfigure-2.0-24e0dc28966e.json index 61561f9e..2fa792fb 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-actuator-autoconfigure-2.0/spring-boot-actuator-autoconfigure-2.0-24e0dc28966e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-actuator-autoconfigure-2.0/spring-boot-actuator-autoconfigure-2.0-24e0dc28966e.json @@ -12,7 +12,5 @@ "name": "io.opentelemetry.spring-boot-actuator-autoconfigure-2.0" }, "source_path": "instrumentation/spring/spring-boot-actuator-autoconfigure-2.0", - "tags": [ - "spring" - ] -} \ No newline at end of file + "tags": ["spring"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-actuator-autoconfigure-2.0/spring-boot-actuator-autoconfigure-2.0-c42f7a2b63fa.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-actuator-autoconfigure-2.0/spring-boot-actuator-autoconfigure-2.0-c42f7a2b63fa.json index 362fee81..8da5c5e3 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-actuator-autoconfigure-2.0/spring-boot-actuator-autoconfigure-2.0-c42f7a2b63fa.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-actuator-autoconfigure-2.0/spring-boot-actuator-autoconfigure-2.0-c42f7a2b63fa.json @@ -12,4 +12,4 @@ "name": "io.opentelemetry.spring-boot-actuator-autoconfigure-2.0" }, "source_path": "instrumentation/spring/spring-boot-actuator-autoconfigure-2.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-resources/spring-boot-resources-86e6a7444dcb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-resources/spring-boot-resources-86e6a7444dcb.json index 4d090876..460bc696 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-resources/spring-boot-resources-86e6a7444dcb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-resources/spring-boot-resources-86e6a7444dcb.json @@ -1,9 +1,7 @@ { "description": "This instrumentation automatically detects the `service.name` and `service.version` for Spring Boot applications and sets them as resource attributes.\nIt uses the following strategies (first successful wins):\n - Check for the SPRING_APPLICATION_NAME environment variable\n - Check for spring.application.name system property\n - Check for application.properties file on the classpath\n - Check for application.properties in the current working dir\n - Check for application.yml on the classpath\n - Check for application.yml in the current working dir\n - Check for --spring.application.name program argument (not jvm arg) via ProcessHandle\n - Check for --spring.application.name program argument via sun.java.command system property", "display_name": "Spring Boot Resource Detector", - "features": [ - "RESOURCE_DETECTOR" - ], + "features": ["RESOURCE_DETECTOR"], "has_javaagent": true, "library_link": "https://spring.io/projects/spring-boot", "name": "spring-boot-resources", @@ -11,7 +9,5 @@ "name": "io.opentelemetry.spring-boot-resources" }, "source_path": "instrumentation/spring/spring-boot-resources", - "tags": [ - "spring" - ] -} \ No newline at end of file + "tags": ["spring"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-resources/spring-boot-resources-f383343f0836.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-resources/spring-boot-resources-f383343f0836.json index d8ad1c4b..e256189a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-resources/spring-boot-resources-f383343f0836.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-boot-resources/spring-boot-resources-f383343f0836.json @@ -1,9 +1,7 @@ { "description": "This instrumentation automatically detects the `service.name` and `service.version` for Spring Boot applications and sets them as resource attributes.\nIt uses the following strategies (first successful wins):\n - Check for the SPRING_APPLICATION_NAME environment variable\n - Check for spring.application.name system property\n - Check for application.properties file on the classpath\n - Check for application.properties in the current working dir\n - Check for application.yml on the classpath\n - Check for application.yml in the current working dir\n - Check for --spring.application.name program argument (not jvm arg) via ProcessHandle\n - Check for --spring.application.name program argument via sun.java.command system property", "display_name": "Spring Boot Resource Detector", - "features": [ - "RESOURCE_DETECTOR" - ], + "features": ["RESOURCE_DETECTOR"], "has_javaagent": true, "library_link": "https://spring.io/projects/spring-boot", "name": "spring-boot-resources", @@ -11,4 +9,4 @@ "name": "io.opentelemetry.spring-boot-resources" }, "source_path": "instrumentation/spring/spring-boot-resources" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-aws-3.0/spring-cloud-aws-3.0-1a8cde0aab2d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-aws-3.0/spring-cloud-aws-3.0-1a8cde0aab2d.json index f0a80bda..c4c359ed 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-aws-3.0/spring-cloud-aws-3.0-1a8cde0aab2d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-aws-3.0/spring-cloud-aws-3.0-1a8cde0aab2d.json @@ -2,9 +2,7 @@ "description": "This instrumentation enhances messaging span creation for Spring Cloud AWS SQS. It coordinates with the AWS SDK instrumentation to create spans at the appropriate points in Spring Cloud AWS message handling.", "display_name": "Spring Cloud AWS", "has_javaagent": true, - "javaagent_target_versions": [ - "io.awspring.cloud:spring-cloud-aws-sqs:[3.0.0,)" - ], + "javaagent_target_versions": ["io.awspring.cloud:spring-cloud-aws-sqs:[3.0.0,)"], "library_link": "https://spring.io/projects/spring-cloud-aws", "minimum_java_version": 17, "name": "spring-cloud-aws-3.0", @@ -12,7 +10,5 @@ "name": "io.opentelemetry.spring-cloud-aws-3.0" }, "source_path": "instrumentation/spring/spring-cloud-aws-3.0", - "tags": [ - "spring" - ] -} \ No newline at end of file + "tags": ["spring"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-aws-3.0/spring-cloud-aws-3.0-84acb6b92cb4.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-aws-3.0/spring-cloud-aws-3.0-84acb6b92cb4.json index fd344996..fb2014f6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-aws-3.0/spring-cloud-aws-3.0-84acb6b92cb4.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-aws-3.0/spring-cloud-aws-3.0-84acb6b92cb4.json @@ -2,9 +2,7 @@ "description": "This instrumentation enhances messaging span creation for Spring Cloud AWS SQS. It coordinates with the AWS SDK instrumentation to create spans at the appropriate points in Spring Cloud AWS message handling.", "display_name": "Spring Cloud AWS", "has_javaagent": true, - "javaagent_target_versions": [ - "io.awspring.cloud:spring-cloud-aws-sqs:[3.0.0,)" - ], + "javaagent_target_versions": ["io.awspring.cloud:spring-cloud-aws-sqs:[3.0.0,)"], "library_link": "https://spring.io/projects/spring-cloud-aws", "minimum_java_version": 17, "name": "spring-cloud-aws-3.0", @@ -12,4 +10,4 @@ "name": "io.opentelemetry.spring-cloud-aws-3.0" }, "source_path": "instrumentation/spring/spring-cloud-aws-3.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-2.0/spring-cloud-gateway-2.0-9f782ebfe4f5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-2.0/spring-cloud-gateway-2.0-9f782ebfe4f5.json index b6fa3b9d..3a296e47 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-2.0/spring-cloud-gateway-2.0-9f782ebfe4f5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-2.0/spring-cloud-gateway-2.0-9f782ebfe4f5.json @@ -9,9 +9,7 @@ ], "description": "This instrumentation enhances tracing for Spring Cloud Gateway. It does not generate any telemetry on its own, but rather enriches existing traces produced by other instrumentations like Netty and Spring WebFlux with Spring Cloud Gateway-specific attributes.", "display_name": "Spring Cloud Gateway", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "javaagent_target_versions": [ "org.springframework.cloud:spring-cloud-starter-gateway:[2.0.0.RELEASE,)", @@ -23,7 +21,5 @@ "name": "io.opentelemetry.spring-cloud-gateway-2.0" }, "source_path": "instrumentation/spring/spring-cloud-gateway/spring-cloud-gateway-2.0", - "tags": [ - "spring" - ] -} \ No newline at end of file + "tags": ["spring"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-2.0/spring-cloud-gateway-2.0-c1c312accee5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-2.0/spring-cloud-gateway-2.0-c1c312accee5.json index ecc871ce..2cfcc6b9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-2.0/spring-cloud-gateway-2.0-c1c312accee5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-2.0/spring-cloud-gateway-2.0-c1c312accee5.json @@ -9,9 +9,7 @@ ], "description": "This instrumentation enhances tracing for Spring Cloud Gateway. It does not generate any telemetry on its own, but rather enriches existing traces produced by other instrumentations like Netty and Spring WebFlux with Spring Cloud Gateway-specific attributes.", "display_name": "Spring Cloud Gateway", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "javaagent_target_versions": [ "org.springframework.cloud:spring-cloud-starter-gateway:[2.0.0.RELEASE,)", @@ -23,4 +21,4 @@ "name": "io.opentelemetry.spring-cloud-gateway-2.0" }, "source_path": "instrumentation/spring/spring-cloud-gateway/spring-cloud-gateway-2.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-webmvc-4.3/spring-cloud-gateway-webmvc-4.3-3451dbcb74b1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-webmvc-4.3/spring-cloud-gateway-webmvc-4.3-3451dbcb74b1.json index fbbdecde..e90b3eec 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-webmvc-4.3/spring-cloud-gateway-webmvc-4.3-3451dbcb74b1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-webmvc-4.3/spring-cloud-gateway-webmvc-4.3-3451dbcb74b1.json @@ -20,7 +20,5 @@ "name": "io.opentelemetry.spring-cloud-gateway-webmvc-4.3" }, "source_path": "instrumentation/spring/spring-cloud-gateway/spring-cloud-gateway-webmvc-4.3", - "tags": [ - "spring" - ] -} \ No newline at end of file + "tags": ["spring"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-webmvc-4.3/spring-cloud-gateway-webmvc-4.3-b1f339817d65.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-webmvc-4.3/spring-cloud-gateway-webmvc-4.3-b1f339817d65.json index bfe9794c..90553606 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-webmvc-4.3/spring-cloud-gateway-webmvc-4.3-b1f339817d65.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-cloud-gateway-webmvc-4.3/spring-cloud-gateway-webmvc-4.3-b1f339817d65.json @@ -20,4 +20,4 @@ "name": "io.opentelemetry.spring-cloud-gateway-webmvc-4.3" }, "source_path": "instrumentation/spring/spring-cloud-gateway/spring-cloud-gateway-webmvc-4.3" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-core-2.0/spring-core-2.0-2ae370c4a1cb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-core-2.0/spring-core-2.0-2ae370c4a1cb.json index e667a0ab..dbf55982 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-core-2.0/spring-core-2.0-2ae370c4a1cb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-core-2.0/spring-core-2.0-2ae370c4a1cb.json @@ -1,13 +1,9 @@ { "description": "This instrumentation provides context propagation for Spring Core asynchronous task execution, it does not emit any telemetry on its own.", "display_name": "Spring Core", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-core:[2.0,]" - ], + "javaagent_target_versions": ["org.springframework:spring-core:[2.0,]"], "library_link": "https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/core/package-summary.html", "minimum_java_version": 17, "name": "spring-core-2.0", @@ -15,7 +11,5 @@ "name": "io.opentelemetry.spring-core-2.0" }, "source_path": "instrumentation/spring/spring-core-2.0", - "tags": [ - "spring" - ] -} \ No newline at end of file + "tags": ["spring"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-core-2.0/spring-core-2.0-4a81e61cfac6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-core-2.0/spring-core-2.0-4a81e61cfac6.json index 84551b28..fa4775da 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-core-2.0/spring-core-2.0-4a81e61cfac6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-core-2.0/spring-core-2.0-4a81e61cfac6.json @@ -1,17 +1,13 @@ { "description": "This instrumentation provides context propagation for Spring Core asynchronous task execution, it does not emit any telemetry on its own.", "display_name": "Spring Core", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-core:[2.0,]" - ], + "javaagent_target_versions": ["org.springframework:spring-core:[2.0,]"], "library_link": "https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/core/package-summary.html", "name": "spring-core-2.0", "scope": { "name": "io.opentelemetry.spring-core-2.0" }, "source_path": "instrumentation/spring/spring-core-2.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-data-1.8/spring-data-1.8-2d2cd7a74f7b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-data-1.8/spring-data-1.8-2d2cd7a74f7b.json index af4e1f3a..e3f1fa80 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-data-1.8/spring-data-1.8-2d2cd7a74f7b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-data-1.8/spring-data-1.8-2d2cd7a74f7b.json @@ -32,4 +32,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-data-1.8/spring-data-1.8-83bf8e080f48.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-data-1.8/spring-data-1.8-83bf8e080f48.json index 09704d21..1ce6309c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-data-1.8/spring-data-1.8-83bf8e080f48.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-data-1.8/spring-data-1.8-83bf8e080f48.json @@ -12,9 +12,7 @@ "name": "io.opentelemetry.spring-data-1.8" }, "source_path": "instrumentation/spring/spring-data/spring-data-1.8", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -35,4 +33,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-integration-4.1/spring-integration-4.1-660a2bc9cf2c.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-integration-4.1/spring-integration-4.1-660a2bc9cf2c.json index b22d3e21..84e2e896 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-integration-4.1/spring-integration-4.1-660a2bc9cf2c.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-integration-4.1/spring-integration-4.1-660a2bc9cf2c.json @@ -32,9 +32,7 @@ "name": "io.opentelemetry.spring-integration-4.1" }, "source_path": "instrumentation/spring/spring-integration-4.1", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -74,4 +72,4 @@ "when": "otel.instrumentation.spring-integration.producer.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-integration-4.1/spring-integration-4.1-7a1dde3d31b1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-integration-4.1/spring-integration-4.1-7a1dde3d31b1.json index d2b0d4a2..c54fdea0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-integration-4.1/spring-integration-4.1-7a1dde3d31b1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-integration-4.1/spring-integration-4.1-7a1dde3d31b1.json @@ -71,4 +71,4 @@ "when": "otel.instrumentation.spring-integration.producer.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-2.0/spring-jms-2.0-12c58210a6af.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-2.0/spring-jms-2.0-12c58210a6af.json index 868cfd13..c346ebc1 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-2.0/spring-jms-2.0-12c58210a6af.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-2.0/spring-jms-2.0-12c58210a6af.json @@ -16,21 +16,15 @@ "description": "This instrumentation enables messaging spans for Spring JMS message consumers.", "display_name": "Spring JMS", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-jms:[2.0,6)" - ], + "javaagent_target_versions": ["org.springframework:spring-jms:[2.0,6)"], "library_link": "https://docs.spring.io/spring-framework/reference/integration/jms.html", "name": "spring-jms-2.0", "scope": { "name": "io.opentelemetry.spring-jms-2.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/spring/spring-jms/spring-jms-2.0", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -59,4 +53,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-2.0/spring-jms-2.0-aec888837148.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-2.0/spring-jms-2.0-aec888837148.json index 4898292a..59009884 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-2.0/spring-jms-2.0-aec888837148.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-2.0/spring-jms-2.0-aec888837148.json @@ -16,17 +16,13 @@ "description": "This instrumentation enables messaging spans for Spring JMS message consumers.", "display_name": "Spring JMS", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-jms:[2.0,6)" - ], + "javaagent_target_versions": ["org.springframework:spring-jms:[2.0,6)"], "library_link": "https://docs.spring.io/spring-framework/reference/integration/jms.html", "name": "spring-jms-2.0", "scope": { "name": "io.opentelemetry.spring-jms-2.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/spring/spring-jms/spring-jms-2.0", "telemetry": [ { @@ -56,4 +52,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-6.0/spring-jms-6.0-43a9cfec6bcb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-6.0/spring-jms-6.0-43a9cfec6bcb.json index a4bba930..ad05306f 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-6.0/spring-jms-6.0-43a9cfec6bcb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-6.0/spring-jms-6.0-43a9cfec6bcb.json @@ -16,22 +16,16 @@ "description": "This instrumentation enables messaging spans for Spring JMS message consumers.", "display_name": "Spring JMS", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-jms:[6.0.0,)" - ], + "javaagent_target_versions": ["org.springframework:spring-jms:[6.0.0,)"], "library_link": "https://docs.spring.io/spring-framework/reference/integration/jms.html", "minimum_java_version": 17, "name": "spring-jms-6.0", "scope": { "name": "io.opentelemetry.spring-jms-6.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/spring/spring-jms/spring-jms-6.0", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -60,4 +54,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-6.0/spring-jms-6.0-abb90fcf4eb5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-6.0/spring-jms-6.0-abb90fcf4eb5.json index 2d1a0710..ff095849 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-6.0/spring-jms-6.0-abb90fcf4eb5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-jms-6.0/spring-jms-6.0-abb90fcf4eb5.json @@ -16,18 +16,14 @@ "description": "This instrumentation enables messaging spans for Spring JMS message consumers.", "display_name": "Spring JMS", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-jms:[6.0.0,)" - ], + "javaagent_target_versions": ["org.springframework:spring-jms:[6.0.0,)"], "library_link": "https://docs.spring.io/spring-framework/reference/integration/jms.html", "minimum_java_version": 17, "name": "spring-jms-6.0", "scope": { "name": "io.opentelemetry.spring-jms-6.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/spring/spring-jms/spring-jms-6.0", "telemetry": [ { @@ -57,4 +53,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-kafka-2.7/spring-kafka-2.7-3827759ce399.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-kafka-2.7/spring-kafka-2.7-3827759ce399.json index 3f733bae..1206c4f2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-kafka-2.7/spring-kafka-2.7-3827759ce399.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-kafka-2.7/spring-kafka-2.7-3827759ce399.json @@ -23,17 +23,13 @@ "display_name": "Spring Kafka", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.springframework.kafka:spring-kafka:[2.7.0,)" - ], + "javaagent_target_versions": ["org.springframework.kafka:spring-kafka:[2.7.0,)"], "library_link": "https://spring.io/projects/spring-kafka", "name": "spring-kafka-2.7", "scope": { "name": "io.opentelemetry.spring-kafka-2.7" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/spring/spring-kafka-2.7", "telemetry": [ { @@ -141,4 +137,4 @@ "when": "otel.instrumentation.kafka.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-kafka-2.7/spring-kafka-2.7-bc72d9164d5a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-kafka-2.7/spring-kafka-2.7-bc72d9164d5a.json index 5b494ad9..b7286d50 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-kafka-2.7/spring-kafka-2.7-bc72d9164d5a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-kafka-2.7/spring-kafka-2.7-bc72d9164d5a.json @@ -23,21 +23,15 @@ "display_name": "Spring Kafka", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.springframework.kafka:spring-kafka:[2.7.0,)" - ], + "javaagent_target_versions": ["org.springframework.kafka:spring-kafka:[2.7.0,)"], "library_link": "https://spring.io/projects/spring-kafka", "name": "spring-kafka-2.7", "scope": { "name": "io.opentelemetry.spring-kafka-2.7" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/spring/spring-kafka-2.7", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -144,4 +138,4 @@ "when": "otel.instrumentation.kafka.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-pulsar-1.0/spring-pulsar-1.0-34904a099173.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-pulsar-1.0/spring-pulsar-1.0-34904a099173.json index 08c21880..3dfb5870 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-pulsar-1.0/spring-pulsar-1.0-34904a099173.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-pulsar-1.0/spring-pulsar-1.0-34904a099173.json @@ -22,18 +22,14 @@ "description": "This instrumentation enables consumer messaging spans for Spring Pulsar listeners.", "display_name": "Spring Pulsar", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework.pulsar:spring-pulsar:[1.0.0,)" - ], + "javaagent_target_versions": ["org.springframework.pulsar:spring-pulsar:[1.0.0,)"], "library_link": "https://spring.io/projects/spring-pulsar", "minimum_java_version": 17, "name": "spring-pulsar-1.0", "scope": { "name": "io.opentelemetry.spring-pulsar-1.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/spring/spring-pulsar-1.0", "telemetry": [ { @@ -67,4 +63,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-pulsar-1.0/spring-pulsar-1.0-e9575145591e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-pulsar-1.0/spring-pulsar-1.0-e9575145591e.json index 3e25725b..4dc354fb 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-pulsar-1.0/spring-pulsar-1.0-e9575145591e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-pulsar-1.0/spring-pulsar-1.0-e9575145591e.json @@ -22,22 +22,16 @@ "description": "This instrumentation enables consumer messaging spans for Spring Pulsar listeners.", "display_name": "Spring Pulsar", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework.pulsar:spring-pulsar:[1.0.0,)" - ], + "javaagent_target_versions": ["org.springframework.pulsar:spring-pulsar:[1.0.0,)"], "library_link": "https://spring.io/projects/spring-pulsar", "minimum_java_version": 17, "name": "spring-pulsar-1.0", "scope": { "name": "io.opentelemetry.spring-pulsar-1.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/spring/spring-pulsar-1.0", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -70,4 +64,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rabbit-1.0/spring-rabbit-1.0-5f4ae89a8ddb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rabbit-1.0/spring-rabbit-1.0-5f4ae89a8ddb.json index 7b0bc2be..14ef7e64 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rabbit-1.0/spring-rabbit-1.0-5f4ae89a8ddb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rabbit-1.0/spring-rabbit-1.0-5f4ae89a8ddb.json @@ -10,21 +10,15 @@ "description": "This instrumentation enables consumer messaging spans for Spring RabbitMQ listeners.", "display_name": "Spring Rabbit", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework.amqp:spring-rabbit:(,)" - ], + "javaagent_target_versions": ["org.springframework.amqp:spring-rabbit:(,)"], "library_link": "https://spring.io/projects/spring-amqp", "name": "spring-rabbit-1.0", "scope": { "name": "io.opentelemetry.spring-rabbit-1.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/spring/spring-rabbit-1.0", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -53,4 +47,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rabbit-1.0/spring-rabbit-1.0-fe4b4f2bde09.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rabbit-1.0/spring-rabbit-1.0-fe4b4f2bde09.json index b8af4a37..70a3b605 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rabbit-1.0/spring-rabbit-1.0-fe4b4f2bde09.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rabbit-1.0/spring-rabbit-1.0-fe4b4f2bde09.json @@ -10,17 +10,13 @@ "description": "This instrumentation enables consumer messaging spans for Spring RabbitMQ listeners.", "display_name": "Spring Rabbit", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework.amqp:spring-rabbit:(,)" - ], + "javaagent_target_versions": ["org.springframework.amqp:spring-rabbit:(,)"], "library_link": "https://spring.io/projects/spring-amqp", "name": "spring-rabbit-1.0", "scope": { "name": "io.opentelemetry.spring-rabbit-1.0" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/spring/spring-rabbit-1.0", "telemetry": [ { @@ -50,4 +46,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rmi-4.0/spring-rmi-4.0-3edbb68b4459.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rmi-4.0/spring-rmi-4.0-3edbb68b4459.json index de52fa56..5e3c45c6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rmi-4.0/spring-rmi-4.0-3edbb68b4459.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rmi-4.0/spring-rmi-4.0-3edbb68b4459.json @@ -2,18 +2,13 @@ "description": "This instrumentation enables RPC client and RPC server spans for Spring RMI applications.", "display_name": "Spring RMI", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-context:[4.0.0.RELEASE,6)" - ], + "javaagent_target_versions": ["org.springframework:spring-context:[4.0.0.RELEASE,6)"], "library_link": "https://docs.spring.io/spring-framework/docs/4.0.x/javadoc-api/org/springframework/remoting/rmi/package-summary.html", "name": "spring-rmi-4.0", "scope": { "name": "io.opentelemetry.spring-rmi-4.0" }, - "semantic_conventions": [ - "RPC_CLIENT_SPANS", - "RPC_SERVER_SPANS" - ], + "semantic_conventions": ["RPC_CLIENT_SPANS", "RPC_SERVER_SPANS"], "source_path": "instrumentation/spring/spring-rmi-4.0", "telemetry": [ { @@ -56,4 +51,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rmi-4.0/spring-rmi-4.0-c96c981347bf.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rmi-4.0/spring-rmi-4.0-c96c981347bf.json index 8674b9fb..bb626195 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rmi-4.0/spring-rmi-4.0-c96c981347bf.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-rmi-4.0/spring-rmi-4.0-c96c981347bf.json @@ -2,22 +2,15 @@ "description": "This instrumentation enables RPC client and RPC server spans for Spring RMI applications.", "display_name": "Spring RMI", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-context:[4.0.0.RELEASE,6)" - ], + "javaagent_target_versions": ["org.springframework:spring-context:[4.0.0.RELEASE,6)"], "library_link": "https://docs.spring.io/spring-framework/docs/4.0.x/javadoc-api/org/springframework/remoting/rmi/package-summary.html", "name": "spring-rmi-4.0", "scope": { "name": "io.opentelemetry.spring-rmi-4.0" }, - "semantic_conventions": [ - "RPC_CLIENT_SPANS", - "RPC_SERVER_SPANS" - ], + "semantic_conventions": ["RPC_CLIENT_SPANS", "RPC_SERVER_SPANS"], "source_path": "instrumentation/spring/spring-rmi-4.0", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -59,4 +52,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-scheduling-3.1/spring-scheduling-3.1-7523e7526552.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-scheduling-3.1/spring-scheduling-3.1-7523e7526552.json index c2a477ec..c7d643ec 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-scheduling-3.1/spring-scheduling-3.1-7523e7526552.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-scheduling-3.1/spring-scheduling-3.1-7523e7526552.json @@ -10,9 +10,7 @@ "description": "This instrumentation enables tracing for Spring Scheduling tasks.", "display_name": "Spring Scheduling", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-context:[3.1.0.RELEASE,]" - ], + "javaagent_target_versions": ["org.springframework:spring-context:[3.1.0.RELEASE,]"], "library_link": "https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/package-summary.html", "name": "spring-scheduling-3.1", "scope": { @@ -61,4 +59,4 @@ "when": "otel.instrumentation.spring-scheduling.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-scheduling-3.1/spring-scheduling-3.1-adb5906651f1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-scheduling-3.1/spring-scheduling-3.1-adb5906651f1.json index 80b73790..95d6fcb0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-scheduling-3.1/spring-scheduling-3.1-adb5906651f1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-scheduling-3.1/spring-scheduling-3.1-adb5906651f1.json @@ -10,18 +10,14 @@ "description": "This instrumentation enables tracing for Spring Scheduling tasks.", "display_name": "Spring Scheduling", "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-context:[3.1.0.RELEASE,]" - ], + "javaagent_target_versions": ["org.springframework:spring-context:[3.1.0.RELEASE,]"], "library_link": "https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/package-summary.html", "name": "spring-scheduling-3.1", "scope": { "name": "io.opentelemetry.spring-scheduling-3.1" }, "source_path": "instrumentation/spring/spring-scheduling-3.1", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -64,4 +60,4 @@ "when": "otel.instrumentation.spring-scheduling.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-security-config-6.0/spring-security-config-6.0-bee45aee704e.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-security-config-6.0/spring-security-config-6.0-bee45aee704e.json index ccab0857..6b1eea8b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-security-config-6.0/spring-security-config-6.0-bee45aee704e.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-security-config-6.0/spring-security-config-6.0-bee45aee704e.json @@ -35,9 +35,7 @@ "display_name": "Spring Security", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.springframework.security:spring-security-config:[6.0.0,]" - ], + "javaagent_target_versions": ["org.springframework.security:spring-security-config:[6.0.0,]"], "library_link": "https://spring.io/projects/spring-security", "minimum_java_version": 17, "name": "spring-security-config-6.0", @@ -45,7 +43,5 @@ "name": "io.opentelemetry.spring-security-config-6.0" }, "source_path": "instrumentation/spring/spring-security-config-6.0", - "tags": [ - "spring" - ] -} \ No newline at end of file + "tags": ["spring"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-security-config-6.0/spring-security-config-6.0-d3ed22ad5acf.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-security-config-6.0/spring-security-config-6.0-d3ed22ad5acf.json index 3a6f76b7..a98a44a1 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-security-config-6.0/spring-security-config-6.0-d3ed22ad5acf.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-security-config-6.0/spring-security-config-6.0-d3ed22ad5acf.json @@ -35,9 +35,7 @@ "display_name": "Spring Security", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.springframework.security:spring-security-config:[6.0.0,]" - ], + "javaagent_target_versions": ["org.springframework.security:spring-security-config:[6.0.0,]"], "library_link": "https://spring.io/projects/spring-security", "minimum_java_version": 17, "name": "spring-security-config-6.0", @@ -45,4 +43,4 @@ "name": "io.opentelemetry.spring-security-config-6.0" }, "source_path": "instrumentation/spring/spring-security-config-6.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-3.1/spring-web-3.1-49bfa6976a0a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-3.1/spring-web-3.1-49bfa6976a0a.json index 5b41316d..797dcd12 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-3.1/spring-web-3.1-49bfa6976a0a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-3.1/spring-web-3.1-49bfa6976a0a.json @@ -2,23 +2,16 @@ "description": "This instrumentation provides a library integration that enables capturing HTTP client spans and metrics for Spring's RestTemplate.", "display_name": "Spring Web", "has_standalone_library": true, - "javaagent_target_versions": [ - "org.springframework:spring-web:[3.1.0.RELEASE,6)" - ], + "javaagent_target_versions": ["org.springframework:spring-web:[3.1.0.RELEASE,6)"], "library_link": "https://github.com/spring-projects/spring-framework", "name": "spring-web-3.1", "scope": { "name": "io.opentelemetry.spring-web-3.1", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/spring/spring-web/spring-web-3.1", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "metrics": [ @@ -82,4 +75,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-3.1/spring-web-3.1-a05c64089d0f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-3.1/spring-web-3.1-a05c64089d0f.json index cad293ec..3d52f795 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-3.1/spring-web-3.1-a05c64089d0f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-3.1/spring-web-3.1-a05c64089d0f.json @@ -8,10 +8,7 @@ "name": "io.opentelemetry.spring-web-3.1", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/spring/spring-web/spring-web-3.1", "telemetry": [ { @@ -137,4 +134,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-6.0/spring-web-6.0-0da94b512f98.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-6.0/spring-web-6.0-0da94b512f98.json index fa75b0f4..9ac5c23c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-6.0/spring-web-6.0-0da94b512f98.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-6.0/spring-web-6.0-0da94b512f98.json @@ -9,13 +9,9 @@ ], "description": "This instrumentation enriches HTTP client spans with URL template information for Spring's RestTemplate 6.0+.", "display_name": "Spring Web", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-web:[6.0.0,)" - ], + "javaagent_target_versions": ["org.springframework:spring-web:[6.0.0,)"], "library_link": "https://github.com/spring-projects/spring-framework", "minimum_java_version": 17, "name": "spring-web-6.0", @@ -23,7 +19,5 @@ "name": "io.opentelemetry.spring-web-6.0" }, "source_path": "instrumentation/spring/spring-web/spring-web-6.0", - "tags": [ - "spring" - ] -} \ No newline at end of file + "tags": ["spring"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-6.0/spring-web-6.0-b22c4d111401.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-6.0/spring-web-6.0-b22c4d111401.json index e1498ace..a7604b0b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-6.0/spring-web-6.0-b22c4d111401.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-web-6.0/spring-web-6.0-b22c4d111401.json @@ -9,13 +9,9 @@ ], "description": "This instrumentation enriches HTTP client spans with URL template information for Spring's RestTemplate 6.0+.", "display_name": "Spring Web", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-web:[6.0.0,)" - ], + "javaagent_target_versions": ["org.springframework:spring-web:[6.0.0,)"], "library_link": "https://github.com/spring-projects/spring-framework", "minimum_java_version": 17, "name": "spring-web-6.0", @@ -23,4 +19,4 @@ "name": "io.opentelemetry.spring-web-6.0" }, "source_path": "instrumentation/spring/spring-web/spring-web-6.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.0/spring-webflux-5.0-087a3c67e823.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.0/spring-webflux-5.0-087a3c67e823.json index 3faea330..9b3aab6b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.0/spring-webflux-5.0-087a3c67e823.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.0/spring-webflux-5.0-087a3c67e823.json @@ -9,10 +9,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information for Spring WebFlux 5.0+. It also installs WebClient telemetry interceptors and enables controller spans (controller spans are disabled by default).", "display_name": "Spring WebFlux", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "io.projectreactor.ipc:reactor-netty:[0.7.0.RELEASE,)", @@ -184,4 +181,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled,otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.0/spring-webflux-5.0-9f5dc51694de.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.0/spring-webflux-5.0-9f5dc51694de.json index 2026adc4..10ded7c2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.0/spring-webflux-5.0-9f5dc51694de.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.0/spring-webflux-5.0-9f5dc51694de.json @@ -9,10 +9,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information for Spring WebFlux 5.0+. It also installs WebClient telemetry interceptors and enables controller spans (controller spans are disabled by default).", "display_name": "Spring WebFlux", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "io.projectreactor.ipc:reactor-netty:[0.7.0.RELEASE,)", @@ -26,9 +23,7 @@ "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, "source_path": "instrumentation/spring/spring-webflux/spring-webflux-5.0", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "metrics": [ @@ -109,4 +104,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.3/spring-webflux-5.3-29e578a908fe.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.3/spring-webflux-5.3-29e578a908fe.json index 352f722d..5e644944 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.3/spring-webflux-5.3-29e578a908fe.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.3/spring-webflux-5.3-29e578a908fe.json @@ -303,4 +303,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.3/spring-webflux-5.3-9b4df4e753a5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.3/spring-webflux-5.3-9b4df4e753a5.json index 700527cf..54ccbb7e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.3/spring-webflux-5.3-9b4df4e753a5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webflux-5.3/spring-webflux-5.3-9b4df4e753a5.json @@ -15,9 +15,7 @@ "HTTP_SERVER_METRICS" ], "source_path": "instrumentation/spring/spring-webflux/spring-webflux-5.3", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "metrics": [ @@ -163,4 +161,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-3.1/spring-webmvc-3.1-67153a523051.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-3.1/spring-webmvc-3.1-67153a523051.json index 22181cf5..3c430e62 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-3.1/spring-webmvc-3.1-67153a523051.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-3.1/spring-webmvc-3.1-67153a523051.json @@ -21,24 +21,16 @@ ], "description": "This instrumentation enriches HTTP server spans with route information for Spring WebMVC 3.1+. It also enables controller spans (controller spans are disabled by default) and view spans (view spans are disabled by default).", "display_name": "Spring WebMVC", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS", - "VIEW_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS", "VIEW_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-webmvc:[3.1.0.RELEASE,6)" - ], + "javaagent_target_versions": ["org.springframework:spring-webmvc:[3.1.0.RELEASE,6)"], "library_link": "https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/mvc/package-summary.html", "name": "spring-webmvc-3.1", "scope": { "name": "io.opentelemetry.spring-webmvc-3.1" }, "source_path": "instrumentation/spring/spring-webmvc/spring-webmvc-3.1", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -81,4 +73,4 @@ "when": "otel.instrumentation.spring-webmvc.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-3.1/spring-webmvc-3.1-dd3c8d05fee4.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-3.1/spring-webmvc-3.1-dd3c8d05fee4.json index 4bb64ee6..7c0c0f3d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-3.1/spring-webmvc-3.1-dd3c8d05fee4.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-3.1/spring-webmvc-3.1-dd3c8d05fee4.json @@ -21,15 +21,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information for Spring WebMVC 3.1+. It also enables controller spans (controller spans are disabled by default) and view spans (view spans are disabled by default).", "display_name": "Spring WebMVC", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS", - "VIEW_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS", "VIEW_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework:spring-webmvc:[3.1.0.RELEASE,6)" - ], + "javaagent_target_versions": ["org.springframework:spring-webmvc:[3.1.0.RELEASE,6)"], "library_link": "https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/mvc/package-summary.html", "name": "spring-webmvc-3.1", "scope": { @@ -78,4 +72,4 @@ "when": "otel.instrumentation.spring-webmvc.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-5.3/spring-webmvc-5.3-07130e298e49.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-5.3/spring-webmvc-5.3-07130e298e49.json index b7a7724c..d0f8abcd 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-5.3/spring-webmvc-5.3-07130e298e49.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-5.3/spring-webmvc-5.3-07130e298e49.json @@ -1,9 +1,7 @@ { "description": "This instrumentation provides a library integration for Spring WebMVC controllers, that enables the creation of HTTP server spans and metrics for requests processed by the Spring servlet container.", "display_name": "Spring WebMVC", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_standalone_library": true, "library_link": "https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/mvc/package-summary.html", "name": "spring-webmvc-5.3", @@ -11,14 +9,9 @@ "name": "io.opentelemetry.spring-webmvc-5.3", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/spring/spring-webmvc/spring-webmvc-5.3", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "metrics": [ @@ -122,4 +115,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-5.3/spring-webmvc-5.3-580cd5903ac7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-5.3/spring-webmvc-5.3-580cd5903ac7.json index b1728753..ce27cbcb 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-5.3/spring-webmvc-5.3-580cd5903ac7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-5.3/spring-webmvc-5.3-580cd5903ac7.json @@ -1,9 +1,7 @@ { "description": "This instrumentation provides a library integration for Spring WebMVC controllers, that enables the creation of HTTP server spans and metrics for requests processed by the Spring servlet container.", "display_name": "Spring WebMVC", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_standalone_library": true, "library_link": "https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/mvc/package-summary.html", "name": "spring-webmvc-5.3", @@ -11,10 +9,7 @@ "name": "io.opentelemetry.spring-webmvc-5.3", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/spring/spring-webmvc/spring-webmvc-5.3", "telemetry": [ { @@ -119,4 +114,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-6.0/spring-webmvc-6.0-9341c0882ed3.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-6.0/spring-webmvc-6.0-9341c0882ed3.json index b76444f1..badbc8f2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-6.0/spring-webmvc-6.0-9341c0882ed3.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-6.0/spring-webmvc-6.0-9341c0882ed3.json @@ -21,16 +21,10 @@ ], "description": "This instrumentation enriches HTTP server spans with route information for Spring WebMVC 6.0+. It also enables controller spans (controller spans are disabled by default) and view spans (view spans are disabled by default).", "display_name": "Spring WebMVC", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS", - "VIEW_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS", "VIEW_SPANS"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.springframework:spring-webmvc:[6.0.0,)" - ], + "javaagent_target_versions": ["org.springframework:spring-webmvc:[6.0.0,)"], "library_link": "https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/mvc/package-summary.html", "minimum_java_version": 17, "name": "spring-webmvc-6.0", @@ -38,9 +32,7 @@ "name": "io.opentelemetry.spring-webmvc-6.0" }, "source_path": "instrumentation/spring/spring-webmvc/spring-webmvc-6.0", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -83,4 +75,4 @@ "when": "otel.instrumentation.spring-webmvc.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-6.0/spring-webmvc-6.0-ca593cf77ec7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-6.0/spring-webmvc-6.0-ca593cf77ec7.json index 4a05cf66..86ae9316 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-6.0/spring-webmvc-6.0-ca593cf77ec7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-webmvc-6.0/spring-webmvc-6.0-ca593cf77ec7.json @@ -21,16 +21,10 @@ ], "description": "This instrumentation enriches HTTP server spans with route information for Spring WebMVC 6.0+. It also enables controller spans (controller spans are disabled by default) and view spans (view spans are disabled by default).", "display_name": "Spring WebMVC", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS", - "VIEW_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS", "VIEW_SPANS"], "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.springframework:spring-webmvc:[6.0.0,)" - ], + "javaagent_target_versions": ["org.springframework:spring-webmvc:[6.0.0,)"], "library_link": "https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/mvc/package-summary.html", "minimum_java_version": 17, "name": "spring-webmvc-6.0", @@ -80,4 +74,4 @@ "when": "otel.instrumentation.spring-webmvc.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-ws-2.0/spring-ws-2.0-1eb107f364f6.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-ws-2.0/spring-ws-2.0-1eb107f364f6.json index 7cab921c..2d71e44a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-ws-2.0/spring-ws-2.0-1eb107f364f6.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-ws-2.0/spring-ws-2.0-1eb107f364f6.json @@ -10,22 +10,16 @@ "description": "This instrumentation enables controller spans for Spring Web Services 2.0+ endpoints (controller spans are disabled by default).", "disabled_by_default": true, "display_name": "Spring WS", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework.ws:spring-ws-core:[2.0.0.RELEASE,]" - ], + "javaagent_target_versions": ["org.springframework.ws:spring-ws-core:[2.0.0.RELEASE,]"], "library_link": "https://spring.io/projects/spring-ws", "name": "spring-ws-2.0", "scope": { "name": "io.opentelemetry.spring-ws-2.0" }, "source_path": "instrumentation/spring/spring-ws-2.0", - "tags": [ - "spring" - ], + "tags": ["spring"], "telemetry": [ { "spans": [ @@ -46,4 +40,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-ws-2.0/spring-ws-2.0-3561ae483905.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-ws-2.0/spring-ws-2.0-3561ae483905.json index 75e44954..5dcfe76a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spring-ws-2.0/spring-ws-2.0-3561ae483905.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spring-ws-2.0/spring-ws-2.0-3561ae483905.json @@ -10,13 +10,9 @@ "description": "This instrumentation enables controller spans for Spring Web Services 2.0+ endpoints (controller spans are disabled by default).", "disabled_by_default": true, "display_name": "Spring WS", - "features": [ - "CONTROLLER_SPANS" - ], + "features": ["CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.springframework.ws:spring-ws-core:[2.0.0.RELEASE,]" - ], + "javaagent_target_versions": ["org.springframework.ws:spring-ws-core:[2.0.0.RELEASE,]"], "library_link": "https://spring.io/projects/spring-ws", "name": "spring-ws-2.0", "scope": { @@ -43,4 +39,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spymemcached-2.12/spymemcached-2.12-06106e3e9937.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spymemcached-2.12/spymemcached-2.12-06106e3e9937.json index 1474e5bd..31da903b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spymemcached-2.12/spymemcached-2.12-06106e3e9937.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spymemcached-2.12/spymemcached-2.12-06106e3e9937.json @@ -10,22 +10,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Memcached operations using the Spymemcached client.", "display_name": "Spymemcached", "has_javaagent": true, - "javaagent_target_versions": [ - "net.spy:spymemcached:[2.12.0,)" - ], + "javaagent_target_versions": ["net.spy:spymemcached:[2.12.0,)"], "library_link": "https://github.com/couchbase/spymemcached", "name": "spymemcached-2.12", "scope": { "name": "io.opentelemetry.spymemcached-2.12" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/spymemcached-2.12", - "tags": [ - "spymemcached" - ], + "tags": ["spymemcached"], "telemetry": [ { "spans": [ @@ -145,4 +138,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/spymemcached-2.12/spymemcached-2.12-18a942666eb4.json b/ecosystem-explorer/public/data/javaagent/instrumentations/spymemcached-2.12/spymemcached-2.12-18a942666eb4.json index 6526110a..80b72880 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/spymemcached-2.12/spymemcached-2.12-18a942666eb4.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/spymemcached-2.12/spymemcached-2.12-18a942666eb4.json @@ -10,18 +10,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Memcached operations using the Spymemcached client.", "display_name": "Spymemcached", "has_javaagent": true, - "javaagent_target_versions": [ - "net.spy:spymemcached:[2.12.0,)" - ], + "javaagent_target_versions": ["net.spy:spymemcached:[2.12.0,)"], "library_link": "https://github.com/couchbase/spymemcached", "name": "spymemcached-2.12", "scope": { "name": "io.opentelemetry.spymemcached-2.12" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/spymemcached-2.12", "telemetry": [ { @@ -142,4 +137,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/struts-2.3/struts-2.3-329cc21ba752.json b/ecosystem-explorer/public/data/javaagent/instrumentations/struts-2.3/struts-2.3-329cc21ba752.json index 7c7e931f..c8bd129c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/struts-2.3/struts-2.3-329cc21ba752.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/struts-2.3/struts-2.3-329cc21ba752.json @@ -9,23 +9,16 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Apache Struts 2 actions (controller spans are disabled by default).", "display_name": "Apache Struts", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.struts:struts2-core:[2.1.0,7)" - ], + "javaagent_target_versions": ["org.apache.struts:struts2-core:[2.1.0,7)"], "library_link": "https://struts.apache.org/", "name": "struts-2.3", "scope": { "name": "io.opentelemetry.struts-2.3" }, "source_path": "instrumentation/struts/struts-2.3", - "tags": [ - "struts" - ], + "tags": ["struts"], "telemetry": [ { "spans": [ @@ -46,4 +39,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/struts-2.3/struts-2.3-f990e99d5203.json b/ecosystem-explorer/public/data/javaagent/instrumentations/struts-2.3/struts-2.3-f990e99d5203.json index 6eb0a130..050cd0ce 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/struts-2.3/struts-2.3-f990e99d5203.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/struts-2.3/struts-2.3-f990e99d5203.json @@ -9,14 +9,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Apache Struts 2 actions (controller spans are disabled by default).", "display_name": "Apache Struts", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.struts:struts2-core:[2.1.0,7)" - ], + "javaagent_target_versions": ["org.apache.struts:struts2-core:[2.1.0,7)"], "library_link": "https://struts.apache.org/", "name": "struts-2.3", "scope": { @@ -43,4 +38,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/struts-7.0/struts-7.0-7c06bac92bcd.json b/ecosystem-explorer/public/data/javaagent/instrumentations/struts-7.0/struts-7.0-7c06bac92bcd.json index 07dec18e..f6a856bc 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/struts-7.0/struts-7.0-7c06bac92bcd.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/struts-7.0/struts-7.0-7c06bac92bcd.json @@ -9,14 +9,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Apache Struts 2 actions (controller spans are disabled by default).", "display_name": "Apache Struts 2", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.struts:struts2-core:[7.0.0,)" - ], + "javaagent_target_versions": ["org.apache.struts:struts2-core:[7.0.0,)"], "library_link": "https://struts.apache.org/", "minimum_java_version": 17, "name": "struts-7.0", @@ -24,9 +19,7 @@ "name": "io.opentelemetry.struts-7.0" }, "source_path": "instrumentation/struts/struts-7.0", - "tags": [ - "struts" - ], + "tags": ["struts"], "telemetry": [ { "spans": [ @@ -47,4 +40,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/struts-7.0/struts-7.0-e0880642f9a9.json b/ecosystem-explorer/public/data/javaagent/instrumentations/struts-7.0/struts-7.0-e0880642f9a9.json index 6cc01977..22fc8819 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/struts-7.0/struts-7.0-e0880642f9a9.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/struts-7.0/struts-7.0-e0880642f9a9.json @@ -9,14 +9,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Apache Struts 2 actions (controller spans are disabled by default).", "display_name": "Apache Struts 2", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.struts:struts2-core:[7.0.0,)" - ], + "javaagent_target_versions": ["org.apache.struts:struts2-core:[7.0.0,)"], "library_link": "https://struts.apache.org/", "minimum_java_version": 17, "name": "struts-7.0", @@ -44,4 +39,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/tapestry-5.4/tapestry-5.4-940de4b04a59.json b/ecosystem-explorer/public/data/javaagent/instrumentations/tapestry-5.4/tapestry-5.4-940de4b04a59.json index 61b885f4..635c367d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/tapestry-5.4/tapestry-5.4-940de4b04a59.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/tapestry-5.4/tapestry-5.4-940de4b04a59.json @@ -9,14 +9,9 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Apache Tapestry component events (controller spans are disabled by default).", "display_name": "Apache Tapestry", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.tapestry:tapestry-core:[5.4.0,)" - ], + "javaagent_target_versions": ["org.apache.tapestry:tapestry-core:[5.4.0,)"], "library_link": "https://tapestry.apache.org/", "name": "tapestry-5.4", "scope": { @@ -34,4 +29,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/tapestry-5.4/tapestry-5.4-fff06ba6b7aa.json b/ecosystem-explorer/public/data/javaagent/instrumentations/tapestry-5.4/tapestry-5.4-fff06ba6b7aa.json index 9b3e1f27..e6fab715 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/tapestry-5.4/tapestry-5.4-fff06ba6b7aa.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/tapestry-5.4/tapestry-5.4-fff06ba6b7aa.json @@ -9,23 +9,16 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Apache Tapestry component events (controller spans are disabled by default).", "display_name": "Apache Tapestry", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.tapestry:tapestry-core:[5.4.0,)" - ], + "javaagent_target_versions": ["org.apache.tapestry:tapestry-core:[5.4.0,)"], "library_link": "https://tapestry.apache.org/", "name": "tapestry-5.4", "scope": { "name": "io.opentelemetry.tapestry-5.4" }, "source_path": "instrumentation/tapestry-5.4", - "tags": [ - "tapestry" - ], + "tags": ["tapestry"], "telemetry": [ { "spans": [ @@ -37,4 +30,4 @@ "when": "otel.instrumentation.common.experimental.controller-telemetry.enabled=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-10.0/tomcat-10.0-28f1f372c72a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-10.0/tomcat-10.0-28f1f372c72a.json index 6073c23f..5ada46b0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-10.0/tomcat-10.0-28f1f372c72a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-10.0/tomcat-10.0-28f1f372c72a.json @@ -2,9 +2,7 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Apache Tomcat.", "display_name": "Apache Tomcat", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.tomcat.embed:tomcat-embed-core:[10,)" - ], + "javaagent_target_versions": ["org.apache.tomcat.embed:tomcat-embed-core:[10,)"], "library_link": "https://tomcat.apache.org/", "minimum_java_version": 11, "name": "tomcat-10.0", @@ -12,7 +10,5 @@ "name": "io.opentelemetry.tomcat-10.0" }, "source_path": "instrumentation/tomcat/tomcat-10.0", - "tags": [ - "tomcat" - ] -} \ No newline at end of file + "tags": ["tomcat"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-10.0/tomcat-10.0-eaaba9f5ba5b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-10.0/tomcat-10.0-eaaba9f5ba5b.json index e0c0b273..700b492a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-10.0/tomcat-10.0-eaaba9f5ba5b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-10.0/tomcat-10.0-eaaba9f5ba5b.json @@ -39,23 +39,16 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Apache Tomcat.", "display_name": "Apache Tomcat", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.tomcat.embed:tomcat-embed-core:[10,)" - ], + "javaagent_target_versions": ["org.apache.tomcat.embed:tomcat-embed-core:[10,)"], "library_link": "https://tomcat.apache.org/", "name": "tomcat-10.0", "scope": { "name": "io.opentelemetry.tomcat-10.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/tomcat/tomcat-10.0", "telemetry": [ { @@ -160,4 +153,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-7.0/tomcat-7.0-12f759c20268.json b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-7.0/tomcat-7.0-12f759c20268.json index 2b9ad546..6d9598fc 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-7.0/tomcat-7.0-12f759c20268.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-7.0/tomcat-7.0-12f759c20268.json @@ -2,16 +2,12 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Apache Tomcat.", "display_name": "Apache Tomcat", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.tomcat.embed:tomcat-embed-core:[7.0.4, 10)" - ], + "javaagent_target_versions": ["org.apache.tomcat.embed:tomcat-embed-core:[7.0.4, 10)"], "library_link": "https://tomcat.apache.org/", "name": "tomcat-7.0", "scope": { "name": "io.opentelemetry.tomcat-7.0" }, "source_path": "instrumentation/tomcat/tomcat-7.0", - "tags": [ - "tomcat" - ] -} \ No newline at end of file + "tags": ["tomcat"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-7.0/tomcat-7.0-6d8bb692d78b.json b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-7.0/tomcat-7.0-6d8bb692d78b.json index 499002e7..104e3983 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-7.0/tomcat-7.0-6d8bb692d78b.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-7.0/tomcat-7.0-6d8bb692d78b.json @@ -45,23 +45,16 @@ ], "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Apache Tomcat.", "display_name": "Apache Tomcat", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.tomcat.embed:tomcat-embed-core:[7.0.4, 10)" - ], + "javaagent_target_versions": ["org.apache.tomcat.embed:tomcat-embed-core:[7.0.4, 10)"], "library_link": "https://tomcat.apache.org/", "name": "tomcat-7.0", "scope": { "name": "io.opentelemetry.tomcat-7.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/tomcat/tomcat-7.0", "telemetry": [ { @@ -166,4 +159,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-jdbc/tomcat-jdbc-2f6c494cb082.json b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-jdbc/tomcat-jdbc-2f6c494cb082.json index aae6c0d4..55ed8ed9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-jdbc/tomcat-jdbc-2f6c494cb082.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-jdbc/tomcat-jdbc-2f6c494cb082.json @@ -10,17 +10,13 @@ "description": "This instrumentation enables database connection pool metrics for Tomcat JDBC.", "display_name": "Tomcat JDBC", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.tomcat:tomcat-jdbc:[8.5.0,)" - ], + "javaagent_target_versions": ["org.apache.tomcat:tomcat-jdbc:[8.5.0,)"], "library_link": "https://tomcat.apache.org/tomcat-8.5-doc/jdbc-pool.html", "name": "tomcat-jdbc", "scope": { "name": "io.opentelemetry.tomcat-jdbc" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/tomcat/tomcat-jdbc", "telemetry": [ { @@ -172,4 +168,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-jdbc/tomcat-jdbc-477ac039a5c8.json b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-jdbc/tomcat-jdbc-477ac039a5c8.json index 2b54e7bd..f8650317 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-jdbc/tomcat-jdbc-477ac039a5c8.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/tomcat-jdbc/tomcat-jdbc-477ac039a5c8.json @@ -2,18 +2,14 @@ "description": "This instrumentation enables database connection pool metrics for Tomcat JDBC.", "display_name": "Tomcat JDBC", "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.tomcat:tomcat-jdbc:[8.5.0,)" - ], + "javaagent_target_versions": ["org.apache.tomcat:tomcat-jdbc:[8.5.0,)"], "library_link": "https://tomcat.apache.org/tomcat-8.5-doc/jdbc-pool.html", "name": "tomcat-jdbc", "scope": { "name": "io.opentelemetry.tomcat-jdbc" }, "source_path": "instrumentation/tomcat/tomcat-jdbc", - "tags": [ - "tomcat" - ], + "tags": ["tomcat"], "telemetry": [ { "metrics": [ @@ -164,4 +160,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/twilio-6.6/twilio-6.6-d25a78640166.json b/ecosystem-explorer/public/data/javaagent/instrumentations/twilio-6.6/twilio-6.6-d25a78640166.json index 8b3ad58f..cef0c89c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/twilio-6.6/twilio-6.6-d25a78640166.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/twilio-6.6/twilio-6.6-d25a78640166.json @@ -10,18 +10,14 @@ "description": "This instrumentation enables client spans for Twilio SDK API calls such as sending messages and making phone calls.", "display_name": "Twilio", "has_javaagent": true, - "javaagent_target_versions": [ - "com.twilio.sdk:twilio:(,8.0.0)" - ], + "javaagent_target_versions": ["com.twilio.sdk:twilio:(,8.0.0)"], "library_link": "https://github.com/twilio/twilio-java", "name": "twilio-6.6", "scope": { "name": "io.opentelemetry.twilio-6.6" }, "source_path": "instrumentation/twilio-6.6", - "tags": [ - "twilio" - ], + "tags": ["twilio"], "telemetry": [ { "spans": [ @@ -59,4 +55,4 @@ "when": "otel.instrumentation.twilio.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/twilio-6.6/twilio-6.6-f09848a5b86f.json b/ecosystem-explorer/public/data/javaagent/instrumentations/twilio-6.6/twilio-6.6-f09848a5b86f.json index 5f930485..a06ee5a4 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/twilio-6.6/twilio-6.6-f09848a5b86f.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/twilio-6.6/twilio-6.6-f09848a5b86f.json @@ -10,9 +10,7 @@ "description": "This instrumentation enables client spans for Twilio SDK API calls such as sending messages and making phone calls.", "display_name": "Twilio", "has_javaagent": true, - "javaagent_target_versions": [ - "com.twilio.sdk:twilio:(,8.0.0)" - ], + "javaagent_target_versions": ["com.twilio.sdk:twilio:(,8.0.0)"], "library_link": "https://github.com/twilio/twilio-java", "name": "twilio-6.6", "scope": { @@ -56,4 +54,4 @@ "when": "otel.instrumentation.twilio.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/undertow-1.4/undertow-1.4-99503f2b807a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/undertow-1.4/undertow-1.4-99503f2b807a.json index 653f28e9..45f08cd0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/undertow-1.4/undertow-1.4-99503f2b807a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/undertow-1.4/undertow-1.4-99503f2b807a.json @@ -2,16 +2,12 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Undertow.", "display_name": "Undertow", "has_javaagent": true, - "javaagent_target_versions": [ - "io.undertow:undertow-core:[1.4.0.Final,)" - ], + "javaagent_target_versions": ["io.undertow:undertow-core:[1.4.0.Final,)"], "library_link": "https://undertow.io/", "name": "undertow-1.4", "scope": { "name": "io.opentelemetry.undertow-1.4" }, "source_path": "instrumentation/undertow-1.4", - "tags": [ - "undertow" - ] -} \ No newline at end of file + "tags": ["undertow"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/undertow-1.4/undertow-1.4-e2b4503f5e59.json b/ecosystem-explorer/public/data/javaagent/instrumentations/undertow-1.4/undertow-1.4-e2b4503f5e59.json index cdd219f9..a03a414d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/undertow-1.4/undertow-1.4-e2b4503f5e59.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/undertow-1.4/undertow-1.4-e2b4503f5e59.json @@ -28,19 +28,14 @@ "description": "This instrumentation enables HTTP server spans and HTTP server metrics for Undertow.", "display_name": "Undertow", "has_javaagent": true, - "javaagent_target_versions": [ - "io.undertow:undertow-core:[1.4.0.Final,)" - ], + "javaagent_target_versions": ["io.undertow:undertow-core:[1.4.0.Final,)"], "library_link": "https://undertow.io/", "name": "undertow-1.4", "scope": { "name": "io.opentelemetry.undertow-1.4", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_SERVER_SPANS", - "HTTP_SERVER_METRICS" - ], + "semantic_conventions": ["HTTP_SERVER_SPANS", "HTTP_SERVER_METRICS"], "source_path": "instrumentation/undertow-1.4", "telemetry": [ { @@ -137,4 +132,4 @@ "when": "default" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vaadin-14.2/vaadin-14.2-0c23d75eb511.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vaadin-14.2/vaadin-14.2-0c23d75eb511.json index faf4dcc8..a005c896 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vaadin-14.2/vaadin-14.2-0c23d75eb511.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vaadin-14.2/vaadin-14.2-0c23d75eb511.json @@ -12,7 +12,5 @@ "name": "io.opentelemetry.vaadin-14.2" }, "source_path": "instrumentation/vaadin-14.2", - "tags": [ - "vaadin" - ] -} \ No newline at end of file + "tags": ["vaadin"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vaadin-14.2/vaadin-14.2-b0ab46ec957d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vaadin-14.2/vaadin-14.2-b0ab46ec957d.json index f174f8af..0251b6fa 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vaadin-14.2/vaadin-14.2-b0ab46ec957d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vaadin-14.2/vaadin-14.2-b0ab46ec957d.json @@ -9,10 +9,7 @@ ], "description": "This instrumentation enriches HTTP server spans with route information, and enables controller spans for Vaadin applications (controller spans are disabled by default).", "display_name": "Vaadin", - "features": [ - "HTTP_ROUTE", - "CONTROLLER_SPANS" - ], + "features": ["HTTP_ROUTE", "CONTROLLER_SPANS"], "has_javaagent": true, "javaagent_target_versions": [ "com.vaadin:flow-server:[2.2.0,3)", @@ -24,4 +21,4 @@ "name": "io.opentelemetry.vaadin-14.2" }, "source_path": "instrumentation/vaadin-14.2" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-3.0/vertx-http-client-3.0-6d23543b8fa5.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-3.0/vertx-http-client-3.0-6d23543b8fa5.json index 5f268ca1..f6f2dd44 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-3.0/vertx-http-client-3.0-6d23543b8fa5.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-3.0/vertx-http-client-3.0-6d23543b8fa5.json @@ -40,19 +40,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for requests made using the Vert.x HTTP client.", "display_name": "Vert.x HTTP Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-core:[3.0.0,4.0.0)" - ], + "javaagent_target_versions": ["io.vertx:vertx-core:[3.0.0,4.0.0)"], "library_link": "https://vertx.io/docs/vertx-core/java/", "name": "vertx-http-client-3.0", "scope": { "name": "io.opentelemetry.vertx-http-client-3.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-http-client/vertx-http-client-3.0", "telemetry": [ { @@ -186,4 +181,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-3.0/vertx-http-client-3.0-dc577bbb03fd.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-3.0/vertx-http-client-3.0-dc577bbb03fd.json index 6b4dee78..1c4e3582 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-3.0/vertx-http-client-3.0-dc577bbb03fd.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-3.0/vertx-http-client-3.0-dc577bbb03fd.json @@ -40,23 +40,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for requests made using the Vert.x HTTP client.", "display_name": "Vert.x HTTP Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-core:[3.0.0,4.0.0)" - ], + "javaagent_target_versions": ["io.vertx:vertx-core:[3.0.0,4.0.0)"], "library_link": "https://vertx.io/docs/vertx-core/java/", "name": "vertx-http-client-3.0", "scope": { "name": "io.opentelemetry.vertx-http-client-3.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-http-client/vertx-http-client-3.0", - "tags": [ - "vertx" - ], + "tags": ["vertx"], "telemetry": [ { "metrics": [ @@ -189,4 +182,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-4.0/vertx-http-client-4.0-c8975a6dd269.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-4.0/vertx-http-client-4.0-c8975a6dd269.json index 92858db6..e1d50c76 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-4.0/vertx-http-client-4.0-c8975a6dd269.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-4.0/vertx-http-client-4.0-c8975a6dd269.json @@ -40,19 +40,14 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for Vert.x HTTP client.", "display_name": "Vert.x HTTP Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-core:[4.0.0,5)" - ], + "javaagent_target_versions": ["io.vertx:vertx-core:[4.0.0,5)"], "library_link": "https://vertx.io/", "name": "vertx-http-client-4.0", "scope": { "name": "io.opentelemetry.vertx-http-client-4.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-http-client/vertx-http-client-4.0", "telemetry": [ { @@ -226,4 +221,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-4.0/vertx-http-client-4.0-ffd65cb946fb.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-4.0/vertx-http-client-4.0-ffd65cb946fb.json index 03830a35..da502ed2 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-4.0/vertx-http-client-4.0-ffd65cb946fb.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-4.0/vertx-http-client-4.0-ffd65cb946fb.json @@ -40,23 +40,16 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for Vert.x HTTP client.", "display_name": "Vert.x HTTP Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-core:[4.0.0,5)" - ], + "javaagent_target_versions": ["io.vertx:vertx-core:[4.0.0,5)"], "library_link": "https://vertx.io/", "name": "vertx-http-client-4.0", "scope": { "name": "io.opentelemetry.vertx-http-client-4.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-http-client/vertx-http-client-4.0", - "tags": [ - "vertx" - ], + "tags": ["vertx"], "telemetry": [ { "metrics": [ @@ -229,4 +222,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-5.0/vertx-http-client-5.0-106469c65011.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-5.0/vertx-http-client-5.0-106469c65011.json index f059af5d..d6f3320b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-5.0/vertx-http-client-5.0-106469c65011.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-5.0/vertx-http-client-5.0-106469c65011.json @@ -40,9 +40,7 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for Vert.x HTTP client.", "display_name": "Vert.x HTTP Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-core:[5.0.0,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-core:[5.0.0,)"], "library_link": "https://vertx.io/docs/vertx-core/java/", "minimum_java_version": 11, "name": "vertx-http-client-5.0", @@ -50,10 +48,7 @@ "name": "io.opentelemetry.vertx-http-client-5.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-http-client/vertx-http-client-5.0", "telemetry": [ { @@ -227,4 +222,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-5.0/vertx-http-client-5.0-a615dde98bcf.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-5.0/vertx-http-client-5.0-a615dde98bcf.json index 0935e3a5..06be2b3e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-5.0/vertx-http-client-5.0-a615dde98bcf.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-http-client-5.0/vertx-http-client-5.0-a615dde98bcf.json @@ -40,9 +40,7 @@ "description": "This instrumentation enables HTTP client spans and HTTP client metrics for Vert.x HTTP client.", "display_name": "Vert.x HTTP Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-core:[5.0.0,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-core:[5.0.0,)"], "library_link": "https://vertx.io/docs/vertx-core/java/", "minimum_java_version": 11, "name": "vertx-http-client-5.0", @@ -50,14 +48,9 @@ "name": "io.opentelemetry.vertx-http-client-5.0", "schema_url": "https://opentelemetry.io/schemas/1.37.0" }, - "semantic_conventions": [ - "HTTP_CLIENT_SPANS", - "HTTP_CLIENT_METRICS" - ], + "semantic_conventions": ["HTTP_CLIENT_SPANS", "HTTP_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-http-client/vertx-http-client-5.0", - "tags": [ - "vertx" - ], + "tags": ["vertx"], "telemetry": [ { "metrics": [ @@ -230,4 +223,4 @@ "when": "otel.semconv-stability.opt-in=service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-kafka-client-3.6/vertx-kafka-client-3.6-59017ba626ab.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-kafka-client-3.6/vertx-kafka-client-3.6-59017ba626ab.json index 8629409d..a79f20d9 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-kafka-client-3.6/vertx-kafka-client-3.6-59017ba626ab.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-kafka-client-3.6/vertx-kafka-client-3.6-59017ba626ab.json @@ -29,21 +29,15 @@ "disabled_by_default": true, "display_name": "Vert.x Kafka Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-kafka-client:[3.5.1,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-kafka-client:[3.5.1,)"], "library_link": "https://vertx.io/docs/vertx-kafka-client/java/", "name": "vertx-kafka-client-3.6", "scope": { "name": "io.opentelemetry.vertx-kafka-client-3.6" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/vertx/vertx-kafka-client-3.6", - "tags": [ - "vertx" - ], + "tags": ["vertx"], "telemetry": [ { "spans": [ @@ -142,4 +136,4 @@ "when": "otel.instrumentation.kafka.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-kafka-client-3.6/vertx-kafka-client-3.6-e2a22d20ea54.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-kafka-client-3.6/vertx-kafka-client-3.6-e2a22d20ea54.json index 379bbb71..644db230 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-kafka-client-3.6/vertx-kafka-client-3.6-e2a22d20ea54.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-kafka-client-3.6/vertx-kafka-client-3.6-e2a22d20ea54.json @@ -29,17 +29,13 @@ "disabled_by_default": true, "display_name": "Vert.x Kafka Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-kafka-client:[3.5.1,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-kafka-client:[3.5.1,)"], "library_link": "https://vertx.io/docs/vertx-kafka-client/java/", "name": "vertx-kafka-client-3.6", "scope": { "name": "io.opentelemetry.vertx-kafka-client-3.6" }, - "semantic_conventions": [ - "MESSAGING_SPANS" - ], + "semantic_conventions": ["MESSAGING_SPANS"], "source_path": "instrumentation/vertx/vertx-kafka-client-3.6", "telemetry": [ { @@ -139,4 +135,4 @@ "when": "otel.instrumentation.kafka.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-redis-client-4.0/vertx-redis-client-4.0-42dac56b6e0a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-redis-client-4.0/vertx-redis-client-4.0-42dac56b6e0a.json index 9aeb0d0a..75a54fa0 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-redis-client-4.0/vertx-redis-client-4.0-42dac56b6e0a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-redis-client-4.0/vertx-redis-client-4.0-42dac56b6e0a.json @@ -16,18 +16,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Redis operations using the Vert.x Redis Client library.", "display_name": "Vert.x Redis Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-redis-client:[4.0.0,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-redis-client:[4.0.0,)"], "library_link": "https://vertx.io/docs/vertx-redis-client/java/", "name": "vertx-redis-client-4.0", "scope": { "name": "io.opentelemetry.vertx-redis-client-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-redis-client-4.0", "telemetry": [ { @@ -162,4 +157,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-redis-client-4.0/vertx-redis-client-4.0-e3c5c7ff6249.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-redis-client-4.0/vertx-redis-client-4.0-e3c5c7ff6249.json index 8ef615f0..449db954 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-redis-client-4.0/vertx-redis-client-4.0-e3c5c7ff6249.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-redis-client-4.0/vertx-redis-client-4.0-e3c5c7ff6249.json @@ -16,22 +16,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Redis operations using the Vert.x Redis Client library.", "display_name": "Vert.x Redis Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-redis-client:[4.0.0,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-redis-client:[4.0.0,)"], "library_link": "https://vertx.io/docs/vertx-redis-client/java/", "name": "vertx-redis-client-4.0", "scope": { "name": "io.opentelemetry.vertx-redis-client-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-redis-client-4.0", - "tags": [ - "vertx" - ], + "tags": ["vertx"], "telemetry": [ { "spans": [ @@ -165,4 +158,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-rx-java-3.5/vertx-rx-java-3.5-0ec29c5c9aa7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-rx-java-3.5/vertx-rx-java-3.5-0ec29c5c9aa7.json index fe4aa701..07847070 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-rx-java-3.5/vertx-rx-java-3.5-0ec29c5c9aa7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-rx-java-3.5/vertx-rx-java-3.5-0ec29c5c9aa7.json @@ -1,20 +1,14 @@ { "description": "This instrumentation enables context propagation for Vert.x RxJava 2 reactive streams, it does not emit any telemetry on its own.", "display_name": "Vert.x RxJava", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-rx-java2:[3.5.0,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-rx-java2:[3.5.0,)"], "library_link": "https://vertx.io/docs/vertx-rx/java/", "name": "vertx-rx-java-3.5", "scope": { "name": "io.opentelemetry.vertx-rx-java-3.5" }, "source_path": "instrumentation/vertx/vertx-rx-java-3.5", - "tags": [ - "vertx" - ] -} \ No newline at end of file + "tags": ["vertx"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-rx-java-3.5/vertx-rx-java-3.5-23160cb34fef.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-rx-java-3.5/vertx-rx-java-3.5-23160cb34fef.json index cce3e6c3..6837540a 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-rx-java-3.5/vertx-rx-java-3.5-23160cb34fef.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-rx-java-3.5/vertx-rx-java-3.5-23160cb34fef.json @@ -1,17 +1,13 @@ { "description": "This instrumentation enables context propagation for Vert.x RxJava 2 reactive streams, it does not emit any telemetry on its own.", "display_name": "Vert.x RxJava", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-rx-java2:[3.5.0,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-rx-java2:[3.5.0,)"], "library_link": "https://vertx.io/docs/vertx-rx/java/", "name": "vertx-rx-java-3.5", "scope": { "name": "io.opentelemetry.vertx-rx-java-3.5" }, "source_path": "instrumentation/vertx/vertx-rx-java-3.5" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-4.0/vertx-sql-client-4.0-010baaefd238.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-4.0/vertx-sql-client-4.0-010baaefd238.json index 74e4d09c..8d5e55b6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-4.0/vertx-sql-client-4.0-010baaefd238.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-4.0/vertx-sql-client-4.0-010baaefd238.json @@ -10,18 +10,13 @@ "description": "This instrumentation enables database client spans and database client metrics for Vert.x SQL Client operations.", "display_name": "Vert.x SQL Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-sql-client:[4.0.0,5)" - ], + "javaagent_target_versions": ["io.vertx:vertx-sql-client:[4.0.0,5)"], "library_link": "https://github.com/eclipse-vertx/vertx-sql-client", "name": "vertx-sql-client-4.0", "scope": { "name": "io.opentelemetry.vertx-sql-client-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-sql-client/vertx-sql-client-4.0", "telemetry": [ { @@ -140,4 +135,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-4.0/vertx-sql-client-4.0-ea04b83398df.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-4.0/vertx-sql-client-4.0-ea04b83398df.json index cc9cf732..745d71d7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-4.0/vertx-sql-client-4.0-ea04b83398df.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-4.0/vertx-sql-client-4.0-ea04b83398df.json @@ -10,22 +10,15 @@ "description": "This instrumentation enables database client spans and database client metrics for Vert.x SQL Client operations.", "display_name": "Vert.x SQL Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-sql-client:[4.0.0,5)" - ], + "javaagent_target_versions": ["io.vertx:vertx-sql-client:[4.0.0,5)"], "library_link": "https://github.com/eclipse-vertx/vertx-sql-client", "name": "vertx-sql-client-4.0", "scope": { "name": "io.opentelemetry.vertx-sql-client-4.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-sql-client/vertx-sql-client-4.0", - "tags": [ - "vertx" - ], + "tags": ["vertx"], "telemetry": [ { "spans": [ @@ -135,4 +128,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-5.0/vertx-sql-client-5.0-0fb67ac719ac.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-5.0/vertx-sql-client-5.0-0fb67ac719ac.json index d66ec13b..0c759882 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-5.0/vertx-sql-client-5.0-0fb67ac719ac.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-5.0/vertx-sql-client-5.0-0fb67ac719ac.json @@ -10,19 +10,14 @@ "description": "This instrumentation enables database client spans and database client metrics for Vert.x SQL Client operations.", "display_name": "Vert.x SQL Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-sql-client:[5.0.0,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-sql-client:[5.0.0,)"], "library_link": "https://github.com/eclipse-vertx/vertx-sql-client", "minimum_java_version": 11, "name": "vertx-sql-client-5.0", "scope": { "name": "io.opentelemetry.vertx-sql-client-5.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-sql-client/vertx-sql-client-5.0", "telemetry": [ { @@ -141,4 +136,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-5.0/vertx-sql-client-5.0-42d47fe7b7da.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-5.0/vertx-sql-client-5.0-42d47fe7b7da.json index c07e6e74..2e79f131 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-5.0/vertx-sql-client-5.0-42d47fe7b7da.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-sql-client-5.0/vertx-sql-client-5.0-42d47fe7b7da.json @@ -10,23 +10,16 @@ "description": "This instrumentation enables database client spans and database client metrics for Vert.x SQL Client operations.", "display_name": "Vert.x SQL Client", "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-sql-client:[5.0.0,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-sql-client:[5.0.0,)"], "library_link": "https://github.com/eclipse-vertx/vertx-sql-client", "minimum_java_version": 11, "name": "vertx-sql-client-5.0", "scope": { "name": "io.opentelemetry.vertx-sql-client-5.0" }, - "semantic_conventions": [ - "DATABASE_CLIENT_SPANS", - "DATABASE_CLIENT_METRICS" - ], + "semantic_conventions": ["DATABASE_CLIENT_SPANS", "DATABASE_CLIENT_METRICS"], "source_path": "instrumentation/vertx/vertx-sql-client/vertx-sql-client-5.0", - "tags": [ - "vertx" - ], + "tags": ["vertx"], "telemetry": [ { "spans": [ @@ -136,4 +129,4 @@ "when": "otel.semconv-stability.opt-in=database,service.peer" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-web-3.0/vertx-web-3.0-a58884dec425.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-web-3.0/vertx-web-3.0-a58884dec425.json index 657bcda3..51c4877d 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-web-3.0/vertx-web-3.0-a58884dec425.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-web-3.0/vertx-web-3.0-a58884dec425.json @@ -1,20 +1,14 @@ { "description": "This instrumentation enriches HTTP server spans with route information for Vert.x Web, it does not emit any telemetry on its own.", "display_name": "Vert.x Web", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-web:[3.0.0,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-web:[3.0.0,)"], "library_link": "https://vertx.io/docs/vertx-web/java/", "name": "vertx-web-3.0", "scope": { "name": "io.opentelemetry.vertx-web-3.0" }, "source_path": "instrumentation/vertx/vertx-web-3.0", - "tags": [ - "vertx" - ] -} \ No newline at end of file + "tags": ["vertx"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-web-3.0/vertx-web-3.0-e435fbb05d23.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-web-3.0/vertx-web-3.0-e435fbb05d23.json index cfa1b2fe..6a90ef4b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-web-3.0/vertx-web-3.0-e435fbb05d23.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vertx-web-3.0/vertx-web-3.0-e435fbb05d23.json @@ -1,17 +1,13 @@ { "description": "This instrumentation enriches HTTP server spans with route information for Vert.x Web, it does not emit any telemetry on its own.", "display_name": "Vert.x Web", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "io.vertx:vertx-web:[3.0.0,)" - ], + "javaagent_target_versions": ["io.vertx:vertx-web:[3.0.0,)"], "library_link": "https://vertx.io/docs/vertx-web/java/", "name": "vertx-web-3.0", "scope": { "name": "io.opentelemetry.vertx-web-3.0" }, "source_path": "instrumentation/vertx/vertx-web-3.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vibur-dbcp-11.0/vibur-dbcp-11.0-4696c5939d21.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vibur-dbcp-11.0/vibur-dbcp-11.0-4696c5939d21.json index caf40eb2..96631490 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vibur-dbcp-11.0/vibur-dbcp-11.0-4696c5939d21.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vibur-dbcp-11.0/vibur-dbcp-11.0-4696c5939d21.json @@ -3,17 +3,13 @@ "display_name": "Vibur DBCP", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.vibur:vibur-dbcp:[11.0,)" - ], + "javaagent_target_versions": ["org.vibur:vibur-dbcp:[11.0,)"], "library_link": "https://www.vibur.org/", "name": "vibur-dbcp-11.0", "scope": { "name": "io.opentelemetry.vibur-dbcp-11.0" }, - "semantic_conventions": [ - "DATABASE_POOL_METRICS" - ], + "semantic_conventions": ["DATABASE_POOL_METRICS"], "source_path": "instrumentation/vibur-dbcp-11.0", "telemetry": [ { @@ -87,4 +83,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/vibur-dbcp-11.0/vibur-dbcp-11.0-602f5642ffaa.json b/ecosystem-explorer/public/data/javaagent/instrumentations/vibur-dbcp-11.0/vibur-dbcp-11.0-602f5642ffaa.json index 98912777..2245a5c6 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/vibur-dbcp-11.0/vibur-dbcp-11.0-602f5642ffaa.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/vibur-dbcp-11.0/vibur-dbcp-11.0-602f5642ffaa.json @@ -3,18 +3,14 @@ "display_name": "Vibur DBCP", "has_javaagent": true, "has_standalone_library": true, - "javaagent_target_versions": [ - "org.vibur:vibur-dbcp:[11.0,)" - ], + "javaagent_target_versions": ["org.vibur:vibur-dbcp:[11.0,)"], "library_link": "https://www.vibur.org/", "name": "vibur-dbcp-11.0", "scope": { "name": "io.opentelemetry.vibur-dbcp-11.0" }, "source_path": "instrumentation/vibur-dbcp-11.0", - "tags": [ - "vibur" - ], + "tags": ["vibur"], "telemetry": [ { "metrics": [ @@ -87,4 +83,4 @@ "when": "otel.semconv-stability.opt-in=database" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/wicket-8.0/wicket-8.0-7b7b4dfae6f7.json b/ecosystem-explorer/public/data/javaagent/instrumentations/wicket-8.0/wicket-8.0-7b7b4dfae6f7.json index 4d0b8162..7dc85f99 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/wicket-8.0/wicket-8.0-7b7b4dfae6f7.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/wicket-8.0/wicket-8.0-7b7b4dfae6f7.json @@ -1,20 +1,14 @@ { "description": "This instrumentation enriches HTTP server spans with route information for Apache Wicket applications, it does not emit any telemetry on its own.", "display_name": "Apache Wicket", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.wicket:wicket:[8.0.0,]" - ], + "javaagent_target_versions": ["org.apache.wicket:wicket:[8.0.0,]"], "library_link": "https://wicket.apache.org/", "name": "wicket-8.0", "scope": { "name": "io.opentelemetry.wicket-8.0" }, "source_path": "instrumentation/wicket-8.0", - "tags": [ - "wicket" - ] -} \ No newline at end of file + "tags": ["wicket"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/wicket-8.0/wicket-8.0-e0706d085e08.json b/ecosystem-explorer/public/data/javaagent/instrumentations/wicket-8.0/wicket-8.0-e0706d085e08.json index 425b41f9..6f7c55a7 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/wicket-8.0/wicket-8.0-e0706d085e08.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/wicket-8.0/wicket-8.0-e0706d085e08.json @@ -1,17 +1,13 @@ { "description": "This instrumentation enriches HTTP server spans with route information for Apache Wicket applications, it does not emit any telemetry on its own.", "display_name": "Apache Wicket", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, - "javaagent_target_versions": [ - "org.apache.wicket:wicket:[8.0.0,]" - ], + "javaagent_target_versions": ["org.apache.wicket:wicket:[8.0.0,]"], "library_link": "https://wicket.apache.org/", "name": "wicket-8.0", "scope": { "name": "io.opentelemetry.wicket-8.0" }, "source_path": "instrumentation/wicket-8.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-1.9.2/xxl-job-1.9.2-118ba910b767.json b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-1.9.2/xxl-job-1.9.2-118ba910b767.json index b6a25aca..8d76d8bb 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-1.9.2/xxl-job-1.9.2-118ba910b767.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-1.9.2/xxl-job-1.9.2-118ba910b767.json @@ -10,9 +10,7 @@ "description": "This instrumentation enables spans for XXL-Job task executions.", "display_name": "XXL-Job", "has_javaagent": true, - "javaagent_target_versions": [ - "com.xuxueli:xxl-job-core:[1.9.2, 2.1.2)" - ], + "javaagent_target_versions": ["com.xuxueli:xxl-job-core:[1.9.2, 2.1.2)"], "library_link": "https://github.com/xuxueli/xxl-job", "name": "xxl-job-1.9.2", "scope": { @@ -69,4 +67,4 @@ "when": "otel.instrumentation.xxl-job.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-1.9.2/xxl-job-1.9.2-ffd42fa0cfe1.json b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-1.9.2/xxl-job-1.9.2-ffd42fa0cfe1.json index 918a9073..61be7e82 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-1.9.2/xxl-job-1.9.2-ffd42fa0cfe1.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-1.9.2/xxl-job-1.9.2-ffd42fa0cfe1.json @@ -10,18 +10,14 @@ "description": "This instrumentation enables spans for XXL-Job task executions.", "display_name": "XXL-Job", "has_javaagent": true, - "javaagent_target_versions": [ - "com.xuxueli:xxl-job-core:[1.9.2, 2.1.2)" - ], + "javaagent_target_versions": ["com.xuxueli:xxl-job-core:[1.9.2, 2.1.2)"], "library_link": "https://github.com/xuxueli/xxl-job", "name": "xxl-job-1.9.2", "scope": { "name": "io.opentelemetry.xxl-job-1.9.2" }, "source_path": "instrumentation/xxl-job/xxl-job-1.9.2", - "tags": [ - "xxl" - ], + "tags": ["xxl"], "telemetry": [ { "spans": [ @@ -72,4 +68,4 @@ "when": "otel.instrumentation.xxl-job.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.1.2/xxl-job-2.1.2-5a5fef680390.json b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.1.2/xxl-job-2.1.2-5a5fef680390.json index 3ec03fc1..6512a386 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.1.2/xxl-job-2.1.2-5a5fef680390.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.1.2/xxl-job-2.1.2-5a5fef680390.json @@ -10,9 +10,7 @@ "description": "This instrumentation enables spans for XXL-Job task executions.", "display_name": "XXL-Job", "has_javaagent": true, - "javaagent_target_versions": [ - "com.xuxueli:xxl-job-core:[2.1.2,2.3.0)" - ], + "javaagent_target_versions": ["com.xuxueli:xxl-job-core:[2.1.2,2.3.0)"], "library_link": "https://github.com/xuxueli/xxl-job", "name": "xxl-job-2.1.2", "scope": { @@ -69,4 +67,4 @@ "when": "otel.instrumentation.xxl-job.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.1.2/xxl-job-2.1.2-b63821e83514.json b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.1.2/xxl-job-2.1.2-b63821e83514.json index 4cb96d9d..8bee54da 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.1.2/xxl-job-2.1.2-b63821e83514.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.1.2/xxl-job-2.1.2-b63821e83514.json @@ -10,18 +10,14 @@ "description": "This instrumentation enables spans for XXL-Job task executions.", "display_name": "XXL-Job", "has_javaagent": true, - "javaagent_target_versions": [ - "com.xuxueli:xxl-job-core:[2.1.2,2.3.0)" - ], + "javaagent_target_versions": ["com.xuxueli:xxl-job-core:[2.1.2,2.3.0)"], "library_link": "https://github.com/xuxueli/xxl-job", "name": "xxl-job-2.1.2", "scope": { "name": "io.opentelemetry.xxl-job-2.1.2" }, "source_path": "instrumentation/xxl-job/xxl-job-2.1.2", - "tags": [ - "xxl" - ], + "tags": ["xxl"], "telemetry": [ { "spans": [ @@ -72,4 +68,4 @@ "when": "otel.instrumentation.xxl-job.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.3.0/xxl-job-2.3.0-d694f2b17844.json b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.3.0/xxl-job-2.3.0-d694f2b17844.json index 6d175f7d..032d464b 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.3.0/xxl-job-2.3.0-d694f2b17844.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.3.0/xxl-job-2.3.0-d694f2b17844.json @@ -10,9 +10,7 @@ "description": "This instrumentation enables spans for XXL-Job task executions.", "display_name": "XXL-Job", "has_javaagent": true, - "javaagent_target_versions": [ - "com.xuxueli:xxl-job-core:[2.3.0,)" - ], + "javaagent_target_versions": ["com.xuxueli:xxl-job-core:[2.3.0,)"], "library_link": "https://github.com/xuxueli/xxl-job", "name": "xxl-job-2.3.0", "scope": { @@ -69,4 +67,4 @@ "when": "otel.instrumentation.xxl-job.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.3.0/xxl-job-2.3.0-dcaf7ddfdd4d.json b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.3.0/xxl-job-2.3.0-dcaf7ddfdd4d.json index ad932771..da5d67b1 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.3.0/xxl-job-2.3.0-dcaf7ddfdd4d.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/xxl-job-2.3.0/xxl-job-2.3.0-dcaf7ddfdd4d.json @@ -10,18 +10,14 @@ "description": "This instrumentation enables spans for XXL-Job task executions.", "display_name": "XXL-Job", "has_javaagent": true, - "javaagent_target_versions": [ - "com.xuxueli:xxl-job-core:[2.3.0,)" - ], + "javaagent_target_versions": ["com.xuxueli:xxl-job-core:[2.3.0,)"], "library_link": "https://github.com/xuxueli/xxl-job", "name": "xxl-job-2.3.0", "scope": { "name": "io.opentelemetry.xxl-job-2.3.0" }, "source_path": "instrumentation/xxl-job/xxl-job-2.3.0", - "tags": [ - "xxl" - ], + "tags": ["xxl"], "telemetry": [ { "spans": [ @@ -72,4 +68,4 @@ "when": "otel.instrumentation.xxl-job.experimental-span-attributes=true" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/zio-2.0/zio-2.0-79ec031cac9a.json b/ecosystem-explorer/public/data/javaagent/instrumentations/zio-2.0/zio-2.0-79ec031cac9a.json index 271a162c..14c53c7c 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/zio-2.0/zio-2.0-79ec031cac9a.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/zio-2.0/zio-2.0-79ec031cac9a.json @@ -1,9 +1,7 @@ { "description": "This instrumentation provides context propagation for ZIO fibers, it does not emit any telemetry on its own.", "display_name": "ZIO", - "features": [ - "CONTEXT_PROPAGATION" - ], + "features": ["CONTEXT_PROPAGATION"], "has_javaagent": true, "javaagent_target_versions": [ "dev.zio:zio_2.13:[2.0.0,)", @@ -16,4 +14,4 @@ "name": "io.opentelemetry.zio-2.0" }, "source_path": "instrumentation/zio/zio-2.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/zio-2.0/zio-2.0-b552963d8964.json b/ecosystem-explorer/public/data/javaagent/instrumentations/zio-2.0/zio-2.0-b552963d8964.json index 08bf016f..9751ef5e 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/zio-2.0/zio-2.0-b552963d8964.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/zio-2.0/zio-2.0-b552963d8964.json @@ -13,7 +13,5 @@ "name": "io.opentelemetry.zio-2.0" }, "source_path": "instrumentation/zio/zio-2.0", - "tags": [ - "zio" - ] -} \ No newline at end of file + "tags": ["zio"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/zio-http-3.0/zio-http-3.0-16b6f2e420bc.json b/ecosystem-explorer/public/data/javaagent/instrumentations/zio-http-3.0/zio-http-3.0-16b6f2e420bc.json index f052d1f2..d38f5eed 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/zio-http-3.0/zio-http-3.0-16b6f2e420bc.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/zio-http-3.0/zio-http-3.0-16b6f2e420bc.json @@ -1,9 +1,7 @@ { "description": "This instrumentation does not emit telemetry on its own. Instead, it extracts the HTTP route and attaches it to HTTP server spans and HTTP server metrics.", "display_name": "ZIO HTTP", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "javaagent_target_versions": [ "dev.zio:zio-http_2.12:[3.0.0,)", @@ -17,7 +15,5 @@ "name": "io.opentelemetry.zio-http-3.0" }, "source_path": "instrumentation/zio/zio-http-3.0", - "tags": [ - "zio" - ] -} \ No newline at end of file + "tags": ["zio"] +} diff --git a/ecosystem-explorer/public/data/javaagent/instrumentations/zio-http-3.0/zio-http-3.0-3071ce2bce48.json b/ecosystem-explorer/public/data/javaagent/instrumentations/zio-http-3.0/zio-http-3.0-3071ce2bce48.json index 7c19883e..2352f918 100644 --- a/ecosystem-explorer/public/data/javaagent/instrumentations/zio-http-3.0/zio-http-3.0-3071ce2bce48.json +++ b/ecosystem-explorer/public/data/javaagent/instrumentations/zio-http-3.0/zio-http-3.0-3071ce2bce48.json @@ -1,9 +1,7 @@ { "description": "This instrumentation does not emit telemetry on its own. Instead, it extracts the HTTP route and attaches it to HTTP server spans and HTTP server metrics.", "display_name": "ZIO HTTP", - "features": [ - "HTTP_ROUTE" - ], + "features": ["HTTP_ROUTE"], "has_javaagent": true, "javaagent_target_versions": [ "dev.zio:zio-http_2.12:[3.0.0,)", @@ -17,4 +15,4 @@ "name": "io.opentelemetry.zio-http-3.0" }, "source_path": "instrumentation/zio/zio-http-3.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/versions-index.json b/ecosystem-explorer/public/data/javaagent/versions-index.json index 17b5a2ed..bd9a6f2b 100644 --- a/ecosystem-explorer/public/data/javaagent/versions-index.json +++ b/ecosystem-explorer/public/data/javaagent/versions-index.json @@ -9,4 +9,4 @@ "version": "2.26.1" } ] -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/versions/2.26.1-index.json b/ecosystem-explorer/public/data/javaagent/versions/2.26.1-index.json index c8a7b837..eadf3c54 100644 --- a/ecosystem-explorer/public/data/javaagent/versions/2.26.1-index.json +++ b/ecosystem-explorer/public/data/javaagent/versions/2.26.1-index.json @@ -255,4 +255,4 @@ "zio-http-3.0": "16b6f2e420bc" }, "version": "2.26.1" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/public/data/javaagent/versions/2.27.0-index.json b/ecosystem-explorer/public/data/javaagent/versions/2.27.0-index.json index ded120ec..e8e7d9a4 100644 --- a/ecosystem-explorer/public/data/javaagent/versions/2.27.0-index.json +++ b/ecosystem-explorer/public/data/javaagent/versions/2.27.0-index.json @@ -256,4 +256,4 @@ "zio-http-3.0": "3071ce2bce48" }, "version": "2.27.0" -} \ No newline at end of file +} diff --git a/ecosystem-explorer/src/lib/api/configuration-data.test.ts b/ecosystem-explorer/src/lib/api/configuration-data.test.ts index 9d435a7b..42a64769 100644 --- a/ecosystem-explorer/src/lib/api/configuration-data.test.ts +++ b/ecosystem-explorer/src/lib/api/configuration-data.test.ts @@ -133,7 +133,7 @@ describe("configuration-data", () => { }); await expect(configData.loadConfigSchema("1.0.0")).rejects.toThrow( - "Failed to load config-schema-1.0.0: 500 Internal Server Error" + "Failed to load config-schema-1.0.0 from /data/configuration/versions/1.0.0.json: 500 Internal Server Error" ); }); }); diff --git a/ecosystem-explorer/src/lib/api/fetch-with-cache.test.ts b/ecosystem-explorer/src/lib/api/fetch-with-cache.test.ts index bde11374..41ccf056 100644 --- a/ecosystem-explorer/src/lib/api/fetch-with-cache.test.ts +++ b/ecosystem-explorer/src/lib/api/fetch-with-cache.test.ts @@ -72,7 +72,7 @@ describe("fetchWithCache", () => { }); await expect(fetchWithCache("key", "/url", idbCache.STORES.METADATA)).rejects.toThrow( - "Failed to load key: 404 Not Found" + "Failed to load key from /url: 404 Not Found" ); }); diff --git a/ecosystem-explorer/src/lib/api/fetch-with-cache.ts b/ecosystem-explorer/src/lib/api/fetch-with-cache.ts index efcec54e..0830c972 100644 --- a/ecosystem-explorer/src/lib/api/fetch-with-cache.ts +++ b/ecosystem-explorer/src/lib/api/fetch-with-cache.ts @@ -19,6 +19,7 @@ const inflightRequests = new Map>(); export interface FetchWithCacheOptions { allow404?: boolean; + format?: "json" | "text"; /** * Optional validator for cached data. When provided, cached data that fails * validation is ignored for the current request and a fresh network request @@ -61,10 +62,13 @@ export async function fetchWithCache( if (response.status === 404 && options?.allow404) { return null; } - throw new Error(`Failed to load ${cacheKey}: ${response.status} ${response.statusText}`); + throw new Error( + `Failed to load ${cacheKey} from ${url}: ${response.status} ${response.statusText}` + ); } - const data = await response.json(); + const format = options?.format ?? "json"; + const data = format === "json" ? await response.json() : await response.text(); if (isIDBAvailable()) { try { diff --git a/ecosystem-explorer/src/lib/api/javaagent-data.test.ts b/ecosystem-explorer/src/lib/api/javaagent-data.test.ts index e23c95cc..6082517c 100644 --- a/ecosystem-explorer/src/lib/api/javaagent-data.test.ts +++ b/ecosystem-explorer/src/lib/api/javaagent-data.test.ts @@ -102,7 +102,7 @@ describe("javaagent-data", () => { }); await expect(javaagentData.loadVersions()).rejects.toThrow( - "Failed to load versions-index: 404 Not Found" + "Failed to load versions-index from /data/javaagent/versions-index.json: 404 Not Found" ); }); @@ -317,4 +317,36 @@ describe("javaagent-data", () => { expect(result).toEqual([]); }); }); + + describe("loadLibraryReadme", () => { + it("should load library README markdown", async () => { + const readmeText = "# My Library README"; + vi.spyOn(idbCache, "getCached").mockResolvedValue(null); + vi.spyOn(idbCache, "setCached").mockResolvedValue(); + + (global.fetch as ReturnType).mockResolvedValue({ + ok: true, + text: async () => readmeText, + }); + + const result = await javaagentData.loadLibraryReadme("mylib", "abc123def456"); + + expect(result).toEqual(readmeText); + expect(global.fetch).toHaveBeenCalledWith("/data/javaagent/markdown/mylib-abc123def456.md"); + }); + + it("should propagate fetch errors when loading README", async () => { + vi.spyOn(idbCache, "getCached").mockResolvedValue(null); + + (global.fetch as ReturnType).mockResolvedValue({ + ok: false, + status: 404, + statusText: "Not Found", + }); + + await expect(javaagentData.loadLibraryReadme("mylib", "abc123def456")).rejects.toThrow( + /Failed to load readme-mylib-abc123def456 from.*: 404 Not Found/ + ); + }); + }); }); diff --git a/ecosystem-explorer/src/lib/api/javaagent-data.ts b/ecosystem-explorer/src/lib/api/javaagent-data.ts index 40692f7f..4e02734e 100644 --- a/ecosystem-explorer/src/lib/api/javaagent-data.ts +++ b/ecosystem-explorer/src/lib/api/javaagent-data.ts @@ -97,3 +97,22 @@ export async function loadGlobalConfigurations() { if (!data) throw new Error("Global configurations returned null unexpectedly"); return data; } + +export async function loadLibraryReadme( + libraryName: string, + markdownHash: string +): Promise { + const data = await fetchWithCache( + `readme-${libraryName}-${markdownHash}`, + `${BASE_PATH}/markdown/${libraryName}-${markdownHash}.md`, + STORES.METADATA, + { format: "text" } + ); + + if (!data) { + throw new Error( + `Failed to load readme-${libraryName}-${markdownHash} from ${BASE_PATH}/markdown/${libraryName}-${markdownHash}.md: data returned null` + ); + } + return data; +} diff --git a/ecosystem-explorer/src/types/javaagent.ts b/ecosystem-explorer/src/types/javaagent.ts index e1d75cae..ca5cce2b 100644 --- a/ecosystem-explorer/src/types/javaagent.ts +++ b/ecosystem-explorer/src/types/javaagent.ts @@ -62,6 +62,8 @@ export interface InstrumentationData { configurations?: Configuration[]; /** Telemetry emitted by this instrumentation under specific conditions. */ telemetry?: Telemetry[]; + /** Content hash of the library README markdown file. */ + markdown_hash?: string; /** Whether this is a custom (non-upstream) instrumentation. */ _is_custom?: boolean; } @@ -129,6 +131,8 @@ export interface Metric { unit: string; /** Attributes associated with the metric. */ attributes?: Attribute[]; + /** Semantic convention versions this metric is compliant with. */ + semconv_compliance?: string[]; } /** @@ -139,6 +143,8 @@ export interface Span { span_kind: "CLIENT" | "SERVER" | "PRODUCER" | "CONSUMER" | "INTERNAL"; /** Attributes associated with the span. */ attributes?: Attribute[]; + /** Semantic convention versions this span is compliant with. */ + semconv_compliance?: string[]; } /**