From 52f149b7288884c210f70fcc0d79a7c8170e3fb3 Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Wed, 15 Oct 2025 20:01:48 +0530 Subject: [PATCH 01/14] wip --- .../github-enterprise-integration.mdx | 143 ++++++++++++++++++ .../github-integration.mdx | 1 + src/nav/service-architecture-intelligence.yml | 4 +- 3 files changed, 147 insertions(+), 1 deletion(-) create mode 100644 src/content/docs/service-architecture-intelligence/github-enterprise-integration.mdx diff --git a/src/content/docs/service-architecture-intelligence/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-enterprise-integration.mdx new file mode 100644 index 00000000000..6b3ef0da932 --- /dev/null +++ b/src/content/docs/service-architecture-intelligence/github-enterprise-integration.mdx @@ -0,0 +1,143 @@ +--- +title: Service Architecture Intelligence with GitHub Enterprise Integration +tags: + - New Relic integrations + - GitHub Enterprise integration +metaDescription: Integrate your on-premise GitHub Enterprise (GHE) environment with New Relic using a secure collector service and GitHub App for automated data ingestion. +freshnessValidatedDate: never +--- + + + + We're still working on this feature, but we'd love for you to try it out! + + This feature is currently provided as part of a preview program pursuant to our [pre-release policies](/docs/licenses/license-information/referenced-policies/new-relic-pre-release-policy). + + +The New Relic GitHub Enterprise integration imports repositories and teams from your on-premise GitHub Enterprise (GHE) account to enhance the visibility of your [Service Architecture Intelligence capability](/docs/service-architecture-intelligence/getting-started) in the New Relic platform. + +This integration streamlines the onboarding process for users and teams, simplifies role management, and clarifies entity ownership mapping, reducing the setup configuration, time, and effort. Due to the restricted nature of GHE environments, integration is achieved via a local collector service deployed within your private network. This integration aims to enhance the management and visibility of [Catalogs](/docs/service-architecture-intelligence/catalogs/catalogs) and [Scorecards](/docs/service-architecture-intelligence/scorecards/getting-started) within New Relic. For more information, refer [Service Architecture Intelligence capability](/docs/service-architecture-intelligence/getting-started). + +**Prerequisites** + +* Login to your GitHub Enterprise account you plan to integrate with New Relic. +* You must be the Organization Manager or Authentication Domain Manager. +* Docker environment to run the collector service within your GHE network. + + +**Architecture Overview** + +Data collection from your GHE environment uses a collector service deployed within your private network to circumvent enterprise firewalls. + +- **Collector Service**: A Docker image provided by our team, deployed inside your GHE environment (within your VPN/firewall). +- **Data Flow**: The collector service pulls data from your GHE repositories and pushes it to our public data collection endpoint. +- **Communication**: Our backend cannot directly make API calls to your GHE service. All data is pushed from your environment by the collector service. + +**To set up the GitHub Enterprise integration:** + +1. **Create and Configure a GitHub App**: In your GHE instance, navigate to **Settings → Developer Settings → GitHub Apps → New GitHub App**. + + 1. **Configure Permissions**: Set the specific permissions required for the app to perform real-time and initial data syncs. A separate document outlining the required permissions will be provided. + 2. **Set Up Webhooks**: Configure the Webhook URL (which we will provide) and create a custom Event Secret for secure communication. + 3. **Install the App**: Install the created GitHub App on the relevant GHE organizations that you want to integrate with New Relic. + 4. **Generate Keys**: Upon creation, the app will generate a unique App ID and a Private Key file (.pem format). Save these securely as they will be needed for the collector service configuration. + +2. **Prepare Environment Variables**: Before deploying the collector service, gather the following information: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
VariableSourceHow to Obtain
`API_KEY`New RelicGenerate an API key from the New Relic dashboard.
`LICENSE_KEY`New RelicGenerate a License Key from the New Relic dashboard.
`GHE_BASE_URL`GHE ServerThe base URL for your GHE server (e.g., `https://source.datanot.us`).
`APP_ID`GitHub AppThe unique App ID generated when you created the GitHub App.
`PRIVATE_KEY`GitHub AppThe content of the private key (`.pem`) file, converted to a Base64 string. We will provide the necessary conversion command.
`EVENT_SECRET`GitHub AppThe custom Event Secret value you set when creating the GitHub App.
+ +3. **Deploy the Collector Service**: The collector service is delivered as a Docker image. Deployment can be done in one of two ways: + + **Option A: Using Docker Compose (Recommended)** + + We will provide a sample Docker Compose file that automates the download and deployment of the service. + + 1. Download the provided Docker Compose file. + 2. Configure the environment variables from step 2. + 3. Run the following command: + ```bash + docker-compose up -d + ``` + + **Option B: Direct Docker Image Run** + + You can download the Docker image directly from our Docker App registry and run it using your organization's preferred CI/CD pipeline or deployment method. + +4. **Access the New Relic UI**: + + 1. Once the collector service is running and the GitHub App is installed on your GHE organization(s), the corresponding GHE organizations will appear in the New Relic UI. + 2. Click **First time sync** to start the initial data synchronization. + 3. *(Optional)* Click **On-demand sync** to manually sync the data. + + + + You can manually synchronize the data once every 4 hours. The **On-demand sync** button remains disabled if sync has occurred within the previous 4 hours. + + + + 4. After you view the Sync started message, click **Continue**. The **GitHub Enterprise Integration** screen will then display the count of teams and repositories, refreshing every 5 seconds. Allow a few minutes for the complete import of all data. + +5. On the **GitHub Enterprise integration** screen: + + - Click **Go to Teams** to view the imported teams information on [Teams](/docs/service-architecture-intelligence/teams/teams). + +**Assigning repositories to New Relic Teams** + +You can auto-assign GitHub repositories to their teams by adding `teamOwningRepo` as a custom property in GitHub Enterprise. + +1. Create the custom property at the organization level and assign a value for the custom property at the repository level. Additionally, you can set up a custom property for multiple repositories at the organization level simultaneously. +2. Then, in New Relic Teams, enable the [Automated Ownership](/docs/service-architecture-intelligence/teams/manage-teams/#assign-ownership) feature, making sure to use `team` as the tag key. + +Once this is set up, we'll automatically match each repo with its correct team. + +For more information on creating custom properties, refer to the [GitHub documentation](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). + +**Uninstallation** + +To uninstall the GHE integration, you must: + +1. Navigate to your GitHub Enterprise UI. +2. Go to the organization's settings where the app is installed. +3. Uninstall the GitHub App directly from the GHE interface. This action will trigger the backend process to cease data collection. + + diff --git a/src/content/docs/service-architecture-intelligence/github-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integration.mdx index 87dd347ac80..bb980427e90 100644 --- a/src/content/docs/service-architecture-intelligence/github-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integration.mdx @@ -29,6 +29,7 @@ This integration streamlines the onboarding process for users and teams, simplif **To set up the GitHub integration:** 1. Go to **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)**. +2. Select **Github enterprise Cloud** as the instrumentation method and select **Continue**. 2. On the **Select an account** screen, keep the default account selection and click **Continue**. 3. On the **Integration setup** screen: diff --git a/src/nav/service-architecture-intelligence.yml b/src/nav/service-architecture-intelligence.yml index 56b1e8d82fb..d0320b7da02 100644 --- a/src/nav/service-architecture-intelligence.yml +++ b/src/nav/service-architecture-intelligence.yml @@ -32,4 +32,6 @@ pages: - title: Dynamic Flow Map path: /docs/service-architecture-intelligence/maps/dynamic-flow-map - title: GitHub integration - path: /docs/service-architecture-intelligence/github-integration \ No newline at end of file + path: /docs/service-architecture-intelligence/github-integration + - title: GitHub Enterprise integration + path: /docs/service-architecture-intelligence/github-enterprise-integration \ No newline at end of file From a6a4ea266d89e0fb3f9ecf87475f568ce1f44212 Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Thu, 16 Oct 2025 11:55:20 +0530 Subject: [PATCH 02/14] wip --- .../github-enterprise-integration.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/content/docs/service-architecture-intelligence/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-enterprise-integration.mdx index 6b3ef0da932..31c8cb266b8 100644 --- a/src/content/docs/service-architecture-intelligence/github-enterprise-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-enterprise-integration.mdx @@ -25,7 +25,7 @@ This integration streamlines the onboarding process for users and teams, simplif * Docker environment to run the collector service within your GHE network. -**Architecture Overview** +**Architecture overview** Data collection from your GHE environment uses a collector service deployed within your private network to circumvent enterprise firewalls. @@ -35,14 +35,14 @@ Data collection from your GHE environment uses a collector service deployed with **To set up the GitHub Enterprise integration:** -1. **Create and Configure a GitHub App**: In your GHE instance, navigate to **Settings → Developer Settings → GitHub Apps → New GitHub App**. +1. **Create and configure a GitHub app**: In your GHE instance, navigate to **Settings → Developer Settings → GitHub Apps → New GitHub App**. 1. **Configure Permissions**: Set the specific permissions required for the app to perform real-time and initial data syncs. A separate document outlining the required permissions will be provided. 2. **Set Up Webhooks**: Configure the Webhook URL (which we will provide) and create a custom Event Secret for secure communication. 3. **Install the App**: Install the created GitHub App on the relevant GHE organizations that you want to integrate with New Relic. 4. **Generate Keys**: Upon creation, the app will generate a unique App ID and a Private Key file (.pem format). Save these securely as they will be needed for the collector service configuration. -2. **Prepare Environment Variables**: Before deploying the collector service, gather the following information: +2. **Prepare environment variables**: Before deploying the collector service, gather the following information: @@ -86,7 +86,7 @@ Data collection from your GHE environment uses a collector service deployed with
-3. **Deploy the Collector Service**: The collector service is delivered as a Docker image. Deployment can be done in one of two ways: +3. **Deploy the collector service**: The collector service is delivered as a Docker image. Deployment can be done in one of two ways: **Option A: Using Docker Compose (Recommended)** @@ -99,7 +99,7 @@ Data collection from your GHE environment uses a collector service deployed with docker-compose up -d ``` - **Option B: Direct Docker Image Run** + **Option B: Direct Docker image run** You can download the Docker image directly from our Docker App registry and run it using your organization's preferred CI/CD pipeline or deployment method. From 7dca6ef15310fc662ffb263dd120dff963ec0faf Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Thu, 16 Oct 2025 14:52:32 +0530 Subject: [PATCH 03/14] wip --- .../github-cloud-integration.mdx} | 2 +- .../github-enterprise-integration.mdx | 0 src/nav/service-architecture-intelligence.yml | 10 ++++++---- 3 files changed, 7 insertions(+), 5 deletions(-) rename src/content/docs/service-architecture-intelligence/{github-integration.mdx => github-integrations/github-cloud-integration.mdx} (98%) rename src/content/docs/service-architecture-intelligence/{ => github-integrations}/github-enterprise-integration.mdx (100%) diff --git a/src/content/docs/service-architecture-intelligence/github-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx similarity index 98% rename from src/content/docs/service-architecture-intelligence/github-integration.mdx rename to src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx index bb980427e90..a069dae54b3 100644 --- a/src/content/docs/service-architecture-intelligence/github-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx @@ -1,5 +1,5 @@ --- -title: Service Architecture Intelligence with GitHub Integration +title: Service Architecture Intelligence with GitHub Cloud Integration tags: - New Relic integrations - GitHub integration diff --git a/src/content/docs/service-architecture-intelligence/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx similarity index 100% rename from src/content/docs/service-architecture-intelligence/github-enterprise-integration.mdx rename to src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx diff --git a/src/nav/service-architecture-intelligence.yml b/src/nav/service-architecture-intelligence.yml index d0320b7da02..0643a664133 100644 --- a/src/nav/service-architecture-intelligence.yml +++ b/src/nav/service-architecture-intelligence.yml @@ -31,7 +31,9 @@ pages: path: /docs/service-architecture-intelligence/maps/advanced-maps - title: Dynamic Flow Map path: /docs/service-architecture-intelligence/maps/dynamic-flow-map - - title: GitHub integration - path: /docs/service-architecture-intelligence/github-integration - - title: GitHub Enterprise integration - path: /docs/service-architecture-intelligence/github-enterprise-integration \ No newline at end of file + - title: GitHub Integrations + pages: + - title: GitHub Cloud integration + path: /docs/service-architecture-intelligence/github-integrations/github-cloud-integration + - title: GitHub Enterprise integration + path: /docs/service-architecture-intelligence/github-integrations/github-enterprise-integration \ No newline at end of file From fd35b6faa0d55fc016db0d38ca0bbc40770b719b Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Thu, 23 Oct 2025 09:26:57 +0530 Subject: [PATCH 04/14] wip --- .../github-enterprise-integration.mdx | 9 --------- src/images/ghe-architecture-diagram.webp | Bin 0 -> 72768 bytes 2 files changed, 9 deletions(-) create mode 100644 src/images/ghe-architecture-diagram.webp diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx index 31c8cb266b8..2778bfeadb1 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx @@ -24,15 +24,6 @@ This integration streamlines the onboarding process for users and teams, simplif * You must be the Organization Manager or Authentication Domain Manager. * Docker environment to run the collector service within your GHE network. - -**Architecture overview** - -Data collection from your GHE environment uses a collector service deployed within your private network to circumvent enterprise firewalls. - -- **Collector Service**: A Docker image provided by our team, deployed inside your GHE environment (within your VPN/firewall). -- **Data Flow**: The collector service pulls data from your GHE repositories and pushes it to our public data collection endpoint. -- **Communication**: Our backend cannot directly make API calls to your GHE service. All data is pushed from your environment by the collector service. - **To set up the GitHub Enterprise integration:** 1. **Create and configure a GitHub app**: In your GHE instance, navigate to **Settings → Developer Settings → GitHub Apps → New GitHub App**. diff --git a/src/images/ghe-architecture-diagram.webp b/src/images/ghe-architecture-diagram.webp new file mode 100644 index 0000000000000000000000000000000000000000..dde765d1b31ef59e99322138c02c38fe0f3e69c7 GIT binary patch literal 72768 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μy)BzQ$N;OhOQm=d+1qy5-;R_P5IVFme4X} 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%0DRD%WYV3e`*cH0^6Zo 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 Date: Tue, 28 Oct 2025 16:35:45 +0530 Subject: [PATCH 05/14] wip --- .../github-cloud-integration.mdx | 2 +- .../github-enterprise-integration.mdx | 51 ++++++++++++++++--- 2 files changed, 46 insertions(+), 7 deletions(-) diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx index a069dae54b3..0cbb544386d 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx @@ -1,5 +1,5 @@ --- -title: Service Architecture Intelligence with GitHub Cloud Integration +title: Service Architecture Intelligence with GitHub cloud integration tags: - New Relic integrations - GitHub integration diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx index 2778bfeadb1..b8b6cc20c7c 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx @@ -1,5 +1,5 @@ --- -title: Service Architecture Intelligence with GitHub Enterprise Integration +title: Service Architecture Intelligence with GitHub Enterprise (On-prem) tags: - New Relic integrations - GitHub Enterprise integration @@ -21,7 +21,6 @@ This integration streamlines the onboarding process for users and teams, simplif **Prerequisites** * Login to your GitHub Enterprise account you plan to integrate with New Relic. -* You must be the Organization Manager or Authentication Domain Manager. * Docker environment to run the collector service within your GHE network. **To set up the GitHub Enterprise integration:** @@ -40,7 +39,7 @@ This integration streamlines the onboarding process for users and teams, simplif Variable Source - How to Obtain + How to obtain @@ -77,15 +76,55 @@ This integration streamlines the onboarding process for users and teams, simplif + The following are optional environment variables for making API HTTPS. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Optional VariableSourceHow to obtain
`SERVER_SSL_KEY_STORE`SSL ConfigurationPath to the SSL keystore file for HTTPS configuration.
`SERVER_SSL_KEY_STORE_PASSWORD`SSL ConfigurationPassword for the SSL keystore file.
`SERVER_SSL_KEY_STORE_TYPE`SSL ConfigurationType of the SSL keystore (e.g., PKCS12, JKS).
`SERVER_SSL_KEY_ALIAS`SSL ConfigurationAlias for the SSL key within the keystore.
`SERVER_PORT`SSL ConfigurationServer port for HTTPS communication. Use 8443 for HTTPS.
+ 3. **Deploy the collector service**: The collector service is delivered as a Docker image. Deployment can be done in one of two ways: **Option A: Using Docker Compose (Recommended)** We will provide a sample Docker Compose file that automates the download and deployment of the service. - 1. Download the provided Docker Compose file. - 2. Configure the environment variables from step 2. - 3. Run the following command: + a. Download the provided Docker Compose file. + b. Configure the environment variables as described in step 2. + c. Run the following command: + ```bash docker-compose up -d ``` From 88febe54f77476c0326e3df0a51dd7d4fe8a1b4f Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Tue, 28 Oct 2025 17:03:15 +0530 Subject: [PATCH 06/14] fixing merge conflicts --- .../github-enterprise-integration.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx index b8b6cc20c7c..7c5bd14c655 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx @@ -14,23 +14,23 @@ freshnessValidatedDate: never This feature is currently provided as part of a preview program pursuant to our [pre-release policies](/docs/licenses/license-information/referenced-policies/new-relic-pre-release-policy). -The New Relic GitHub Enterprise integration imports repositories and teams from your on-premise GitHub Enterprise (GHE) account to enhance the visibility of your [Service Architecture Intelligence capability](/docs/service-architecture-intelligence/getting-started) in the New Relic platform. +Are you looking to gain deeper insights into your service architecture by leveraging data from your on-premise GitHub Enterprise account? The New Relic GitHub Enterprise integration imports repositories, teams, and user data directly into the New Relic platform using a secure collector service deployed within your private network. -This integration streamlines the onboarding process for users and teams, simplifies role management, and clarifies entity ownership mapping, reducing the setup configuration, time, and effort. Due to the restricted nature of GHE environments, integration is achieved via a local collector service deployed within your private network. This integration aims to enhance the management and visibility of [Catalogs](/docs/service-architecture-intelligence/catalogs/catalogs) and [Scorecards](/docs/service-architecture-intelligence/scorecards/getting-started) within New Relic. For more information, refer [Service Architecture Intelligence capability](/docs/service-architecture-intelligence/getting-started). +This integration streamlines the onboarding process for users and teams while simplifying role management. It also clarifies entity ownership mapping, reducing setup time and effort. Due to the restricted nature of GHE environments, integration is achieved via a local collector service deployed within your private network. This integration aims to enhance the management and visibility of [Catalogs](/docs/service-architecture-intelligence/catalogs/catalogs) and [Scorecards](/docs/service-architecture-intelligence/scorecards/getting-started) within New Relic. For more information, refer to the [Service Architecture Intelligence capability](/docs/service-architecture-intelligence/getting-started). **Prerequisites** -* Login to your GitHub Enterprise account you plan to integrate with New Relic. +* GitHub Enterprise account that you want to integrate with New Relic. * Docker environment to run the collector service within your GHE network. **To set up the GitHub Enterprise integration:** 1. **Create and configure a GitHub app**: In your GHE instance, navigate to **Settings → Developer Settings → GitHub Apps → New GitHub App**. - 1. **Configure Permissions**: Set the specific permissions required for the app to perform real-time and initial data syncs. A separate document outlining the required permissions will be provided. - 2. **Set Up Webhooks**: Configure the Webhook URL (which we will provide) and create a custom Event Secret for secure communication. - 3. **Install the App**: Install the created GitHub App on the relevant GHE organizations that you want to integrate with New Relic. - 4. **Generate Keys**: Upon creation, the app will generate a unique App ID and a Private Key file (.pem format). Save these securely as they will be needed for the collector service configuration. + a. **Configure Permissions**: Set the specific permissions required for the app to perform real-time and initial data syncs. A separate document outlining the required permissions will be provided. + b. **Set Up Webhooks**: Configure the Webhook URL (which we will provide) and create a custom Event Secret for secure communication. + c. **Install the App**: Install the created GitHub App on the relevant GHE organizations that you want to integrate with New Relic. + d. **Generate Keys**: Upon creation, the app will generate a unique App ID and a Private Key file (.pem format). Save these securely as they will be needed for the collector service configuration. 2. **Prepare environment variables**: Before deploying the collector service, gather the following information: From 903de75cfc8a7bd2b65e7ef24ce9fb4645cf513a Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Tue, 28 Oct 2025 19:20:00 +0530 Subject: [PATCH 07/14] removed image --- src/images/ghe-architecture-diagram.webp | Bin 72768 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/images/ghe-architecture-diagram.webp diff --git a/src/images/ghe-architecture-diagram.webp b/src/images/ghe-architecture-diagram.webp deleted file mode 100644 index dde765d1b31ef59e99322138c02c38fe0f3e69c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 72768 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μy)BzQ$N;OhOQm=d+1qy5-;R_P5IVFme4X} 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%0DRD%WYV3e`*cH0^6Zo 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 Date: Tue, 28 Oct 2025 19:41:20 +0530 Subject: [PATCH 08/14] deleted unpaired translation --- .../add-on-billing.mdx | 28 -- .../data-ingest-billing.mdx | 354 ------------------ .../docs-release-notes/docs-10-10-2025.mdx | 61 --- .../docs-release-notes/docs-10-17-2025.mdx | 44 --- .../docs-release-notes/docs-7-25-2025.mdx | 267 ------------- .../docs-release-notes/docs-8-01-2025.mdx | 99 ----- .../docs-release-notes/docs-8-08-2025.mdx | 60 --- .../docs-release-notes/docs-8-14-2025.mdx | 112 ------ .../docs-release-notes/docs-8-21-2025.mdx | 56 --- .../docs-release-notes/docs-9-04-2025.mdx | 39 -- .../docs-release-notes/docs-9-12-2025.mdx | 94 ----- .../docs-release-notes/docs-9-25-2025.mdx | 36 -- .../browser-agent-v1.295.mdx | 39 -- .../browser-agent-v1.296.mdx | 34 -- .../browser-agent-v1.297.mdx | 27 -- .../browser-agent-v1.298.mdx | 34 -- .../browser-agent-v1.300.mdx | 44 --- .../browser-agent-v1.301.mdx | 34 -- .../node-api-runtime-1.2.mdx | 10 - .../node-browser-runtime-3.0.mdx | 10 - .../ping-runtime-1.53.mdx | 10 - .../ping-runtime-1.54.mdx | 10 - .../github-integration.mdx | 220 ----------- .../add-on-billing.mdx | 28 -- .../data-ingest-billing.mdx | 354 ------------------ .../docs-release-notes/docs-10-10-2025.mdx | 61 --- .../docs-release-notes/docs-10-17-2025.mdx | 44 --- .../docs-release-notes/docs-7-25-2025.mdx | 267 ------------- .../docs-release-notes/docs-8-01-2025.mdx | 99 ----- .../docs-release-notes/docs-8-08-2025.mdx | 60 --- .../docs-release-notes/docs-8-14-2025.mdx | 112 ------ .../docs-release-notes/docs-8-21-2025.mdx | 56 --- .../docs-release-notes/docs-9-04-2025.mdx | 39 -- .../docs-release-notes/docs-9-12-2025.mdx | 94 ----- .../docs-release-notes/docs-9-25-2025.mdx | 36 -- .../browser-agent-v1.295.mdx | 39 -- .../browser-agent-v1.296.mdx | 34 -- .../browser-agent-v1.297.mdx | 27 -- .../browser-agent-v1.298.mdx | 34 -- .../browser-agent-v1.300.mdx | 44 --- .../browser-agent-v1.301.mdx | 34 -- .../node-api-runtime-1.2.mdx | 10 - .../node-browser-runtime-3.0.mdx | 10 - .../ping-runtime-1.53.mdx | 10 - .../ping-runtime-1.54.mdx | 10 - .../github-integration.mdx | 220 ----------- .../docs-release-notes/docs-10-10-2025.mdx | 61 --- .../docs-release-notes/docs-10-17-2025.mdx | 44 --- .../docs-release-notes/docs-7-25-2025.mdx | 267 ------------- .../docs-release-notes/docs-8-08-2025.mdx | 60 --- .../docs-release-notes/docs-8-14-2025.mdx | 112 ------ .../docs-release-notes/docs-9-04-2025.mdx | 39 -- .../docs-release-notes/docs-9-12-2025.mdx | 94 ----- .../docs-release-notes/docs-9-25-2025.mdx | 36 -- .../browser-agent-v1.295.mdx | 39 -- .../browser-agent-v1.297.mdx | 27 -- .../browser-agent-v1.298.mdx | 34 -- .../browser-agent-v1.300.mdx | 44 --- .../browser-agent-v1.301.mdx | 34 -- .../node-api-runtime-1.2.mdx | 11 - .../node-browser-runtime-3.0.mdx | 14 - .../ping-runtime-1.54.mdx | 10 - .../github-integration.mdx | 220 ----------- .../add-on-billing.mdx | 28 -- .../data-ingest-billing.mdx | 354 ------------------ .../docs-release-notes/docs-10-10-2025.mdx | 61 --- .../docs-release-notes/docs-10-17-2025.mdx | 44 --- .../docs-release-notes/docs-7-25-2025.mdx | 267 ------------- .../docs-release-notes/docs-8-01-2025.mdx | 99 ----- .../docs-release-notes/docs-8-08-2025.mdx | 60 --- .../docs-release-notes/docs-8-14-2025.mdx | 112 ------ .../docs-release-notes/docs-8-21-2025.mdx | 56 --- .../docs-release-notes/docs-9-04-2025.mdx | 39 -- .../docs-release-notes/docs-9-12-2025.mdx | 94 ----- .../docs-release-notes/docs-9-25-2025.mdx | 36 -- .../browser-agent-v1.295.mdx | 39 -- .../browser-agent-v1.296.mdx | 34 -- .../browser-agent-v1.297.mdx | 27 -- .../browser-agent-v1.298.mdx | 34 -- .../browser-agent-v1.300.mdx | 44 --- .../browser-agent-v1.301.mdx | 34 -- .../node-api-runtime-1.2.mdx | 10 - .../node-browser-runtime-3.0.mdx | 10 - .../ping-runtime-1.53.mdx | 10 - .../ping-runtime-1.54.mdx | 10 - .../github-integration.mdx | 220 ----------- .../add-on-billing.mdx | 28 -- .../data-ingest-billing.mdx | 354 ------------------ .../docs-release-notes/docs-10-10-2025.mdx | 61 --- .../docs-release-notes/docs-10-17-2025.mdx | 44 --- .../docs-release-notes/docs-7-25-2025.mdx | 267 ------------- .../docs-release-notes/docs-8-01-2025.mdx | 99 ----- .../docs-release-notes/docs-8-08-2025.mdx | 60 --- .../docs-release-notes/docs-8-14-2025.mdx | 112 ------ .../docs-release-notes/docs-8-21-2025.mdx | 56 --- .../docs-release-notes/docs-9-04-2025.mdx | 39 -- .../docs-release-notes/docs-9-12-2025.mdx | 94 ----- .../docs-release-notes/docs-9-25-2025.mdx | 36 -- .../browser-agent-v1.295.mdx | 39 -- .../browser-agent-v1.296.mdx | 34 -- .../browser-agent-v1.297.mdx | 27 -- .../browser-agent-v1.298.mdx | 34 -- .../browser-agent-v1.300.mdx | 44 --- .../browser-agent-v1.301.mdx | 34 -- .../node-api-runtime-1.2.mdx | 10 - .../node-browser-runtime-3.0.mdx | 10 - .../ping-runtime-1.53.mdx | 10 - .../ping-runtime-1.54.mdx | 10 - .../github-integration.mdx | 220 ----------- 109 files changed, 8034 deletions(-) delete mode 100644 src/i18n/content/es/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx delete mode 100644 src/i18n/content/es/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx delete mode 100644 src/i18n/content/es/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx delete mode 100644 src/i18n/content/es/docs/service-architecture-intelligence/github-integration.mdx delete mode 100644 src/i18n/content/fr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx delete mode 100644 src/i18n/content/fr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx delete mode 100644 src/i18n/content/fr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx delete mode 100644 src/i18n/content/fr/docs/service-architecture-intelligence/github-integration.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx delete mode 100644 src/i18n/content/jp/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx delete mode 100644 src/i18n/content/jp/docs/service-architecture-intelligence/github-integration.mdx delete mode 100644 src/i18n/content/kr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx delete mode 100644 src/i18n/content/kr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx delete mode 100644 src/i18n/content/kr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx delete mode 100644 src/i18n/content/kr/docs/service-architecture-intelligence/github-integration.mdx delete mode 100644 src/i18n/content/pt/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx delete mode 100644 src/i18n/content/pt/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx delete mode 100644 src/i18n/content/pt/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx delete mode 100644 src/i18n/content/pt/docs/service-architecture-intelligence/github-integration.mdx diff --git a/src/i18n/content/es/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx b/src/i18n/content/es/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx deleted file mode 100644 index 8f3bfc6661b..00000000000 --- a/src/i18n/content/es/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Facturación adicional (opcional) -tags: - - Accounts - - Accounts and billing - - New Relic pricing and billing -metaDescription: Add-ons are an optional billing factor -freshnessValidatedDate: '2024-10-23T00:00:00.000Z' -translationType: machine ---- - -Además de los factores de facturación principales de GB Ingested y usuario facturable, también puedes usar complementos facturables opcionales para ampliar tu experiencia con New Relic. - -* **Advanced Compute (anteriormente Add-on Compute)**: este complemento se aplica a la facturación basada en el uso de las acciones que ejecuta relacionadas con CodeStream, Live Archives y otras funciones disponibles. Se le mide y factura en función de su uso de [CCU avanzadas](/docs/licenses/license-information/product-definitions/new-relic-one-pricing-definitions/#compute-capacity-unit). - - - Su uso de CodeStream bajo Calcular avanzado generará cargos de CCU, independientemente del tipo de usuario. Esto significa que el usuario básico gratis puede acceder a Calcular característica avanzada y generar cargos por CCU avanzadas. - - -* **EU Data Center for Original Data or Data Plus**: Este complemento se aplica a su opción de datos (Datos Originales o Datos Plus) cuando selecciona la Unión Europea como su región de datos, según disponibilidad. - -* **Extended Retention for Original Data or Data Plus**: este complemento se aplica si excede el tiempo predeterminado durante el cual se conservan sus datos. Esto se aplica a todos sus datos, no solo a los logs, y es una buena opción si necesita realizar muchas consultas pequeñas o consultas sobre grandes volúmenes de datos. - -* **Live Archives**: amplíe la duración del almacenamiento de logs hasta siete años. Live Archives también requiere Calcular avanzado. - -* **New Relic Synthetic Checks**: este complemento se aplica si tus controles exceden la cantidad predeterminada de controles de monitoreo sintético. - -* **Security RX**: Esta característica está incluida con Data Plus, pero el complemento aplica si usas la característica Security RX sin Data Plus. \ No newline at end of file diff --git a/src/i18n/content/es/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx b/src/i18n/content/es/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx deleted file mode 100644 index 0871a750e10..00000000000 --- a/src/i18n/content/es/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx +++ /dev/null @@ -1,354 +0,0 @@ ---- -title: 'Datos: Facturación y reglas' -tags: - - Accounts - - Accounts and billing - - New Relic pricing and billing -metaDescription: 'For New Relic pricing, an explanation of how data ingest is calculated for billing purposes.' -freshnessValidatedDate: '2024-10-23T00:00:00.000Z' -translationType: machine ---- - -Para los precios de New Relic, los datos ingeridos por su organización de New Relic son un factor de facturación. - -## Más información sobre los costos [#costs] - -Si aún no es cliente de New Relic y tiene curiosidad sobre los costos, primero consulte [nuestra página principal de precios](https://newrelic.com/pricing). Si ya es cliente, siga leyendo para conocer detalles sobre la facturación de la ingesta de datos. - -## Ver la ingesta de datos en la UI [#ui] - -Para saber cómo encontrar información de uso y facturación en la UI, consulte [UI de facturación](/docs/accounts/accounts-billing/general-account-settings/introduction-account-settings). - -Para saber cómo ver y administrar su ingesta de datos, consulte [Administrar la ingesta](/docs/data-apis/manage-data/manage-data-coming-new-relic). - -## Opciones de datos: Data Plus y original [#data-prices] - -El precio de su organización por GB de datos ingeridos varía según la opción de datos que tenga su organización: **Data Plus** o nuestra opción **Original Data** . La opción Data Plus ofrece capacidades de datos avanzadas para optimizar el rendimiento, la escala, la seguridad y la gobernanza. Una organización New Relic solo puede tener una opción a la vez. - -Aquí hay una tabla con comparaciones de las dos opciones. Los precios y límites son mensuales y los precios están en USD. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Característica/habilidad - - **Original Data** opción - - **Data Plus** opción - - Más detalles característicos -
- [Ediciones](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing/#editions) - - Todas las ediciones - - Requiere Standard, Pro o Enterprise - - (Anotamos a continuación si una característica es específica de una edición) - -
- Límite de datos libres - - 100 GB ingeridos - - 100 GB ingeridos - -
- Precio de los datos
(más allá del límite libre) -
- $0,40/GB ingerido - - $0,60/GB ingerido - -
- Límite gratuito de retención de datos
([varía según el tipo de datos](/docs/data-apis/manage-data/manage-data-retention)) -
- Incumplimiento de al menos 8 días - - 90 días adicionales sobre el incumplimiento - -
- Precio por cada 30 días adicionales de retención
(más allá del límite gratuito) -
- +$0.05/GB - - +$0.05/GB - -
- Precio adicional para almacenar datos en [el centro de datos de la UE](/docs/accounts/accounts-billing/account-setup/choose-your-data-center)
-
- +$0.05/GB - - +$0.05/GB - - Los datos se almacenan en el centro de datos de EE. UU. de forma predeterminada. -
- [Límite máximo de consultas](/docs/query-your-data/nrql-new-relic-query-language/get-started/rate-limits-nrql-queries/#query-limits) - - Hasta 20 mil millones de puntos de datos por minuto - - Hasta 60 mil millones de puntos de datos por minuto - -
- [Duración máxima de la consulta](/docs/query-your-data/nrql-new-relic-query-language/get-started/rate-limits-nrql-queries/#query-duration) - - 1 minuto - - Hasta 10 minutos - -
- Elección del proveedor de la nube - - Proveedor único de nube - - Azure o múltiples proveedores de nube - - Elija su proveedor de nube preferido para su carga de trabajo de observabilidad para alinear su almacenamiento de telemetría con su modelo de despliegue de ingeniería y preferencia de nube. -
- [Ofuscación de logs](/docs/logs/ui-data/obfuscation-ui/) - - Enmascarar [automáticamente](/docs/logs/get-started/new-relics-log-management-security-privacy/#log-obfuscation) patrones conocidos de tarjetas de crédito y números de Seguro Social en los logs. - - Cree y realice un seguimiento de reglas directamente en laUI y [enmascarar o aplicar hash](/docs/logs/ui-data/obfuscation-ui/) a datos log sensibles. - -
- [New Relic Gestión de vulnerabilidades](/docs/vulnerability-management/overview)
(solo usuario de plataforma completa) -
- +$0.10/GB
(más allá del límite gratuito) -
- Standard, Pro, y Enterprise - - Identifique vulnerabilidades y aborde los riesgos en cada etapa del ciclo de vida del software. -
- Elegibilidad [FedRAMP Moderate](/docs/security/security-privacy/compliance/fedramp-compliant-endpoints) y [HIPAA](/docs/security/security-privacy/compliance/hipaa-readiness-new-relic) - - - - Empresa - - Logre el cumplimiento de la seguridad a través de configuraciones que lo ayuden a cumplir con los requisitos de FedRAMP e HIPAA. -
- [Exportación de streaming de datos](/docs/apis/nerdgraph/examples/nerdgraph-streaming-export) - - - - Standard, Pro, y Enterprise - - Configure reglas para exportar simultáneamente telemetry data al almacenamiento de AWS o Azure de su elección. Se aplicarán tarifas de exportación adicionales al proveedor de la nube. -
- [Exportación de datos históricos](/docs/apis/nerdgraph/examples/nerdgraph-historical-data-export) - - - - Standard, Pro, y Enterprise - - Ejecute consultas más amplias sin tiempo de espera para análisis y modelado históricos, almacenamiento a largo plazo e integración con otras plataformas de análisis de datos. -
- Servicio New Relic nativa de Azure - - - - Standard, Pro, y Enterprise
([con algunas limitaciones](#azure-native-data-plus)) -
-
- -Para ver una comparación lado a lado de Data Plus y nuestra opción de datos original, consulte [nuestra hoja de datos de Data Plus](https://newrelic.com/resources/datasheets/data-plus). - -¿Interesado en Datos Plus? Consulte [Actualizar a Data Plus](#upgrade-data-plus). - -### Detalles del servicio Azure Native New Relic [#azure-native-data-plus] - -Con el [servicio Azure Native New Relic](/docs/infrastructure/microsoft-azure-integrations/get-started/azure-native), puede recopilar y almacenar sus telemetry data para aplicaciones e infraestructura directamente en Azure. Esta característica está incluida con Data Plus, pero con estas limitaciones: - -* Disponible solo en la región del centro de datos de EE. UU. -* Elegibilidad para FedRAMP Moderado/HIPAA no disponible -* Exportación de datos históricos no disponible - -## Actualice a Datos Plus [#upgrade-data-plus] - -Para actualizar a Data Plus, vaya a la [UI**Data retention** ](/docs/data-apis/manage-data/manage-data-retention/#adjust-retention)en el centro de administración de datos y haga clic en **Upgrade retention**. - -* Nota: Es posible que veas un botón **Edit data retention**, pero es diferente del botón **Upgrade retention**. -* Para ver el botón **Upgrade retention** , debes tener [permisos de facturación](/docs/accounts/accounts-billing/new-relic-one-user-management/user-management-concepts/#admin-settings). Si cumple con los requisitos y aún no ve la opción **Upgrade retention** , hable con su representante de cuenta de New Relic. - -## ¿Qué se considera GB ingeridos facturables? [#usage-calculation] - -En el contexto del [plan de precios de New Relic](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing), "datos ingeridos" se refiere a los datos guardados en New Relic por su organización después de que aplicamos varias reglas de recorte y transformación de datos. En otras palabras, no es la cantidad de datos sin procesar enviados a New Relic, sino el tamaño de los datos que realmente terminan almacenándose. - -En general, los datos que generamos para proporcionar nuestra función no cuentan para sus GB ingeridos. Algunos ejemplos de datos de características y relacionados con ellas que no cuentan para GB ingeridos incluyen: - -* [Funcionalidad de alerta básica](/docs/alerts-applied-intelligence/new-relic-alerts/learn-alerts/alerts-concepts-workflow). Por ejemplo, `NrAiIncident`, un evento empleado para generar estas características, no cuenta para los GB ingeridos. -* Datos creados a partir de datos brutos agregados (por ejemplo, [datos de infraestructura agregados](/docs/data-apis/manage-data/manage-data-retention/#infrastructure-data) o [datos métricos dimensionales](/data-apis/manage-data/manage-data-retention/#dimensional-metrics)). -* [Métricas doradas](/docs/apis/nerdgraph/examples/golden-metrics-entities-nerdgraph-api-tutorial) (para más información sobre métricas doradas, consulte nuestras [definiciones de entidad](https://github.com/newrelic/entity-definitions)). -* Check de monitoreo sintético. Para obtener detalles sobre la facturación de Sintético, consulte [Límites y precios de Sintético](/docs/synthetics/synthetic-monitoring/using-monitors/monitor-limits). -* Datos de seguimiento de uso y facturación (por ejemplo, `NrConsumption`). -* Datos relacionados con la administración de la cuenta (por ejemplo, `NrIntegrationError`, `NrAuditEvent`). - -Para comprender su uso, consulte la [UI de uso](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing#usage-ui). - -## Otros detalles de cálculo [#calculation-details] - -* En el contexto de nuestro modelo de precios, un GB se define como mil millones de bytes. -* Los GB ingeridos mensualmente se redondean al número entero más cercano. Por ejemplo, si su organización emplea 100,9 GB durante un mes, eso se cuenta como 100 GB. - -## Edición gratuita [#free-tier-limits] - -Para obtener detalles sobre GB Ingested para nuestra edición gratis, consulte [Edición gratis](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing/#free). - -## Aprende más [#related-docs] - -* Para obtener más información sobre cómo gestionar GB ingeridos, consulte [Gestionar la ingesta de datos](/docs/data-apis/manage-data/manage-data-coming-new-relic). -* Para saber cómo consultar el uso, consulte [consulta y alerta de uso](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/usage-queries-alerts). \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx b/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx deleted file mode 100644 index cbd9b118434..00000000000 --- a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx +++ /dev/null @@ -1,61 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-10-10' -version: 'Oct 06 - Oct 10, 2025' -translationType: machine ---- - -### Nuevos documentos - -* Se agregó [la función de recopilar marcas y medidas con el agente del navegador](/whats-new/2025/09/whats-new-10-02-browser-marks-and-measures) para brindar orientación sobre cómo capturar marcas y medidas de rendimiento para monitorear la duración de las tareas en la aplicación sitio web. -* Se agregó [No hay datos con la conexión automática Kubernetes APM ](/docs/apm/agents/ruby-agent/troubleshooting/no-data-kubernetes-auto-attach)para brindar orientación sobre la resolución de problemas para aplicaciones Ruby que emplean la conexión automática Kubernetes APM con un marco que no sea Rails. - -### Cambios importantes - -* [Diccionario de atributos](/attribute-dictionary) actualizado con avisos de desuso para el evento `BrowserTiming` y descripciones mejoradas de la funcionalidad del agente del navegador para una mayor precisión de referencia técnica. -* [APIde reglas de nubePipeline ](/docs/new-relic-control/pipeline-control/cloud-rules-api)mejorada con orientación completa sobre cómo habilitar, deshabilitar y volver a habilitar reglas cloud para un mejor control operativo. - -### Cambios menores - -* Se actualizó la terminología de precios en [la facturación de Live Archives](/docs/logs/get-started/live-archives-billing) de "unidad de capacidad de computación" a "Unidad de capacidad de computación avanzada" para mejorar la precisión. -* Se mejoró la organización de las instrucciones [de configuración de Control del agente](/docs/new-relic-control/agent-control/setup) reubicando el mensaje de sugerencia y eliminando contenido duplicado para una guía de instalación optimizada. -* Documentación de automatización de flujo de trabajo actualizada con los últimos cambios en [el catálogo de acciones](/docs/workflow-automation/setup-and-configuration/actions-catalog), [las API de programación](/docs/workflow-automation/create-a-workflow-automation/start-schedule) y la configuración de plantillas para una mejor sincronización de la plataforma. -* [Anuncio mejorado deNew Relic Control](/whats-new/2025/09/whats-new-30-09-new-relic-control) con mensajes refinados y descripciones de funciones más claras para el lanzamiento de GA del agente de control de flota. - -### Notas de la versión - -* Mantener actualizado con nuestros últimos lanzamientos: - - * [Agente Ruby v9.22.0](/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-22-0): - - * Se agregó instrumentación de un solo paso para Kubernetes (ahora disponible de forma general). - * Se agregaron avisos de desuso para la compatibilidad con Ruby 2.4 y 2.5. - * Se agregó un aviso de desuso para el comando `newrelic deployments` . - * Se garantizó la compatibilidad con los cambios de Ruby 3.5 en el método #source\_location. - - * [Agente .NET v10.45.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-45-0): - - * Se agregó un nuevo muestreador de distribución de rastreo, el muestreador basado en relación TraceId. - * Se corrigieron excepciones en el análisis de cadenas de conexión MSSQL que podían deshabilitar el almacenamiento de datos instrumentación. - * Se resolvieron problemas con la compatibilidad de la instrumentación "Consume" de Kafka. - - * [Agente Python v11.0.1](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-110001): - - * Se evitó la activación temprana en la instrumentación de Django. - * Se solucionaron los problemas de sincronización de la configuración del servidor fijo con la configuración local. - * Se agregaron protecciones contra fallas de trace\_cache.pop(). - - * [agente de infraestructura v1.69.0](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1690): - - * Se actualizó el SDK de AWS de V1 a V2. - * Biblioteca API Docker actualizada de v26 a v28. - * Se solucionó el manejo de la CPU Windows para instancias con múltiples grupos de CPU. - - * [Agente iOS v7.5.11](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-7511): - - * Se corrigieron problemas de rendimiento que podían ocurrir al usar el seguimiento de interacciones. - * Se corrigió un log relacionado con el rastreo distribuido que podía mostrar incorrectamente. - - * [Tiempo de ejecución del navegador de Node v3.0.55](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.55): - - * Se corrigieron vulnerabilidades subyacentes de Ubuntu que abordan múltiples CVE de seguridad. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx b/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx deleted file mode 100644 index f9e38dfade4..00000000000 --- a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-10-17' -version: 'October 13 - October 17, 2025' -translationType: machine ---- - -### Cambios importantes - -* [Integración de GitHub actualizada para Inteligencia para arquitectura de servicios](/docs/service-architecture-intelligence/github-integration) con amplias revisiones para mejorar la claridad y agregar nuevas opciones de gestión organizacional. -* Se reestructuró [la descripción general del control del agente](/docs/new-relic-control/agent-control/overview) y la documentación del control del agente relacionada para mejorar la organización y la claridad a medida que la función alcanzó la disponibilidad general. - -### Cambios menores - -* Se agregó la sección de importación masiva de usuarios a [UI de administración de usuarios y tareas comunes](/docs/accounts/accounts-billing/new-relic-one-user-management/user-management-ui-and-tasks). -* Se agregó mapeo de cuota de recursos para OTEL a [mapeo de métricas New Relic OTel K8s ](/docs/kubernetes-pixie/kubernetes-integration/installation/k8s-otel-metrics). -* [Instalación y configuración actualizada de la integración de New Relic eBPF](/docs/ebpf/k8s-installation) e [Instalación y configuración actualizada de la integración de New Relic eBPF](/docs/ebpf/linux-installation) con mejoras de instalación y configuración. -* [Integración de alertas notificación](/docs/alerts/get-notified/notification-integrations) actualizada para mayor claridad. -* Se corrigió la versión de compatibilidad para [integración de monitorización de contenedores Docker](/docs/infrastructure/host-integrations/host-integrations-list/docker-container-monitoring-integration). -* Compatibilidad de versiones de Kubernetes actualizada en [la integración de Kubernetes: compatibilidad y requisitos](/docs/kubernetes-pixie/kubernetes-integration/get-started/kubernetes-integration-compatibility-requirements). -* Límite máximo de atributo por métrica actualizado en [límites API métricos y atributo restringido](/docs/data-apis/ingest-apis/metric-api/metric-api-limits-restricted-attributes). - -### Notas de la versión - -* Mantener actualizado con nuestros últimos lanzamientos: - - * [Agente deNode.js v13.5.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-5-0): - - * Se actualizó `fastify` instrumentación para suscribir al evento emitido. - * Se actualizó `pg` y `pg-native` instrumentación para suscribir al evento emitido. - * Se actualizó `config.instrumentation.timers.enabled` a falso para deshabilitar `timers.setTimeout` y `timers.setInterval` de forma predeterminada. - * Se agregó una nueva clase base de diagnóstico y se migró undici para usar la nueva clase. - - * [Integración Kubernetes v3.46.0](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-46-0): - - * Se agregó soporte para v1.34 y se eliminó el soporte para v1.29. - * Se actualizó golang.org/x/crypto a v0.42.0. - * Alpine actualizado a v3.22.2. - * Paquetes de Kubernetes actualizados a v0.34.1. - - * [Agente .NET MAUI v1.1.13](/docs/release-notes/mobile-release-notes/net-maui-release-notes/net-maui-agent-1113): - - * Agente nativo Android actualizado a la versión 7.6.10. - * Agente nativo de iOS actualizado a la versión 7.5.11. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx b/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx deleted file mode 100644 index 51fc687f2f9..00000000000 --- a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx +++ /dev/null @@ -1,267 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-07-25' -version: 'June 13 - July 24, 2025' -translationType: machine ---- - -### Nuevos documentos - -* Se agregó una nueva característica sobre [Cómo depurar problemas del agente New Relic Browser ](/docs/browser/new-relic-browser/troubleshooting/how-to-debug-browser-agent/), que incluye logging detallado, monitoreo de solicitudes de red e inspección de eventos para una resolución mejorada de problemas en las versiones del agente 1.285.0 y superiores. -* Se agregó compatibilidad con [Azure Functions](/docs/serverless-function-monitoring/azure-function-monitoring/introduction-azure-monitoring/) para la supervisión de funciones `python` y `.node.js`. -* Se agregó [un optimizador de costos](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-optimizer/) para obtener información procesable valiosa para mejorar la eficiencia del cálculo, con una función para identificar ineficiencias, brindar recomendaciones de optimización y estimar ahorros de CCU en la plataforma New Relic. -* Se agregó [Inteligencia para costos en la nube](/docs/cci/getting-started/overview), que ofrece herramientas para la visibilidad y la gestión de los costos cloud, incluidas características como desgloses completos de costos, asignación de costos Kubernetes, estimación de costos en tiempo real y recopilación de datos entre cuentas, y que actualmente solo admite los costos AWS cloud. -* Se agregó [la observabilidad OpenTelemetry para Kubernetes con la integración independiente del proveedor de la característica New Relic](/docs/kubernetes-pixie/k8s-otel/intro/) para un monitoreo continuo del clúster a través del diagrama Helm, mejorando las señales de telemetría para métricas, eventos y logs transmitidos a las herramientas y el tablero de New Relic. -* Se agregó [limitación y resolución de problemas para la integración Windows](/docs/kubernetes-pixie/kubernetes-integration/troubleshooting/troubleshooting-windows/) -* Se agregó la integración de AWS a través de [CloudFormation y CloudWatch Metric Streams](/docs/infrastructure/amazon-integrations/aws-integration-for-metrics/via-cloudformation-cwms/), lo que admite el sondeo de API para servicios no compatibles. -* Se agregó [una etiqueta mejorada para la base de datos de entidad New Relic ](/docs/infrastructure/host-integrations/db-entity-tags/)para la base de datos de entidad monitoreada mediante integración en el host para MySQL y MS SQL Server, enriqueciendo metadatos, información valiosa y organización en New Relic sin afectar la facturación o la telemetría existente. - -### Cambios importantes - -* Se agregaron funciones no agregadoras a [las referenciasNRQL ](/docs/nrql/nrql-syntax-clauses-functions/#non-aggregator-functions/). -* Se actualizaron los [requisitos del agenteRuby y el marco compatible](/docs/apm/agents/ruby-agent/getting-started/ruby-agent-requirements-supported-frameworks/). -* Se agregaron logs como evento personalizado New Relic a los [logs OpenTelemetry en el documento New Relic](/docs/opentelemetry/best-practices/opentelemetry-best-practices-logs/#custom-events). -* Se actualizaron los tiempos de ejecución compatibles con Linux, Windows y funciones en contenedores en el documento [Compatibilidad y requisitos para funciones instrumentadas Azure Functions](/docs/serverless-function-monitoring/azure-function-monitoring/compatibility-requirement-azure-monitoring/#supported-runtimes). -* Se actualizaron los datos métricos de [Confluent integración en la nube](/docs/message-queues-streaming/installation/confluent-cloud-integration/#metrics). -* Se eliminó GCP Cloud Run de [la configuración del agente Node.js.](/docs/apm/agents/nodejs-agent/installation-configuration/nodejs-agent-configuration/) -* Se actualizó [la compatibilidad y los requisitos para el monitoreo de IA](/docs/ai-monitoring/compatibility-requirements-ai-monitoring/) para incluir bibliotecas adicionales compatibles con el agente .NET. -* Se agregó New Relic telemetría dualstack extremo al [tráfico de redNew Relic ](/docs/new-relic-solutions/get-started/networks/#new-relic-endpoints). -* Se agregó `GcpHttpExternalRegionalLoadBalancerSample` a la [integración de monitoreo de Google Cloud Load Balancing](/docs/infrastructure/google-cloud-platform-integrations/gcp-integrations-list/google-cloud-load-balancing-monitoring-integration/). -* Se agregó el procedimiento de inicio de OpenShift sobre cómo [instalar el documento del administrador de trabajos Sintéticos](/docs/synthetics/synthetic-monitoring/private-locations/install-job-manager/#-install). -* Se actualizó la [versión 12 del agente Node.js.](/docs/apm/agents/nodejs-agent/installation-configuration/update-nodejs-agent/) -* Se agregó una integración perfecta para [AWS con New Relic empleando CloudFormation y CloudWatch Metric Streams](/docs/infrastructure/amazon-integrations/aws-integration-for-metrics/via-cloudformation-cwms/), incluido soporte para sondeo de API. - -### Cambios menores - -* Se agregó `Transaction` como periodo de retención para [la traza de la transacción](/docs/data-apis/manage-data/manage-data-retention/#retention-periods/). -* Se agregó `Destination` como una nueva categoría a [Reglas y límites de alerta](/docs/alerts/admin/rules-limits-alerts/). -* Se agregó una llamada en [el documento Introducción al servicio New Relic nativo de Azure](/docs/infrastructure/microsoft-azure-integrations/get-started/azure-native/) para garantizar que las configuraciones de diagnóstico en los recursos de Azure estén configuradas correctamente o deshabilitar el reenvío a través del servicio New Relic nativo de Azure para evitar que los datos se envíen a la plataforma New Relic. -* Se actualizó la última biblioteca compatible con [el agente .NET](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements/). -* Se agregó una llamada en el documento [de notas de la versión del agente de iOS](/docs/release-notes/mobile-release-notes/ios-release-notes/index/) para anunciar que, a partir de la versión 7.5.4 del SDK de iOS, Un cambio ahora da como resultado el reporte de eventos de excepción manejados que anteriormente se suprimieron. -* Se actualizaron los requisitos para las relaciones servicio-contenedor para especificar el atributo de recurso para entornos Kubernetes y `container.id` para entornos que no son-Kubernetes, lo que garantiza una configuración de telemetría adecuada para [los recursos de OpenTelemetry en New Relic](/docs/opentelemetry/best-practices/opentelemetry-best-practices-resources/). -* Se agregó compatibilidad CLI para la instalación de versiones [específicas del agente de infraestructura](/docs/infrastructure/infrastructure-agent/new-relic-guided-install-overview/#install-specific-versions), lo que permite una implementación consistente y compatibilidad del sistema; especifique la versión usando `@X.XX.X` en el nombre de la receta. -* Se agregó un llamado para enfatizar los requisitos de acceso de roles para usar las funciones **Manage Account Cardinality**, **Manage Metric Cardinality** y **Create Pruning Rules** en la UI; cerciorar de que las licencias estén configuradas en [Administración de cardinalidad](/docs/data-apis/ingest-apis/metric-api/cardinality-management/#attributes-table). -* Se actualizó la [compatibilidad y los requisitos para el agente Node.js](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent/) a `v12.23.0`. -* Se agregaron las licencias mínimas requeridas para configurar un [Elasticsearch](/docs/infrastructure/host-integrations/host-integrations-list/elasticsearch/elasticsearch-integration). -* Se actualizó el uso máximo aceptable del atributo `FACET` de los límites de 5000 a 20000 valores para [la sintaxis de alerta NRQL](/docs/alerts/create-alert/create-alert-condition/create-nrql-alert-conditions/). - -### Notas de la versión - -* Se anunció el 7 de enero de 2026 como la fecha de finalización de la vida útil de las [reglas de lanzamiento dirigidas a eventos de infraestructura en `SystemSample`, `ProcessSample`, `NetworkSample` y `StorageSample`](/eol/2025/05/drop-rule-filter/) - -* Con vigencia inmediata, el fin de la vida útil de [FACET en messageId y timestamp en condición de alerta](/eol/2025/07/deprecating-alert-conditions/). - -* Se anunció el 28 de octubre de 2025 como la fecha de finalización de la vida útil de [Atención requerida](/eol/2025/07/upcoming-eols/). - -* Consulta nuestras publicaciones de Novedades: - - * [Enviar notificación directamente a Microsoft Teams](/whats-new/2025/03/whats-new-03-13-microsoft-teams-integration/) - * [¡New Relic Compute Optimizer ya está disponible de forma general!](/whats-new/2025/06/whats-new-06-25-compute-optimizer/) - * [Logs de consultas de cuentas cruzadas en el Explorador de consultas unificado](/whats-new/2025/07/whats-new-07-01-logs-uqe-cross-account-query/) - * [¡El monitoreo de Kubernetes con OpenTelemetry ya está disponible de manera general!](/whats-new/2025/07/whats-new-7-01-k8s-otel-monitoring/) - * [La monitorización de nodos Windows para Kubernetes ahora está en versión preliminar pública](/whats-new/2025/07/whats-new-07-04-k8s-windows-nodes-preview/) - * [Identificar problemas de rendimiento: filtrado avanzado para páginas vistas y Core Web Vitals](/whats-new/2025/07/whats-new-07-09-browser-monitoring/) - * [Ahora puedes ordenar por errores más recientes](/whats-new/2025/07/whats-new-7-08-ei-sort-by-newest/) - * [Tus datos del navegador, tus términos: Nuevas opciones de control](/whats-new/2025/07/whats-new-07-10-browser-monitoring/) - * [Análisis de consulta profunda para base de datos ahora disponible de forma general](/whats-new/2025/07/whats-new-07-24-db-query-performance-monitoring/) - * [Las predicciones NRQL y las alertas predictivas ya están disponibles de forma general](/whats-new/2025/07/whats-new-7-22-predictive-analytics/) - * [Convergencia APM + OpenTelemetry GA](/whats-new/2025/07/whats-new-07-21-apm-otel/) - * [La integración de Agentic para GitHub Copilot y ServiceNow ya está disponible de forma general](/whats-new/2025/07/whats-new-7-15-agentic-ai-integrations/) - -* Mantener actualizado con nuestros últimos lanzamientos: - - * [Tiempo de ejecución de la API de Node v1.2.119](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.119/) - * Se corrigieron problemas de vulnerabilidades. - - * [Tiempo de ejecución de ping v1.51.0](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.119/) - - * Se corrigieron las vulnerabilidades del núcleo logback durante el tiempo de ejecución de ping. - * Se corrigieron las vulnerabilidades del servidor Jetty durante el tiempo de ejecución de ping. - * Se corrigieron las vulnerabilidades de Ubuntu para el tiempo de ejecución de ping. - - * [Agente de Browser v1.292.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.292.0/) - - * Actualizar la definición `BrowserInteraction` y `previousUrl`. - * Se agregó evento de inspección adicional. - * Valor fijo `finished` API `timeSinceLoad`. - - * [Integración Kubernetes v3.42.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-42-1/) - * Se corrigieron los ajustes internos backend y relacionados con CI para compatibilidad futura con plataformas. - - * [Administrador de trabajos v444](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-444/) - * Se solucionó un problema que impedía que ciertos clientes vieran resultados para algunos monitores con tiempos de ejecución más prolongados. - - * [Agente de Python v10.14.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101400/) - - * Se agregó soporte para `Azure Function Apps`. - * Se corrigieron los archivos `pb2` para habilitar el soporte `protobuf v6`. - - * [Agente Android v7.6.7](/docs/release-notes/mobile-release-notes/android-release-notes/android-767/) - - * Rendimiento mejorado para resolver ANR al informar logs. - * Se solucionó un problema para continuar informando logs al finalizar la aplicación. - * Se resolvió un problema con la aplicación de monitoreo de estado y transmisión de datos. - * Se mejoraron algunas complicaciones al activar el modo estricto. - - * [Integración Kubernetes v3.42.2](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-42-2/) - - * Actualizado `golang.org/x/crypto` a `v0.39.0`. - * Actualizado `go` a `v1.24.4`. - - * [Agente .NET v10.42.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-42-0/) - - * Se agregó soporte para Azure Service Bus. - * Se corrigieron errores de compilación del generador de perfiles con la última versión de VS. - - * [agente PHP v11.10.0.24](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-11-10-0-24/) - - * Se agregó API de tiempo de ejecución de Composer para usarla de manera predeterminada para detectar paquetes empleados por la aplicación PHP. - * Se solucionó el comportamiento indefinido cuando se ejecuta la API de tiempo de ejecución de Composer. - - * [Tiempo de ejecución del navegador de nodos v3.0.32](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.32/) - * Opciones de creación de Chrome actualizadas para Chrome 131. - - * [Aplicación móvil para iOS v6.9.8](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6098/) - * Se mejoró la función Ask AI con una conexión de socket más robusta y confiable, cerciorando una experiencia perfecta. - - * [Aplicación móvil para Android v5.29.7](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5297/) - * Se mejoró la función Ask AI con una conexión de socket más robusta y confiable, cerciorando una experiencia perfecta. - - * [Agente de Node.js v12.22.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-22-0/) - - * Se agregó soporte para transmisión `openai` v5. - * Se agregó soporte para la API `openai.responses.create`. - * Se corrigió el log de error para el encabezado de estado de seguimiento no definido. - - * [agente de infraestructura v1.65.0](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1650/) - - * Dependencia actualizada `newrelic/nri-winservices` a `v1.2.0` - * Etiqueta de Docker Alpine actualizada a `v3.22` - - * [agente de infraestructura v1.65.1](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1651/) - * actualizar la dependencia `newrelic/nri-flex` a `v1.16.6` - - * [Agente de Browser v1.292.1](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.292.1/) - * Se corrigió la precedencia de la condición de carrera del atributo personalizado. - - * [NRDOT v1.2.0](/docs/release-notes/nrdot-release-notes/nrdot-2025-06-26/) - * Se elevó el núcleo beta de OTEL a `v0.128.0` - - * [Agente de medios para HTML5.JS v3.0.0](/docs/release-notes/streaming-browser-release-notes/streaming-browser-agent-25-04-15/) - - * Se introdujo un nuevo tipo de evento. - * El tipo de evento `PageAction` quedó obsoleto. - - * [Agente de medios para HTML5.JS v3.1.1](/docs/release-notes/streaming-browser-release-notes/streaming-browser-agent-25-06-15/) - - * Se habilitó la publicación npm para el paquete, lo que garantiza una fácil accesibilidad y distribución. - * Se agregaron las compilaciones `cjs`, `esm` y `umd` a la carpeta `dist`, lo que garantiza la compatibilidad con los formatos de módulos CommonJS, ES y UMD. - - * [Agente multimedia para Roku v4.0.0](/docs/release-notes/streaming-others-release-notes/streaming-others-agent-25-02-25/) - - * Se introdujo un nuevo tipo de evento. - * El tipo de evento `RokuVideo` quedó obsoleto. - * El tipo de evento `RokuSystem` quedó obsoleto. - - * [Agente multimedia para Roku v4.0.1](/docs/release-notes/streaming-others-release-notes/streaming-others-agent-25-04-22/) - * El nombre `errorName` renombrado con `errorMessage` como `errorName` quedó obsoleto. - - * [Administrador de trabajos v447](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-447/) - * Actualización de la imagen base fija de `ubuntu 22.04` a `ubuntu 24.4` - - * [Tiempo de ejecución de ping v1.52.0](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.52.0/) - * Actualización de imagen base mejorada de `ubuntu 22.04` a `ubuntu 24.04` - - * [Integración Kubernetes v3.43.0](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-0/) - * Se agregó soporte para la monitorización de nodos Windows en el clúster de Kubernetes. - - * [Aplicación móvil para Android v5.29.8](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5298/) - * Se corrigió un error y se mejoró UI para una experiencia más fluida. - - * [Agente de Node.js v12.23.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-23-0/) - - * Se agregó la capacidad de informar solo sobre los tramos de entrada y salida. - * Se agregó compatibilidad con Node.js 24. - * Reporte de compatibilidad actualizado. - - * [Tiempo de ejecución de la API de Node v1.2.120](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.120/) - * Se corrigieron las vulnerabilidades de `CVE-2024-39249` - - * [Aplicación móvil para iOS v6.9.9](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6099/) - * Se mejoró la característica Ask AI con símbolo dinámico. - - * [Agente de Browser v1.293.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.293.0/) - - * Se agregó mensaje interno **de tareas largas**. - * Se solucionó el problema que impedía deshabilitar el rastreo distribuido. - - * [Tiempo de ejecución del navegador de nodos v3.0.35](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.35/) - * Imagen base mejorada - - * [Agente de Java v8.22.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8220/) - - * Metadatos vinculados para servicios de aplicaciones Azure. - * Se eliminó la instrumentación `MonoFlatMapMain`. - - * [Agente de Node.js v12.24.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-24-0/) - - * Se implementó un límite de tamaño de valor de atributo configurable - * Reporte de compatibilidad actualizado. - - * [Integración Kubernetes v3.43.2](docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-2/) - * Actualizar la versión del gráfico kube-state-métrica de `5.12.1` a `5.30.1` - - * [Agente iOS v7.5.7](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-757/) - * Se solucionó un problema que podía provocar que rastreo distribuido no tuviera toda la información de cuenta requerida al inicio de una sesión. - - * [Aplicación móvil para Android v5.29.9](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5299/) - * Se mejoró la retroalimentación con representación de UI dinámica. - - * [Aplicación móvil para Android v5.30.0](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-53000/) - * Se corrigieron errores y se actualizaron las banderas de Teams GA para una mejor experiencia de usuario. - - * [Go agente v3.40.1](/docs/release-notes/agent-release-notes/go-release-notes/go-agent-3-40-1/) - - * Utilización revertida. Vuelva a la versión v3.39.0 debido a un error de bloqueo. - * Se eliminaron las pruebas awssupport\_test.go que agregaron dependencia directa al módulo go - - * [Agente de Flutter v1.1.12](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1112/) - - * Se mejoró el agente nativo de Android actualizado a la versión 7.6.7 - * Se mejoró el agente nativo de iOS actualizado a la versión 7.5.6 - - * [Agente de Node.js v13.0.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-0-0/) - - * Se eliminó el soporte para Node.js 18 - * Se actualizó la versión mínima compatible para `fastify` a 3.0.0. `pino` a 8.0.0 y `koa-router` a 12.0.0 - - * [Agente de Browser v1.294.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.294.0/) - * Reporte corregido: URL anterior vacía como indefinida - - * [agente de infraestructura v1.65.4](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1654/) - * Se actualizó la dependencia `newrelic/nri-prometheus` a v2.26.2 - - * [Aplicación móvil para iOS v6.9.10](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6100/) - * Se mejoró la retroalimentación con representación de UI dinámica. - - * [Agente NDK Android v1.1.3](/docs/release-notes/mobile-release-notes/android-release-notes/android-ndk-113/) - * Se agregó soporte para tamaño de página de 16 KB - - * [agente de infraestructura v1.65.3](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1653/) - - * Se modificó el identificador del proceso de Windows. - * Subió `nri-docker` a `v2.5.1`, `nri-prometheus` a `v2.26.1` - - * [Agente .NET v10.43.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-43-0/) - * Se agregó compatibilidad con temas para Azure Service Bus - - * [Agente de Node.js v12.25.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-25-0/) - * Se corrigió el instrumento AWS Bedrock Converse API - - * [Agente de Node.js v12.24.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-24-0/) - - * Se implementó un límite de tamaño de valor de atributo configurable - * Reporte de compatibilidad actualizado - - * [CLI de diagnóstico (nrdiag) v3.4.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-340/) - * Se resolvieron los errores relacionados con GLIBC, como `/lib64/libc.so.6: version 'GLIBC_2.34'` no encontrado. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx b/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx deleted file mode 100644 index 168add677e4..00000000000 --- a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx +++ /dev/null @@ -1,99 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-01' -version: 'July 25 - August 01, 2025' -translationType: machine ---- - -### Nuevos documentos - -* Se agregó [documentación de Cotizaciones de Calcular](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-budgets/overview) para brindarle un mecanismo para monitorear y alertar sobre el uso de su Unidad de Consumo de Calcular (CCU). - -### Cambios importantes - -* [Compatibilidad y requisitos](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent) actualizados para el agente Node.js. - -* [Compatibilidad y requisitos actualizados para Alpine Linux](/docs/apm/agents/php-agent/getting-started/php-agent-compatibility-requirements) para el agente PHP. - -* Se actualizaron los requisitos específicos del agente para [el control de tuberías](/docs/new-relic-control/pipeline-control/modify-agent-configuration). - -* Se actualizó el JFR relacionado con los requisitos de configuración para [el agente de Java](/docs/apm/agents/java-agent/configuration/java-agent-configuration-config-file#jfr-harvest-interval). - -* Se actualizó la información de precios y facturación de New Relic en: - - * [Datos: Facturación y reglas](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing) - * [Consultas y alertas relacionadas con el uso](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/usage-queries-alerts) - * [Plan de uso de New Relic](/docs/licenses/license-information/usage-plans/new-relic-usage-plan) - -### Cambios menores - -* Se aclaró el lenguaje en el agente .NET para capturar el parámetro SQL en el documento [de compatibilidad del agente y requisitos de .NET](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements). -* Se perfeccionó el lenguaje en [Oracle base de datos monitoreo integración](/docs/infrastructure/host-integrations/host-integrations-list/oracle-database-monitoring-integration). - -### Notas de la versión - -* Consulta nuestras publicaciones de Novedades: - - * [Calcular Cotizaciones ahora disponibles de forma general](/whats-new/2025/07/whats-new-7-30-compute-budgets). - * [Mejorar la experiencia del usuario: aprovechar Session Replay para optimizar los elementos esenciales de la web](/whats-new/2025/07/whats-new-7-31-augmenting-user-experiences-browser). - -* Mantener actualizado con nuestros últimos lanzamientos: - - * [AgenteAndroid v7.6.8](/docs/release-notes/mobile-release-notes/android-release-notes/android-768): - - * Se solucionó un problema en el que el rastreo de stack para errores de Unity no se mostraba correctamente. - * Se solucionó un problema que impedía que se registrara el resumen métrico cuando la aplicación volvía al primer plano luego de su lanzamiento inicial. - * Se solucionó un problema por el cual un JSON no válido en las entradas de registro podía provocar errores. - - * [CLI de diagnóstico (nrdiag) v3.4.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-341): - * Se agregó `K8s/AgentControl/agent-control-install-job-logs` para recopilar los logs generados por la instalación del control del agente. - - * [Administrador de trabajos v451](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-451): - - * Se corrigieron vulnerabilidades relacionadas con `common-lang3` Java y Ubuntu para abordar problemas de seguridad en SJM. - * Se implementaron cambios en la migración de la cola del procesador relacionados con la migración de nuestra arquitectura de servicio interna. - * Se solucionó un problema para incluir detalles completos de la excepción para proporcionar un mejor contexto para la resolución de problemas en los logs de SJM. - - * [Aplicación móvil para Android v5.30.1](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5301): - * Se mejoró la experiencia de inicio de sesión. - - * [Aplicación móvil para iOS v7.5.8](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-758): - - * Construí el agente usando Xcode 16.4. - * Se solucionó un problema que podía provocar que rastreo distribuido no tuviera toda la información de cuenta requerida al inicio de una sesión. - * Se solucionó un problema que podía provocar un bloqueo al iniciar el agente. - - * [Tiempo de ejecución de la API de nodo](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.122): - * Se corrigieron las vulnerabilidades de datos de formulario y las vulnerabilidades subyacentes de Ubuntu para abordar vulnerabilidades de seguridad en los tiempos de ejecución de Node API. - - * [Node browser runtime](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.39): - * Se corrigieron las vulnerabilidades de datos de formulario y las vulnerabilidades subyacentes de Ubuntu para abordar vulnerabilidades de seguridad en los tiempos de ejecución de Node Browser. - - * [Tiempo de ejecución de ping](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.0): - * Se corrigieron vulnerabilidades relacionadas con `common-lang3` Java y Ubuntu para abordar problemas de seguridad en el tiempo de ejecución de Ping. - - * [Agente de Python v10.15.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101500): - - * Se agregó soporte para [`oracledb`](https://pypi.org/project/oracledb/) - * Se corrigió un error en la instrumentación `MessageBroker` donde los métodos serializar buscaban el atributo `destination_name` en `MessageTransaction` y no existía. - * Se solucionó el problema de metadatos de utilización de AWS al ejecutar AWS y K8s juntos. - - * [AgenteRuby v9.20.0](/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-20-0): - - * Se agregó soporte para registrar el ID de Docker cuando se ejecuta en el entorno AWS ECS Fargate. - * Se agregó un nuevo método auxiliar para simplificar la comparación de versiones. - * Se agregó el atributo `code.stacktrace` a los intervalos de almacenamiento de datos cuando la duración excede el umbral configurado. - * Se corrigieron los `Brewfile` enlaces de origen. - * Se corrigió un error que ocurre cuando se usa `HTTPX 1.5.0` para almacenar la respuesta. - * Se mejoró la información registrada en el nivel de depuración por el agente cuando el agente lee una fuente de configuración. - - * [Agente de Unity v1.4.8](/docs/release-notes/mobile-release-notes/unity-release-notes/unity-agent-148): - - * Se actualizó el agente nativo de Android a v7.6.7. - * Se actualizó el agente nativo de iOS a v7.5.6. - - * [Agente de Unity v1.4.9](/docs/release-notes/mobile-release-notes/unity-release-notes/unity-agent-149): - - * Se actualizó el agente nativo de Android a v7.6.8. - * Se actualizó el agente nativo de iOS a v7.5.8. - * Se solucionó el problema de rastreo de stack de excepciones de Unity cuando se emplean espacios de nombres. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx b/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx deleted file mode 100644 index 01456861c55..00000000000 --- a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx +++ /dev/null @@ -1,60 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-08' -version: 'August 01 - August 07, 2025' -translationType: machine ---- - -### Nuevos documentos - -* Se agregó [el tutorial de NerdGraph: Crear un rol personalizado para Teams](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-budgets/overview) para guiarlo en el uso de la API de NerdGraph de New Relic para crear y gestionar roles personalizados para Teams. - -### Cambios menores - -* Se modificó el [umbral de alerta de evento por condición](/docs/alerts/admin/rules-limits-alerts) a 1k por minuto. -* Se actualizaron las últimas [versiones y requisitos compatibles del agente .Net](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements) verificados. -* Se actualizó la información de versión y soporte de versión acerca del agente de servicio para [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-service-broker-integration). -* Se actualizó la información de soporte de la versión sobre el paquete de compilación de integración NGINX de New Relic para [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-nginx-buildpack-integration). -* Se actualizó la información de versión y soporte de versiones de New Relic Nozzle para [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-firehose-nozzle-integration/#product-snapshot). - -### Notas de la versión - -* Consulta nuestras publicaciones de Novedades: - - * [Errors Inbox ahora está integrada dentro de carga de trabajo](/whats-new/2025/08/whats-new-08-06-workloads-errors-inbox). - -* Mantener actualizado con nuestros últimos lanzamientos: - - * [Administrador de trabajos v452](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-452): - * Se agregaron mejoras internas para el manejo de excepciones al procesar mensajes de la cola. - - * [IntegraciónKubernetes v3.43.3](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-3): - * Se agregó un gráfico Helm para implementar la solución de monitoreo Kubernetes New Relic. - - * [Control de tuberías Gateway v1.1.0](/docs/release-notes/pipeline-control-gateway-release-notes/pipeline-control-gateway-25-08-05): - - * Se implementó una nueva funcionalidad para descartar selectivamente datos y atributos de `SqlTrace` y `TransactionTrace` incluso usando reglas de descartado. - - * Se abordaron vulnerabilidades en el paquete `golang.org/x/net`, incluido un problema de script entre sitios y una omisión de proxy HTTP relacionada con los ID de zona IPv6. - - * Se actualizó a Go `1.24` y las siguientes dependencias se actualizan para mejorar la seguridad e incorporar correcciones recientes: - - * `golang.org/x/net to v0.38.0` - * `golang.org/x/sys to v0.31.0` - * `golang.org/x/text to v0.23.0` - - * [Aplicación móvil para iOS v6.9.11](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6101): - * Se redujo el flujo de inicio de sesión en dos pasos al almacenar el dominio de autenticación de un usuario y redirigirlo directamente a su página de inicio de sesión. - - * [Agente deFlutter v1.1.13](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1113): - - * Agente nativo Android mejorado actualizado a la versión 7.6.8 - * Agente nativo de iOS mejorado actualizado a la versión 7.5.8 - - * [Agente .NET MAUI v1.1.11](/docs/release-notes/mobile-release-notes/net-maui-release-notes/net-maui-agent-1111) - - * Agente nativo Android mejorado actualizado a la versión 7.6.8 - * Agente nativo de iOS mejorado actualizado a la versión 7.5.8 - - * [agente de infraestructura v1.65.5](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1655): - * Se modificó el soporte de montaje de AWS EFS en muestras de almacenamiento. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx b/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx deleted file mode 100644 index aa561dae04a..00000000000 --- a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx +++ /dev/null @@ -1,112 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-15' -version: 'August 08 - August 14, 2025' -translationType: machine ---- - -### Nuevos documentos - -* Se agregó [soporte para funciones NRQL en reglas de puerta de enlace](/docs/new-relic-control/pipeline-control/nrql-functions) para delinear las funciones NRQL admitidas en las reglas de puerta de enlace de Control de pipelines. -* Se agregaron pasos de resolución de problemas para resolver [Frequent Fluent Bit Restart Events](/docs/infrastructure/infrastructure-troubleshooting/troubleshoot-infrastructure/frequent-fluent-bit-restart-events) ajustando la configuración de resolución del nombre del host en la configuración del agente de New Relic Infrastructure. - -### Cambios importantes - -* [Plan de uso](/docs/licenses/license-information/usage-plans/new-relic-usage-plan/#list-price) actualizado con la última información de precios. -* Se agregó **Errors Inbox** a [la UIde carga de trabajo](/docs/new-relic-solutions/new-relic-one/workloads/use-workloads/#errors). -* Se agregó la desactivación selectiva del agente en función de la clase principal de inicio o el jar ejecutable a través de variables de entorno, junto con configuraciones de seguridad mejoradas para [la configuración del agente de Java ](/docs/apm/agents/java-agent/configuration/java-agent-configuration-config-file/#skip-applications). -* Se agregó soporte para [la configuración de repositorio privado](/docs/new-relic-control/agent-control/configuration/#private-repository-configuration) en el control de agente, lo que permite la implementación de agente gestionado con autenticación a través de métodos de certificado básico o TLS. -* Se agregó soporte para [la gestión de secretos](/docs/new-relic-control/agent-control/configuration/#secrets-management) en el control de agente, para gestionar datos confidenciales, como contraseñas y claves de API, recuperándolos del proveedor de secretos dedicado. - -### Cambios menores - -* Se agregaron restricciones de etiqueta de entidad para la cláusula `WHERE` en [Descartar datos mediante reglas cloud de Control de canalizaciones](/docs/new-relic-control/pipeline-control/cloud-rules-api/#restrictions). -* Se agregaron [las mejores prácticas para optimizar el contenido de su fuente de conocimiento](/docs/agentic-ai/knowledge-integration/overview/#configure) para el conector de conocimiento de New Relic AI. - -### Notas de la versión - -* Consulta nuestras publicaciones de Novedades: - - * [El modo de alta precisión de UniqueCount y el mayor soporte de argumentos ahora están disponibles de manera general](/whats-new/2025/08/whats-new-8-13-high-precision-uniquecount). - -* Mantener actualizado con nuestros últimos lanzamientos: - - * [AgenteCordova v7.0.8](/docs/release-notes/mobile-release-notes/cordova-release-notes/cordova-agent-708/): - - * Actualizar el agente nativo de Android a la versión 7.6.8 - * Actualizar el agente nativo de iOS a la versión 7.5.8 - - * [Agente Cordova v7.0.9](/docs/release-notes/mobile-release-notes/cordova-release-notes/cordova-agent-709/): - - * Actualizar el agente nativo de Android a la versión 7.6.6 - * Actualizar el agente nativo de iOS a la versión 7.5.5 - - * [Agente de Capacitor v1.5.8](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-158/): - - * Actualizar el agente nativo de Android a la versión 7.6.6 - * Actualizar el agente nativo de iOS a la versión 7.5.5 - - * [Agente de Capacitor v1.5.9](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-159/): - * Fallo de señal de aborto fijo - - * [Agente de Capacitor v1.5.10](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-1510/): - - * Actualizar el agente nativo de Android a la versión 7.6.8 - * Actualizar el agente nativo de iOS a la versión 7.5.8 - - * [CLI de diagnóstico (nrdiag) v3.5.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-350/): - * se actualizó la comprobación de compatibilidad de la versión `Java/Appserver/JbossEapCheck` - - * [Agente .NET v10.44.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-44-0/): - - * Samplers de rendimiento métrica habilitados en modo Serverless - * Se excluyó el proceso de host sitio web de Azure Functions (Linux) de la instrumentación. - - * [NRDOT v1.3.0](/docs/release-notes/nrdot-release-notes/nrdot-2025-08-13/): - - * Se actualizaron las versiones de los componentes del hotel de v0.128.0 a v0.131.0 - * Se introdujo la distribución principal de nrdot - - * [Agente de Node.js v13.1.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-1-0/): - - * Se agregó soporte para la API de logs de OTEL - * Se agregó compatibilidad con métricas cuando se deshabilitó la instrumentación para un paquete - * Instrumentación de temporizadores deshabilitados por defecto en la configuración de muestra. - * Ofuscación fija `transaction.url` - - * [Administrador de trabajos v454](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-454/): - * Se corrigieron las vulnerabilidades subyacentes de Ubuntu para abordar las vulnerabilidades de seguridad en SJM. - - * [Tiempo de ejecución de la API de nodo v1.2.124](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.124/): - * Se corrigieron las vulnerabilidades subyacentes de Ubuntu para abordar vulnerabilidades de seguridad en los tiempos de ejecución de Node API. - - * [Runtime del navegador de nodos v3.0.41](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.41/): - * Se corrigieron las vulnerabilidades temporales `CVE-2025-54798` y las vulnerabilidades subyacentes de Ubuntu para abordar vulnerabilidades de seguridad en los tiempos de ejecución de Node Browser . - - * [Tiempo de ejecución de ping v1.54.0](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.0/): - * Se corrigieron vulnerabilidades relacionadas con Ubuntu para abordar problemas de seguridad en el tiempo de ejecución de Ping. - - * [Agente de Java v8.23.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8230/): - - * Actualizado para soportar v24 de graphql. - * Se agregó instrumentación de lechuga 6.5. - * Se actualizó la versión de Commons Lang a 3.18.0 - - * [Reenviador de logs AWS Lambda v1.1.1](/docs/release-notes/aws-lambda-log-forwarder-release-notes/lambda-25-07-25/): - * Se mejoró la postura de seguridad al actualizar la versión Go a 1.24.4 en los sistemas. - - * [Agente PHP v12.0.0.25](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-12-0-0-25/): - - * Logging de errores del mapa de gancho de Drupal mejorado. - * Se corrigieron problemas de detección de paquetes legacy para Security RX. - - * [agente de infraestructura v1.66.1](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1661/): - * Se revirtió el soporte para montajes de AWS EFS en muestras de almacenamiento. - - * [Aplicación móvil para Android v5.30.6](docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5306/): - * Compatibilidad mejorada con claves de acceso para inicios de sesión SAML y sociales. - - * [Agente del navegador v1.295.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.0/): - - * Se agregó detección de causa de error. - * Se agregaron advertencias sobre parches para monos. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx b/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx deleted file mode 100644 index e554b9e74bb..00000000000 --- a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx +++ /dev/null @@ -1,56 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-22' -version: 'August 15 - August 21, 2025' -translationType: machine ---- - -### Cambios importantes - -* Reporte actualizado de compatibilidad [del agente Node.js.](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent/) -* [Agente .NET](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements/) actualizado con las últimas versiones de biblioteca compatibles verificadas. - -### Cambios menores - -* Se actualizó el sistema operativo [Debian](/docs/infrastructure/infrastructure-agent/linux-installation/package-manager-install/) a la versión 12 ("bookworm") para soportar el [agente de infraestructura](/docs/infrastructure/infrastructure-agent/requirements-infrastructure-agent/#os) para Linux. -* Se actualizó la función [`accountId()`](/docs/data-apis/manage-data/query-limits/) para consultar los límites de datos. -* [Instalador MSIWindows ](/docs/infrastructure/infrastructure-agent/windows-installation/windows-msi-installer/#install-windows)actualizado para soportar Windows de 64 bits (Intel/AMD). - -### Notas de la versión - -* Se anunció el 7 de enero de 2026 como la fecha de fin de vida útil de las reglas de lanzamiento a través de la [UI de monitoreo de IA](/docs/ai-monitoring/drop-sensitive-data/). - -* [Agente iOS v7.5.9](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-759/) - - * Se solucionó un problema que podía provocar que rastreo distribuido no tuviera toda la información de cuenta requerida al inicio de una sesión. - * Se solucionó un problema que podía provocar un bloqueo al iniciar el agente. - -* [Agente de Python v10.16.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101600/) - - * Se agregó soporte para nuevas funciones [de Redis](https://pypi.org/project/redis/). - * Se convirtieron todas las rutas internas de `os.path` a `pathlib.Path`. - * Problema corregido con la codificación JSON PosixPath. - -* [Integración Kubernetes v3.44.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-44-1/) - - * Esta integración está incluida en las siguientes versiones de gráficos: - - * [infraestructura newrelic-3.49.1](https://github.com/newrelic/nri-kubernetes/releases/tag/newrelic-infrastructure-3.49.1) - * [paquete nri-6.0.10](https://github.com/newrelic/helm-charts/releases/tag/nri-bundle-6.0.10) - -* [Agente .NET v10.44.1](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-44-1/) - - * Se corrigió el manejo de excepciones en el contenedor de instrumentación de Service Bus. - * Se excluyó el proceso de host sitio web de Azure Functions (Linux) de la instrumentación. - -* [Agente de Node.js v13.2.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-2-0/) - - * Se agregó la capacidad de registrar `Supportability/Features/Instrumentation/OnRequire/` métrica para instrumentación basada en suscriptores. - * Se agregó el gancho de carga esm y el parche commonjs para trabajar con orchestrion-js. - * Se agregó instrumentación para las llamadas de cliente `@modelcontextprotocol/sdk` `client.callTool`, `client.readResource` y `client.getPrompt`. - * Se corrigió la lógica en torno a la detección de paquetes OTEL. - * Se actualizó `shimmer.setupSubscribers` para configurar y omitir correctamente los suscriptores que están deshabilitados. - -* [Agente de Node.js v13.2.1](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-2-1/) - - * Agente actualizado para emplear `@apm-js-collab/tracing-hooks` para el registro CJS/ESM para rastrear instrumentación basada en canales. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx b/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx deleted file mode 100644 index 61b10540833..00000000000 --- a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-05' -version: 'September 01 - September 05, 2025' -translationType: machine ---- - -### Nuevos documentos - -* Se agregó [documentación de monitoreo de soluciones SAP](/docs/sap-solutions/overview) para brindar una guía integral para el monitoreo de la aplicación SAP con New Relic, incluyendo procedimientos de instalación, configuración y resolución de problemas. - -### Cambios importantes - -* [Documentación de control de agentes](/docs/new-relic-control/agent-control/overview) actualizada con revisiones extensas que incluyen nuevos tipos de agentes, opciones de configuración, capacidades de monitoreo y secciones de resolución de problemas. -* [Documentación de exportación de transmisión de NerdGraph](/docs/apis/nerdgraph/examples/nerdgraph-streaming-export) reestructurada para la transmisión de datos a AWS Kinesis Firehose, Azure Event Hub o GCP Pub/Sub. - -### Cambios menores - -* Se agregó un nuevo ejemplo para variables basadas en ENUM/lista a [las variables de plantilla del dashboard](/docs/query-your-data/explore-query-data/dashboards/dashboard-template-variables). -* Documentación de configuración actualizada para [Terraform agente Control](/docs/infrastructure/host-integrations/installation/install-infrastructure-host-integrations-via-terraform/agent-control). -* Documentación [de gestión del recolector de logs](/docs/logs/forward-logs/log-collectors/log-collector-management) mejorada con instrucciones mejoradas. -* Se corrigieron varios enlaces rotos y problemas de navegación. - -### Notas de la versión - -* Mantener actualizado con nuestros últimos lanzamientos: - - * [Agente de infraestructura v1.67.3](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1673): - * Versiones de integración integradas mejoradas. - * [Node API Runtime v1.2.126](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.126): - * Se corrigieron las vulnerabilidades subyacentes de Ubuntu para abordar vulnerabilidades de seguridad en los tiempos de ejecución de Node API. - * [Administrador de trabajos v463](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-463): - * Se corrigieron CVE-2025-55163 y las vulnerabilidades subyacentes de Ubuntu para abordar vulnerabilidades de seguridad en SJM. - * [Node Browser Runtime v3.0.43](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.43): - * Se corrigieron las vulnerabilidades subyacentes de Ubuntu para abordar vulnerabilidades de seguridad en los tiempos de ejecución de Node Browser. - * [Agente Control despliegue Chart v0.0.74](/docs/release-notes/agent-control-deployment-chart-release-notes/agent-control-deployment-chart-05-09-25): - * Se agregó soporte para la actualización remota del componente de despliegue de Control de agente. - * [Gráfico de entrega continua de control de agente v0.0.2](/docs/release-notes/agent-control-continuous-delivery-chart-release-notes/agent-control-continuous-delivery-chart-05-09-25): - * Se agregó soporte para actualización remota del componente Agente Control entrega continua. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx b/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx deleted file mode 100644 index cc764eedf32..00000000000 --- a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx +++ /dev/null @@ -1,94 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-14' -version: 'September 08 - September 12, 2025' -translationType: machine ---- - -### Nuevos documentos - -* Se agregó documentación integral [del Modelo de madurez de observabilidad](/docs/new-relic-solutions/observability-maturity/) para brindar orientación para medir y mejorar las prácticas de observabilidad en cuatro áreas clave: tiempo de actividad empresarial, experiencia digital, excelencia en ingeniería y observabilidad inteligente. - -### Cambios importantes - -* [Configuración de agente PHP](/docs/apm/agents/php-agent/configuration/php-agent-configuration/) actualizada con amplias opciones de configuración nuevas para controles de ejemplificación e instrumentación del controlador de excepciones framework. - -### Cambios menores - -* [Introducción a los dashboards](/docs/query-your-data/explore-query-data/dashboards/introduction-dashboards/) actualizada con orientación mejorada para dashboard uso. -* Documentación [de gestión de dashboard](/docs/query-your-data/explore-query-data/dashboards/manage-your-dashboard/) mejorada con contenido simplificado para la gestión de JSON. -* Se corrigieron los enlaces rotos en la documentación [del plan de uso de New Relic](/docs/licenses/license-information/usage-plans/new-relic-usage-plan/). -* Se corrigió la configuración de depuración en la documentación [del agente resolución de problemas de .NET](/docs/apm/agents/net-agent/troubleshooting/debugging-net-windows/). - -### Notas de la versión - -* Mantener actualizado con nuestros últimos lanzamientos: - - * [Agente de Browser v1.297.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.0/): - - * Se evitaron cosechas tempranas durante el periodo de reintento para un mejor manejo de la limitación de velocidad. - * Se eliminó el meta atributo newrelic de la carga de repetición saliente para reducir los bytes facturables. - * Se corrigieron excepciones para cuerpos nulos que surgen de cosechas vacías. - - * [Agente PHP v12.1.0.26](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-12-1-0-26/): - - * Se agregaron controles de ejemplificación basados en la decisión de ejemplificación de trazas de w3c ascendente. - * Se agregó una opción de configuración para omitir la instrumentación de los controladores de excepciones framework. - * Se solucionó una posible pérdida de memoria al llamar `newrelic_end_transaction(true)`. - * Se actualizó la versión de Golang a 1.25.1 para realizar mejoras de seguridad. - - * [Agente de Python v10.17.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101700/): - - * Se agregó soporte para tareas personalizadas en Celery. - * Se agregó soporte para monitoreo Graphene-Django. - * Se agregó soporte para filtrado de middleware en Django. - * Se agregó soporte para la API de AWS Bedrock Converse. - * Se agregó soporte para el indicador de ejemplificación del encabezado W3CTraceParent. - - * [Agente de Java v8.24.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8240/): - - * Se agregó soporte para MongoDB Reactive Streams 5.2.0 y posteriores. - * Se agregó soporte para Jedis 6. - * Se solucionó el problema de instrumentación doble de CouchBase. - * Se solucionó el problema de ajuste del encabezado de Spring WebClient 5.x. - - * [Agente de Node.js v13.3.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-0/): - - * Se agregó soporte para MCP `StreamableHTTPClientTransport`. - - * [Agente de Node.js v13.3.1](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-1/): - - * Se solucionó el fallo al establecer de forma predeterminada `requestParameters` en un objeto en `transaction.addRequestParameters`. - - * [Agente de Node.js v13.3.2](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-2/): - - * Se agregó código defensivo para obtener `protocol` en llamadas http salientes. - - * [Integración Kubernetes v3.45.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-45-1/): - - * Actualizado con las últimas mejoras y correcciones de errores. - - * [Administrador de trabajos v464](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-464/): - - * Se solucionó el problema en el que los clientes no podían extraer imágenes de un registro personalizado usando podman. - - * [Tiempo de ejecución del navegador de nodos v3.0.43](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.43/): - - * Se corrigieron las vulnerabilidades subyacentes de Ubuntu para abordar vulnerabilidades de seguridad. - - * [Aplicación móvil para iOS v6.9.12](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6102/): - - * Se corrigieron problemas de enlaces profundos para el panel y las alertas. - * Se solucionó el problema de identificación del tablero de CCU. - - * [Aplicación móvil para Android v5.30.7](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5307/): - - * Se agregaron correcciones de errores y mejoras. - - * [Agente de Flutter v1.1.14](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1114/): - - * Se agregaron mejoras de estabilidad adicionales y correcciones de errores. - - * [Control de Pipeline Gateway v25.09.01](/docs/release-notes/pipeline-control-gateway-release-notes/pipeline-control-gateway-25-09-01/): - - * Se agregó una nueva versión con capacidades mejoradas de control de tuberías. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx b/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx deleted file mode 100644 index 4f18d2312e5..00000000000 --- a/src/i18n/content/es/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx +++ /dev/null @@ -1,36 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-25' -version: 'Sep 20 - Sep 25, 2025' -translationType: machine ---- - -### Cambios importantes - -* [Precios y facturación de New Relic](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing) actualizados con una reestructuración integral de tablas para una mejor claridad y organización. - -### Cambios menores - -* Se actualizaron las instrucciones de configuración del repositorio APT para [Azure Linux contenedor](/install/dotnet/installation/azure-linux-container), [Docker Linux instalación](/install/dotnet/installation/dockerLinux) e [Linux instalación](/install/dotnet/installation/linuxInstall2) para .NET agente despliegue. -* Se agregó una descripción para la variable de entorno NEW\_RELIC\_CLOUD\_AWS\_ACCOUNT\_ID en la [documentación de variables de entorno para el monitoreo de AWS Lambda](/docs/serverless-function-monitoring/aws-lambda-monitoring/instrument-lambda-function/env-variables-lambda). -* Documentación [de ayuda y soporte](/docs/new-relic-solutions/solve-common-issues/find-help-get-support) mejorada con referencias de recursos de soporte actualizadas. -* Se solucionó el problema de bloqueo al iniciar el agente relacionado con la llamada para [las notas de la versión del agente iOS 7.5.9](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-759). -* Se actualizó la información de configuración del intervalo máximo para la configuración del agente en el [documento de integración en el host](/docs/infrastructure/host-integrations/infrastructure-integrations-sdk/specifications/host-integrations-standard-configuration-format/#configure-how-the-agent-executes-your-integrations) para el formato de configuración estándar. - -### Notas de la versión - -* Mantener actualizado con nuestros últimos lanzamientos: - - * [Go agente v3.41.0](/docs/release-notes/agent-release-notes/go-release-notes/go-agent-3-41-0): - - * Se agregaron opciones de configuración de ejemplificación principal remota para controlar el comportamiento de ejemplificación distribuida del rastreo. - * Versiones actualizadas de bibliotecas de terceros para mejoras de seguridad. - - * [Agente Node.js v13.3.3](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-3): - - * Se agregó soporte para rastrear la devolución de llamadas de los suscriptores. - * Se corrigió la instrumentación de OpenAI para devolver APIPromise correctamente y evitar fallas. - - * [Agente iOS v7.5.10](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-7510): - - * Se solucionó un bloqueo que podía ocurrir al iniciar el agente. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx b/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx deleted file mode 100644 index 0f31403d612..00000000000 --- a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-08-04' -version: 1.295.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Add error cause detection -bugs: - - Add monkey-patching warnings - - Calculate first and last timestamps from raw data -security: [] -translationType: machine ---- - -## v1.295.0 - -### Característica - -#### Agregar detección de causa de error - -Detectar y reportar la causa del atributo en el evento JavaScriptError capturado. Si la causa es una instancia de un Error, se capturará el rastreo de la stack, de lo contrario se informará el contenido en cadena de la causa. Esto se podrá consultar en JavaScriptError incluso bajo el atributo `cause`. - -### Corrección de errores - -#### Agregar advertencias sobre parches de mono - -Se agregó detección y advertencias para cuando los valores globales esperados fueron parcheados antes de que el agente se ejecutó en la página. Esto puede provocar comportamientos inesperados y la intención es informar a los clientes sobre este comportamiento. - -#### Calcular la primera y la última marca de tiempo a partir de datos sin procesar - -Cerciorar de que el agente calcule manualmente la primera y la última marca de tiempo de una carga de SessionReplay antes de la recolección para ayudar a mejorar la consistencia en el reproductor UI. - -## Declaración de apoyo - -New Relic recomienda que actualices el agente periódicamente para garantizar que obtengas las últimas características y beneficios de rendimiento. Las versiones anteriores ya no recibirán soporte cuando lleguen [al final de su vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Las fechas de lanzamiento reflejan la fecha de publicación original de la versión del agente. - -Las nuevas versiones del agente del browser se lanzan a los clientes en pequeñas etapas a lo largo de un periodo de tiempo. Debido a esto, la fecha en que el lanzamiento esté disponible en su cuenta puede no coincidir con la fecha de publicación original. Consulte este [dashboard de estado](https://newrelic.github.io/newrelic-browser-agent-release/) para obtener más información. - -De acuerdo con nuestra [política de compatibilidad de navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la versión 1.295.0 del agente del navegador se creó y probó con estos navegadores y rangos de versiones: Chrome 128-138, Edge 128-138, Safari 17-19 y Firefox 130-140. Para dispositivos móviles, la versión v1.295.0 fue creada y probada para Android OS 16 e iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx b/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx deleted file mode 100644 index d281b28d57c..00000000000 --- a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-08-19' -version: 1.296.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Harvest traces early -bugs: - - Remove event buffer inspection event -security: [] -translationType: machine ---- - -## versión 1.296.0 - -### Característica - -#### Cosecha temprana de traza - -Actualice el agente para manejar el rastreo de sesión de la misma manera que otras características manejan los datos a partir de [1.294.0](https://docs.newrelic.com/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.294.0/). permitiendo cosechas de 16kb de tamaño. - -### Corrección de errores - -#### Eliminar la inspección del búfer de eventos - -Elimina la inspección del búfer de eventos para evitar una pérdida de memoria al usar console.log con el detector de eventos de la ventana `newrelic`. - -## Declaración de apoyo - -New Relic recomienda que actualices el agente periódicamente para garantizar que obtengas las últimas características y beneficios de rendimiento. Las versiones anteriores ya no recibirán soporte cuando lleguen [al final de su vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Las fechas de lanzamiento reflejan la fecha de publicación original de la versión del agente. - -Las nuevas versiones del agente del browser se lanzan a los clientes en pequeñas etapas a lo largo de un periodo de tiempo. Debido a esto, la fecha en que el lanzamiento esté disponible en su cuenta puede no coincidir con la fecha de publicación original. Consulte este [dashboard de estado](https://newrelic.github.io/newrelic-browser-agent-release/) para obtener más información. - -De acuerdo con nuestra [política de compatibilidad de navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la versión 1.296.0 del agente del navegador se creó y probó con estos navegadores y rangos de versiones: Chrome 129-139, Edge 129-139, Safari 17-19 y Firefox 131-141. Para dispositivos móviles, la versión v1.296.0 fue creada y probada para Android OS 16 e iOS Safari 17-18.1. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx b/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx deleted file mode 100644 index dceea8b093e..00000000000 --- a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx +++ /dev/null @@ -1,27 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-09-17' -version: 1.297.1 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: [] -bugs: - - Prevent double import of Session Replay aggregate class -security: [] -translationType: machine ---- - -## v1.297.1 - -### Corrección de errores - -#### Evitar la doble importación de la clase agregada Session Replay - -Corrige un problema que se encontró donde la clase agregada Session Replay podía importar dos veces al usar el método API newrelic.recordReplay mientras se habilitaba la precarga. - -## Declaración de apoyo - -New Relic recomienda que actualices el agente periódicamente para garantizar que obtengas las últimas características y beneficios de rendimiento. Las versiones anteriores ya no recibirán soporte cuando lleguen [al final de su vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Las fechas de lanzamiento reflejan la fecha de publicación original de la versión del agente. - -Las nuevas versiones del agente del browser se lanzan a los clientes en pequeñas etapas a lo largo de un periodo de tiempo. Debido a esto, la fecha en que el lanzamiento esté disponible en su cuenta puede no coincidir con la fecha de publicación original. Consulte este [dashboard de estado](https://newrelic.github.io/newrelic-browser-agent-release/) para obtener más información. - -De acuerdo con nuestra [política de compatibilidad de navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la versión 1.297.1 del agente del navegador se creó y probó con estos navegadores y rangos de versiones: Chrome 130-140, Edge 130-140, Safari 17-19 y Firefox 132-142. Para dispositivos móviles, la versión v1.297.1 fue creada y probada para Android OS 16 e iOS Safari 17-18.5. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx b/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx deleted file mode 100644 index 4ac63e09748..00000000000 --- a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-09-19' -version: 1.298.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Factor long tasks into soft nav base interaction span -bugs: - - Force LCP to report the original page URL -security: [] -translationType: machine ---- - -## v1.298.0 - -### Característica - -#### Incluya tareas largas en el lapso de interacción de la base de navegación suave - -`BrowserInteraction` bajo navegación suave ("SPA 2.0") se extenderá en duración más allá del tiempo de modificación del DOM hasta el punto en el que no se observaron tareas largas durante 5 segundos. `JavascriptError` y `AjaxRequest` aún no están asociados con dicha interacción durante este periodo extendido más allá del final de la heurística original. - -### Corrección de errores - -#### Obligar a LCP a informar la URL de la página original - -Permitir que LCP informe su pageUrl de forma distinta a la URL de recolección. Se observó un problema en el que las navegaciones suaves que ocurrían antes de la recolección de LCP informaban la URL de la página actual en lugar de la URL de la página original vinculada a LCP. Este cambio permite que los nodos de recolección de LCP informen la URL original, independientemente de la URL de la página actual. El cambio debería aplicar tanto al atributo `pageUrl` como al atributo `targetGroupedUrl`. - -## Declaración de apoyo - -New Relic recomienda que actualices el agente periódicamente para garantizar que obtengas las últimas características y beneficios de rendimiento. Las versiones anteriores ya no recibirán soporte cuando lleguen [al final de su vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Las fechas de lanzamiento reflejan la fecha de publicación original de la versión del agente. - -Las nuevas versiones del agente del browser se lanzan a los clientes en pequeñas etapas a lo largo de un periodo de tiempo. Debido a esto, la fecha en que el lanzamiento esté disponible en su cuenta puede no coincidir con la fecha de publicación original. Consulte este [dashboard de estado](https://newrelic.github.io/newrelic-browser-agent-release/) para obtener más información. - -De acuerdo con nuestra [política de compatibilidad de navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la versión 1.298.0 del agente Browser se creó y probó con estos navegadores y rangos de versiones: Chrome 130-140, Edge 130-140, Safari 17-19 y Firefox 132-142. Para dispositivos móviles, la versión v1.298.0 fue creada y probada para Android OS 16 e iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx b/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx deleted file mode 100644 index bf4dd017989..00000000000 --- a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-10-14' -version: 1.300.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Remove usage of the marks and measures feature flag - - Reduce hasReplay attribute false positive rate -bugs: - - Update typings for interaction API to reflect waitForEnd - - Address issues with dynamic require and Rollup.js -security: [] -translationType: machine ---- - -## versión 1.300.0 - -### Característica - -#### Eliminar el uso de la bandera de la característica marcas y medidas - -Ya no limita al agente mediante una bandera de característica interna. Las medidas estarán habilitadas para todos los usuarios de forma predeterminada a menos que se desactiven a través de la configuración de la aplicación. - -#### Reducir la tasa de falso positivo del atributo hasReplay - -Establezca el atributo "hasReplay" solo una vez que se observó una cosecha exitosa de repeticiones de sesión para ayudar a reducir los falsos positivos. - -### Corrección de errores - -#### Actualizar las tipificaciones para la API de interacción para reflejar waitForEnd - -Corrige un problema en el que el archivo de tipificación que define la API `.interaction` no estaba decorado correctamente para tener en cuenta el argumento opcional `waitForEnd` como [se documenta](https://docs.newrelic.com/docs/browser/new-relic-browser/browser-apis/interaction/#parameters). - -#### Abordar problemas con requisitos dinámicos y acumulación.js - -Corrige un problema que provocaba que acumulación.js generara el error `Error: Could not dynamically require ...` al crear páginas que incluían el cargador MicroAgent. - -## Declaración de apoyo - -New Relic recomienda que actualices el agente periódicamente para garantizar que obtengas las últimas características y beneficios de rendimiento. Las versiones anteriores ya no recibirán soporte cuando lleguen [al final de su vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Las fechas de lanzamiento reflejan la fecha de publicación original de la versión del agente. - -Las nuevas versiones del agente del browser se lanzan a los clientes en pequeñas etapas a lo largo de un periodo de tiempo. Debido a esto, la fecha en que el lanzamiento esté disponible en su cuenta puede no coincidir con la fecha de publicación original. Consulte este [dashboard de estado](https://newrelic.github.io/newrelic-browser-agent-release/) para obtener más información. - -De acuerdo con nuestra [política de compatibilidad de navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la versión 1.300.0 del agente de Browser se creó y probó con estos navegadores y rangos de versiones: Chrome 131-141, Edge 131-141, Safari 17-26 y Firefox 133-143. Para dispositivos móviles, la versión v1.300.0 fue creada y probada para Android OS 16 e iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx b/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx deleted file mode 100644 index cca2db6155b..00000000000 --- a/src/i18n/content/es/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-10-21' -version: 1.301.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Switch to using NR fork of rrweb -bugs: - - Preserve agent attributes for log payloads -security: [] -translationType: machine ---- - -## v1.301.0 - -### Característica - -#### Cambiar al uso de la bifurcación NR de rrweb - -El agente de Browser ahora cambiará a emplear la versión bifurcada de rrweb de New Relic para Session Replay en lugar del repositorio original. Esto permitirá que el equipo del navegador personalice las correcciones para los problemas. - -### Corrección de errores - -#### Preservar agente atributo para la carga de logs - -Ajustar las cargas de logs del navegador, de modo que el atributo agente-reserved tenga prioridad sobre los valores proporcionados por el usuario si comparten el mismo nombre. - -## Declaración de apoyo - -New Relic recomienda que actualices el agente periódicamente para garantizar que obtengas las últimas características y beneficios de rendimiento. Las versiones anteriores ya no recibirán soporte cuando lleguen [al final de su vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Las fechas de lanzamiento reflejan la fecha de publicación original de la versión del agente. - -Las nuevas versiones del agente del browser se lanzan a los clientes en pequeñas etapas a lo largo de un periodo de tiempo. Debido a esto, la fecha en que el lanzamiento esté disponible en su cuenta puede no coincidir con la fecha de publicación original. Consulte este [dashboard de estado](https://newrelic.github.io/newrelic-browser-agent-release/) para obtener más información. - -De acuerdo con nuestra [política de compatibilidad de navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la versión 1.301.0 del agente del navegador se creó y probó con estos navegadores y rangos de versiones: Chrome 131-141, Edge 131-141, Safari 17-26 y Firefox 133-143. Para dispositivos móviles, la versión v1.301.0 fue creada y probada para Android OS 16 e iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx b/src/i18n/content/es/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx deleted file mode 100644 index 06eefb60757..00000000000 --- a/src/i18n/content/es/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Node API runtime -releaseDate: '2025-07-29' -version: 1.2.122 -translationType: machine ---- - -### Correcciones - -* Se corrigieron las vulnerabilidades de datos de formulario y las vulnerabilidades subyacentes de Ubuntu para abordar vulnerabilidades de seguridad en los tiempos de ejecución de Node API. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx b/src/i18n/content/es/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx deleted file mode 100644 index fdfdc17442f..00000000000 --- a/src/i18n/content/es/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Node browser runtime -releaseDate: '2025-07-29' -version: 3.0.39 -translationType: machine ---- - -### Mejoras - -* Se corrigieron las vulnerabilidades de datos de formulario y las vulnerabilidades subyacentes de Ubuntu para abordar vulnerabilidades de seguridad en los tiempos de ejecución de Node Browser. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx b/src/i18n/content/es/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx deleted file mode 100644 index ec1e32db231..00000000000 --- a/src/i18n/content/es/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Ping Runtime -releaseDate: '2025-07-29' -version: 1.53.0 -translationType: machine ---- - -### Mejoras - -* Se corrigieron vulnerabilidades relacionadas con `common-lang3` Java y Ubuntu para abordar problemas de seguridad en el tiempo de ejecución de Ping. \ No newline at end of file diff --git a/src/i18n/content/es/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx b/src/i18n/content/es/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx deleted file mode 100644 index 65d952ef7ac..00000000000 --- a/src/i18n/content/es/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Ping Runtime -releaseDate: '2025-08-13' -version: 1.54.0 -translationType: machine ---- - -### Mejoras - -* Se corrigieron vulnerabilidades relacionadas con Ubuntu para abordar problemas de seguridad en el tiempo de ejecución de Ping. \ No newline at end of file diff --git a/src/i18n/content/es/docs/service-architecture-intelligence/github-integration.mdx b/src/i18n/content/es/docs/service-architecture-intelligence/github-integration.mdx deleted file mode 100644 index 3222a9dcac3..00000000000 --- a/src/i18n/content/es/docs/service-architecture-intelligence/github-integration.mdx +++ /dev/null @@ -1,220 +0,0 @@ ---- -title: Integración de GitHub para Inteligencia para arquitectura de servicios -tags: - - New Relic integrations - - GitHub integration -metaDescription: 'Learn how to integrate GitHub with New Relic to import repositories, teams, and user data for enhanced service architecture intelligence.' -freshnessValidatedDate: never -translationType: machine ---- - -¿Estás buscando obtener información más valiosa y profunda sobre la arquitectura de tus servicios aprovechando los datos de tu cuenta de GitHub? La integración New Relic GitHub importa repositorios, equipos y datos de usuarios directamente a la plataforma New Relic con capacidades de recuperación selectiva de datos. - -Esta integración agiliza el proceso de incorporación de usuarios y equipos al tiempo que simplifica la gestión de roles. También aclara la propiedad de la entidad mapeo, lo que reduce el tiempo y el esfuerzo de configuración. Con la nueva función de obtención selectiva de datos, puede elegir exactamente qué tipos de datos importar, ya sean equipos y usuarios, repositorio y pull requests, o ambos. Esta integración de monitoreo de IA busca mejorar la gestión y visibilidad de [catálogos](/docs/service-architecture-intelligence/catalogs/catalogs) y [cuadros de mando](/docs/service-architecture-intelligence/scorecards/getting-started) dentro de New Relic. Para obtener más información, consulte la [capacidad Inteligencia para arquitectura de servicios](/docs/service-architecture-intelligence/getting-started). - -* **Plataforma soportada:** - - * Nube de GitHub - * GitHub Enterprise (GHE) Cloud (sin residencia de datos) - -* **Regiones admitidas:** regiones de EE. UU. y la UE - - - * No se admiten GHE locales ni GHE Cloud con residencia de datos. - * No se admite la instalación de la integración en cuentas de usuario de GitHub. Aunque GitHub permite instalar la aplicación en una cuenta de usuario, el mecanismo de sincronización no funcionará y no se importarán datos a New Relic. - * Tenga en cuenta que la integración de GitHub no es compatible con FedRAMP. - - -**Prerrequisitos:** - -* Inicie sesión en su cuenta de GitHub que planea integrar con New Relic. - -* Debe ser el administrador de la organización o el administrador del dominio de autenticación. - -* Derechos requeridos: - - * `teams_discount_usage` - * `integration_github_discount_usage` - * `integration_github_ccu` - -## Requisito de lista blanca de IP - -Si su organización emplea IP lista blanca para conexiones salientes, deberá permitir el tráfico desde nuestro recolector de datos extremo. - -Consulta la documentación pública oficial de New Relic para obtener la lista completa y más actualizada de direcciones IP permitidas que debes agregar a tu configuración de lista blanca. - -## ¿Qué datos se pueden sincronizar? - -La integración de GitHub le permite elegir de forma selectiva qué tipos de datos importar a New Relic, lo que le brinda control sobre qué información se sincroniza: - -### Tipos de datos disponibles - -* **Equipos y usuarios**: Importe estructuras de equipo de GitHub e información de usuarios para mejorar la gestión y propiedad del equipo mapeo - - - **Requisito de visibilidad del email del usuario**: la integración solo importa usuarios de GitHub que configuraron sus direcciones de email como públicas en la configuración de su perfil de GitHub. Los miembros del equipo con configuración de email privado serán excluidos del proceso de sincronización de datos de usuario. - - -* **Repositorio y pull requests**: importe datos del repositorio e información de las pull requests para una mejor visibilidad del código y seguimiento de la implementación - -* **Ambos**: Importa todos los tipos de datos disponibles para una integración completa con GitHub - -### Consideraciones sobre la selección de datos - - - **Conflictos de integración de equipos**: si los equipos ya se integraron en New Relic desde otra fuente (como equipos de servicio), no se permitirá recuperar ni almacenar equipos de GitHub para evitar conflictos de datos. En este caso, solo puedes seleccionar el repositorio y los datos de pull request. - - -Podrás configurar tus preferencias de selección de datos durante el proceso de configuración inicial. - -## Configurar la integración de GitHub - -1. Vaya a **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)**. - -2. En el paso **Select an action** , seleccione **Set up a new integration** y haga clic en **Continue**. - -3. En la pantalla **Begin integration** : - - a. Para conectarse con su cuenta de GitHub, haga clic en **Get started in GitHub**. La observabilidad de New Relic se abre en GitHub Marketplace. b. Complete la instalación de la aplicación dentro de su organización de GitHub para recuperar datos relacionados con los tipos de datos seleccionados. Una vez completada la instalación, se le redirigirá al paso **Select an action** una vez más. do. Seleccione **Begin integration** y haga clic en **Continue**. - - d. **Select your data preferences**: Elija qué tipos de datos desea sincronizar: - - * **Teams + Users**: Importar estructuras de equipos de GitHub e información de usuarios - * **Repositories + Pull Requests**: importar datos del repositorio y de pull requests - * **Both**: Importar todos los tipos de datos disponibles - - - Si los equipos ya están integrados desde otra fuente (como equipos de servicio), la opción **Teams + Users** se deshabilitará para evitar conflictos. - - - e. Haga clic en **Start first sync** para comenzar a importar los tipos de datos seleccionados. - - gramo. Luego de ver el mensaje **Sync started** , haga clic en **Continue**. La pantalla **Integration status** mostrará el recuento de los tipos de datos seleccionados (equipos, repositorio, etc.), actualizar cada 5 segundos. Espere unos minutos para que se complete la importación de todos los datos. - - GitHub integration - -4. *(Opcional)* En la pantalla **GitHub integration** , acceda a los datos importados: - - * Haga clic en **Go to Teams** para ver la información de los equipos importados en [Teams](/docs/service-architecture-intelligence/teams/teams) (si se seleccionaron equipos durante la configuración) - * Haga clic en **Go to Repositories** para ver la información del [repositorio](/docs/service-architecture-intelligence/repositories/repositories) importado (si se seleccionó el repositorio durante la configuración) - - - **Asignar repositorio automáticamente a equipos**: puedes asignar automáticamente un repositorio de GitHub a sus equipos creando una propiedad personalizada `teamOwningRepo` en GitHub. Cree la propiedad personalizada en el nivel de organización y asigne un valor a la propiedad personalizada en el nivel de repositorio. Además, puede configurar una propiedad personalizada para varios repositorios a nivel de organización simultáneamente. La integración asignará automáticamente el repositorio a los respectivos equipos en función de la propiedad personalizada. Para obtener más información sobre la creación de propiedades personalizadas, consulte la [documentación de GitHub](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). - - -## Habilitar el descubrimiento de propiedad del equipo - -La integración de GitHub incluye un servicio de descubrimiento que puede establecer automáticamente la propiedad del equipo del repositorio según la estructura organizacional y las propiedades personalizadas de GitHub. - -### Cómo funciona la propiedad del equipo - -El servicio de descubrimiento emplea varios métodos para establecer la propiedad del repositorio: - -1. **Propiedades personalizadas de GitHub**: emplea la propiedad personalizada `teamOwningRepo` para asignar directamente el repositorio a los equipos -2. **Análisis de membresía del equipo**: analiza los patrones de confirmación y las contribuciones de los miembros del equipo para inferir la propiedad. -3. **repositorio organización**: emplea la estructura organizacional de GitHub y las licencias del equipo para determinar la propiedad - -### Configurar la propiedad automática del equipo - -Para habilitar el descubrimiento automático de propiedad del equipo: - -1. **Crear propiedades personalizadas en GitHub** (recomendado): - - * Navega a la configuración de tu organización de GitHub - * Crear una propiedad personalizada `teamOwningRepo` a nivel de organización - * Asignar valores de equipo al repositorio en el nivel del repositorio - * La integración mapeará automáticamente estas relaciones durante la sincronización - -2. **Configurar licencias del equipo**: - - * Cerciorar de que los equipos tengan acceso adecuado al repositorio en GitHub - * El servicio de descubrimiento empleará estas licencias para inferir relaciones de propiedad. - -3. **Habilitar el descubrimiento automático de propiedad del equipo**: - - * Una vez completada la sincronización, habilite el descubrimiento automático de propiedad del equipo en New Relic. Para obtener más información, consulte la [documentación de propiedad de Automatización de equipos](https://docs.newrelic.com/docs/service-architecture-intelligence/teams/manage-teams/#assign-ownership). - * Verificar que las relaciones de propiedad estén correctamente establecido - - - **mejores prácticas para la propiedad del equipo**: - - * Emplee convenciones de nomenclatura consistentes para los equipos de GitHub y New Relic - * Actualice periódicamente las propiedades personalizadas cuando cambie la propiedad del repositorio - * Revisar y validar la propiedad de mapeo luego de cada sincronización para garantizar la precisión - - -## Gestiona tu integración de GitHub - -Luego de configurar su integración de GitHub, puede gestionarla a través de la interfaz de New Relic. Esto incluye actualizar datos, editar la configuración y desinstalar cuando sea necesario. - -### Gestión de integración de acceso - -1. Vaya a **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)**. - -2. En el paso **Select an action** , seleccione **Manage your organization** y haga clic en **Continue**. - - Screenshot showing the manage organization option in GitHub integration - -La pantalla **Manage GitHub integration** muestra su organización conectada con su estado de sincronización actual y tipos de datos. - -### Actualizar datos - -Al hacer clic en la opción **Refresh data** , se proporciona una forma simplificada de actualizar sus datos de GitHub en New Relic. - -**Para actualizar los datos:** - -1. Desde la pantalla **Manage GitHub integration** , ubique su organización. - -2. Haga clic en **Refresh data** junto a la organización que desea actualizar y luego haga clic en **Continue**. - -3. En el paso **Refresh Data** , haga clic en **Sync on demand**. - -Luego, el sistema validará sus licencias de GitHub y el acceso a la organización, obtendrá solo datos nuevos o modificados desde la última sincronización, procesará y mapeará los datos actualizados según los tipos de datos seleccionados y actualizará el estado de integración para reflejar la última timestamp de sincronización y los recuentos de datos. - -**¿Qué se actualiza?** - -* Se agregaron nuevos miembros al equipo de GitHub -* cambios de repositorio (repositorio nuevo, repositorio archivado, cambios de licencias) -* Propiedad del equipo actualizada a través de propiedades personalizadas -* Cambios en los perfiles de usuario y estructuras de equipo - - - **Frecuencia de actualización**: puede actualizar los datos con tanta frecuencia como sea necesario. El proceso normalmente demora unos minutos dependiendo del tamaño de su organización y los tipos de datos seleccionados. - - -### Editar la configuración de integración - -Emplee la opción **Edit** para modificar su configuración de integración luego de la configuración inicial. Puede ajustar qué tipos de datos se sincronizan entre GitHub y New Relic, eligiendo entre Teams + Users, Repositories + Pull Requests o Both para tipos de datos según sus necesidades actuales. - -**Para editar la integración de GitHub:** - -1. Desde la pantalla **Manage GitHub integration** , ubique su organización. - -2. Haga clic en **Edit** junto a la organización que desea actualizar y luego haga clic en **Continue**. - -3. En el paso **Edit Integration Settings** , ajuste las selecciones de tipo de datos según sea necesario. - -4. Haga clic en **Save changes** para aplicar las actualizaciones. - -**¿Qué sucede durante la edición?** - -* Los datos actuales permanecen intactos durante los cambios de configuración -* Las nuevas configuraciones se aplican a las sincronizaciones posteriores -* Puede obtener una vista previa de los cambios antes de aplicarlos -* La integración continúa ejecutar con la configuración anterior hasta que almacene los cambios - -### Desinstalar la integración de GitHub - -Al desinstalar la integración de GitHub, se detiene la sincronización de datos de la organización seleccionada, pero se conservan todos los datos importados previamente en New Relic. - -**Para desinstalar:** - -1. Desde la pantalla **Manage GitHub integration** , ubique la organización que desea desinstalar y haga clic en **Uninstall**. - -2. En el cuadro de diálogo de confirmación, revise los detalles de la organización y haga clic en **Uninstall organization** para confirmar. - -3. Verá un mensaje de éxito confirmando la desinstalación. - - - **Retención de datos luego de la desinstalación**: Todos los datos previamente sincronizados (equipos, usuario, repositorio, pull requests) permanecerán en New Relic luego de desinstalar la integración. Si necesita eliminar estos datos, comunicar con el soporte de New Relic. - \ No newline at end of file diff --git a/src/i18n/content/fr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx b/src/i18n/content/fr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx deleted file mode 100644 index 6f47050af84..00000000000 --- a/src/i18n/content/fr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Facturation complémentaire (en option) -tags: - - Accounts - - Accounts and billing - - New Relic pricing and billing -metaDescription: Add-ons are an optional billing factor -freshnessValidatedDate: '2024-10-23T00:00:00.000Z' -translationType: machine ---- - -En plus des principaux facteurs de facturation de GB Ingested et d'utilisateurs facturables, vous pouvez également utiliser des modules complémentaires facturables optionels pour étendre votre expérience avec New Relic. - -* **Calculateur avancé (anciennement calculateur complémentaire)**: ce module complémentaire s'applique à la facturation basée sur l'utilisation pour les actions que vous exécutez en relation avec CodeStream, Live Archives et d'autres fonctionnalités mises à disposition. Vous êtes mesuré et facturé en fonction de votre utilisation des [CCU avancés](/docs/licenses/license-information/product-definitions/new-relic-one-pricing-definitions/#compute-capacity-unit). - - - Votre utilisation de CodeStream sous calculateur avancé (Advanced Compute) entraînera des frais CCU, quel que soit le type d'utilisateur. Cela signifie que l'utilisateur de base gratuit peut accéder à la fonctionnalité de calcul avancée et encourir des frais pour les CCU avancés. - - -* **Centre de données de l'UE pour les données d'origine (Original Data) ou les données Plus (Data Plus)**: ce module complémentaire s'applique à votre option de données (données d'origine ou données Plus) lorsque vous sélectionnez l'Union européenne comme région de données, selon les disponibilités. - -* **Conservation prolongée des données d'origine ou des données plus** : ce module complémentaire s'applique si vous dépassez la durée par défaut pendant laquelle vos données sont conservées. Cela s'applique à toutes vos données, pas seulement aux logs, et constitue une bonne option si vous devez effectuer de nombreuses petites requêtes ou effectuer des requêtes sur de gros volumes de données. - -* **Live Archives** : Prolongez la durée de stockage de vos logs jusqu'à sept ans. Live Archives nécessite également Advanced Compute. - -* **New Relic Synthetics Checks** : Ce module complémentaire s'applique si vos contrôles dépassent le nombre par défaut de contrôles de monitoring synthétiques. - -* **Security RX**: cette fonctionnalité est incluse avec Data Plus, mais le module complémentaire s'applique si vous utilisez la fonctionnalité Security RX sans Data Plus. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx b/src/i18n/content/fr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx deleted file mode 100644 index d92819d86c2..00000000000 --- a/src/i18n/content/fr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx +++ /dev/null @@ -1,354 +0,0 @@ ---- -title: 'Données : Facturation et règles' -tags: - - Accounts - - Accounts and billing - - New Relic pricing and billing -metaDescription: 'For New Relic pricing, an explanation of how data ingest is calculated for billing purposes.' -freshnessValidatedDate: '2024-10-23T00:00:00.000Z' -translationType: machine ---- - -Pour la tarification New Relic, les données ingérées par votre organisation New Relic constituent un facteur de facturation. - -## Informez-vous sur les coûts [#costs] - -Si vous n'êtes pas encore client New Relic et que vous êtes curieux de connaître les coûts, consultez d'abord [notre page de tarification principale](https://newrelic.com/pricing). Si vous êtes déjà client, continuez à lire pour en savoir plus sur la facturation de l'ingestion de données. - -## Afficher l'ingestion de données dans l'UI [#ui] - -Pour savoir comment trouver les informations d'utilisation et de facturation dans l'UI, consultez [UI de facturation](/docs/accounts/accounts-billing/general-account-settings/introduction-account-settings). - -Pour savoir comment afficher et gérer votre ingestion de données, consultez [Gérer l'ingestion](/docs/data-apis/manage-data/manage-data-coming-new-relic). - -## Options de données : Données Plus et originales [#data-prices] - -Le prix de votre organisation par Go de données ingérées varie en fonction de l'option de données dont dispose votre organisation : **Data Plus** ou notre option **Original Data**. L'option Data Plus offre des fonctionnalités de données avancées pour des performances, une évolutivité, une sécurité et une gouvernance optimisées. Une organisation New Relic ne peut avoir qu'une seule option à la fois. - -Voici un tableau comparatif des deux options. Les prix et les limites sont mensuels et les prix sont en USD. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Fonctionnalité/aptitude - - **Original Data** option - - **Data Plus** option - - Plus de détails sur la fonctionnalité -
- [Éditions](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing/#editions) - - Toutes les éditions - - Nécessite Standard, Pro ou Enterprise - - (Nous notons ci-dessous si une fonctionnalité est spécifique à une édition) - -
- Limite de données gratuites - - 100 Go ingérés - - 100 Go ingérés - -
- Prix des données
(au-delà de la limite gratuite) -
- 0,40 USD/Go ingéré - - 0,60 USD/Go ingéré - -
- Limite gratuite de rétention des données
([varie selon le type de données](/docs/data-apis/manage-data/manage-data-retention)) -
- Défaut d'au moins 8 jours - - 90 jours supplémentaires en cas de défaut - -
- Prix pour chaque tranche de 30 jours de rétention supplémentaire
(au-delà de la limite gratuite) -
- +0,05$/Go - - +0,05$/Go - -
- Prix supplémentaire pour stocker des données dans [data centerde l'UE](/docs/accounts/accounts-billing/account-setup/choose-your-data-center)
-
- +0,05$/Go - - +0,05$/Go - - Les données sont stockées par défaut dans le data center américain. -
- [Limite de requêtes](/docs/query-your-data/nrql-new-relic-query-language/get-started/rate-limits-nrql-queries/#query-limits)maximale - - Jusqu'à 20 milliards de points de données par minute - - Jusqu'à 60 B de points de données par minute - -
- [Durée maximale de la requête](/docs/query-your-data/nrql-new-relic-query-language/get-started/rate-limits-nrql-queries/#query-duration) - - 1 minute - - Jusqu'à 10 minutes - -
- Choix du fournisseur de cloud - - Fournisseur de cloud unique - - Azure ou plusieurs fournisseurs de cloud - - Choisissez votre fournisseur cloud préféré pour votre charge de travail d'observabilité afin d'aligner votre stockage de télémétrie avec votre modèle de déploiement d'ingénierie et votre préférence cloud . -
- [Obfuscation des logs](/docs/logs/ui-data/obfuscation-ui/) - - Masquer [automatiquement](/docs/logs/get-started/new-relics-log-management-security-privacy/#log-obfuscation) les modèles de carte de crédit et de numéro de sécurité sociale connus dans les logs. - - Créez et suivez des règles directement dans l'UI et [masquez ou hachez](/docs/logs/ui-data/obfuscation-ui/) les données log sensibles. - -
- [New Relic gestion des vulnérabilités](/docs/vulnerability-management/overview)
(plateforme utilisateur complète uniquement) -
- +0,10 $/Go
(au-delà de la limite gratuite) -
- Standard, Pro et Entreprise - - Identifiez les vulnérabilités et traitez les risques à chaque étape du cycle de vie du logiciel. -
- Admissibilité [au programme FedRAMP Modéré](/docs/security/security-privacy/compliance/fedramp-compliant-endpoints) et [à la loi HIPAA](/docs/security/security-privacy/compliance/hipaa-readiness-new-relic) - - - - Enterprise - - Atteignez la conformité en matière de sécurité grâce à une configuration qui vous aide à répondre à vos exigences FedRAMP et HIPAA. -
- [données de streaming export](/docs/apis/nerdgraph/examples/nerdgraph-streaming-export) - - - - Standard, Pro et Entreprise - - Configurez des règles pour exporter simultanément des données télémétriques vers le stockage AWS ou Azure de votre choix. Des frais d’exportation supplémentaires vers le fournisseur de cloud s’appliqueront. -
- [Exportation de données historiques](/docs/apis/nerdgraph/examples/nerdgraph-historical-data-export) - - - - Standard, Pro et Entreprise - - Exécutez des requêtes plus volumineuses sans délai d'expiration pour l'analyse historique et la modélisation, le stockage à long terme et l'intégration avec d'autres plateformes d'analyse de données. -
- Service natif New Relic d'Azure - - - - Standard, Pro et Entreprise
([avec quelques limitations](#azure-native-data-plus)) -
-
- -Pour voir une comparaison côte à côte de Data Plus et de notre option de données originales, consultez [notre fiche technique Data Plus](https://newrelic.com/resources/datasheets/data-plus). - -Intéressé par Data Plus ? Voir [Mise à niveau vers Data Plus](#upgrade-data-plus). - -### Détails du service Azure Native New Relic [#azure-native-data-plus] - -Avec le [serviceAzure Native New Relic ](/docs/infrastructure/microsoft-azure-integrations/get-started/azure-native), vous pouvez collecter et stocker vos données télémétriques pour les applications et infrastructure directement dans Azure. Cette fonctionnalité est incluse avec Data Plus, mais avec les limitations suivantes : - -* Disponible uniquement dans la région data center des États-Unis -* L'éligibilité FedRAMP Modéré/HIPAA n'est pas disponible -* L'exportation des données historiques n'est pas disponible - -## Mise à niveau vers Data Plus [#upgrade-data-plus] - -Pour passer à Data Plus, accédez à l'[UI**Data retention** ](/docs/data-apis/manage-data/manage-data-retention/#adjust-retention)dans le hub de gestion des données et cliquez sur **Upgrade retention**. - -* Remarque : vous pouvez voir un bouton **Edit data retention** , mais il est différent du bouton **Upgrade retention**. -* Pour voir le bouton **Upgrade retention** , vous devez disposer [des autorisations de facturation](/docs/accounts/accounts-billing/new-relic-one-user-management/user-management-concepts/#admin-settings). Si vous remplissez les conditions et que vous ne voyez toujours pas l'option **Upgrade retention** , contactez votre représentant de compte New Relic. - -## Qu'est-ce qui est considéré comme des Go ingérés facturables ? [#usage-calculation] - -Dans le contexte du [plan tarifaire New Relic](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing), les « données ingérées » font référence aux données enregistrées dans New Relic par votre organisation après l'application de diverses règles de découpage et de transformation des données. En d’autres termes, ce n’est pas la quantité de données brutes envoyées à New Relic qui compte, mais la taille des données qui finissent par être stockées. - -En général, les données que nous générons pour fournir notre fonctionnalité ne comptent pas dans vos Go ingérés. Voici quelques exemples de fonctionnalités et de données liées aux fonctionnalités qui ne sont pas comptabilisées dans les Go ingérés : - -* [Fonctionnalité d'alerte de base](/docs/alerts-applied-intelligence/new-relic-alerts/learn-alerts/alerts-concepts-workflow). Par exemple, `NrAiIncident`, un événement utilisé pour générer ces fonctionnalités, ne compte pas dans les Go ingérés. -* Données créées à partir de données brutes agrégées (par exemple, [données infrastructure agrégées](/docs/data-apis/manage-data/manage-data-retention/#infrastructure-data) ou [données métriques dimensionnelles](/data-apis/manage-data/manage-data-retention/#dimensional-metrics)). -* [métriques dorées](/docs/apis/nerdgraph/examples/golden-metrics-entities-nerdgraph-api-tutorial) (pour en savoir plus sur les métriques dorées, voir nos [définitions d'entités](https://github.com/newrelic/entity-definitions)). -* Contrôles de monitoring synthétiques. Pour plus de détails sur la facturation des produits synthétiques, consultez [Limites et tarifsSynthetics ](/docs/synthetics/synthetic-monitoring/using-monitors/monitor-limits). -* Données de suivi d’utilisation et de facturation (par exemple, `NrConsumption`). -* Données relatives à l’administration du compte (par exemple, `NrIntegrationError`, `NrAuditEvent`). - -Pour comprendre votre utilisation, consultez l'[ UI d'utilisation](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing#usage-ui). - -## Autres détails de calcul [#calculation-details] - -* Dans le contexte de notre modèle de tarification, un Go est défini comme 1 milliard d’octets. -* Le nombre mensuel de Go ingérés est arrondi à l'entier inférieur le plus proche. Par exemple, si votre organisation utilise 100,9 Go au cours d'un mois, cela est comptabilisé comme 100 Go. - -## Édition gratuite [#free-tier-limits] - -Pour plus de détails sur GB Ingested pour notre édition gratuite, voir [Édition gratuite](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing/#free). - -## En savoir plus [#related-docs] - -* Pour en savoir plus sur la gestion des Go ingérés, consultez [Gérer l'ingestion de données](/docs/data-apis/manage-data/manage-data-coming-new-relic). -* Pour savoir comment requêter l'utilisation, voir [requête et alerte sur l'utilisation](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/usage-queries-alerts). \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx b/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx deleted file mode 100644 index dc83f605b94..00000000000 --- a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx +++ /dev/null @@ -1,61 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-10-10' -version: 'Oct 06 - Oct 10, 2025' -translationType: machine ---- - -### Nouveaux documents - -* Ajout [de la collecte de marques et de mesures avec l'agent du navigateur](/whats-new/2025/09/whats-new-10-02-browser-marks-and-measures) pour fournir des conseils sur la capture des marques et des mesures de performances pour monitoring des durées des tâches dans les applications Web. -* Ajout [de aucune donnée avec l'attachement automatique Kubernetes APM](/docs/apm/agents/ruby-agent/troubleshooting/no-data-kubernetes-auto-attach) pour fournir des conseils de dépannage pour les applications Ruby utilisant l'attachement automatique Kubernetes APM avec un framework non-Rails. - -### Changements majeurs - -* [Dictionnaire d'attributs](/attribute-dictionary) mis à jour avec des avis d'obsolescence pour l'événement `BrowserTiming` et des descriptions de fonctionnalités d'agent de navigateur améliorées pour une meilleure précision de référence technique. -* [API de règles cloudPipeline ](/docs/new-relic-control/pipeline-control/cloud-rules-api)améliorée avec des conseils complets sur l'activation, la désactivation et la réactivation des règles cloud pour un meilleur contrôle opérationnel. - -### Modifications mineures - -* Terminologie de tarification mise à jour dans [la facturation Live Archives](/docs/logs/get-started/live-archives-billing) de « unité de capacité de calcul » à « unité de capacité de calcul avancée » pour une précision améliorée. -* Organisation améliorée des instructions [de configuration d'Agent Control](/docs/new-relic-control/agent-control/setup) en déplaçant l'appel de conseil et en supprimant le contenu en double pour des instructions d'installation simplifiées. -* Documentation d'automatisation workflow mise à jour avec les dernières modifications apportées au [catalogue d'actions](/docs/workflow-automation/setup-and-configuration/actions-catalog), [aux API de planification](/docs/workflow-automation/create-a-workflow-automation/start-schedule) et à la configuration des modèles pour une meilleure synchronisation de la plateforme. -* [Annonce améliorée du contrôle New Relic](/whats-new/2025/09/whats-new-30-09-new-relic-control) avec des messages raffinés et des descriptions de fonctionnalités plus claires pour la sortie Agent contrôle de la flotte GA. - -### Notes de version - -* Restez au courant de nos dernières sorties : - - * [Agent Ruby v9.22.0](/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-22-0) : - - * Instrumentation en une étape ajoutée pour Kubernetes (désormais généralement disponible). - * Avis d'obsolescence ajoutés pour la prise en charge de Ruby 2.4 et 2.5. - * Avis d'obsolescence ajouté pour la commande `newrelic deployments` . - * Compatibilité assurée avec les modifications apportées à Method#source\_location par Ruby 3.5. - - * [Agent .NET v10.45.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-45-0): - - * Ajout d'un nouvel échantillonneur de traçage distribué, l'échantillonneur basé sur le ratio TraceId. - * Correction des exceptions d'analyse de la chaîne de connexion MSSQL qui pouvaient désactiver l'instrumentation de la banque de données. - * Problèmes résolus avec la compatibilité de l'instrumentation Kafka « Consume ». - - * [Agent Python v11.0.1](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-110001) : - - * Activation précoce empêchée dans l'instrumentation Django. - * Correction des problèmes de synchronisation de la configuration du serveur avec la configuration locale. - * Ajout de protections contre les plantages de trace\_cache.pop(). - - * [Agent d'infrastructure v1.69.0](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1690): - - * Mise à niveau du SDK AWS de V1 à V2. - * Bibliothèque d'API Docker mise à niveau de la v26 à la v28. - * Correction de la gestion du processeur Windows par exemple avec plusieurs groupes de processeurs. - - * [Agent iOS v7.5.11](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-7511) : - - * Correction des problèmes de performances pouvant survenir lors de l'utilisation du traçage des interactions. - * Correction d'un log lié au traçage distribué qui pouvait être affiché de manière incorrecte. - - * [Exécution du navigateur de Node v3.0.55](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.55): - - * Correction des vulnérabilités sous-jacentes d'Ubuntu en corrigeant plusieurs CVE de sécurité. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx b/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx deleted file mode 100644 index 7b8b9bbc0dc..00000000000 --- a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-10-17' -version: 'October 13 - October 17, 2025' -translationType: machine ---- - -### Changements majeurs - -* [Intégration GitHub mise à jour pour l'architecture de services d'intelligence](/docs/service-architecture-intelligence/github-integration) avec des révisions approfondies pour améliorer la clarté et ajouter de nouvelles options de gestion organisationnelle. -* [Présentation du contrôle des agents](/docs/new-relic-control/agent-control/overview) restructuré et documentation du contrôle des agents associée pour une organisation et une clarté améliorées à mesure que la fonctionnalité a atteint la disponibilité générale. - -### Modifications mineures - -* Ajout d'une section d'importation utilisateur en masse à [l'interface utilisateur de gestion des utilisateurs et aux tâches courantes](/docs/accounts/accounts-billing/new-relic-one-user-management/user-management-ui-and-tasks). -* Ajout de la modélisation des quotas de ressources pour OTEL à [la modélisation des métriques New Relic OTel K8s](/docs/kubernetes-pixie/kubernetes-integration/installation/k8s-otel-metrics). -* Mise à jour [de l'installation et de la configuration de l'intégration New Relic eBPF](/docs/ebpf/k8s-installation) et [installation et configuration de l'intégration New Relic eBPF](/docs/ebpf/linux-installation) avec des améliorations d'installation et de configuration. -* [Intégration notification alertes](/docs/alerts/get-notified/notification-integrations) mise à jour pour une meilleure clarté. -* Version de compatibilité fixe pour [l'intégration du monitoring des conteneurs Docker ](/docs/infrastructure/host-integrations/host-integrations-list/docker-container-monitoring-integration). -* Compatibilité des versions de Kubernetes mises à jour dans [l'intégration Kubernetes : compatibilité et exigences](/docs/kubernetes-pixie/kubernetes-integration/get-started/kubernetes-integration-compatibility-requirements). -* Attribut maximum mis à jour par limite métrique dans [les limites de l'API métrique et l'attribut restreint](/docs/data-apis/ingest-apis/metric-api/metric-api-limits-restricted-attributes). - -### Notes de version - -* Restez au courant de nos dernières sorties : - - * [Agent Node.js v13.5.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-5-0): - - * Mise à jour de l'instrumentation `fastify` pour vous abonner à l'événement généré. - * Mise à jour des instruments `pg` et `pg-native` pour vous abonner aux événements évoqués. - * Mise à jour de `config.instrumentation.timers.enabled` sur false pour désactiver `timers.setTimeout` et `timers.setInterval` par défaut. - * Ajout d'une nouvelle classe de base de diagnostic et migration d'undici pour utiliser la nouvelle classe. - - * [Intégration Kubernetes v3.46.0](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-46-0): - - * Prise en charge de la version 1.34 ajoutée et prise en charge de la version 1.29 abandonnée. - * Mise à jour de golang.org/x/crypto vers la version 0.42.0. - * Mise à jour d'Alpine vers la version 3.22.2. - * Mise à jour du package Kubernetes vers la version 0.34.1. - - * [Agent .NET MAUI v1.1.13](/docs/release-notes/mobile-release-notes/net-maui-release-notes/net-maui-agent-1113): - - * Agent Android natif mis à jour vers la version 7.6.10. - * Agent iOS natif mis à jour vers la version 7.5.11. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx b/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx deleted file mode 100644 index ce1c74b214b..00000000000 --- a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx +++ /dev/null @@ -1,267 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-07-25' -version: 'June 13 - July 24, 2025' -translationType: machine ---- - -### Nouveaux documents - -* Ajout d'une nouvelle fonctionnalité sur [la façon de déboguer les problèmes de l'agent New Relic Browser ](/docs/browser/new-relic-browser/troubleshooting/how-to-debug-browser-agent/), y compris le logging détaillé, monitoring des demandes réseau et l'événement d'inspection pour un dépannage amélioré dans les versions d'agent 1.285.0 et supérieures. -* Ajout de la prise en charge [d’Azure Functions](/docs/serverless-function-monitoring/azure-function-monitoring/introduction-azure-monitoring/) pour le monitoring des fonctions `python` et `.node.js`. -* Ajout [d'un optimiseur de coûts](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-optimizer/) pour des informations détaillées exploitables pour améliorer l'efficacité du calcul, avec une fonctionnalité permettant d'identifier les inefficacités, de fournir des recommandations d'optimisation et d'estimer les économies de CCU dans la plateforme New Relic. -* Ajout [d'Intelligence Coûts du cloud](/docs/cci/getting-started/overview), offrant des outils de visibilité et de gestion des coûts cloud, y compris des fonctionnalités telles que la répartition complète des coûts, l'allocation des coûts Kubernetes, l'estimation des coûts en temps réel et la collecte de données inter-comptes, prenant actuellement en charge uniquement les coûts AWS cloud. -* Ajout [de l'observabilité OpenTelemetry pour Kubernetes avec l'intégration indépendante du fournisseur de fonctionnalités New Relic](/docs/kubernetes-pixie/k8s-otel/intro/) pour monitoring transparente du cluster via le graphique Helm, améliorant les signaux de télémétrie pour les métriques, les événements et les logs transmis aux outils et au tableau de bord de New Relic. -* Ajout [de limitations et de dépannage pour l'intégration Windows](/docs/kubernetes-pixie/kubernetes-integration/troubleshooting/troubleshooting-windows/) -* Ajout de l'intégration AWS via [CloudFormation et flux de métriques CloudWatch](/docs/infrastructure/amazon-integrations/aws-integration-for-metrics/via-cloudformation-cwms/), prenant en charge l'API Polling pour les services non pris en charge. -* Ajout [d'une balise améliorée pour la base de données entité New Relic](/docs/infrastructure/host-integrations/db-entity-tags/) pour le moniteur de base de données entité via l'intégration sur hôte pour MySQL et MS SQL Server, enrichissant les métadonnées informations détaillées et l'organisation dans New Relic sans affecter la facturation ou la télémétrie existante. - -### Changements majeurs - -* Ajout de fonctions non-agrégateur aux [référencesNRQL ](/docs/nrql/nrql-syntax-clauses-functions/#non-aggregator-functions/). -* Mise à jour des [exigences de l'agentRuby et du framework pris en charge](/docs/apm/agents/ruby-agent/getting-started/ruby-agent-requirements-supported-frameworks/). -* Ajout des logs en tant qu'événements New Relic personnalisé (New Relic Custom Events) aux [logs OpenTelemetry dans le document New Relic](/docs/opentelemetry/best-practices/opentelemetry-best-practices-logs/#custom-events). -* Mise à jour des runtimes pris en charge pour les fonctions Linux, Windows et conteneurisées dans le document [Compatibilité et exigences pour les fonctions Azure instrumentées](/docs/serverless-function-monitoring/azure-function-monitoring/compatibility-requirement-azure-monitoring/#supported-runtimes). -* Mise à jour des données métriques pour [l'intégration cloudConfluent](/docs/message-queues-streaming/installation/confluent-cloud-integration/#metrics). -* Suppression de GCP Cloud Run de [la configuration de l'agent Node.js.](/docs/apm/agents/nodejs-agent/installation-configuration/nodejs-agent-configuration/) -* [Compatibilité et exigences mises à jour pour monitoring de l'IA](/docs/ai-monitoring/compatibility-requirements-ai-monitoring/) pour inclure une bibliothèque supplémentaire prise en charge par l'agent .NET. -* Ajout du point de terminaison New Relic télémétrie dualstack au [trafic réseau New Relic](/docs/new-relic-solutions/get-started/networks/#new-relic-endpoints). -* Ajout `GcpHttpExternalRegionalLoadBalancerSample` à l' [intégration de monitoring de Google Cloud Load Balancing](/docs/infrastructure/google-cloud-platform-integrations/gcp-integrations-list/google-cloud-load-balancing-monitoring-integration/). -* Ajout de la procédure de démarrage OpenShift sur la façon d' [installer le document du gestionnaire de tâches Synthetics](/docs/synthetics/synthetic-monitoring/private-locations/install-job-manager/#-install). -* Mise à jour de la [version 12 de l'agent Node.js.](/docs/apm/agents/nodejs-agent/installation-configuration/update-nodejs-agent/) -* Ajout d'une intégration transparente pour [AWS avec New Relic utilisant CloudFormation et le flux de métriques CloudWatch](/docs/infrastructure/amazon-integrations/aws-integration-for-metrics/via-cloudformation-cwms/), y compris la prise en charge de l'interrogation API. - -### Modifications mineures - -* Ajout `Transaction` comme période de conservation pour [la trace de transaction](/docs/data-apis/manage-data/manage-data-retention/#retention-periods/). -* Ajout `Destination` comme nouvelle catégorie aux [règles et limites d'alerte](/docs/alerts/admin/rules-limits-alerts/). -* Ajout d’une légende dans [le document Introduction au service Azure Native New Relic](/docs/infrastructure/microsoft-azure-integrations/get-started/azure-native/) pour garantir que les paramètres de diagnostic sur les ressources Azure sont correctement configurés ou désactiver le transfert via le service Azure Native New Relic pour empêcher l’envoi de données à la plateforme New Relic. -* Mise à jour de la dernière bibliothèque compatible pour [l'agent .NET](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements/). -* Ajout d'un appel dans le document [de notes de sortie de l'agent iOS](/docs/release-notes/mobile-release-notes/ios-release-notes/index/) pour annoncer qu'à partir de la version 7.5.4 du SDK iOS, un changement entraîne désormais le signalement d'un événement d'exception gérée précédemment supprimé. -* Exigences mises à jour pour les relations service-conteneur pour spécifier l'attribut de ressource pour les environnements Kubernetes et `container.id` pour les environnements non-Kubernetes, garantissant configuration de télémétrie appropriée pour [les ressources-OpenTelemetry dans New Relic](/docs/opentelemetry/best-practices/opentelemetry-best-practices-resources/). -* Ajout de la prise en charge CLI pour l'installation d'une version [d'agent infrastructure spécifique](/docs/infrastructure/infrastructure-agent/new-relic-guided-install-overview/#install-specific-versions), permettant un déploiement cohérent et une compatibilité système ; spécifiez la version à l'aide de `@X.XX.X` dans le nom de la recette. -* Ajout d'une légende pour souligner les exigences d'accès aux rôles pour l'utilisation des fonctionnalités **Manage Account Cardinality**, **Manage Metric Cardinality** et **Create Pruning Rules** dans l'interface utilisateur ; assurez-vous que les autorisations sont définies dans la [gestion de la cardinalité](/docs/data-apis/ingest-apis/metric-api/cardinality-management/#attributes-table). -* Mise à jour de la [compatibilité et des exigences pour l'agent Node.js](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent/) vers `v12.23.0`. -* Ajout des autorisations minimales requises pour la configuration d'un [Elasticsearch](/docs/infrastructure/host-integrations/host-integrations-list/elasticsearch/elasticsearch-integration). -* Mise à jour de l'attribut `FACET` utilisation maximale acceptable des limites de 5 000 à 20 000 valeurs pour [la syntaxe d'alerte NRQL](/docs/alerts/create-alert/create-alert-condition/create-nrql-alert-conditions/). - -### Notes de version - -* Annoncé le 7 janvier 2026 comme date de fin de vie des [règles d'abandon ciblant l'événement infrastructure dans `SystemSample`, `ProcessSample`, `NetworkSample`, et `StorageSample`](/eol/2025/05/drop-rule-filter/) - -* À compter d'aujourd'hui, la fin de vie de [FACET sur messageId et horodatage en condition d'alerte](/eol/2025/07/deprecating-alert-conditions/). - -* Annoncé le 28 octobre 2025 comme date de fin de vie pour [Attention requise](/eol/2025/07/upcoming-eols/). - -* Consultez nos articles Quoi de neuf : - - * [Envoyer une notification directement à Microsoft Teams](/whats-new/2025/03/whats-new-03-13-microsoft-teams-integration/) - * [New Relic Compute Optimizer est généralement disponible !](/whats-new/2025/06/whats-new-06-25-compute-optimizer/) - * [Logs Cross Account Query dans le Unified Query Explorer](/whats-new/2025/07/whats-new-07-01-logs-uqe-cross-account-query/) - * [Monitoring Kubernetes avec OpenTelemetry est généralement disponible !](/whats-new/2025/07/whats-new-7-01-k8s-otel-monitoring/) - * [Monitoring des nœuds Windows pour Kubernetes est désormais en version préliminaire publique](/whats-new/2025/07/whats-new-07-04-k8s-windows-nodes-preview/) - * [Identifier les problèmes de performances : filtrage avancé des pages vues et des Core Web Vitals](/whats-new/2025/07/whats-new-07-09-browser-monitoring/) - * [Vous pouvez désormais trier par erreurs les plus récentes](/whats-new/2025/07/whats-new-7-08-ei-sort-by-newest/) - * [Vos données de navigateur, vos termes : Nouvelles options de contrôle](/whats-new/2025/07/whats-new-07-10-browser-monitoring/) - * [Analyse approfondie des requêtes pour la base de données désormais généralement disponible](/whats-new/2025/07/whats-new-07-24-db-query-performance-monitoring/) - * [Les prévisions NRQL et les alertes prédictives sont désormais disponibles pour tous](/whats-new/2025/07/whats-new-7-22-predictive-analytics/) - * [APM + OpenTelemetry Convergence GA](/whats-new/2025/07/whats-new-07-21-apm-otel/) - * [L'intégration agentique pour GitHub Copilot et ServiceNow est désormais disponible](/whats-new/2025/07/whats-new-7-15-agentic-ai-integrations/) - -* Restez au courant de nos dernières sorties : - - * [Exécution de l'API Node v1.2.119](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.119/) - * Problèmes de vulnérabilité résolus. - - * [Ping Runtime v1.51.0](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.119/) - - * Correction des vulnérabilités de logback-core pour l'exécution du ping. - * Correction des vulnérabilités du serveur Jetty pour l'exécution du ping. - * Correction des vulnérabilités d'Ubuntu pour l'exécution du ping. - - * [Agent Browser v1.292.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.292.0/) - - * Mettre à jour les définitions `BrowserInteraction` et `previousUrl`. - * Ajout d'un événement d'inspection supplémentaire. - * Valeur API `finished` fixe `timeSinceLoad`. - - * [Intégration Kubernetes v3.42.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-42-1/) - * Correction des ajustements internes liés au backend et au CI pour la compatibilité future de la plateforme. - - * [Gestionnaire de tâches v444](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-444/) - * Correction d'un problème qui empêchait certains clients de voir les résultats de certains moniteurs avec des temps d'exécution plus longs. - - * [Agent Python v10.14.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101400/) - - * Prise en charge ajoutée pour `Azure Function Apps`. - * Correction `pb2` fichiers pour activer la prise en charge `protobuf v6`. - - * [Agent Android v7.6.7](/docs/release-notes/mobile-release-notes/android-release-notes/android-767/) - - * Amélioration des performances pour résoudre les ANR lors du reporting des logs. - * Correction d'un problème permettant de continuer à signaler les logs à la fin de l'application. - * Résolution d’un problème avec monitoring de l’état de l’application et la transmission des données. - * Amélioration de quelques violations lors de l'activation du mode strict. - - * [Intégration Kubernetes v3.42.2](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-42-2/) - - * Mis à jour `golang.org/x/crypto` à `v0.39.0`. - * Mis à jour `go` à `v1.24.4`. - - * [Agent .NET v10.42.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-42-0/) - - * Prise en charge ajoutée pour Azure Service Bus. - * Correction des erreurs de construction du profileur avec la dernière version de VS. - - * [Agent PHP v11.10.0.24](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-11-10-0-24/) - - * Ajout de l'API d'exécution Composer à utiliser par défaut pour détecter le package utilisé par les applications PHP. - * Comportement indéfini corrigé lors de l'exécution de l'API Composer. - - * [Exécution du navigateur de nœuds v3.0.32](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.32/) - * Options de création de Chrome mises à jour pour Chrome 131. - - * [Application mobile pour iOS v6.9.8](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6098/) - * Amélioration de la fonctionnalité Ask AI avec une connexion socket plus robuste et plus fiable, garantissant une expérience transparente. - - * [Application mobile pour Android v5.29.7](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5297/) - * Amélioration de la fonctionnalité Ask AI avec une connexion socket plus robuste et plus fiable, garantissant une expérience transparente. - - * [Agent Node.js v12.22.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-22-0/) - - * Ajout de la prise en charge du streaming `openai` v5. - * Prise en charge ajoutée pour l'API `openai.responses.create`. - * Logging des erreurs corrigée pour l'en-tête tracestate non défini. - - * [Agent d'infrastructure v1.65.0](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1650/) - - * Mise à jour de la dépendance `newrelic/nri-winservices` à `v1.2.0` - * Mise à jour tag docker alpine pour `v3.22` - - * [Agent d'infrastructure v1.65.1](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1651/) - * mettre à jour la dépendance `newrelic/nri-flex` vers `v1.16.6` - - * [Agent Browser v1.292.1](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.292.1/) - * Correction de la priorité des conditions de course de l'attribut personnalisé. - - * [NRDOT v1.2.0](/docs/release-notes/nrdot-release-notes/nrdot-2025-06-26/) - * Le noyau bêta d'OTEL a été augmenté à `v0.128.0` - - * [Agent multimédia pour HTML5.JS v3.0.0](/docs/release-notes/streaming-browser-release-notes/streaming-browser-agent-25-04-15/) - - * Introduction d'un nouveau type d'événement. - * Le type d'événement `PageAction` est obsolète. - - * [Agent multimédia pour HTML5.JS v3.1.1](/docs/release-notes/streaming-browser-release-notes/streaming-browser-agent-25-06-15/) - - * Activation de la publication npm pour le package, garantissant une accessibilité et une distribution faciles. - * Ajout des builds `cjs`, `esm` et `umd` au dossier `dist`, garantissant la compatibilité avec les formats de modules CommonJS, ES et UMD. - - * [Agent multimédia pour Roku v4.0.0](/docs/release-notes/streaming-others-release-notes/streaming-others-agent-25-02-25/) - - * Introduction d'un nouveau type d'événement. - * Le type d'événement `RokuVideo` est obsolète. - * Le type d'événement `RokuSystem` est obsolète. - - * [Agent multimédia pour Roku v4.0.1](/docs/release-notes/streaming-others-release-notes/streaming-others-agent-25-04-22/) - * Renommer `errorName` avec `errorMessage` en `errorName` est obsolète. - - * [Gestionnaire de tâches v447](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-447/) - * Mise à niveau de l'image de base fixe de `ubuntu 22.04` à `ubuntu 24.4` - - * [Ping Runtime v1.52.0](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.52.0/) - * Mise à niveau de l'image de base améliorée de `ubuntu 22.04` à `ubuntu 24.04` - - * [Intégration Kubernetes v3.43.0](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-0/) - * Ajout de la prise en charge de monitoring des nœuds Windows dans le cluster Kubernetes. - - * [Application mobile pour Android v5.29.8](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5298/) - * Bug corrigé et interface utilisateur améliorée pour une expérience plus fluide. - - * [Agent Node.js v12.23.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-23-0/) - - * Ajout de la possibilité de générer des rapports uniquement sur les portées d'entrée et de sortie. - * Prise en charge de Node.js 24 ajoutée. - * Rapport de compatibilité mis à jour. - - * [Exécution de l'API Node v1.2.120](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.120/) - * Correction des vulnérabilités pour `CVE-2024-39249` - - * [Application mobile pour iOS v6.9.9](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6099/) - * Amélioration de la fonctionnalité Ask AI avec une invite dynamique. - - * [Agent Browser v1.293.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.293.0/) - - * Ajout d'un message interne **sur les tâches longues**. - * Problème résolu empêchant la désactivation des traces distribuées. - - * [Exécution du navigateur de nœuds v3.0.35](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.35/) - * Image de base améliorée - - * [Agent Java v8.22.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8220/) - - * Métadonnées liées pour les services Azure App. - * Suppression de l'instrumentation `MonoFlatMapMain`. - - * [Agent Node.js v12.24.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-24-0/) - - * Limite de taille de valeur d'attribut configurable implémentée - * Rapport de compatibilité mis à jour. - - * [Intégration Kubernetes v3.43.2](docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-2/) - * Mettre à jour la version du graphique kube-state-métriques de `5.12.1` vers `5.30.1` - - * [Agent iOS v7.5.7](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-757/) - * Correction d'un problème qui pouvait entraîner le fait que le tracing distribué ne contienne pas toutes les informations de compte requises au démarrage d'une session. - - * [Application mobile pour Android v5.29.9](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5299/) - * Amélioration des commentaires avec un rendu d'interface utilisateur dynamique. - - * [Application mobile pour Android v5.30.0](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-53000/) - * Correction de bugs et mise à jour des indicateurs Teams GA pour une expérience utilisateur améliorée. - - * [Agent Go v3.40.1](/docs/release-notes/agent-release-notes/go-release-notes/go-agent-3-40-1/) - - * Utilisation annulée. Retour à la version 3.39.0 sortie en raison d'un bug de blocage - * Suppression des tests awssupport\_test.go qui ajoutaient une dépendance directe au module go - - * [Agent Flutter v1.1.12](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1112/) - - * Amélioration de l'agent Android natif mis à jour vers la version 7.6.7 - * Amélioration de l'agent iOS natif mis à jour vers la version 7.5.6 - - * [Agent Node.js v13.0.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-0-0/) - - * Suppression du support pour Node.js 18 - * Version minimale prise en charge mise à jour pour `fastify` vers 3.0.0, `pino` à 8.0.0 et `koa-router` à 12.0.0 - - * [Agent Browser v1.294.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.294.0/) - * Rapport fixe vide previousUrl comme non défini - - * [Agent d'infrastructure v1.65.4](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1654/) - * Mise à jour de la dépendance `newrelic/nri-prometheus` vers la version 2.26.2 - - * [Application mobile pour iOS v6.9.10](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6100/) - * Amélioration des commentaires avec un rendu d'interface utilisateur dynamique. - - * [Agent Android NDK v1.1.3](/docs/release-notes/mobile-release-notes/android-release-notes/android-ndk-113/) - * Ajout de la prise en charge de la taille de page de 16 Ko - - * [Agent d'infrastructure v1.65.3](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1653/) - - * Modification du handle de processus Windows. - * Remonté `nri-docker` à `v2.5.1`, `nri-prometheus` à `v2.26.1` - - * [Agent .NET v10.43.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-43-0/) - * Ajout de la prise en charge des rubriques dans Azure Service Bus - - * [Agent Node.js v12.25.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-25-0/) - * API AWS Bedrock Converse à instrument fixe - - * [Agent Node.js v12.24.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-24-0/) - - * Limite de taille de valeur d'attribut configurable implémentée - * Rapport de compatibilité mis à jour - - * [CLI de diagnostic (nrdiag) v3.4.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-340/) - * Les erreurs liées à GLIBC fixes telles que `/lib64/libc.so.6: version 'GLIBC_2.34'` introuvable ont été résolues \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx b/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx deleted file mode 100644 index 2a503e2b727..00000000000 --- a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx +++ /dev/null @@ -1,99 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-01' -version: 'July 25 - August 01, 2025' -translationType: machine ---- - -### Nouveaux documents - -* Ajout [de la documentation Calculer Budgets](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-budgets/overview) pour vous fournir un mécanisme de surveillance et d'alerte sur l'utilisation de votre unité de consommation Calculer (CCU). - -### Changements majeurs - -* [Compatibilité et exigences](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent) mises à jour pour l'agent Node.js. - -* [Compatibilité et exigences mises à jour pour l'agent Alpine Linux](/docs/apm/agents/php-agent/getting-started/php-agent-compatibility-requirements) pour PHP. - -* Mise à jour des exigences spécifiques à l'agent pour [le Contrôle de pipeline](/docs/new-relic-control/pipeline-control/modify-agent-configuration). - -* Mise à jour du JFR relatif aux exigences de configuration pour [l'agent Java](/docs/apm/agents/java-agent/configuration/java-agent-configuration-config-file#jfr-harvest-interval). - -* Mise à jour des informations de tarification et de facturation pour New Relic dans : - - * [Données : Facturation et règles](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing) - * [Requêtes et alertes liées à l'utilisation](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/usage-queries-alerts) - * [Plan d'utilisation de New Relic](/docs/licenses/license-information/usage-plans/new-relic-usage-plan) - -### Modifications mineures - -* Clarification du langage dans l'agent .NET pour capturer les paramètres SQL dans le document [de compatibilité de l'agent et des exigences .NET](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements). -* Affinement du langage dans [l'intégration de la surveillance de la base de donnéesOracle ](/docs/infrastructure/host-integrations/host-integrations-list/oracle-database-monitoring-integration). - -### Notes de version - -* Consultez nos articles Quoi de neuf : - - * [Les budgets sont désormais généralement disponibles](/whats-new/2025/07/whats-new-7-30-compute-budgets). - * [Amélioration des expériences utilisateur : tirer parti Session Replay pour l'optimisation des éléments essentiels du Web](/whats-new/2025/07/whats-new-7-31-augmenting-user-experiences-browser). - -* Restez au courant de nos dernières sorties : - - * [Agent Android v7.6.8](/docs/release-notes/mobile-release-notes/android-release-notes/android-768): - - * Correction d'un problème où les traces d'appels pour les erreurs Unity ne s'affichaient pas correctement. - * Correction d'un problème qui empêchait l'enregistrement de la métrique récapitulative lorsque l'application revenait au premier plan après son lancement initial. - * Correction d'un problème où un JSON non valide dans les entrées log pouvait provoquer des erreurs. - - * [CLI de diagnostic (nrdiag) v3.4.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-341): - * Ajout de `K8s/AgentControl/agent-control-install-job-logs` pour collecter les logs générés par l'installation de l'agent-control. - - * [Gestionnaire de tâches v451](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-451): - - * Vulnérabilités corrigées liées à `common-lang3` Java et Ubuntu pour résoudre les problèmes de sécurité dans le SJM. - * Mise en œuvre des modifications de migration de la file d'attente du processeur liées à la migration de notre architecture de service interne. - * Correction d'un problème pour inclure les détails complets de l'exception afin de fournir un meilleur contexte pour le dépannage dans les logs SJM. - - * [Application mobile pour Android v5.30.1](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5301): - * Amélioration de l'expérience de connexion. - - * [Application mobile pour iOS v7.5.8](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-758): - - * A créé l'agent à l'aide de Xcode 16.4. - * Correction d'un problème qui pouvait entraîner le fait que le tracing distribué ne contienne pas toutes les informations de compte requises au démarrage d'une session. - * Correction d'un problème pouvant provoquer un plantage au démarrage de l'agent. - - * [Exécution de l'API Node](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.122): - * Correction des vulnérabilités des données de formulaire et des vulnérabilités Ubuntu sous-jacentes pour résoudre les vulnérabilités de sécurité dans les environnements d'exécution de l'API Node. - - * [Node browser runtime](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.39): - * Correction des vulnérabilités des données de formulaire et des vulnérabilités Ubuntu sous-jacentes pour résoudre les vulnérabilités de sécurité dans les environnements d'exécution Browser Node. - - * [Durée d'exécution du ping](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.0): - * Vulnérabilités corrigées liées à `common-lang3` Java et Ubuntu pour résoudre les problèmes de sécurité dans l'environnement d'exécution Ping. - - * [Agent Python v10.15.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101500): - - * Ajout de la prise en charge de [`oracledb`](https://pypi.org/project/oracledb/) - * Correction d'un bug dans les instrumentations `MessageBroker` où les méthodes de sérialisation recherchaient l'attribut `destination_name` sur `MessageTransaction` et il n'existait pas. - * Correction du problème de métadonnées d'utilisation AWS lors de l'exécution d'AWS et de K8 ensemble. - - * [Agent Ruby v9.20.0](/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-20-0): - - * Ajout de la prise en charge de l'enregistrement de l'ID Docker lors de l'exécution dans l'environnement AWS ECS Fargate. - * Ajout d'une nouvelle méthode d'assistance pour simplifier la comparaison des versions. - * L'attribut `code.stacktrace` a été ajouté aux étendues datastore lorsque la durée dépasse le seuil configuré. - * Liens sources `Brewfile` corrigés. - * Correction d'une erreur qui se produit lors de l'utilisation de `HTTPX 1.5.0` pour stocker la réponse. - * Amélioration de l'informations enregistrées au niveau du débogage par l'agent lorsque l'agent lit une source configuration. - - * [Agent Unity v1.4.8](/docs/release-notes/mobile-release-notes/unity-release-notes/unity-agent-148): - - * Mise à jour de l'agent Android natif vers la version 7.6.7. - * Mise à jour de l'agent iOS natif vers la version 7.5.6. - - * [Agent Unity v1.4.9](/docs/release-notes/mobile-release-notes/unity-release-notes/unity-agent-149): - - * Mise à jour de l'agent Android natif vers la version 7.6.8. - * Mise à jour de l'agent iOS natif vers la version 7.5.8. - * Correction du problème de trace d'appels d'exception Unity lorsque l'espace de nommage est utilisé. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx b/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx deleted file mode 100644 index d1b3ded6ad8..00000000000 --- a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx +++ /dev/null @@ -1,60 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-08' -version: 'August 01 - August 07, 2025' -translationType: machine ---- - -### Nouveaux documents - -* [Tutoriel NerdGraph ajouté : Créer un rôle personnalisé pour les équipes](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-budgets/overview) pour vous guider dans l’utilisation de l’API New Relic NerdGraph pour créer et gérer des rôles personnalisés pour les équipes. - -### Modifications mineures - -* Modification du [seuil d'alerte événement par condition](/docs/alerts/admin/rules-limits-alerts) à 1k par minutes. -* Mise à jour des dernières [versions et exigences compatibles avec l'agent .Net](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements) vérifiées. -* Mise à jour des informations de version et de prise en charge des versions concernant le courtier de services pour [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-service-broker-integration). -* Mise à jour des informations de prise en charge de la version concernant le buildpack d'intégration New Relic NGINX pour [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-nginx-buildpack-integration). -* Mise à jour des informations de version et de support de version concernant New Relic Nozzle pour [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-firehose-nozzle-integration/#product-snapshot). - -### Notes de version - -* Consultez nos articles Quoi de neuf : - - * [Errors Inbox est désormais intégrée à la charge de travail](/whats-new/2025/08/whats-new-08-06-workloads-errors-inbox). - -* Restez au courant de nos dernières sorties : - - * [Gestionnaire de tâches v452](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-452): - * Améliorations internes ajoutées pour la gestion des exceptions dans le traitement des messages de file d'attente. - - * [IntégrationKubernetes v3.43.3](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-3): - * Ajout d'un graphique Helm pour déployer la solution monitoring New Relic Kubernetes. - - * [Contrôle de pipeline Gateway v1.1.0](/docs/release-notes/pipeline-control-gateway-release-notes/pipeline-control-gateway-25-08-05): - - * Implémentation d'une nouvelle fonctionnalité permettant de supprimer de manière sélective les données et les attributs des événements `SqlTrace` et `TransactionTrace` à l'aide de règles de suppression. - - * Des vulnérabilités ont été corrigées dans le package `golang.org/x/net`, notamment un problème de script intersite et un contournement du proxy HTTP lié aux ID de zone IPv6. - - * Mise à niveau vers Go `1.24` et les dépendances suivantes sont mises à jour pour améliorer la sécurité et intégrer les correctifs récents : - - * `golang.org/x/net to v0.38.0` - * `golang.org/x/sys to v0.31.0` - * `golang.org/x/text to v0.23.0` - - * [Application mobile pour iOS v6.9.11](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6101): - * Le flux de connexion a été réduit de deux étapes en stockant le domaine d'authentification d'un utilisateur et en le redirigeant directement vers sa page de connexion. - - * [Agent Flutter v1.1.13](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1113): - - * Agent Android natif amélioré mis à jour vers la version 7.6.8 - * Agent iOS natif amélioré mis à jour vers la version 7.5.8 - - * [Agent .NET MAUI v1.1.11](/docs/release-notes/mobile-release-notes/net-maui-release-notes/net-maui-agent-1111) - - * Agent Android natif amélioré mis à jour vers la version 7.6.8 - * Agent iOS natif amélioré mis à jour vers la version 7.5.8 - - * [Agent d'infrastructure v1.65.5](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1655): - * Modification de la prise en charge des montages AWS EFS dans les exemples de stockage \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx b/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx deleted file mode 100644 index e751e90fd9c..00000000000 --- a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx +++ /dev/null @@ -1,112 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-15' -version: 'August 08 - August 14, 2025' -translationType: machine ---- - -### Nouveaux documents - -* Ajout [de la prise en charge des fonctions NRQL dans les règles de gateway](/docs/new-relic-control/pipeline-control/nrql-functions) pour décrire les fonctions NRQL prises en charge dans les règles de gateway de Contrôle de pipeline. -* Étapes de dépannage ajoutées pour résoudre [l'événement de redémarrage fréquent Fluent Bit ](/docs/infrastructure/infrastructure-troubleshooting/troubleshoot-infrastructure/frequent-fluent-bit-restart-events)en ajustant les paramètres de résolution du nom d'hôte dans la configuration de l'agent New Relic Infrastructure. - -### Changements majeurs - -* [Plan d'utilisation](/docs/licenses/license-information/usage-plans/new-relic-usage-plan/#list-price) mis à jour avec les dernières informations tarifaires. -* Ajout de **Error inbox** à [l'interface utilisateur de la charge de travail (workloads)](/docs/new-relic-solutions/new-relic-one/workloads/use-workloads/#errors). -* Ajout de la désactivation sélective de l'agent en fonction de la classe principale de démarrage ou du fichier jar exécutable via des variables d'environnement, ainsi que des paramètres de sécurité améliorés pour [la configuration de l'agent Java](/docs/apm/agents/java-agent/configuration/java-agent-configuration-config-file/#skip-applications). -* Ajout de la prise en charge de [la configuration du référentiel privé](/docs/new-relic-control/agent-control/configuration/#private-repository-configuration) dans Agent Control, permettant le déploiement d'agents gérés avec authentification via des méthodes de certificat de base ou TLS. -* Ajout de la prise en charge de [la gestion des secrets](/docs/new-relic-control/agent-control/configuration/#secrets-management) dans Agent Control, pour la gestion des données sensibles, telles que les mots de passe et l'API de clé, en les récupérant auprès d'un fournisseur de secrets dédié. - -### Modifications mineures - -* Ajout de restrictions de balise d'entité pour la clause `WHERE` dans [Drop data using Contrôle de pipeline cloud rules](/docs/new-relic-control/pipeline-control/cloud-rules-api/#restrictions). -* Ajout [de bonnes pratiques pour optimiser le contenu de votre source de connaissances](/docs/agentic-ai/knowledge-integration/overview/#configure) pour le connecteur New Relic AI Knowledge. - -### Notes de version - -* Consultez nos articles Quoi de neuf : - - * [Le mode haute précision UniqueCount et la prise en charge accrue des arguments sont désormais généralement disponibles](/whats-new/2025/08/whats-new-8-13-high-precision-uniquecount). - -* Restez au courant de nos dernières sorties : - - * [Agent Cordova v7.0.8](/docs/release-notes/mobile-release-notes/cordova-release-notes/cordova-agent-708/): - - * Mettre à jour l'agent Android natif vers la version 7.6.8 - * Mettre à jour l'agent iOS natif vers la version 7.5.8 - - * [Agent Cordova v7.0.9](/docs/release-notes/mobile-release-notes/cordova-release-notes/cordova-agent-709/): - - * Mettre à jour l'agent Android natif vers la version 7.6.6 - * Mettre à jour l'agent iOS natif vers la version 7.5.5 - - * [Agent Capacitor v1.5.8](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-158/): - - * Mettre à jour l'agent Android natif vers la version 7.6.6 - * Mettre à jour l'agent iOS natif vers la version 7.5.5 - - * [Agent Capacitor v1.5.9](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-159/): - * Correction du crash du signal d'abandon - - * [Agent Capacitor v1.5.10](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-1510/): - - * Mettre à jour l'agent Android natif vers la version 7.6.8 - * Mettre à jour l'agent iOS natif vers la version 7.5.8 - - * [CLI de diagnostic (nrdiag) v3.5.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-350/): - * mise à jour de la vérification de compatibilité de la version `Java/Appserver/JbossEapCheck` - - * [Agent .NET v10.44.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-44-0/): - - * Activation des échantillonneurs de performances métriques en mode Serverless - * Processus d'hôte Web Azure Function (Linux) exclu de l'instrumentation. - - * [NRDOT v1.3.0](/docs/release-notes/nrdot-release-notes/nrdot-2025-08-13/): - - * Mise à jour des versions des composants de l'hôtel de la v0.128.0 à la v0.131.0 - * Introduction de la distribution principale nrdot - - * [Agent Node.js v13.1.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-1-0/): - - * Ajout de la prise en charge de l'API de logs OTEL - * Ajout de mesures de prise en charge lorsque l'instrumentation a été désactivée pour un package - * Instrumentation des minuteries désactivée par défaut dans la configuration de l'échantillon - * Correction de l'obfuscation `transaction.url` - - * [Gestionnaire de tâches v454](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-454/): - * Correction des vulnérabilités sous-jacentes d'Ubuntu pour résoudre les vulnérabilités de sécurité dans SJM. - - * [Exécution de l'API Node v1.2.124](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.124/): - * Correction des vulnérabilités sous-jacentes d'Ubuntu pour résoudre les vulnérabilités de sécurité dans les environnements d'exécution de l'API Node. - - * [Exécution du navigateur de nœuds v3.0.41](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.41/): - * Correction des vulnérabilités tmp `CVE-2025-54798` et des vulnérabilités Ubuntu sous-jacentes pour résoudre les vulnérabilités de sécurité dans les environnements d'exécution Browser Node. - - * [Ping Runtime v1.54.0](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.0/): - * Correction de vulnérabilités liées à Ubuntu pour résoudre les problèmes de sécurité dans l'environnement d'exécution Ping. - - * [Agent Java v8.23.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8230/): - - * Mis à jour pour prendre en charge la version 24 de graphql. - * Ajout de l'instrumentation de la laitue 6.5. - * Version commons-lang mise à jour vers 3.18.0 - - * [AWS Lambda redirecteur de logs v1.1.1](/docs/release-notes/aws-lambda-log-forwarder-release-notes/lambda-25-07-25/): - * Posture de sécurité améliorée en mettant à niveau la version Go vers 1.24.4 dans système. - - * [Agent PHP v12.0.0.25](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-12-0-0-25/): - - * Logging des erreurs de la carte des hooks Drupal améliorée. - * Problèmes de détection package legacy corrigés pour Security RX. - - * [Agent d'infrastructure v1.66.1](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1661/): - * Prise en charge rétablie des montages AWS EFS dans les exemples de stockage. - - * [Application mobile pour Android v5.30.6](docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5306/): - * Prise en charge améliorée des clés de passe pour les connexions SAML et sociales. - - * [Agent Browser v1.295.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.0/): - - * Ajout de la détection des causes d'erreur. - * Ajout d'avertissements concernant les correctifs de singe. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx b/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx deleted file mode 100644 index afc48736240..00000000000 --- a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx +++ /dev/null @@ -1,56 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-22' -version: 'August 15 - August 21, 2025' -translationType: machine ---- - -### Changements majeurs - -* Rapport de compatibilité [de l'agent Node.js](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent/) mis à jour. -* [Agent .NET](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements/) mis à jour avec les dernières versions de bibliothèque compatibles vérifiées. - -### Modifications mineures - -* Mise à jour du système d'exploitation [Debian](/docs/infrastructure/infrastructure-agent/linux-installation/package-manager-install/) vers la version 12 (« bookworm ») pour prendre en charge l' [agentinfrastructure ](/docs/infrastructure/infrastructure-agent/requirements-infrastructure-agent/#os)pour Linux. -* Fonction [`accountId()`](/docs/data-apis/manage-data/query-limits/) mise à jour pour interroger les limites de données. -* [Programme d'installationWindows MSI](/docs/infrastructure/infrastructure-agent/windows-installation/windows-msi-installer/#install-windows) mis à jour pour prendre en charge Windows 64 bits (Intel/AMD). - -### Notes de version - -* Annoncé le 7 janvier 2026 comme date de fin de vie des règles de suppression via l'[UI de monitoring de l'IA](/docs/ai-monitoring/drop-sensitive-data/). - -* [Agent iOS v7.5.9](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-759/) - - * Correction d'un problème qui pouvait entraîner le fait que le tracing distribué ne contienne pas toutes les informations de compte requises au début d'une session. - * Correction d'un problème pouvant provoquer un plantage au démarrage de l'agent. - -* [Agent Python v10.16.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101600/) - - * Ajout de la prise en charge des nouvelles fonctions [Redis](https://pypi.org/project/redis/). - * Tous les chemins internes de `os.path` à `pathlib.Path` ont été convertis. - * Problème résolu avec l'encodage JSON PosixPath. - -* [Intégration Kubernetes v3.44.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-44-1/) - - * Cette intégration est incluse dans les versions de graphiques suivantes : - - * [newrelic-infrastructure-3.49.1](https://github.com/newrelic/nri-kubernetes/releases/tag/newrelic-infrastructure-3.49.1) - * [nri-bundle-6.0.10](https://github.com/newrelic/helm-charts/releases/tag/nri-bundle-6.0.10) - -* [Agent .NET v10.44.1](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-44-1/) - - * Gestion des exceptions corrigée dans le wrapper d'instrumentation Service Bus. - * Processus d'hôte Web Azure Function (Linux) exclu de l'instrumentation. - -* [Agent Node.js v13.2.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-2-0/) - - * Ajout de la possibilité d'enregistrer `Supportability/Features/Instrumentation/OnRequire/` métriques pour l'instrumentation basée sur l'abonné. - * Ajout du hook de chargement esm et du patch commonjs pour fonctionner avec orchestrion-js. - * Instrumentation ajoutée pour `@modelcontextprotocol/sdk` appels clients `client.callTool`, `client.readResource` et `client.getPrompt`. - * Logique fixe autour de la détection du package OTEL. - * Mise à jour de `shimmer.setupSubscribers` pour configurer correctement et ignorer les abonnés désactivés. - -* [Agent Node.js v13.2.1](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-2-1/) - - * Agent mis à jour pour utiliser `@apm-js-collab/tracing-hooks` pour l'enregistrement CJS/ESM pour le tracing de l'instrumentation basée sur le canal. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx b/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx deleted file mode 100644 index ee8e55da4ea..00000000000 --- a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-05' -version: 'September 01 - September 05, 2025' -translationType: machine ---- - -### Nouveaux documents - -* Ajout [de la documentation monitoring des solutions SAP](/docs/sap-solutions/overview) pour fournir des conseils complets pour monitoring des applications SAP avec New Relic, y compris les procédures d'installation, configuration et de dépannage. - -### Changements majeurs - -* [Documentation de contrôle des agents](/docs/new-relic-control/agent-control/overview) mise à jour avec des révisions approfondies, notamment de nouveaux types d'agents, des options configuration, des capacités monitoring et des sections de dépannage. -* [Documentation d'exportation de streaming NerdGraph](/docs/apis/nerdgraph/examples/nerdgraph-streaming-export) restructurée pour les données de streaming vers AWS Kinesis Firehose, Azure Event Hub ou GCP Pub/Sub. - -### Modifications mineures - -* Ajout d'un nouvel exemple pour les variables basées sur ENUM/List aux [variables du modèle de dashboard](/docs/query-your-data/explore-query-data/dashboards/dashboard-template-variables). -* Documentation de configuration mise à jour pour [Terraform Agent Control](/docs/infrastructure/host-integrations/installation/install-infrastructure-host-integrations-via-terraform/agent-control). -* Documentation [de gestion du collecteur de logs](/docs/logs/forward-logs/log-collectors/log-collector-management) améliorée avec des instructions améliorées. -* Correction de divers liens brisés et problèmes de navigation. - -### Notes de version - -* Restez au courant de nos dernières sorties : - - * [Agent d'infrastructure v1.67.3](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1673): - * Versions d'intégration intégrées mises à niveau. - * [Exécution de l'API Node v1.2.126](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.126): - * Correction des vulnérabilités sous-jacentes d'Ubuntu pour résoudre les vulnérabilités de sécurité dans les environnements d'exécution de l'API Node. - * [Gestionnaire de tâches v463](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-463): - * Correction de CVE-2025-55163 et des vulnérabilités Ubuntu sous-jacentes pour résoudre les vulnérabilités de sécurité dans SJM. - * [Node Browser Runtime v3.0.43](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.43): - * Correction des vulnérabilités sous-jacentes d'Ubuntu pour résoudre les vulnérabilités de sécurité dans les environnements d'exécution de Node Browser. - * [Tableau de déploiement du contrôle des agents v0.0.74](/docs/release-notes/agent-control-deployment-chart-release-notes/agent-control-deployment-chart-05-09-25): - * Ajout de la prise en charge de la mise à niveau à distance du composant de déploiement Agent Control. - * [Graphique de livraison continue de contrôle des agents v0.0.2](/docs/release-notes/agent-control-continuous-delivery-chart-release-notes/agent-control-continuous-delivery-chart-05-09-25): - * Ajout de la prise en charge de la mise à niveau à distance du composant Agent Control livraison continue. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx b/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx deleted file mode 100644 index bb5a9bec1bb..00000000000 --- a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx +++ /dev/null @@ -1,94 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-14' -version: 'September 08 - September 12, 2025' -translationType: machine ---- - -### Nouveaux documents - -* Ajout d'une documentation complète [sur le modèle de maturité d'observabilité](/docs/new-relic-solutions/observability-maturity/) pour fournir des conseils pour mesurer et améliorer les pratiques d'observabilité dans quatre domaines clés : temps de disponibilité des entreprises, expérience numérique, excellence en ingénierie et observabilité intelligente. - -### Changements majeurs - -* [Configuration de l'agent PHP](/docs/apm/agents/php-agent/configuration/php-agent-configuration/) mise à jour avec de nouvelles options de configuration étendues pour les contrôles d'échantillonnage et l'instrumentation du gestionnaire d'exceptions du framework. - -### Modifications mineures - -* [Introduction aux dashboards](/docs/query-your-data/explore-query-data/dashboards/introduction-dashboards/) mise à jour avec des conseils améliorés pour l'utilisation dashboard. -* Documentation [de gestion de dashboard](/docs/query-your-data/explore-query-data/dashboards/manage-your-dashboard/) améliorée avec un contenu simplifié pour la gestion JSON. -* Liens brisés corrigés dans la documentation [du plan d'utilisation de New Relic](/docs/licenses/license-information/usage-plans/new-relic-usage-plan/). -* Configuration de débogage fixe dans la documentation [de dépannage de l'agent .NET](/docs/apm/agents/net-agent/troubleshooting/debugging-net-windows/). - -### Notes de version - -* Restez au courant de nos dernières sorties : - - * [Agent Browser v1.297.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.0/): - - * Prévention des récoltes précoces lors de la période de réessai pour une meilleure gestion limitant le taux. - * L'attribut méta newrelic a été supprimé des frais de relecture sortants pour réduire les octets facturables. - * Exceptions corrigées pour les corps nuls résultant de récoltes vides. - - * [Agent PHP v12.1.0.26](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-12-1-0-26/): - - * Ajout de contrôles d'échantillonnage basés sur la décision d'échantillonnage de tracew3c en amont. - * Option de configuration ajoutée pour ignorer l'instrumentation des gestionnaires d'exceptions du framework. - * Fuite de mémoire potentielle corrigée lors de l'appel de `newrelic_end_transaction(true)`. - * La version de Golang a été mise à jour vers la version 1.25.1 pour des améliorations de sécurité. - - * [Agent Python v10.17.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101700/): - - * Ajout de la prise en charge des tâches personnalisées dans Celery. - * Ajout de la prise en charge de monitoring Graphene-Django. - * Ajout de la prise en charge du filtrage middleware dans Django. - * Prise en charge ajoutée pour l'API AWS Bedrock Converse. - * Prise en charge ajoutée pour l'indicateur d'échantillonnage de l'en-tête W3CTraceParent. - - * [Agent Java v8.24.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8240/): - - * Prise en charge ajoutée pour MongoDB Reactive Streams 5.2.0 et versions ultérieures. - * Ajout du support Jedis 6. - * Correction du problème de double instrumentation de CouchBase. - * Correction du problème d'encapsulation de l'en-tête Spring WebClient 5.x. - - * [Agent Node.js v13.3.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-0/): - - * Prise en charge MCP `StreamableHTTPClientTransport` ajoutée. - - * [Agent Node.js v13.3.1](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-1/): - - * Correction du crash en définissant par défaut `requestParameters` sur un objet dans `transaction.addRequestParameters`. - - * [Agent Node.js v13.3.2](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-2/): - - * Code défensif ajouté pour obtenir `protocol` dans les appels http sortants. - - * [Intégration Kubernetes v3.45.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-45-1/): - - * Mis à jour avec les dernières améliorations et débogage. - - * [Gestionnaire de tâches v464](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-464/): - - * Problème résolu où les clients ne pouvaient pas extraire des images d'un registre personnalisé à l'aide de podman. - - * [Exécution du navigateur de nœuds v3.0.43](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.43/): - - * Correction des vulnérabilités sous-jacentes d'Ubuntu pour résoudre les vulnérabilités de sécurité. - - * [Application mobile pour iOS v6.9.12](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6102/): - - * Problèmes de liens profonds corrigés pour le tableau de bord et les alertes. - * Problème d'ID du tableau de bord CCU corrigé. - - * [Application mobile pour Android v5.30.7](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5307/): - - * Ajout du débogage et des améliorations. - - * [Agent Flutter v1.1.14](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1114/): - - * Ajout d'améliorations de stabilité supplémentaires et de débogage. - - * [Contrôle de pipeline Gateway v25.09.01](/docs/release-notes/pipeline-control-gateway-release-notes/pipeline-control-gateway-25-09-01/): - - * Ajout d'une nouvelle sortie avec des capacités de contrôle pipeline améliorées. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx b/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx deleted file mode 100644 index 1b2a7e77170..00000000000 --- a/src/i18n/content/fr/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx +++ /dev/null @@ -1,36 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-25' -version: 'Sep 20 - Sep 25, 2025' -translationType: machine ---- - -### Changements majeurs - -* [Tarification et facturation New Relic](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing) mises à jour avec une restructuration complète des tableaux pour une clarté et une organisation améliorées. - -### Modifications mineures - -* Mise à jour des instructions configuration du référentiel APT pour les installations [Azure Linux conteneur](/install/dotnet/installation/azure-linux-container), [Docker Linux](/install/dotnet/installation/dockerLinux) et [Linux](/install/dotnet/installation/linuxInstall2) pour la déploiement de l'agent .NET. -* Description ajoutée pour la variable d'environnement NEW\_RELIC\_CLOUD\_AWS\_ACCOUNT\_ID dans les [variables d'environnement pour la documentation du monitoring AWS Lambda](/docs/serverless-function-monitoring/aws-lambda-monitoring/instrument-lambda-function/env-variables-lambda). -* Documentation [d’aide et de support](/docs/new-relic-solutions/solve-common-issues/find-help-get-support) améliorée avec des références de ressources de support mises à jour. -* Correction du problème de plantage du démarrage de l'agent lié à l'appel pour [les notes de sortie de l'agent iOS 7.5.9](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-759). -* Informations configuration d'intervalle maximal mises à jour pour les paramètres de l'agent dans la [documentation d'intégration sur hôte](/docs/infrastructure/host-integrations/infrastructure-integrations-sdk/specifications/host-integrations-standard-configuration-format/#configure-how-the-agent-executes-your-integrations) pour le format de configuration standard. - -### Notes de version - -* Restez au courant de nos dernières sorties : - - * [Agent Go v3.41.0](/docs/release-notes/agent-release-notes/go-release-notes/go-agent-3-41-0): - - * Ajout d'options configuration d'échantillonnage parent distant pour contrôler le comportement d'échantillonnage distribué trace. - * Versions de bibliothèques tierces mises à jour pour des améliorations de sécurité. - - * [Agent Node.js v13.3.3](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-3): - - * Ajout de la prise en charge du tracing du rappel sur les abonnés. - * Instrumentation OpenAI corrigée pour renvoyer correctement APIPromise et éviter les plantages. - - * [Agent iOS v7.5.10](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-7510): - - * Correction d'un crash qui pouvait survenir au démarrage de l'agent. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx b/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx deleted file mode 100644 index e635be395dd..00000000000 --- a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-08-04' -version: 1.295.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Add error cause detection -bugs: - - Add monkey-patching warnings - - Calculate first and last timestamps from raw data -security: [] -translationType: machine ---- - -## v1.295.0 - -### Caractéristiques - -#### Ajouter une détection de cause d'erreur - -Détecter et signaler l'attribut de cause sur l'événement JavaScriptError capturé. Si la cause est une instance d'une erreur, la trace des appels sera capturée, sinon le contenu stringifié de la cause sera signalé. Cela sera interrogeable dans l'événement JavaScriptError sous l'attribut `cause`. - -### Débogage - -#### Ajouter des avertissements de mise à jour de singe - -Ajout d'une détection et d'avertissements lorsque les variables globales attendues ont été corrigées avant que l'agent ne soit exécuté sur la page. Cela peut entraîner des comportements inattendus et l’objectif est d’informer les clients de ce comportement. - -#### Calculer le premier et le dernier horodatage à partir des données brutes - -Assurez-vous que l'agent calcule manuellement le premier et le dernier horodatage d'une charge SessionReplay avant la récolte pour aider à améliorer la cohérence sur le lecteur d'interface utilisateur. - -## Déclaration de soutien - -New Relic vous recommande de mettre à niveau l'agent régulièrement pour vous assurer de bénéficier des dernières fonctionnalités et avantages en termes de performances. Les sorties plus anciennes ne seront plus prises en charge lorsqu'elles atteindront [la fin de leur vie](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Les dates de sortie reflètent la date de publication originale de la version de l'agent. - -Les nouveaux agents de navigation sont déployés auprès des clients par petites étapes sur une période donnée. De ce fait, la date à laquelle la sortie devient accessible sur votre compte peut ne pas correspondre à la date de publication d'origine. Veuillez consulter ce [dashboard d'état](https://newrelic.github.io/newrelic-browser-agent-release/) pour plus d'informations. - -Conformément à notre [politique de prise en charge des navigateurs](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la version 1.295.0 de l'agent de Browser a été conçue et testée sur ces navigateurs et plages de versions : Chrome 128-138, Edge 128-138, Safari 17-19 et Firefox 130-140. Pour les appareils mobiles, la version 1.295.0 a été créée et testée pour Android OS 16 et iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx b/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx deleted file mode 100644 index 1c13b3f0f23..00000000000 --- a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-08-19' -version: 1.296.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Harvest traces early -bugs: - - Remove event buffer inspection event -security: [] -translationType: machine ---- - -## v1.296.0 - -### Caractéristiques - -#### Traces de récolte précoces - -Mettre à jour l'agent pour gérer la trace de session de la même manière que les autres fonctionnalités gèrent les données à partir de [la version 1.294.0](https://docs.newrelic.com/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.294.0/), en permettant des récoltes à une taille de 16 ko. - -### Débogage - -#### Supprimer le tampon d'événement inspection événement - -Supprime l'événement d'inspection du tampon d'événements pour éviter une fuite de mémoire lors de l'utilisation de la console.log avec l'écouteur d'événements de fenêtre `newrelic`. - -## Déclaration de soutien - -New Relic vous recommande de mettre à niveau l'agent régulièrement pour vous assurer de bénéficier des dernières fonctionnalités et avantages en termes de performances. Les sorties plus anciennes ne seront plus prises en charge lorsqu'elles atteindront [la fin de leur vie](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Les dates de sortie reflètent la date de publication originale de la version de l'agent. - -Les nouveaux agents de navigation sont déployés auprès des clients par petites étapes sur une période donnée. De ce fait, la date à laquelle la sortie devient accessible sur votre compte peut ne pas correspondre à la date de publication d'origine. Veuillez consulter ce [dashboard d'état](https://newrelic.github.io/newrelic-browser-agent-release/) pour plus d'informations. - -Conformément à notre [politique de prise en charge des navigateurs](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la version 1.296.0 de l'agent Browser a été conçue et testée sur ces navigateurs et plages de versions : Chrome 129-139, Edge 129-139, Safari 17-19 et Firefox 131-141. Pour les appareils mobiles, la version 1.296.0 a été créée et testée pour Android OS 16 et iOS Safari 17-18.1. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx b/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx deleted file mode 100644 index d923f60c65c..00000000000 --- a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx +++ /dev/null @@ -1,27 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-09-17' -version: 1.297.1 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: [] -bugs: - - Prevent double import of Session Replay aggregate class -security: [] -translationType: machine ---- - -## v1.297.1 - -### Débogage - -#### Empêcher la double importation de la classe d'agrégation Session Replay - -Corrige un problème qui a été détecté où la classe d'agrégation Session Replay pouvait être importée deux fois lors de l'utilisation de la méthode API newrelic.recordReplay lors du préchargement a été activée. - -## Déclaration de soutien - -New Relic vous recommande de mettre à niveau l'agent régulièrement pour vous assurer de bénéficier des dernières fonctionnalités et avantages en termes de performances. Les sorties plus anciennes ne seront plus prises en charge lorsqu'elles atteindront [la fin de leur vie](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Les dates de sortie reflètent la date de publication originale de la version de l'agent. - -Les nouveaux agents de navigation sont déployés auprès des clients par petites étapes sur une période donnée. De ce fait, la date à laquelle la sortie devient accessible sur votre compte peut ne pas correspondre à la date de publication d'origine. Veuillez consulter ce [dashboard d'état](https://newrelic.github.io/newrelic-browser-agent-release/) pour plus d'informations. - -Conformément à notre [politique de prise en charge des navigateurs](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la version 1.297.1 de l'agent du Browser a été conçue et testée sur ces navigateurs et plages de versions : Chrome 130-140, Edge 130-140, Safari 17-19 et Firefox 132-142. Pour les appareils mobiles, la version 1.297.1 a été créée et testée pour Android OS 16 et iOS Safari 17-18.5. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx b/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx deleted file mode 100644 index 389ac9b5e39..00000000000 --- a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-09-19' -version: 1.298.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Factor long tasks into soft nav base interaction span -bugs: - - Force LCP to report the original page URL -security: [] -translationType: machine ---- - -## v1.298.0 - -### Caractéristiques - -#### Intégrer les tâches longues dans la durée d'interaction de la base de navigation souple - -`BrowserInteraction` sous navigation douce (« SPA 2.0 »), la durée s'étendra au-delà du temps de modification du DOM jusqu'au point où aucune tâche longue n'a été observée pendant 5 secondes. `JavascriptError` et `AjaxRequest` ne sont pas encore associés à une telle interaction pendant cette période prolongée au-delà de la fin de l'heuristique d'origine. - -### Débogage - -#### Forcer LCP à signaler l'URL de la page d'origine - -Autoriser LCP à signaler son URL de page distinctement de l'URL de récolte. Un problème a été observé où les navigations souples se produisant avant la récolte LCP signalaient l'URL de la page actuelle au lieu de l'URL de la page d'origine liée à LCP. Cette modification permet aux nœuds de récolte LCP de signaler l’URL d’origine, quelle que soit l’URL de la page actuelle. Le changement doit s’appliquer à la fois aux attributs `pageUrl` et `targetGroupedUrl`. - -## Déclaration de soutien - -New Relic vous recommande de mettre à niveau l'agent régulièrement pour vous assurer de bénéficier des dernières fonctionnalités et avantages en termes de performances. Les sorties plus anciennes ne seront plus prises en charge lorsqu'elles atteindront [la fin de leur vie](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Les dates de sortie reflètent la date de publication originale de la version de l'agent. - -Les nouveaux agents de navigation sont déployés auprès des clients par petites étapes sur une période donnée. De ce fait, la date à laquelle la sortie devient accessible sur votre compte peut ne pas correspondre à la date de publication d'origine. Veuillez consulter ce [dashboard d'état](https://newrelic.github.io/newrelic-browser-agent-release/) pour plus d'informations. - -Conformément à notre [politique de prise en charge des navigateurs](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la version 1.298.0 de l'agent Browser a été conçue et testée sur ces navigateurs et plages de versions : Chrome 130-140, Edge 130-140, Safari 17-19 et Firefox 132-142. Pour les appareils mobiles, la version 1.298.0 a été créée et testée pour Android OS 16 et iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx b/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx deleted file mode 100644 index ee773ddfad4..00000000000 --- a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-10-14' -version: 1.300.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Remove usage of the marks and measures feature flag - - Reduce hasReplay attribute false positive rate -bugs: - - Update typings for interaction API to reflect waitForEnd - - Address issues with dynamic require and Rollup.js -security: [] -translationType: machine ---- - -## v1.300.0 - -### Caractéristiques - -#### Supprimer l'utilisation de la fonctionnalité de marques et de mesures - -L'agent n'est plus bloqué par un indicateur de fonctionnalité interne. Les mesures seront activées pour tous les utilisateurs par défaut, sauf si elles sont désactivées via les paramètres de l'application. - -#### Réduire le taux de faux positifs de l'attribut hasReplay - -Définissez l'attribut « hasReplay » uniquement une fois qu'une récolte de relecture de session réussie a été observée pour aider à réduire les faux positifs. - -### Débogage - -#### Mettre à jour les typages pour l'API d'interaction pour refléter waitForEnd - -Corrige un problème où le fichier de saisie définissant l'API `.interaction` n'était pas décoré correctement pour tenir compte de l'argument facultatif `waitForEnd` comme [documenté](https://docs.newrelic.com/docs/browser/new-relic-browser/browser-apis/interaction/#parameters). - -#### Résoudre les problèmes liés aux require et rollup.js dynamiques - -Corrige un problème qui conduisait rollup.js à générer l'erreur `Error: Could not dynamically require ...` lors de la création de pages incluant le chargeur MicroAgent. - -## Déclaration de soutien - -New Relic vous recommande de mettre à niveau l'agent régulièrement pour vous assurer de bénéficier des dernières fonctionnalités et avantages en termes de performances. Les sorties plus anciennes ne seront plus prises en charge lorsqu'elles atteindront [la fin de leur vie](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Les dates de sortie reflètent la date de publication originale de la version de l'agent. - -Les nouveaux agents de navigation sont déployés auprès des clients par petites étapes sur une période donnée. De ce fait, la date à laquelle la sortie devient accessible sur votre compte peut ne pas correspondre à la date de publication d'origine. Veuillez consulter ce [dashboard d'état](https://newrelic.github.io/newrelic-browser-agent-release/) pour plus d'informations. - -Conformément à notre [politique de prise en charge des navigateurs](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la version 1.300.0 du Browser de l'agent a été conçue et testée sur ces navigateurs et plages de versions : Chrome 131-141, Edge 131-141, Safari 17-26 et Firefox 133-143. Pour les appareils mobiles, la version 1.300.0 a été créée et testée pour Android OS 16 et iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx b/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx deleted file mode 100644 index 2d8f6e8b36d..00000000000 --- a/src/i18n/content/fr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-10-21' -version: 1.301.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Switch to using NR fork of rrweb -bugs: - - Preserve agent attributes for log payloads -security: [] -translationType: machine ---- - -## v1.301.0 - -### Caractéristiques - -#### Passer à l'utilisation du fork NR de rrweb - -L'agent Browser va désormais utiliser la version forkée de rrweb de New Relic pour Session Replay au lieu du référentiel d'origine. Cela permettra à l'équipe du navigateur d'adapter les correctifs aux problèmes. - -### Débogage - -#### Conserver l'attribut de l'agent pour la charge des logs - -Ajustez les charges des logs du navigateur, de sorte que l'attribut réservé à l'agent ait la priorité sur les valeurs fournies par l'utilisateur s'ils partagent le même nom. - -## Déclaration de soutien - -New Relic vous recommande de mettre à niveau l'agent régulièrement pour vous assurer de bénéficier des dernières fonctionnalités et avantages en termes de performances. Les sorties plus anciennes ne seront plus prises en charge lorsqu'elles atteindront [la fin de leur vie](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Les dates de sortie reflètent la date de publication originale de la version de l'agent. - -Les nouveaux agents de navigation sont déployés auprès des clients par petites étapes sur une période donnée. De ce fait, la date à laquelle la sortie devient accessible sur votre compte peut ne pas correspondre à la date de publication d'origine. Veuillez consulter ce [dashboard d'état](https://newrelic.github.io/newrelic-browser-agent-release/) pour plus d'informations. - -Conformément à notre [politique de prise en charge des navigateurs](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la version 1.301.0 de l'agent du Browser a été conçue et testée sur ces navigateurs et plages de versions : Chrome 131-141, Edge 131-141, Safari 17-26 et Firefox 133-143. Pour les appareils mobiles, la version 1.301.0 a été créée et testée pour Android OS 16 et iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx b/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx deleted file mode 100644 index 2170b7cf12c..00000000000 --- a/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Node API runtime -releaseDate: '2025-07-29' -version: 1.2.122 -translationType: machine ---- - -### Corrections - -* Correction des vulnérabilités des données de formulaire et des vulnérabilités Ubuntu sous-jacentes pour résoudre les vulnérabilités de sécurité dans les environnements d'exécution de l'API Node. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx b/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx deleted file mode 100644 index 5c9271f27d8..00000000000 --- a/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Node browser runtime -releaseDate: '2025-07-29' -version: 3.0.39 -translationType: machine ---- - -### Améliorations - -* Correction des vulnérabilités des données de formulaire et des vulnérabilités Ubuntu sous-jacentes pour résoudre les vulnérabilités de sécurité dans les environnements d'exécution Browser Node. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx b/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx deleted file mode 100644 index 40b68beae40..00000000000 --- a/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Ping Runtime -releaseDate: '2025-07-29' -version: 1.53.0 -translationType: machine ---- - -### Améliorations - -* Vulnérabilités corrigées liées à `common-lang3` Java et Ubuntu pour résoudre les problèmes de sécurité dans l'environnement d'exécution Ping. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx b/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx deleted file mode 100644 index 9cf6842663a..00000000000 --- a/src/i18n/content/fr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Ping Runtime -releaseDate: '2025-08-13' -version: 1.54.0 -translationType: machine ---- - -### Améliorations - -* Correction de vulnérabilités liées à Ubuntu pour résoudre les problèmes de sécurité dans l'environnement d'exécution Ping. \ No newline at end of file diff --git a/src/i18n/content/fr/docs/service-architecture-intelligence/github-integration.mdx b/src/i18n/content/fr/docs/service-architecture-intelligence/github-integration.mdx deleted file mode 100644 index 2746acc2684..00000000000 --- a/src/i18n/content/fr/docs/service-architecture-intelligence/github-integration.mdx +++ /dev/null @@ -1,220 +0,0 @@ ---- -title: Intégration GitHub pour Intelligence Architecture de services -tags: - - New Relic integrations - - GitHub integration -metaDescription: 'Learn how to integrate GitHub with New Relic to import repositories, teams, and user data for enhanced service architecture intelligence.' -freshnessValidatedDate: never -translationType: machine ---- - -Vous cherchez à obtenir des informations plus détaillées sur l'architecture de vos services en exploitant les données de votre compte GitHub ? L'intégration New Relic GitHub importe les données de référence, d'équipes et d'utilisateurs directement dans la plateforme New Relic avec des capacités de récupération de données sélectives. - -Cette intégration rationalise le processus d'intégration des utilisateurs et des équipes tout en simplifiant la gestion des rôles. Il clarifie également la modélisation de la propriété des entités, réduisant ainsi le temps et les efforts de configuration. Grâce à la nouvelle fonctionnalité de récupération sélective de données, vous pouvez choisir exactement les types de données à importer, qu'il s'agisse d'équipes et d'utilisateurs, de référentiels et de demandes de tirage, ou des deux. Cette intégration permet d'améliorer la gestion et la visibilité des [catalogues](/docs/service-architecture-intelligence/catalogs/catalogs) et [des tableaux de bord](/docs/service-architecture-intelligence/scorecards/getting-started) au sein de New Relic. Pour plus d'informations, reportez-vous à la [fonctionnalité Architecture de services du renseignement](/docs/service-architecture-intelligence/getting-started). - -* **Plateformes supportées :** - - * GitHub Cloud - * GitHub Enterprise (GHE) Cloud (sans résidence de données) - -* **Régions prises en charge :** États-Unis et UE - - - * GHE sur site et GHE Cloud avec résidence des données ne sont pas pris en charge. - * L'installation de l'intégration dans les comptes utilisateurs GitHub n'est pas prise en charge. Bien que GitHub permette d'installer l'application dans un compte utilisateur, le mécanisme de synchronisation ne fonctionnera pas et aucune donnée ne sera importée dans New Relic. - * Notez que l'intégration GitHub n'est pas conforme à FedRAMP. - - -**Prérequis :** - -* Connectez-vous à votre compte GitHub que vous prévoyez d'intégrer à New Relic. - -* Vous devez être le gestionnaire de l’organisation ou le gestionnaire du domaine d’authentification. - -* Droits requis : - - * `teams_discount_usage` - * `integration_github_discount_usage` - * `integration_github_ccu` - -## Exigence de liste blanche IP - -Si votre organisation utilise une liste IP blanche pour les connexions sortantes, vous devez autoriser le trafic provenant de notre point de terminaison collecteur de données. - -Veuillez vous référer à la documentation publique officielle de New Relic pour obtenir la liste complète et la plus récente des adresses IP autorisées que vous devez ajouter à votre configuration de liste blanche. - -## Quelles données peuvent être synchronisées - -L'intégration GitHub vous permet de choisir de manière sélective les types de données à importer dans New Relic, vous donnant ainsi le contrôle sur les informations synchronisées : - -### Types de données disponibles - -* **Équipes et utilisateur**: importez les structures d'équipe et les informations sur les utilisateurs de GitHub pour améliorer la gestion des équipes et la modélisation de la propriété - - - **Exigence de visibilité de l'adresse e-mail de l'utilisateur**: L'intégration importe uniquement les utilisateurs GitHub qui ont configuré leurs adresses e-mail comme publiques dans les paramètres de leur profil GitHub. Les membres de l'équipe avec une configuration de messagerie privée seront exclus du processus de synchronisation des données utilisateur. - - -* **Référentiels et demandes de tirage**: Importez les données du référentiel et les informations sur la demande de tirage pour une meilleure visibilité du code et un suivi de la répartition - -* **Les deux**: importez tous les types de données disponibles pour une intégration GitHub complète - -### Considérations sur la sélection des données - - - **Conflits d'intégration d'équipe**: si des équipes ont déjà été intégrées à New Relic à partir d'une autre source (comme les équipes de service), les équipes GitHub ne pourront pas être récupérées et stockées pour éviter les conflits de données. Dans ce cas, vous ne pouvez sélectionner que les données du référentiel et de la demande de tirage. - - -Vous pourrez configurer vos préférences de sélection de données lors du processus de configuration initiale. - -## Configurer l'intégration GitHub - -1. Accédez à **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)**. - -2. À l’étape **Select an action** , sélectionnez **Set up a new integration**, puis cliquez sur **Continue**. - -3. Sur l’écran **Begin integration** : - - a. Pour vous connecter à votre compte GitHub, cliquez sur **Get started in GitHub**. L'observabilité New Relic s'ouvre sur la place de marché GitHub. b. Terminez l’installation de l’application au sein de votre organisation GitHub pour récupérer les données liées à vos types de données sélectionnés. Une fois l’installation terminée, vous serez redirigé une fois de plus vers l’étape **Select an action** . c. Sélectionnez **Begin integration** et cliquez sur **Continue**. - - d. **Select your data preferences**: choisissez les types de données que vous souhaitez synchroniser : - - * **Teams + Users**: Importer les structures d'équipe GitHub et les informations utilisateur - * **Repositories + Pull Requests**: Importer les données du référentiel et de la demande de tirage - * **Both**: Importer tous les types de données disponibles - - - Si les équipes sont déjà intégrées à partir d'une autre source (comme les équipes de service), l'option **Teams + Users** sera désactivée pour éviter les conflits. - - - e. Cliquez sur **Start first sync** pour commencer à importer vos types de données sélectionnés. - - g. Après avoir affiché le message de **Sync started** , cliquez sur **Continue**. L'écran **Integration status** affichera le nombre de vos types de données sélectionnés (équipes, référentiel, etc.), en s'actualisant toutes les 5 secondes. Prévoyez quelques minutes pour l’importation complète de toutes les données. - - GitHub integration - -4. *(Facultatif)* Sur l'écran **GitHub integration** , accédez à vos données importées : - - * Cliquez sur **Go to Teams** pour afficher les informations des équipes importées sur [Teams](/docs/service-architecture-intelligence/teams/teams) (si des équipes ont été sélectionnées lors de la configuration) - * Cliquez sur **Go to Repositories** pour afficher les informations de référentiel importées sur [le référentiel](/docs/service-architecture-intelligence/repositories/repositories) (si le référentiel a été sélectionné lors de la configuration) - - - **Attribuer automatiquement un référentiel aux équipes**: Vous pouvez attribuer automatiquement un référentiel GitHub à leurs équipes en créant une propriété personnalisée `teamOwningRepo` dans GitHub. Créez la propriété personnalisée au niveau de l’organisation et attribuez une valeur à la propriété personnalisée au niveau du référentiel. De plus, vous pouvez configurer une propriété personnalisée pour plusieurs référentiels au niveau de l'organisation simultanément. L'intégration attribuera automatiquement le référentiel aux équipes respectives en fonction de la propriété personnalisée. Pour plus d'informations sur la création de propriétés personnalisées, reportez-vous à la [documentation GitHub](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). - - -## Activer la découverte de la propriété de l'équipe - -L'intégration GitHub inclut un service de découverte qui peut établir automatiquement la propriété de l'équipe du référentiel en fonction de la structure organisationnelle et des propriétés personnalisées de GitHub. - -### Comment fonctionne la propriété d'une équipe - -Le service de découverte utilise plusieurs méthodes pour établir la propriété du référentiel : - -1. **Propriétés personnalisées GitHub**: utilise la propriété personnalisée `teamOwningRepo` pour attribuer directement un référentiel aux équipes -2. **Analyse de l'appartenance à l'équipe**: analyse les modèles d'engagement et les contributions des membres de l'équipe pour déduire la propriété -3. **référentiel organisation**: utilise la structure organisationnelle et les autorisations d'équipe de GitHub pour déterminer la propriété - -### Configuration de la propriété automatique de l'équipe - -Pour activer la découverte automatique de la propriété de l’équipe : - -1. **Créer des propriétés personnalisées dans GitHub** (recommandé) : - - * Accédez aux paramètres de votre organisation GitHub - * Créer une propriété personnalisée `teamOwningRepo` au niveau de l'organisation - * Attribuer des valeurs d'équipe au référentiel au niveau du référentiel - * L'intégration mappera automatiquement ces relations lors de la synchronisation - -2. **Configurer les autorisations de l'équipe**: - - * Assurez-vous que les équipes disposent d'un accès approprié au référentiel dans GitHub - * Le service de découverte utilisera ces autorisations pour déduire les relations de propriété - -3. **Activer la découverte automatique de la propriété de l'équipe**: - - * Une fois la synchronisation terminée, activez la découverte automatique de la propriété de l'équipe dans New Relic. Pour plus d'informations, reportez-vous à la [documentation sur la propriété d'Automatisation des équipes](https://docs.newrelic.com/docs/service-architecture-intelligence/teams/manage-teams/#assign-ownership). - * Vérifier que les relations de propriété sont correctement établies - - - **bonnes pratiques pour l’appropriation d’une équipe**: - - * Utiliser des conventions de nommage cohérentes pour les équipes sur GitHub et New Relic - * Mettre à jour régulièrement les propriétés personnalisées lorsque la propriété du référentiel change - * Examiner et valider la modélisation de la propriété après chaque synchronisation pour garantir l'exactitude - - -## Gérez votre intégration GitHub - -Après avoir configuré votre intégration GitHub, vous pouvez la gérer via l'interface New Relic. Cela comprend l'actualisation des données, la modification de la configuration et la désinstallation si nécessaire. - -### Gestion de l'intégration des accès - -1. Accédez à **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)**. - -2. À l’étape **Select an action** , sélectionnez **Manage your organization**, puis cliquez sur **Continue**. - - Screenshot showing the manage organization option in GitHub integration - -L'écran **Manage GitHub integration** affiche votre organisation connectée avec son état de synchronisation actuel et ses types de données. - -### Actualiser les données - -Lorsque vous cliquez sur l’option **Refresh data** , vous disposez d’un moyen simplifié de mettre à jour vos données GitHub dans New Relic. - -**Pour actualiser les données :** - -1. Depuis l’écran **Manage GitHub integration** , recherchez votre organisation. - -2. Cliquez sur **Refresh data** à côté de l’organisation que vous souhaitez mettre à jour, puis cliquez sur **Continue**. - -3. À l’étape **Refresh data** , cliquez sur **Sync on demand**. - -Le système validera ensuite vos autorisations GitHub et l'accès à votre organisation, récupérera uniquement les données nouvelles ou modifiées depuis la dernière synchronisation, traitera et mappera les données mises à jour en fonction des types de données sélectionnés et mettra à jour l'état d'intégration pour refléter le dernier horodatage de synchronisation et le nombre de données. - -**Ce qui est rafraîchi :** - -* Nouveaux membres ajoutés aux équipes GitHub -* modifications du référentiel (nouveau référentiel (référentiel), référentiel archivé (référentiel), modifications des autorisations) -* Propriété de l'équipe mise à jour via des propriétés personnalisées -* Modifications des profils d'utilisateurs et des structures d'équipe - - - **Fréquence d'actualisation**: vous pouvez actualiser les données aussi souvent que nécessaire. Le processus prend généralement quelques minutes en fonction de la taille de votre organisation et des types de données sélectionnés. - - -### Modifier les paramètres d'intégration - -Utilisez l’option **Edit** pour modifier votre configuration d’intégration après la configuration initiale. Vous pouvez ajuster les types de données synchronisés entre GitHub et New Relic, en choisissant entre Teams + Users, Repositories + Pull Requests ou Both pour les types de données en fonction de vos besoins actuels. - -**Pour modifier l’intégration GitHub :** - -1. Depuis l’écran **Manage GitHub integration** , recherchez votre organisation. - -2. Cliquez sur **Edit** à côté de l’organisation que vous souhaitez mettre à jour, puis cliquez sur **Continue**. - -3. À l’étape **Edit Integration Settings** , ajustez vos sélections de type de données selon vos besoins. - -4. Cliquez sur **Save changes** pour appliquer vos mises à jour. - -**Que se passe-t-il pendant l'édition :** - -* Les données actuelles restent intactes lors des modifications de configuration -* Les nouveaux paramètres s'appliquent aux synchronisations ultérieures -* Vous pouvez prévisualiser les modifications avant de les appliquer -* L'intégration continue de fonctionner avec les paramètres précédents jusqu'à ce que vous enregistriez les modifications - -### Désinstaller l'intégration GitHub - -La désinstallation de l'intégration GitHub arrête la synchronisation des données de l'organisation sélectionnée, mais conserve toutes les données précédemment importées dans New Relic. - -**Pour désinstaller :** - -1. Depuis l’écran **Manage GitHub integration** , recherchez l’organisation que vous souhaitez désinstaller et cliquez sur **Uninstall**. - -2. Dans la boîte de dialogue de confirmation, vérifiez les détails de l’organisation et cliquez sur **Uninstall organization** pour confirmer. - -3. Vous verrez un message de réussite confirmant la désinstallation. - - - **Rétention des données après désinstallation**: Toutes les données précédemment synchronisées (équipes, utilisateur, référentiel, demande de tirage) resteront dans New Relic après la désinstallation de l'intégration. Si vous devez supprimer ces données, contactez le support New Relic. - \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx b/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx deleted file mode 100644 index eb47ba788d5..00000000000 --- a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx +++ /dev/null @@ -1,61 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-10-10' -version: 'Oct 06 - Oct 10, 2025' -translationType: machine ---- - -### 新しいドキュメント - -* Web アプリケーションでパフォーマンス マークと監視タスク期間の測定値を取得するためのガイダンスを提供するために[、ブラウザ エージェントを使用してマークと測定値を収集する](/whats-new/2025/09/whats-new-10-02-browser-marks-and-measures)を追加しました。 -* [Kubernetes APM 自動アタッチでデータがないという問題を](/docs/apm/agents/ruby-agent/troubleshooting/no-data-kubernetes-auto-attach)追加し、Rails 以外のフレームワークで Kubernetes APM 自動アタッチを使用する Ruby アプリケーションのトラブルシューティング ガイダンスを提供しました。 - -### 主な変更点 - -* `BrowserTiming`イベントの非推奨に関する通知を含む[プロパティ辞書](/attribute-dictionary)を更新し、技術リファレンスの正確性を向上させるためにブラウザエージェント機能の説明を強化しました。 -* クラウド ルールの有効化、無効化、再有効化に関する包括的なガイダンスを備えた、強化された[Pipeline Cloud Rules API](/docs/new-relic-control/pipeline-control/cloud-rules-api)により、運用制御が向上しました。 - -### マイナーチェンジ - -* [Live アーカイブの請求](/docs/logs/get-started/live-archives-billing)における価格用語が「計算容量ユニット」から「アドバンスト計算容量ユニット」に更新され、精度が向上しました。 -* ヒントのコールアウトを再配置し、重複したコンテンツを削除して、効率的なインストレーション ガイダンスを実現することで、 [Agent Controlのセットアップ](/docs/new-relic-control/agent-control/setup)手順の組織を改善しました。 -* ワークフロー オートメーションのドキュメントを更新し、[アクション カタログ](/docs/workflow-automation/setup-and-configuration/actions-catalog)、[スケジューリング API](/docs/workflow-automation/create-a-workflow-automation/start-schedule) 、およびプラットフォームの同期を改善するためのテンプレート設定に対する最新の変更を加えました。 -* [New Relic Control の発表](/whats-new/2025/09/whats-new-30-09-new-relic-control)が強化され、エージェントFleet Control GA リリースのメッセージングが洗練され、機能の説明がより明確になりました。 - -### リリースノート - -* 弊社の最新リリース情報を常に把握してください: - - * [Rubyエージェント v9.22.0](/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-22-0) : - - * Kubernetes用のワンステップ スケジューリングを追加しました (現在一般公開されています)。 - * Ruby 2.4 および 2.5 のサポートの非推奨通知を追加しました。 - * `newrelic deployments`コマンドの非推奨通知を追加しました。 - * Method#source\_location に対する Ruby 3.5 の変更との互換性を確保しました。 - - * [.NET エージェント v10.45.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-45-0): - - * 新しいディストリビューティッド(分散)トレーシング サンプラー、TraceId Ratio-Based Sampler が追加されました。 - * データストアの計装を無効にする可能性がある MSSQL 接続文字列解析例外を修正しました。 - * Kafka の「Consume」計装の互換性に関する問題が解決されました。 - - * [Pythonエージェント v11.0.1](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-110001) : - - * Django計装での早期アクティベーションを防止しました。 - * サーバー設定とローカル設定の同期の問題を修正しました。 - * trace\_cache.pop() からのクラッシュに対するガード機能を追加しました。 - - * [インフラストラクチャエージェント v1.69.0](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1690) : - - * AWS SDK を V1 から V2 にアップグレードしました。 - * Docker API ライブラリを v26 から v28 にアップグレードしました。 - * 複数の CPU グループを持つインスタンスの Windows CPU 処理を修正しました。 - - * [iOS エージェント v7.5.11](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-7511) : - - * インタラクション トレースの使用時に発生する可能性があったパフォーマンスの問題を修正しました。 - * ディストリビューティッド(分散)トレーシング関連のログが誤って表示される可能性があった問題を修正しました。 - - * [Node ブラウザ ランタイム v3.0.55](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.55) : - - * 複数のセキュリティ CVE に対処して、Ubuntu の根本的な脆弱性を修正しました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx b/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx deleted file mode 100644 index 3ca256bfe68..00000000000 --- a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-10-17' -version: 'October 13 - October 17, 2025' -translationType: machine ---- - -### 主な変更点 - -* [Service Architecture Intelligenceの GitHub 統合](/docs/service-architecture-intelligence/github-integration)を更新し、明確性を向上させ、新しい組織管理オプションを追加するために大幅な改訂を行いました。 -* 機能が一般提供されたことを受けて、組織と明確さを向上させるために[Agent Control概要](/docs/new-relic-control/agent-control/overview)と関連するAgent Controlドキュメントが再構成されました。 - -### マイナーチェンジ - -* [ユーザー管理UIと共通タスク](/docs/accounts/accounts-billing/new-relic-one-user-management/user-management-ui-and-tasks)に一括インポート ユーザー セクションを追加しました。 -* OTEL のリソース クォータを[New Relic OTel K8s メトリクス候補](/docs/kubernetes-pixie/kubernetes-integration/installation/k8s-otel-metrics)に追加しました。 -* [New Relic eBPF インテグレーションのインストールと構成」と](/docs/ebpf/k8s-installation)[New Relic eBPF インテグレーションのインストールと構成」](/docs/ebpf/linux-installation)を更新し、インストレーションと設定の機能強化を行いました。 -* [アラート通知統合](/docs/alerts/get-notified/notification-integrations)が更新され、明確さが向上しました。 -* [Dockerコンテナ監視](/docs/infrastructure/host-integrations/host-integrations-list/docker-container-monitoring-integration)統合の互換性バージョンを修正しました。 -* [Kubernetesインテグレーション: 互換性と要件」](/docs/kubernetes-pixie/kubernetes-integration/get-started/kubernetes-integration-compatibility-requirements)でKubernetesバージョンの互換性を更新しました。 -* [メトリクスAPI制限および制限されたプロパティ](/docs/data-apis/ingest-apis/metric-api/metric-api-limits-restricted-attributes)のメトリクス制限ごとの最大プロパティを更新しました。 - -### リリースノート - -* 弊社の最新リリース情報を常に把握してください: - - * [Node.jsエージェント v13.5.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-5-0) : - - * 発行されたイベントをサブスクライブするための`fastify`計装を更新しました。 - * 発行されたイベントをサブスクライブするために、 `pg`と`pg-native`計装を更新しました。 - * デフォルトで`timers.setTimeout`と`timers.setInterval`無効にするために、 `config.instrumentation.timers.enabled` false に更新しました。 - * 新しい診断基本クラスを追加し、新しいクラスを使用するように undici を移行しました。 - - * [Kubernetesインテグレーション v3.46.0](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-46-0) : - - * v1.34 のサポートが追加され、v1.29 のサポートが廃止されました。 - * golang.org/x/crypto を v0.42.0 に更新しました。 - * alpineをv3.22.2に更新しました。 - * Kubernetesパッケージを v0.34.1 に更新しました。 - - * [.NET MAUI エージェント v1.1.13](/docs/release-notes/mobile-release-notes/net-maui-release-notes/net-maui-agent-1113) : - - * ネイティブ Android エージェントをバージョン 7.6.10 に更新しました。 - * ネイティブ iOS エージェントをバージョン 7.5.11 に更新しました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx b/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx deleted file mode 100644 index 0a034bbee70..00000000000 --- a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx +++ /dev/null @@ -1,267 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-07-25' -version: 'June 13 - July 24, 2025' -translationType: machine ---- - -### 新しいドキュメント - -* [New Relic Browserエージェントの問題をデバッグする方法](/docs/browser/new-relic-browser/troubleshooting/how-to-debug-browser-agent/)に関する新しい機能が追加されました。これには、バージョン 1.285.0 以降で強化されたトラブルシューティングのための詳細なログ記録、ネットワーク リクエストの監視、検査イベントが含まれます。 -* `python`および`.node.js`関数の監視に[Azure Functions の](/docs/serverless-function-monitoring/azure-function-monitoring/introduction-azure-monitoring/)サポートが追加されました。 -* New Relicプラットフォームで非効率性を特定し、最適化の推奨事項を提供し、CCU 削減量を見積もる機能を備えた、計算効率を高めるための実用的なインサイト用の[コスト オプティマイザー](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-optimizer/)を追加しました。 -* [Cloud Cost Intelligence](/docs/cci/getting-started/overview)を追加しました。 cloudコストの可視化と管理のためのツールを提供します。これには、包括的なコストの内訳、 Kubernetesコストの割り当て、手動コストの見積もり、クロスアカウント データ収集などの機能が含まれます。現在はAWSクラウド コストのみをサポートしています。 -* [KubernetesにOpenTelemetryオブザーバNew Relic](/docs/kubernetes-pixie/k8s-otel/intro/)を追加し、 Helmチャートを介してクラスタをシームレスに監視するための New Relic 機能プロバイダーに依存しない統合を使用して、 New Relicのツールとダッシュボードに送信されるメトリクス、イベント、ログのテレメトリー信号を強化しました。 -* [Windowsインテグレーションの制限とトラブルシューティング](/docs/kubernetes-pixie/kubernetes-integration/troubleshooting/troubleshooting-windows/)を追加 -* [CloudFormation およびCloudWatch Metric Streams](/docs/infrastructure/amazon-integrations/aws-integration-for-metrics/via-cloudformation-cwms/)を介したAWSインテグレーションが追加され、サポートされていないサービスのAPIポーリングがサポートされました。 -* MySQL および MS SQL Server のオンホスト インテグレーションを介して[、 New Relicデータベース](/docs/infrastructure/host-integrations/db-entity-tags/)エンティティ for MySQLや既存のテレメトリーに影響を与えることなく、 New Relicのメタデータ インサイトと組織を強化しました。 - -### 主な変更点 - -* [NRQL References](/docs/nrql/nrql-syntax-clauses-functions/#non-aggregator-functions/)に非集計関数を追加しました。 -* [Ruby エージェントの要件とサポートされるフレームワーク](/docs/apm/agents/ruby-agent/getting-started/ruby-agent-requirements-supported-frameworks/)を更新しました。 -* New Relicドキュメント[のOpenTelemetryログにNew Relicカスタム](/docs/opentelemetry/best-practices/opentelemetry-best-practices-logs/#custom-events)イベントとしてログを追加しました。 -* [インストゥルメント化されたAzure関数の互換性と要件に関する](/docs/serverless-function-monitoring/azure-function-monitoring/compatibility-requirement-azure-monitoring/#supported-runtimes)ドキュメントの Linux、 Windows 、およびコンテナー化された関数でサポートされているランタイムを更新しました。 -* [Confluent クラウド インテグレーション](/docs/message-queues-streaming/installation/confluent-cloud-integration/#metrics)のメトリクス データを更新しました。 -* GCP Cloud Run を[Node.jsエージェント設定](/docs/apm/agents/nodejs-agent/installation-configuration/nodejs-agent-configuration/)から削除しました。 -* [AI モニタリングの互換性と要件](/docs/ai-monitoring/compatibility-requirements-ai-monitoring/)を更新し、.NET エージェントでサポートされる追加のライブラリを追加しました。 -* New Relicテレメトリー デュアルスタック エンドポイントを[New Relicネットワーク トラフィック](/docs/new-relic-solutions/get-started/networks/#new-relic-endpoints)に追加しました。 -* [Google Cloud Load Balancing監視統合](/docs/infrastructure/google-cloud-platform-integrations/gcp-integrations-list/google-cloud-load-balancing-monitoring-integration/)に`GcpHttpExternalRegionalLoadBalancerSample`追加しました。 -* [外形監視ジョブマネージャードキュメントのインストール](/docs/synthetics/synthetic-monitoring/private-locations/install-job-manager/#-install)方法にOpenShiftの起動手順を追加しました。 -* [Node.js エージェント バージョン 12](/docs/apm/agents/nodejs-agent/installation-configuration/update-nodejs-agent/)を更新しました。 -* APIポーリングのサポートを含む、 [CloudFormation およびCloudWatch Metric Streamsを利用したNew RelicとのAWS](/docs/infrastructure/amazon-integrations/aws-integration-for-metrics/via-cloudformation-cwms/)のシームレスな統合が追加されました。 - -### マイナーチェンジ - -* [境界トレース](/docs/data-apis/manage-data/manage-data-retention/#retention-periods/)の保存期間として`Transaction`を追加しました。 -* [アラートルールと制限](/docs/alerts/admin/rules-limits-alerts/)に新しいカテゴリとして`Destination`追加しました。 -* [Azure ネイティブ New Relic サービスの概要](/docs/infrastructure/microsoft-azure-integrations/get-started/azure-native/)ドキュメントに、Azure リソースの診断設定が正しく構成されていることを確認するか、Azure ネイティブ New Relic サービス経由の転送を無効にしてデータが New Relic プラットフォームに送信されないようにするためのコールアウトを追加しました。 -* [.NET エージェント](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements/)の最新の互換ライブラリを更新しました。 -* [iOS エージェント リリース ノート](/docs/release-notes/mobile-release-notes/ios-release-notes/index/)ドキュメントにコールアウトを追加して、iOS SDK バージョン 7.5.4 以降、 変更により、以前は抑制されていた処理済み例外イベントが報告されるようになりました。 -* Kubernetes環境のリソース プロパティと非Kubernetes環境の`container.id`指定に対するサービスとコンテナの関係の要件を更新し、 [New RelicのOpenTelemetryリソース](/docs/opentelemetry/best-practices/opentelemetry-best-practices-resources/)の適切なテレメトリー設定を確保します。 -* [特定のインフラストラクチャエージェント](/docs/infrastructure/infrastructure-agent/new-relic-guided-install-overview/#install-specific-versions)バージョンインストレーション用の CLI サポートを追加し、一貫したデプロイメントとシステム互換性を可能にします。レシピ名に`@X.XX.X`を使用してバージョンを指定します。 -* UIで**Manage Account Cardinality** \[アカウント カーディナリティの管理]、**Manage Metric Cardinality** \[メトリック カーディナリティの管理]、および**Create Pruning Rules** \[プルーニング ルールの作成]機能を使用するためのロール アクセス要件を強調するコールアウトを追加しました。[カーディナリティ管理](/docs/data-apis/ingest-apis/metric-api/cardinality-management/#attributes-table)で権限が設定されていることを確認してください。 -* [Node.js エージェントの互換性と要件を](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent/)`v12.23.0`に更新しました。 -* [Elasticsearch](/docs/infrastructure/host-integrations/host-integrations-list/elasticsearch/elasticsearch-integration)をセットアップするために必要な最小限の権限を追加しました。 -* [NRQL形式構文](/docs/alerts/create-alert/create-alert-condition/create-nrql-alert-conditions/)の`FACET`プロパティの最大許容使用制限値を 5000 から 20000 の値に更新しました。 - -### リリースノート - -* [`SystemSample` 、 `ProcessSample` 、 `NetworkSample` 、 `StorageSample`のインフラストラクチャ イベントを対象とするドロップ ルールの](/eol/2025/05/drop-rule-filter/)サポート終了日として、2026 年 1 月 7 日が発表されました。 - -* [アラート条件の messageId およびタイムスタンプの FACET](/eol/2025/07/deprecating-alert-conditions/)のサポートが直ちに有効になります。 - -* 2025 年 10 月 28 日が[Attention Required](/eol/2025/07/upcoming-eols/)のサポート終了日として発表されました。 - -* 新着情報投稿をご覧ください: - - * [Microsoft Teams に直接通知を送信する](/whats-new/2025/03/whats-new-03-13-microsoft-teams-integration/) - * [New Relicの計算オプティマイザーが一般提供されました!](/whats-new/2025/06/whats-new-06-25-compute-optimizer/) - * [統合クエリエクスプローラーでアカウント間クエリをログに記録する](/whats-new/2025/07/whats-new-07-01-logs-uqe-cross-account-query/) - * [OpenTelemetryを使用したKubernetes監視が一般公開されました。](/whats-new/2025/07/whats-new-7-01-k8s-otel-monitoring/) - * [Kubernetes の Windows ノード監視がパブリック プレビューになりました](/whats-new/2025/07/whats-new-07-04-k8s-windows-nodes-preview/) - * [パフォーマンスの問題を正確に特定: ページビューと Core Web Vitals の高度なフィルタリング](/whats-new/2025/07/whats-new-07-09-browser-monitoring/) - * [最新のエラーで並べ替えられるようになりました](/whats-new/2025/07/whats-new-7-08-ei-sort-by-newest/) - * [ブラウザデータ、条件: 新しいコントロール オプション](/whats-new/2025/07/whats-new-07-10-browser-monitoring/) - * [データベースの詳細なクエリ分析が一般提供開始](/whats-new/2025/07/whats-new-07-24-db-query-performance-monitoring/) - * [NRQL予測と予測アラートが一般提供開始](/whats-new/2025/07/whats-new-7-22-predictive-analytics/) - * [APM + OpenTelemetry コンバージェンス GA](/whats-new/2025/07/whats-new-07-21-apm-otel/) - * [GitHub Copilot と ServiceNow のエージェント統合が一般提供開始](/whats-new/2025/07/whats-new-7-15-agentic-ai-integrations/) - -* 弊社の最新リリース情報を常に把握してください: - - * [Node API ランタイム v1.2.119](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.119/) - * 脆弱性の問題を修正しました。 - - * [Ping ランタイム v1.51.0](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.119/) - - * ping ランタイムの logback-core の脆弱性を修正しました。 - * ping ランタイムの jetty サーバーの脆弱性を修正しました。 - * ping ランタイムの Ubuntu の脆弱性を修正しました。 - - * [Browser v1.292.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.292.0/) - - * `BrowserInteraction`と`previousUrl`定義を更新します。 - * 追加の検査イベントを追加しました。 - * `finished` API `timeSinceLoad`値を修正しました。 - - * [Kubernetesインテグレーション v3.42.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-42-1/) - * 将来のプラットフォーム互換性のために、内部バックエンドと CI 関連の調整を修正しました。 - - * [ジョブマネージャー v444](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-444/) - * 実行時間が長い一部のモニターの結果が特定の顧客に表示されない問題を修正しました。 - - * [Pythonエージェント v10.14.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101400/) - - * `Azure Function Apps`のサポートが追加されました。 - * `protobuf v6`サポートを有効にするために`pb2`ファイルを修正しました。 - - * [Android エージェント v7.6.7](/docs/release-notes/mobile-release-notes/android-release-notes/android-767/) - - * ログを報告するときに ANR を解決するためのパフォーマンスが向上しました。 - * アプリケーションの終了後もログの報告を継続する問題を修正しました。 - * アプリケーション状態の監視とデータ転送に関する問題を解決しました。 - * 厳密モードをオンにしたときのいくつかの違反が改善されました。 - - * [Kubernetesインテグレーション v3.42.2](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-42-2/) - - * `golang.org/x/crypto` `v0.39.0`に更新しました。 - * `go` `v1.24.4`に更新しました。 - - * [.NET エージェント v10.42.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-42-0/) - - * Azure Service Bus のサポートが追加されました。 - * 最新の VS でのプロファイラー ビルド エラーを修正しました。 - - * [PHPエージェント v11.10.0.24](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-11-10-0-24/) - - * PHP アプリケーションで使用されるパッケージを検出するためにデフォルトで使用される Composer ランタイム API を追加しました。 - * Composer ランタイム API の未定義の動作を修正しました。 - - * [Node ブラウザ ランタイム v3.0.32](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.32/) - * Chrome 131 の Chrome ビルダー オプションが更新されました。 - - * [iOS向けモバイルアプリv6.9.8](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6098/) - * より堅牢で信頼性の高いソケット接続により Ask AI 機能が強化され、シームレスなエクスペリエンスが保証されます。 - - * [Android用モバイルアプリv5.29.7](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5297/) - * より堅牢で信頼性の高いソケット接続により Ask AI 機能が強化され、シームレスなエクスペリエンスが保証されます。 - - * [Node.jsエージェント v12.22.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-22-0/) - - * `openai` v5 ストリーミング サポートが追加されました。 - * `openai.responses.create` API のサポートが追加されました。 - * 未定義のトレース状態ヘッダーのエラー ログを修正しました。 - - * [インフラストラクチャエージェント v1.65.0](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1650/) - - * 依存関係`newrelic/nri-winservices`を更新しました `v1.2.0` - * alpine docker タグを次のように更新しました。 `v3.22` - - * [インフラストラクチャエージェント v1.65.1](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1651/) - * 依存関係`newrelic/nri-flex`を更新して `v1.16.6` - - * [Browser v1.292.1](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.292.1/) - * カスタムアトリビュートの競合状態の優先順位を修正しました。 - - * [NRDOT v1.2.0](/docs/release-notes/nrdot-release-notes/nrdot-2025-06-26/) - * OTELベータコアを `v0.128.0` - - * [HTML5.JS v3.0.0 用メディアエージェント](/docs/release-notes/streaming-browser-release-notes/streaming-browser-agent-25-04-15/) - - * 新しいイベントタイプを導入しました。 - * `PageAction`イベント タイプは非推奨になりました。 - - * [HTML5.JS v3.1.1 用メディアエージェント](/docs/release-notes/streaming-browser-release-notes/streaming-browser-agent-25-06-15/) - - * パッケージの npm 公開を有効にして、アクセスと配布を容易にしました。 - * `cjs` 、 `esm` 、 `umd`ビルドを`dist`フォルダーに追加し、CommonJS、ES モジュール、UMD モジュール形式との互換性を確保しました。 - - * [Roku 用メディアエージェント v4.0.0](/docs/release-notes/streaming-others-release-notes/streaming-others-agent-25-02-25/) - - * 新しいイベントタイプを導入しました。 - * `RokuVideo`イベント タイプは非推奨になりました。 - * `RokuSystem`イベント タイプは非推奨になりました。 - - * [Roku 用メディアエージェント v4.0.1](/docs/release-notes/streaming-others-release-notes/streaming-others-agent-25-04-22/) - * `errorName`は非推奨になったため、 `errorName`名前を`errorMessage`に変更しました。 - - * [ジョブマネージャー v447](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-447/) - * ベースイメージのアップグレードを`ubuntu 22.04`から `ubuntu 24.4` - - * [Ping ランタイム v1.52.0](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.52.0/) - * ベースイメージのアップグレードが`ubuntu 22.04`から `ubuntu 24.04` - - * [Kubernetesインテグレーション v3.43.0](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-0/) - * KubernetesクラスタにWindowsノード監視のサポートが追加されました。 - - * [Android用モバイルアプリv5.29.8](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5298/) - * バグが修正され、UI が改善されてよりスムーズなエクスペリエンスが実現しました。 - - * [Node.jsエージェント v12.23.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-23-0/) - - * エントリースパンとエグジットスパンのみレポートする機能を追加しました。 - * Node.js 24 のサポートが追加されました。 - * 互換性レポートを更新しました。 - - * [Node API ランタイム v1.2.120](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.120/) - * 脆弱性を修正しました `CVE-2024-39249` - - * [iOS向けモバイルアプリv6.9.9](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6099/) - * 動的プロンプトによる Ask AI 機能が強化されました。 - - * [Browser v1.293.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.293.0/) - - * **長いタスクの**内部メッセージを追加しました。 - * ディストリビューティッド(分散)トレーシングが無効にならない問題を修正しました。 - - * [Node ブラウザ ランタイム v3.0.35](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.35/) - * ベースイメージのアップグレード - - * [Javaエージェント v8.22.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8220/) - - * Azure App Services のリンクされたメタデータ。 - * `MonoFlatMapMain`計装を削除しました。 - - * [Node.jsエージェント v12.24.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-24-0/) - - * 設定可能な属性値のサイズ制限を実装しました - * 互換性レポートを更新しました。 - - * [Kubernetesインテグレーション v3.43.2](docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-2/) - * kube-state-メトリクス チャートのバージョンを`5.12.1`から に更新します `5.30.1` - - * [iOS エージェント v7.5.7](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-757/) - * セッション開始時にディストリビューティッド(分散)トレーシングに必要なアカウント情報がすべて揃っていない可能性がある問題を修正しました。 - - * [Android用モバイルアプリv5.29.9](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5299/) - * 動的 UI レンダリングによるフィードバックを強化しました。 - - * [Android 向けモバイルアプリ v5.30.0](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-53000/) - * バグを修正し、Teams GA フラグを更新して、ユーザー エクスペリエンスを向上させました。 - - * [Go エージェント v3.40.1](/docs/release-notes/agent-release-notes/go-release-notes/go-agent-3-40-1/) - - * デッドロックバグのため、使用率を元に戻しました。v3.39.0 リリースに戻してください。 - * go モジュールに直接依存関係を追加した awssupport\_test.go テストを削除しました - - * [Flutterエージェント v1.1.12](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1112/) - - * ネイティブ Android エージェントをバージョン 7.6.7 にアップデートしました - * ネイティブ iOS エージェントを改善し、バージョン 7.5.6 に更新しました - - * [Node.jsエージェント v13.0.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-0-0/) - - * Node.js 18のサポートを終了しました - * `fastify`の最小サポートバージョンを 3.0.0 に更新しました。`pino`を 8.0.0 に、 `koa-router`を 12.0.0 に - - * [Browser v1.294.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.294.0/) - * レポートの空の previousUrl を undefined として修正しました - - * [インフラストラクチャエージェント v1.65.4](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1654/) - * 依存関係`newrelic/nri-prometheus`を v2.26.2 に更新しました - - * [iOS向けモバイルアプリv6.9.10](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6100/) - * 動的 UI レンダリングによるフィードバックを強化しました。 - - * [Android NDK エージェント v1.1.3](/docs/release-notes/mobile-release-notes/android-release-notes/android-ndk-113/) - * 16KBページサイズのサポートを追加 - - * [インフラストラクチャエージェント v1.65.3](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1653/) - - * Windows プロセス ハンドルを変更しました。 - * `nri-docker`を`v2.5.1`に、 `nri-prometheus`を `v2.26.1` - - * [.NET エージェント v10.43.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-43-0/) - * Azure Service Bus にトピックのサポートを追加しました - - * [Node.jsエージェント v12.25.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-25-0/) - * 計装AWS Bedrock Converse APIを修正 - - * [Node.jsエージェント v12.24.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-24-0/) - - * 設定可能な属性値のサイズ制限を実装しました - * 互換性レポートを更新しました - - * [診断 CLI (nrdiag) v3.4.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-340/) - * `/lib64/libc.so.6: version 'GLIBC_2.34'`が見つからないなどのGLIBC関連のエラーを修正しました \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx b/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx deleted file mode 100644 index 9e024f7adf7..00000000000 --- a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx +++ /dev/null @@ -1,60 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-08' -version: 'August 01 - August 07, 2025' -translationType: machine ---- - -### 新しいドキュメント - -* [NerdGraph チュートリアル「チームのカスタム ロールの作成」が追加され、](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-budgets/overview) New Relic NerdGraph API を使用してチームのカスタム ロールを作成および管理する方法が説明されました。 - -### マイナーチェンジ - -* [条件ごとの集中イベントの値を](/docs/alerts/admin/rules-limits-alerts)1 分あたり 1,000 に変更しました。 -* 最新の検証済み[.Net エージェント互換バージョンと要件](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements)を更新しました。 -* [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-service-broker-integration)のサービス ブローカーのバージョンおよびバージョン サポート情報を更新しました。 -* [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-nginx-buildpack-integration)用のNew Relic NGINX 統合ビルドパックに関するバージョン サポート情報を更新しました。 -* New Relic Nozzle for [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-firehose-nozzle-integration/#product-snapshot)のバージョンおよびバージョン サポート情報を更新しました。 - -### リリースノート - -* 新着情報投稿をご覧ください: - - * [Errors Inboxはワークロード内に統合されました](/whats-new/2025/08/whats-new-08-06-workloads-errors-inbox)。 - -* 弊社の最新リリース情報を常に把握してください: - - * [ジョブマネージャー v452](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-452) : - * キュー メッセージの処理における例外処理の内部的な改善を追加しました。 - - * [Kubernetesインテグレーション v3.43.3](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-3) : - * New Relic Kubernetes 監視ソリューションをデプロイするための Helm チャートを追加しました。 - - * [Pipeline Controlゲートウェイ v1.1.0](/docs/release-notes/pipeline-control-gateway-release-notes/pipeline-control-gateway-25-08-05) : - - * ドロップ ルールを使用して`SqlTrace`および`TransactionTrace`イベントからデータと属性を選択的にドロップする新しい機能を実装しました。 - - * クロスサイト スクリプトの問題や、IPv6 ゾーン ID に関連する HTTP プロキシ バイパスなど、 `golang.org/x/net`パッケージの脆弱性に対処しました。 - - * Go `1.24`にアップグレードされ、セキュリティを強化し、最近の修正を組み込むために次の依存関係が更新されました。 - - * `golang.org/x/net to v0.38.0` - * `golang.org/x/sys to v0.31.0` - * `golang.org/x/text to v0.23.0` - - * [iOS向けモバイルアプリv6.9.11](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6101) : - * ユーザーの認証ドメインを保存し、ユーザーをサインイン ページに直接リダイレクトすることで、ログイン フローを 2 ステップ削減しました。 - - * [Flutterエージェント v1.1.13](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1113) : - - * ネイティブ Android エージェントがバージョン 7.6.8 にアップデートされました - * ネイティブ iOS エージェントがバージョン 7.5.8 にアップデートされました - - * [.NET MAUI エージェント v1.1.11](/docs/release-notes/mobile-release-notes/net-maui-release-notes/net-maui-agent-1111) - - * ネイティブ Android エージェントがバージョン 7.6.8 にアップデートされました - * ネイティブ iOS エージェントがバージョン 7.5.8 にアップデートされました - - * [インフラストラクチャエージェント v1.65.5](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1655) : - * ストレージサンプルのAWS efsマウントのサポートを変更しました \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx b/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx deleted file mode 100644 index a7591ff8b81..00000000000 --- a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx +++ /dev/null @@ -1,112 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-15' -version: 'August 08 - August 14, 2025' -translationType: machine ---- - -### 新しいドキュメント - -* [ゲートウェイ ルールでのNRQL関数のサポート](/docs/new-relic-control/pipeline-control/nrql-functions)を追加しPipeline Controlゲートウェイ ルールでサポートされるNRQL関数の概要を示しました。 -* New Relic Infrastructure エージェント設定でホスト名の解決設定を調整することで[、頻繁なFluent Bit Restart イベント](/docs/infrastructure/infrastructure-troubleshooting/troubleshoot-infrastructure/frequent-fluent-bit-restart-events)を解決するためのトラブルシューティング手順を追加しました。 - -### 主な変更点 - -* 最新の価格情報に合わせて[使用プラン](/docs/licenses/license-information/usage-plans/new-relic-usage-plan/#list-price)を更新しました。 -* [ワークロード UI](/docs/new-relic-solutions/new-relic-one/workloads/use-workloads/#errors) に **Error inbox** \[エラー受信トレイ] を追加しました。 -* [Javaエージェント設定](/docs/apm/agents/java-agent/configuration/java-agent-configuration-config-file/#skip-applications)のセキュリティ設定を強化するとともに、環境変数を介して起動メイン クラスまたは実行可能 jar に基づいて選択的エージェントを無効にする機能を追加しました。 -* Agent Controlに[プライベート リポジトリ設定](/docs/new-relic-control/agent-control/configuration/#private-repository-configuration)のサポートが追加され、基本または TLS 証明書方式による認証による管理対象エージェントのプロイメントが可能になります。 -* Agent Controlに[Secret Management](/docs/new-relic-control/agent-control/configuration/#secrets-management)のサポートが追加されました。これにより、専用のシークレット プロバイダーからパスワードやAPIキーなどの機密データを取得して管理できるようになります。 - -### マイナーチェンジ - -* [Pipeline Control クラウド ルールを使用して、Drop data](/docs/new-relic-control/pipeline-control/cloud-rules-api/#restrictions)の`WHERE`句にエンティティ タグ制限を追加しました。 -* New Relic AI Knowledge コネクタの[ナレッジ ソース コンテンツを最適化するためのベストプラクティス](/docs/agentic-ai/knowledge-integration/overview/#configure)を追加しました。 - -### リリースノート - -* 新着情報投稿をご覧ください: - - * [UniqueCount 高精度モードと引数サポートの増加が一般提供されました](/whats-new/2025/08/whats-new-8-13-high-precision-uniquecount)。 - -* 弊社の最新リリース情報を常に把握してください: - - * [Cordovaエージェント v7.0.8](/docs/release-notes/mobile-release-notes/cordova-release-notes/cordova-agent-708/) : - - * ネイティブ Android エージェントをバージョン 7.6.8 に更新します - * ネイティブ iOS エージェントをバージョン 7.5.8 に更新します - - * [Cordovaエージェント v7.0.9](/docs/release-notes/mobile-release-notes/cordova-release-notes/cordova-agent-709/) : - - * ネイティブ Android エージェントをバージョン 7.6.6 に更新します - * ネイティブ iOS エージェントをバージョン 7.5.5 に更新します - - * [Capacitor v1.5.8](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-158/) : - - * ネイティブ Android エージェントをバージョン 7.6.6 に更新します - * ネイティブ iOS エージェントをバージョン 7.5.5 に更新します - - * [Capacitor v1.5.9](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-159/) : - * 中止信号のクラッシュを修正 - - * [Capacitor v1.5.10](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-1510/) : - - * ネイティブ Android エージェントをバージョン 7.6.8 に更新します - * ネイティブ iOS エージェントをバージョン 7.5.8 に更新します - - * [診断 CLI (nrdiag) v3.5.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-350/) : - * `Java/Appserver/JbossEapCheck`バージョンの互換性チェックを更新しました - - * [.NET エージェント v10.44.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-44-0/) : - - * Serverlessモードでパフォーマンス メトリクス サンプラーを有効にしました - * Azure Function webhost (Linux) プロセスを計装から除外しました。 - - * [NRDOT v1.3.0](/docs/release-notes/nrdot-release-notes/nrdot-2025-08-13/) : - - * オテルコンポーネントのバージョンを v0.128.0 から v0.131.0 に上げました - * nrdotコアディストリビューションを導入 - - * [Node.jsエージェント v13.1.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-1-0/) : - - * OTEL ログAPIのサポートを追加しました - * パッケージで計装が無効になっている場合のメトリクスのサポートを追加しました - * サンプル設定ではデフォルトで無効になっているタイマーを計装しています - * `transaction.url`難読化を修正しました - - * [ジョブマネージャーv454](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-454/) : - * SJM のセキュリティ脆弱性に対処するために、Ubuntu の根本的な脆弱性を修正しました。 - - * [Node API ランタイム v1.2.124](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.124/) : - * Node API ランタイムのセキュリティ脆弱性に対処するために、根本的な Ubuntu の脆弱性を修正しました。 - - * [Node ブラウザ ランタイム v3.0.41](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.41/) : - * ノードBrowserランタイムのセキュリティ脆弱性に対処するために、tmp `CVE-2025-54798`脆弱性と基礎となる Ubuntu 脆弱性を修正しました。 - - * [Pingランタイムv1.54.0](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.0/) : - * Ping ランタイムのセキュリティ問題に対処するために、Ubuntu に関連する脆弱性を修正しました。 - - * [Javaエージェント v8.23.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8230/) : - - * graphql の v24 をサポートするように更新されました。 - * レタス6.5計装を追加しました。 - * commons-lang バージョンを 3.18.0 にアップグレードしました - - * [AWS Lambda ログフォワーダー v1.1.1](/docs/release-notes/aws-lambda-log-forwarder-release-notes/lambda-25-07-25/) : - * システムの Go バージョンを 1.24.4 にアップグレードすることで、セキュリティ体制を強化しました。 - - * [PHPエージェント v12.0.0.25](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-12-0-0-25/) : - - * Drupal フック マップのエラー ログが改善されました。 - * Security RX のレガシー パッケージ検出の問題を修正しました。 - - * [インフラストラクチャエージェント v1.66.1](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1661/) : - * ストレージ サンプルの AWS EFS マウントのサポートを元に戻しました。 - - * [Android用モバイルアプリv5.30.6](docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5306/) : - * SAML およびソーシャル ログインのパスキー サポートが強化されました。 - - * [Browser v1.295.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.0/) : - - * エラー原因の検出を追加しました。 - * モンキーパッチの警告を追加しました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx b/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx deleted file mode 100644 index 06acb518173..00000000000 --- a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-05' -version: 'September 01 - September 05, 2025' -translationType: machine ---- - -### 新しいドキュメント - -* New Relicを使用した SAP アプリケーションの監視に関する包括的なガイダンス (インストール、設定、トラブルシューティングの手順など) を提供する[SAP ソリューション監視ドキュメント](/docs/sap-solutions/overview)を追加しました。 - -### 主な変更点 - -* 新しいエージェント タイプ、設定オプション、監視機能、トラブルシューティング セクションを含む広範なリビジョンを含む[Agent Controlドキュメント](/docs/new-relic-control/agent-control/overview)を更新しました。 -* AWS Kinesis Firehose 、 Azureイベント Hub、または GCP Pub/Sub へのストリーミング データの[NerdGraph ストリーミング エクスポート ドキュメント](/docs/apis/nerdgraph/examples/nerdgraph-streaming-export)を再構築しました。 - -### マイナーチェンジ - -* [ダッシュボード テンプレート変数](/docs/query-your-data/explore-query-data/dashboards/dashboard-template-variables)に ENUM/リスト ベースの変数の新しい例を追加しました。 -* [Terraform Agent Control](/docs/infrastructure/host-integrations/installation/install-infrastructure-host-integrations-via-terraform/agent-control)の設定ドキュメントを更新しました。 -* [ログ コレクター管理](/docs/logs/forward-logs/log-collectors/log-collector-management)ドキュメントが強化され、手順が改善されました。 -* さまざまな壊れたリンクとナビゲーションの問題を修正しました。 - -### リリースノート - -* 弊社の最新リリース情報を常に把握してください: - - * [インフラストラクチャエージェント v1.67.3](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1673) : - * 組み込みインテグレーションのバージョンがアップグレードされました。 - * [Node API ランタイム v1.2.126](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.126) : - * Node API ランタイムのセキュリティ脆弱性に対処するために、Ubuntu の根本的な脆弱性を修正しました。 - * [ジョブマネージャー v463](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-463) : - * SJM のセキュリティ脆弱性に対処するために、CVE-2025-55163 および根本的な Ubuntu の脆弱性を修正しました。 - * [Node Browserランタイム v3.0.43](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.43) : - * Node Browser ランタイムのセキュリティ脆弱性に対処するために、Ubuntu の根本的な脆弱性を修正しました。 - * [Agent Controlデプロイメント チャート v0.0.74](/docs/release-notes/agent-control-deployment-chart-release-notes/agent-control-deployment-chart-05-09-25) : - * Agent Controlデプロイメント コンポーネントのリモート アップグレードのサポートが追加されました。 - * [Agent Control継続的な配信チャート v0.0.2](/docs/release-notes/agent-control-continuous-delivery-chart-release-notes/agent-control-continuous-delivery-chart-05-09-25) : - * Agent Control継続的な配信コンポーネントのリモート アップグレードのサポートが追加されました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx b/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx deleted file mode 100644 index 5e0abc2d13d..00000000000 --- a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx +++ /dev/null @@ -1,94 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-14' -version: 'September 08 - September 12, 2025' -translationType: machine ---- - -### 新しいドキュメント - -* ビジネス実行時間、デジタル エクスペリエンス、エンジニアリング エクセレンス、インテリジェント オブザーバビリティの 4 つの主要領域にわたるオブザーバビリティの実践を測定および改善するためのガイダンスを提供する、包括的な[オブザーバビリティ成熟度モデルの](/docs/new-relic-solutions/observability-maturity/)ドキュメントを追加しました。 - -### 主な変更点 - -* サンプリング コントロールとフレームワーク例外ハンドラー計装のための広範な新しい設定オプションを備えた[PHP エージェント設定](/docs/apm/agents/php-agent/configuration/php-agent-configuration/)を更新しました。 - -### マイナーチェンジ - -* ダッシュボードの使用に関するガイダンスを強化して[ダッシュボードの紹介](/docs/query-your-data/explore-query-data/dashboards/introduction-dashboards/)を更新しました。 -* JSON 管理のコンテンツが簡素化された、[ダッシュボード管理](/docs/query-your-data/explore-query-data/dashboards/manage-your-dashboard/)ドキュメントが強化されました。 -* [New Relic 使用プランの](/docs/licenses/license-information/usage-plans/new-relic-usage-plan/)ドキュメント内の壊れたリンクを修正しました。 -* [.NET エージェント トラブルシューティング](/docs/apm/agents/net-agent/troubleshooting/debugging-net-windows/)ドキュメントのデバッグ設定を修正しました。 - -### リリースノート - -* 弊社の最新リリース情報を常に把握してください: - - * [Browser v1.297.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.0/) : - - * レート制限処理を改善するために、再試行期間中の早期収穫を防止しました。 - * 課金対象バイトを削減するために、送信されるリプレイ ペイロードから NewRelic メタ属性を削除しました。 - * 空の収穫から発生するヌル ボディの例外を修正しました。 - - * [PHPエージェント v12.1.0.26](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-12-1-0-26/) : - - * アップストリームの w3c トレースサンプリングの決定に基づいたサンプリング制御を追加しました。 - * フレームワーク例外ハンドラーの計装をスキップする設定オプションを追加しました。 - * `newrelic_end_transaction(true)`呼び出すときに発生する可能性のあるメモリ リークを修正しました。 - * セキュリティ強化のため、golang バージョンを 1.25.1 にアップグレードしました。 - - * [Pythonエージェント v10.17.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101700/) : - - * Celery のカスタム タスクのサポートが追加されました。 - * Graphene-Django 監視のサポートが追加されました。 - * Django でのミドルウェア フィルタリングのサポートが追加されました。 - * AWS Bedrock Converse API のサポートが追加されました。 - * W3CTraceParent ヘッダー サンプリング フラグのサポートが追加されました。 - - * [Javaエージェント v8.24.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8240/) : - - * MongoDB Reactive Streams 5.2.0 以降のサポートが追加されました。 - * Jedis 6のサポートを追加しました。 - * CouchBaseの二重計装の問題を修正しました。 - * Spring WebClient 5.x のヘッダー ラッピングの問題を修正しました。 - - * [Node.jsエージェント v13.3.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-0/) : - - * MCP `StreamableHTTPClientTransport`サポートが追加されました。 - - * [Node.jsエージェント v13.3.1](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-1/) : - - * `requestParameters` `transaction.addRequestParameters`内のオブジェクトにデフォルト設定することでクラッシュする問題を修正しました。 - - * [Node.jsエージェント v13.3.2](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-2/) : - - * アウトバウンド HTTP 呼び出しで`protocol`取得するための防御コードを追加しました。 - - * [Kubernetesインテグレーション v3.45.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-45-1/) : - - * 最新の改善とバグ修正を加えて更新されました。 - - * [ジョブマネージャーv464](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-464/) : - - * 顧客が podman を使用してカスタム レジストリからイメージをプルできない問題を修正しました。 - - * [Node ブラウザ ランタイム v3.0.43](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.43/) : - - * セキュリティの脆弱性に対処するために、Ubuntu の根本的な脆弱性を修正しました。 - - * [iOS向けモバイルアプリv6.9.12](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6102/) : - - * ダッシュボードとアラートのディープリンクの問題を修正しました。 - * CCU ダッシュボード ID の問題を修正しました。 - - * [Android用モバイルアプリv5.30.7](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5307/) : - - * バグ修正と改善を追加しました。 - - * [Flutterエージェント v1.1.14](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1114/) : - - * 追加の安定性の改善とバグ修正を追加しました。 - - * [Pipeline Controlゲートウェイ v25.09.01](/docs/release-notes/pipeline-control-gateway-release-notes/pipeline-control-gateway-25-09-01/) : - - * パイプライン制御機能が強化された新しいリリースが追加されました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx b/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx deleted file mode 100644 index 2acbfa2f099..00000000000 --- a/src/i18n/content/jp/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx +++ /dev/null @@ -1,36 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-25' -version: 'Sep 20 - Sep 25, 2025' -translationType: machine ---- - -### 主な変更点 - -* 包括的なテーブル再構築により[New Relic価格設定と請求](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing)が更新され、明確さと組織が改善されました。 - -### マイナーチェンジ - -* [Azure Linux コンテナ](/install/dotnet/installation/azure-linux-container)、 [Docker Linux インスト](/install/dotnet/installation/dockerLinux)レーション、および .NET[エージェント デプロイメント用 Linux インストレーション](/install/dotnet/installation/linuxInstall2)の APT リポジトリ設定手順を更新しました。 -* [AWS Lambda監視の環境変数ドキュメントに、](/docs/serverless-function-monitoring/aws-lambda-monitoring/instrument-lambda-function/env-variables-lambda) NEW\_RELIC\_CLOUD\_AWS\_ACCOUNT\_ID 環境変数の説明を追加しました。 -* 更新されたサポート リソース参照を含む、強化された[ヘルプおよびサポート](/docs/new-relic-solutions/solve-common-issues/find-help-get-support)ドキュメント。 -* [iOS エージェント 7.5.9 リリース ノート](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-759)のエージェント起動クラッシュ問題関連のコールアウトを修正しました。 -* 標準構成フォーマットの[オンホスト統合ドキュメント](/docs/infrastructure/host-integrations/infrastructure-integrations-sdk/specifications/host-integrations-standard-configuration-format/#configure-how-the-agent-executes-your-integrations)内のエージェント設定の最大間隔設定情報を更新しました。 - -### リリースノート - -* 弊社の最新リリース情報を常に把握してください: - - * [Go エージェント v3.41.0](/docs/release-notes/agent-release-notes/go-release-notes/go-agent-3-41-0) : - - * ディストリビューティッド(分散)ト サンプリング動作を制御するためのリモート親サンプリング設定オプションを追加しました。 - * セキュリティ強化のためサードパーティ ライブラリのバージョンを更新しました。 - - * [Node.jsエージェント v13.3.3](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-3) : - - * サブスクライバーのコールバックのトレースのサポートが追加されました。 - * APIPromise を適切に返し、クラッシュを防ぐためにOpenAI計装を修正しました。 - - * [iOS エージェント v7.5.10](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-7510) : - - * エージェントの起動時に発生する可能性があったクラッシュを修正しました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx b/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx deleted file mode 100644 index 6e5b982a15b..00000000000 --- a/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-08-04' -version: 1.295.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Add error cause detection -bugs: - - Add monkey-patching warnings - - Calculate first and last timestamps from raw data -security: [] -translationType: machine ---- - -## v1.295.0 - -### 特徴 - -#### エラー原因検出を追加 - -キャプチャされた JavaScriptError イベントの原因属性を検出して報告します。原因がエラーのインスタンスである場合はスタックトレースがキャプチャされ、それ以外の場合は原因の文字列化された内容が報告されます。 これは、属性`cause`の下の JavaScriptError イベントでクエリ可能になります。 - -### バグ修正 - -#### モンキーパッチの警告を追加する - -エージェントがページで実行される前に、予期されるグローバルにモンキーパッチが適用された場合の検出と警告を追加しました。これにより予期しない動作が発生する可能性があり、この動作について顧客に通知することが目的です。 - -#### 生データから最初と最後のタイムスタンプを計算する - -UI リプレーヤーの一貫性を向上させるために、収集前にエージェントが SessionReplay ペイロードの最初と最後のタイムスタンプを手動で計算することを確認します。 - -## サポートステートメント - -New Relic では、最新の機能とパフォーマンス上のメリットを確実に得られるよう、エージェントを定期的にアップグレードすることをお勧めします。古いリリースは[サポート終了](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/)になるとサポートされなくなります。リリース日は、エージェント バージョンの元の公開日を反映します。 - -新しいブラウザエージェントのリリースは、一定期間にわたって小さな段階で顧客に展開されます。 このため、リリースがアカウントでアクセス可能になる日付は、元の公開日と一致しない可能性があります。詳細については、この[ステータス ダッシュボード](https://newrelic.github.io/newrelic-browser-agent-release/)をご覧ください。 - -弊社の[ブラウザ サポート ポリシー](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types)に従い、 Browserの v1.295.0 は、 Chrome 128 ~ 138、Edge 128 ~ 138、Safari 17 ~ 19、Firefox 130 ~ 140 のブラウザとバージョン範囲向けに構築され、テストされました。 モバイル デバイスの場合、v1.295.0 は Android OS 16 および iOS Safari 17-26 用に構築およびテストされました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx b/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx deleted file mode 100644 index 9d3fed96462..00000000000 --- a/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx +++ /dev/null @@ -1,27 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-09-17' -version: 1.297.1 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: [] -bugs: - - Prevent double import of Session Replay aggregate class -security: [] -translationType: machine ---- - -## バージョン1.297.1 - -### バグ修正 - -#### セッションリプレイ集約クラスの二重インポートを防止する - -newrelic.recordReplay の使用時にセッションリプレイ集約クラスが二重にインポートされる可能性がある問題を修正しました。プリロード中の API メソッドが有効になりました。 - -## サポートステートメント - -New Relic では、最新の機能とパフォーマンス上のメリットを確実に得られるよう、エージェントを定期的にアップグレードすることをお勧めします。古いリリースは[サポート終了](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/)になるとサポートされなくなります。リリース日は、エージェント バージョンの元の公開日を反映します。 - -新しいブラウザエージェントのリリースは、一定期間にわたって小さな段階で顧客に展開されます。 このため、リリースがアカウントでアクセス可能になる日付は、元の公開日と一致しない可能性があります。詳細については、この[ステータス ダッシュボード](https://newrelic.github.io/newrelic-browser-agent-release/)をご覧ください。 - -弊社の[ブラウザ サポート ポリシー](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types)に従い、 Browserの v1.297.1 は、 Chrome 130 ~ 140、Edge 130 ~ 140、Safari 17 ~ 19、Firefox 132 ~ 142 のブラウザとバージョン範囲向けに構築され、テストされました。 モバイル デバイスの場合、v1.297.1 は Android OS 16 および iOS Safari 17-18.5 用に構築およびテストされました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx b/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx deleted file mode 100644 index f05dbb15f6d..00000000000 --- a/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-09-19' -version: 1.298.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Factor long tasks into soft nav base interaction span -bugs: - - Force LCP to report the original page URL -security: [] -translationType: machine ---- - -## バージョン1.298.0 - -### 特徴 - -#### 長いタスクをソフトナビゲーションベースのインタラクションスパンに組み込む - -`BrowserInteraction` ソフト ナビゲーション ("SPA 2.0") では、5 秒間長いタスクが観察されない時点まで、DOM の変更時間を超えて期間が延長されます。`JavascriptError`と`AjaxRequest` 、元のヒューリスティックの終了を超えたこの延長期間中、まだそのようなインターラクションに関連付けられていません。 - -### バグ修正 - -#### LCP に元のページ URL を報告させる - -LCP が、収集 URL とは別に、pageUrl を報告できるようにします。LCP 収集前に発生するソフト ナビゲーションで、LCP に関連付けられた元のページ URL ではなく、現在のページ URL が報告されるという問題が確認されました。この変更により、LCP ハーベスト ノードは、現在のページ URL に関係なく、元の URL を報告できるようになります。変更は`pageUrl`と`targetGroupedUrl`属性の両方に適用される必要があります。 - -## サポートステートメント - -New Relic では、最新の機能とパフォーマンス上のメリットを確実に得られるよう、エージェントを定期的にアップグレードすることをお勧めします。古いリリースは[サポート終了](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/)になるとサポートされなくなります。リリース日は、エージェント バージョンの元の公開日を反映します。 - -新しいブラウザエージェントのリリースは、一定期間にわたって小さな段階で顧客に展開されます。 このため、リリースがアカウントでアクセス可能になる日付は、元の公開日と一致しない可能性があります。詳細については、この[ステータス ダッシュボード](https://newrelic.github.io/newrelic-browser-agent-release/)をご覧ください。 - -弊社の[ブラウザ サポート ポリシー](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types)に従い、 Browserの v1.298.0 は、 Chrome 130 ~ 140、Edge 130 ~ 140、Safari 17 ~ 19、Firefox 132 ~ 142 のブラウザとバージョン範囲を対象に構築され、テストされています。 モバイル デバイスの場合、v1.298.0 は Android OS 16 および iOS Safari 17-26 用に構築およびテストされました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx b/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx deleted file mode 100644 index c6aac0b5e4f..00000000000 --- a/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-10-14' -version: 1.300.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Remove usage of the marks and measures feature flag - - Reduce hasReplay attribute false positive rate -bugs: - - Update typings for interaction API to reflect waitForEnd - - Address issues with dynamic require and Rollup.js -security: [] -translationType: machine ---- - -## バージョン1.300.0 - -### 特徴 - -#### マークとメジャー機能フラグの使用を削除します - -内部機能フラグによってエージェントをゲートしなくなりました。アプリケーション設定でオフにしない限り、対策はデフォルトですべてのユーザーに対して有効になります。 - -#### hasReplay属性の誤検知率を削減 - -誤検知を減らすために、セッションリプレイの収集が成功したことが確認された場合にのみ、「hasReplay」プロパティを設定してください。 - -### バグ修正 - -#### waitForEnd を反映するようにインタラクション API の型を更新します - -[ドキュメントに記載されている](https://docs.newrelic.com/docs/browser/new-relic-browser/browser-apis/interaction/#parameters)ように、オプションの`waitForEnd`引数を考慮して`.interaction` API を定義する型指定ファイルが正しく装飾されていなかった問題を修正しました。 - -#### 動的 require と Rollup.js の問題に対処する - -MicroAgent ローダーを含むページを構築するときに、ロールアップ.js がエラー`Error: Could not dynamically require ...`を生成する問題を修正しました。 - -## サポートステートメント - -New Relic では、最新の機能とパフォーマンス上のメリットを確実に得られるよう、エージェントを定期的にアップグレードすることをお勧めします。古いリリースは[サポート終了](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/)になるとサポートされなくなります。リリース日は、エージェント バージョンの元の公開日を反映します。 - -新しいブラウザエージェントのリリースは、一定期間にわたって小さな段階で顧客に展開されます。 このため、リリースがアカウントでアクセス可能になる日付は、元の公開日と一致しない可能性があります。詳細については、この[ステータス ダッシュボード](https://newrelic.github.io/newrelic-browser-agent-release/)をご覧ください。 - -弊社の[ブラウザ サポート ポリシー](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types)に従い、 Browserの v1.300.0 は、 Chrome 131 ~ 141、Edge 131 ~ 141、Safari 17 ~ 26、Firefox 133 ~ 143 のブラウザとバージョン範囲を対象に構築され、テストされています。 モバイル デバイスの場合、v1.300.0 は Android OS 16 および iOS Safari 17-26 用に構築およびテストされました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx b/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx deleted file mode 100644 index 47d0e446537..00000000000 --- a/src/i18n/content/jp/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-10-21' -version: 1.301.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Switch to using NR fork of rrweb -bugs: - - Preserve agent attributes for log payloads -security: [] -translationType: machine ---- - -## v1.301.0 - -### 特徴 - -#### rrwebのNRフォークの使用に切り替える - -Browserセッションリプレイに元のリポジトリの代わりにNew Relicのフォークされたバージョンの rrweb を使用するように切り替わります。 これにより、ブラウザ チームは問題に対する修正プログラムをカスタマイズできるようになります。 - -### バグ修正 - -#### ログペイロードのエージェント属性を保持する - -ブラウザのログ ペイロードを調整して、エージェントが予約した属性が同じ名前を共有している場合、ユーザーが指定した値よりも優先されるようにします。 - -## サポートステートメント - -New Relic では、最新の機能とパフォーマンス上のメリットを確実に得られるよう、エージェントを定期的にアップグレードすることをお勧めします。古いリリースは[サポート終了](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/)になるとサポートされなくなります。リリース日は、エージェント バージョンの元の公開日を反映します。 - -新しいブラウザエージェントのリリースは、一定期間にわたって小さな段階で顧客に展開されます。 このため、リリースがアカウントでアクセス可能になる日付は、元の公開日と一致しない可能性があります。詳細については、この[ステータス ダッシュボード](https://newrelic.github.io/newrelic-browser-agent-release/)をご覧ください。 - -弊社の[ブラウザ サポート ポリシー](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types)に従い、 Browserの v1.301.0 は、 Chrome 131 ~ 141、Edge 131 ~ 141、Safari 17 ~ 26、Firefox 133 ~ 143 のブラウザとバージョン範囲を対象に構築され、テストされています。 モバイル デバイスの場合、v1.301.0 は Android OS 16 および iOS Safari 17-26 用に構築およびテストされました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx b/src/i18n/content/jp/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx deleted file mode 100644 index 711e5d6cceb..00000000000 --- a/src/i18n/content/jp/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx +++ /dev/null @@ -1,11 +0,0 @@ ---- -subject: Node API runtime -releaseDate: '2025-09-22' -version: 1.2.134 -translationType: machine ---- - -### 修正 - -* Node APIランタイムのセキュリティ脆弱性に対処するために、Ubuntuの根本的な脆弱性を修正しました。 -* 日間の SSL チェッカーの状態、残りのバグ修正。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx b/src/i18n/content/jp/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx deleted file mode 100644 index 92db3ea7169..00000000000 --- a/src/i18n/content/jp/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx +++ /dev/null @@ -1,14 +0,0 @@ ---- -subject: Node browser runtime -releaseDate: '2025-09-22' -version: 3.0.50 -translationType: machine ---- - -### 改良点 - -* Chromeブラウザのバージョンを131から134にアップグレードする - -### 修正 - -* CVE-2025-58754 および基盤となる Ubuntu の脆弱性を修正し、Node ブラウザ ランタイムのセキュリティ脆弱性に対処しました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx b/src/i18n/content/jp/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx deleted file mode 100644 index d3726ad0d76..00000000000 --- a/src/i18n/content/jp/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Ping Runtime -releaseDate: '2025-08-13' -version: 1.54.0 -translationType: machine ---- - -### 改良点 - -* Ping ランタイムのセキュリティ問題に対処するために、Ubuntu に関連する脆弱性を修正しました。 \ No newline at end of file diff --git a/src/i18n/content/jp/docs/service-architecture-intelligence/github-integration.mdx b/src/i18n/content/jp/docs/service-architecture-intelligence/github-integration.mdx deleted file mode 100644 index 80a179cc81b..00000000000 --- a/src/i18n/content/jp/docs/service-architecture-intelligence/github-integration.mdx +++ /dev/null @@ -1,220 +0,0 @@ ---- -title: Service Architecture Intelligenceのための GitHub 統合 -tags: - - New Relic integrations - - GitHub integration -metaDescription: 'Learn how to integrate GitHub with New Relic to import repositories, teams, and user data for enhanced service architecture intelligence.' -freshnessValidatedDate: never -translationType: machine ---- - -GitHub アカウントのデータを活用して、サービス アーキテクチャーにインサイトをさらに深く組み込むことを検討していますか? New Relic GitHub 統合は、選択的なデータ取得機能を使用して、リポジトリ、チーム、およびユーザーのデータをNew Relicプラットフォームに直接インポートします。 - -この統合により、ユーザーとチームのオンボーディング プロセスが合理化され、役割管理が簡素化されます。 また、エンティティの所有権のマッピングを明確にし、セットアップの時間と労力を削減します。新しい選択的データ取得機能を使用すると、チームとユーザー、リポジトリとプルリクエスト、またはその両方など、どのデータ タイプをインポートするかを正確に選択できます。 この統合 AI モニタリングにより、 New Relic内の[カタログ](/docs/service-architecture-intelligence/catalogs/catalogs)と[スコアカード](/docs/service-architecture-intelligence/scorecards/getting-started)の管理と可視性が強化されます。 詳細については、 [Service Architecture Intelligence機能](/docs/service-architecture-intelligence/getting-started)を参照してください。 - -* **サポートされているプラットフォーム:** - - * GitHubクラウド - * GitHub Enterprise (GHE) Cloud (データレジデンシーなし) - -* **サポートされている地域:**米国およびEU地域 - - - * GHE オンプレミス、およびデータ レジデンシーを備えた GHE Cloud はサポートされていません。 - * GitHub ユーザー アカウントへのインテグレーションのインストールはサポートされていません。 GitHub ではユーザー アカウントにアプリをインストールすることはできますが、同期メカニズムは機能せず、New Relic にデータはインポートされません。 - * GitHub 統合は FedRAMP に準拠していないことに注意してください。 - - -**前提条件:** - -* New Relic と統合する予定の GitHub アカウントにログインします。 - -* 組織マネージャーまたは認証ドメイン マネージャーである必要があります。 - -* 必要な権限: - - * `teams_discount_usage` - * `integration_github_discount_usage` - * `integration_github_ccu` - -## IP ホワイトリスト要件 - -組織が送信接続に IP ホワイトリストを使用している場合は、データ コレクターのエンドポイントからのトラフィックを許可する必要があります。 - -ホワイトリスト設定に追加する必要がある、許可された IP アドレスの完全かつ最新のリストについては、New Relic の公式公開ドキュメントを参照してください。 - -## 同期できるデータ - -GitHub 統合により、 New Relicにインポートするデータ型を選択して、どの情報を同期するかを制御できるようになります。 - -### 利用可能なデータタイプ - -* **チームとユーザー**: GitHub チーム構造とユーザー情報をインポートして、チームの管理と所有権を強化します - - - **ユーザーの電子メール公開要件**: 統合では、GitHub プロファイル設定で電子メール アドレスを公開として構成した GitHub ユーザーのみがインポートされます。 プライベートメール設定を持つチーム メンバーは、ユーザー データの同期プロセスから除外されます。 - - -* **リポジトリとプルリクエスト**: リポジトリ データとプルリクエスト情報をインポートして、コードの可視性とデプロイメントの追跡を改善します。 - -* **両方**: 包括的な GitHub 統合のために、利用可能なすべてのデータ タイプをインポートします。 - -### データ選択の考慮事項 - - - **チーム統合の競合**: チームがすでに別のソース (サービス チームなど) からNew Relicに統合されている場合、データの競合を防ぐため、GitHub チームを取得して保存することはできません。 この場合、選択できるデータはリポジトリとプルリクエストのデータのみです。 - - -初期セットアッププロセス中に、データ選択の設定を構成できます。 - -## GitHub 統合のセットアップ - -1. **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)**に移動します。 - -2. **Select an action** \[アクションの選択]ステップで、 **Set up a new integration** \[新しいインテグレーションのセットアップ]を選択し、 **Continue** \[続行]をクリックします。 - -3. **Begin integration** \[統合の開始]画面で: - - a. GitHub アカウントに接続するには、 **Get started in GitHu**b \[GitHub で開始する]をクリックします。New Relicオブザーバビリティが GitHub マーケットプレイスでオープンします。 b.GitHub 組織内でアプリのインストールを完了して、選択したデータ タイプに関連するデータを取得します。 インストレーションが完了すると、もう一度**Select an action** \[アクションの選択]ステップにリダイレクトされます。 紀元前**Begin integration** \[統合の開始]を選択し、 **Continue** \[続行]をクリックします。 - - d.**Select your data preferences** \[データ設定を選択]: 同期するデータの種類を選択します。 - - * **Teams + Users** \[Teams + ユーザー]: GitHub チーム構造とユーザー情報をインポートします - * **Repositories + Pull Requests** \[リポジトリ + プルリクエスト]: リポジトリとプルリクエストのデータをインポートします - * **Both** \[両方]: 利用可能なすべてのデータ型をインポートします - - - チームがすでに別のソース (サービス チームなど) から統合されている場合、競合を防ぐために**Teams + Users** \[チーム + ユーザー]オプションは無効になります。 - - - e. **Start first sync** \[最初の同期を開始]をクリックして、選択したデータ タイプのインポートを開始します。 - - グラム。**Sync started** \[同期が開始されたという]メッセージが表示されたら、 **Continue** \[続行]をクリックします。**Integration status** \[統合ステータス]画面には、選択したデータ タイプ (チーム、リポジトリなど) の数が 5 秒ごとに更新されて表示されます。 すべてのデータが完全にインポートされるまで数分かかります。 - - GitHub integration - -4. *(オプション)* **GitHub integration** \[GitHub 統合]画面で、インポートされたデータにアクセスします。 - - * **Go to Teams** \[Teams に移動]をクリックすると、 [Teams](/docs/service-architecture-intelligence/teams/teams)にインポートされたチーム情報が表示されます (セットアップ時にチームを選択した場合) - * **Go to Repositories** \[リポジトリに移動]をクリックして、[リポジトリ](/docs/service-architecture-intelligence/repositories/repositories)にインポートされたリポジトリ情報を表示します (セットアップ中にリポジトリが選択されている場合) - - - **リポジトリをチームに自動割り当て**: GitHub で`teamOwningRepo`カスタム プロパティを作成すると、GitHub リポジトリをチームに自動的に割り当てることができます。組織レベルでカスタム プロパティを作成し、リポジトリ レベルでカスタム プロパティの値を割り当てます。さらに、組織レベルで複数のリポジトリに対して同時にカスタム プロパティを設定することもできます。インテグレーションは、カスタム プロパティに基づいてリポジトリを各チームに自動的に割り当てます。 カスタム プロパティの作成の詳細については、 [GitHub ドキュメント](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization)を参照してください。 - - -## チームの所有権の検出を有効にする - -GitHub 統合には、GitHub の組織構造とカスタム プロパティに基づいてリポジトリのチーム所有権を自動的に確立できる検出サービスが含まれています。 - -### チームの所有権の仕組み - -検出サービスでは、リポジトリの所有権を確立するために複数の方法が使用されます。 - -1. **GitHub カスタム プロパティ**: `teamOwningRepo`カスタム プロパティを使用して、リポジトリをチームに直接割り当てます -2. **チームメンバーシップ分析**: コミットパターンとチームメンバーの貢献を分析して所有権を推測します -3. **リポジトリ組織**: GitHub の組織構造とチーム権限を使用して所有権を決定します - -### 自動チーム所有権の設定 - -チーム所有権の自動検出を有効にするには: - -1. **GitHub でカスタム プロパティを作成します**(推奨): - - * GitHub組織の設定に移動します - * 組織レベルで`teamOwningRepo`カスタム プロパティを作成します - * リポジトリレベルでチーム値をリポジトリに割り当てる - * 統合により、同期中にこれらの関係が自動的にマッピングされます。 - -2. **チームの権限を設定します**: - - * チームがGitHubで適切なリポジトリアクセスを持っていることを確認する - * 検出サービスはこれらの権限を使用して所有権関係を推測します - -3. **チームの所有権の自動検出を有効にする**: - - * 同期が完了したら、New Relic でチーム所有権の自動検出を有効にします。詳細については、 [Teams の所有権の自動化に関するドキュメント](https://docs.newrelic.com/docs/service-architecture-intelligence/teams/manage-teams/#assign-ownership)を参照してください。 - * 所有権関係が正しく確立されていることを確認する - - - **チーム所有権のベストプラクティス**: - - * GitHub と New Relic のチーム間で一貫した命名規則を使用する - * リポジトリの所有権が変更された場合は、カスタム プロパティを定期的に更新します。 - * 同期のたびに所有権マッピングを確認して検証し、正確性を確保します。 - - -## GitHub 統合を管理する - -GitHub 統合をセットアップしたら、 New Relicインターフェイスを通じて管理できるようになります。 これには、データの更新、設定の編集、必要に応じてアンインストールが含まれます。 - -### 統合管理へのアクセス - -1. **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)**に移動します。 - -2. **Select an action** \[アクションの選択]ステップで、 **Manage your organization** \[組織の管理]を選択し、 **Continue** \[続行]をクリックします。 - - Screenshot showing the manage organization option in GitHub integration - -**「GitHub 統合の管理」画面には、**接続されている組織が現在の同期ステータスとデータ型とともに表示されます。 - -### データを更新 - -**Refresh data** \[データの更新]オプションをクリックすると、New Relic で GitHub データを効率的に更新できるようになります。 - -**データを更新するには:** - -1. **Manage GitHub integration** \[GitHub 統合の管理]画面から、組織を見つけます。 - -2. 更新する組織の横にある**Refresh data** \[データの更新]をクリックし、 **Continue** \[続行]をクリックします。 - -3. **Refresh Data** \[データの更新]手順で、**Sync on demand** \[オンデマンドで同期を]クリックします。 - -その後、システムは GitHub の権限と組織へのアクセスを検証し、最後の同期以降に新規または変更されたデータのみを取得し、選択したデータ タイプに従って更新されたデータを処理およびマッピングし、最新の同期タイムスタンプとデータ数を反映するために統合ステータスを更新します。 - -**更新されるもの:** - -* GitHub チームに新しいチームメンバーが追加されました -* リポジトリの変更(新規リポジトリ、アーカイブリポジトリ、権限変更) -* カスタムプロパティによるチーム所有権の更新 -* ユーザープロフィールとチーム構造の変更 - - - **更新頻度**: 必要に応じて何度でもデータを更新できます。このプロセスは、組織の規模と選択したデータの種類に応じて、通常数分かかります。 - - -### 統合設定の編集 - -初期セットアップ後に統合設定を変更するには、**Edit** \[編集]オプションを使用します。 現在のニーズに基づいて、Teams + ユーザー、リポジトリ + プルリクエスト、または両方のデータ型から選択して、GitHub とNew Relicの間で同期するデータ型を調整できます。 - -**GitHub 統合を編集するには:** - -1. **Manage GitHub integration** \[GitHub 統合の管理]画面から、組織を見つけます。 - -2. 更新する組織の横にある**Edit** \[編集]をクリックし、 **Continue** \[続行]をクリックします。 - -3. **Edit Integration Settings** \[統合設定の編集]ステップで、必要に応じてデータ タイプの選択を調整します。 - -4. 更新を適用するには、 **Save changes** \[変更を保存]をクリックします。 - -**編集中に何が起こるか:** - -* 設定変更中も現在のデータはそのまま残ります -* 新しい設定は以降の同期に適用されます -* 変更を適用する前にプレビューできます -* 変更を保存するまで、統合は以前の設定で実行され続けます。 - -### GitHub 統合をアンインストールする - -GitHub インテグレーションをアンインストールすると、選択した組織からのデータ同期が停止しますが、以前にインポートされたデータはすべてNew Relicに保存されます。 - -**アンインストールするには:** - -1. **Manage GitHub integration** \[GitHub 統合の管理]画面から、アンインストールする組織を見つけて、 **Uninstall** \[アンインストール]をクリックします。 - -2. 確認ダイアログで組織の詳細を確認し、 **Uninstall organization** \[組織をアンインストール]をクリックして確定します。 - -3. アンインストールを確認する成功メッセージが表示されます。 - - - **アンインストール後のデータ保持期間**: 以前に同期されたすべてのデータ (チーム、ユーザー、リポジトリ、プルリクエスト) は、インテグレーションをアンインストールした後もNew Relicに残ります。 このデータを削除する必要がある場合は、New Relic サポートにお問い合わせください。 - \ No newline at end of file diff --git a/src/i18n/content/kr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx b/src/i18n/content/kr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx deleted file mode 100644 index 65be8f0b577..00000000000 --- a/src/i18n/content/kr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: 추가 결제(선택사항) -tags: - - Accounts - - Accounts and billing - - New Relic pricing and billing -metaDescription: Add-ons are an optional billing factor -freshnessValidatedDate: '2024-10-23T00:00:00.000Z' -translationType: machine ---- - -GB Ingested 및 청구 가능 사용자의 기본 청구 요소 외에도 선택적 청구 가능 추가 기능을 사용하여 뉴렐릭의 경험을 확장할 수 있습니다. - -* **Advanced Compute \[高度なコンピューティング] (旧称 Add-on Compute \[アドオン コンピューティング])**: 이 애드온은 CodeStream, Live Archives 및 기타 사용 가능한 기능과 관련하여 실행하는 작업에 대한 사용량 기반 청구에 적용됩니다. [고급 CCU](/docs/licenses/license-information/product-definitions/new-relic-one-pricing-definitions/#compute-capacity-unit) 사용량에 따라 측정 및 요금이 청구됩니다. - - - 고급 컴퓨팅 모드에서 CodeStream 사용하면 사용자 유형에 관계없이 CCU 요금이 부과됩니다. 즉, 무료 기본 사용자는 고급 컴퓨팅 기능에 액세스할 수 있지만 고급 CCU에 대해서는 요금이 부과됩니다. - - -* **Original Data 또는 Data Plus용 EU 데이터센터**: 이 추가 기능은 사용 가능한 경우 데이터 지역으로 유럽 연합을 선택하면 데이터 옵션(Original Data 또는 Data Plus)에 적용됩니다. - -* **Extended Retention for Original Data or Data Plus \[원본 데이터 또는 데이터 플러스의 연장 보존]**: 이 추가 기능은 데이터가 보존되는 기본 기간을 초과한 경우 적용됩니다. 이는 로그뿐만 아니라 모든 데이터에 적용되며, 많은 양의 작은 쿼리를 실행해야 하거나 대량의 데이터에 대한 쿼리를 실행해야 하는 경우 좋은 옵션입니다. - -* **Live Archives \[라이브 아카이브]**: 로그 보관 기간을 최대 7년까지 연장합니다. 라이브 아카이브에는 고급 컴퓨팅도 필요합니다. - -* **New Relic Synthetics Checks**: 이 추가 기능은 귀하의 수표가 신세틱 모니터링 검사의 기본 수를 초과하는 경우 적용됩니다. - -* **Security RX**: 이 기능은 데이터 플러스에 포함되어 있지만, 데이터 플러스 없이 시큐리티 RX 기능을 사용하는 경우 추가 기능이 적용됩니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx b/src/i18n/content/kr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx deleted file mode 100644 index 4e466ace0f4..00000000000 --- a/src/i18n/content/kr/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx +++ /dev/null @@ -1,354 +0,0 @@ ---- -title: '데이터: 청구 및 규칙' -tags: - - Accounts - - Accounts and billing - - New Relic pricing and billing -metaDescription: 'For New Relic pricing, an explanation of how data ingest is calculated for billing purposes.' -freshnessValidatedDate: '2024-10-23T00:00:00.000Z' -translationType: machine ---- - -New Relic 가격 책정의 경우 New Relic 조직에서 수집한 데이터가 청구 요소 중 하나입니다. - -## 비용에 대해 알아보기 [#costs] - -아직 New Relic 고객이 아니고 비용에 대해 궁금한 경우 먼저 [기본 가격 페이지를](https://newrelic.com/pricing)참조하십시오. 기존 고객인 경우 데이터 수집 청구에 대한 세부 정보를 계속 읽으십시오. - -## UI에서 데이터 수집 보기 [#ui] - -UI에서 사용량 및 청구 정보를 찾는 방법은 [청구 UI를](/docs/accounts/accounts-billing/general-account-settings/introduction-account-settings)참조하십시오. - -데이터 수집을 보고 관리하는 방법은 [수집 관리를](/docs/data-apis/manage-data/manage-data-coming-new-relic)참조하십시오. - -## 데이터 옵션: 데이터 플러스 및 원본 [#data-prices] - -조직의 수집된 데이터 GB당 가격은 조직의 데이터 옵션( **Data Plus** 또는 **Original Data** 옵션)에 따라 다릅니다. Data Plus 옵션은 최적화된 성능, 규모, 보안 및 거버넌스를 위한 고급 데이터 기능을 제공합니다. 뉴렐릭 조직은 한 번에 하나의 옵션만 가질 수 있습니다. - -다음은 두 옵션을 비교한 표입니다. 가격 및 한도는 월 단위이며 가격은 USD로 표시됩니다. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- 특징/능력 - - **Original Data** 옵션 - - **Data Plus** 옵션 - - 더 많은 기능 세부 정보 -
- [에디션](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing/#editions) - - 모든 에디션 - - 스탠다드(Standard), 프로(Pro) 또는 엔터프라이즈(Enterprise) 필요 - - (기능이 에디션에만 해당되는 경우 아래에 설명되어 있습니다.) - -
- 데이터 무료 한도 - - 100GB 수집됨 - - 100GB 수집됨 - -
- 데이터 가격
(무료 한도를 초과) -
- $0.40/GB 수집됨 - - $0.60/GB 수집됨 - -
- 데이터 보존 무료 한도
([데이터 유형에 따라 다름](/docs/data-apis/manage-data/manage-data-retention)) -
- 최소 8일의 기본값 - - 기본 기간보다 90일 추가 - -
- 추가 30일 보존 기간당 가격
(무료 한도 초과) -
- +$0.05/GB - - +$0.05/GB - -
- [EU 데이터 센터](/docs/accounts/accounts-billing/account-setup/choose-your-data-center)에 데이터를 저장하기 위한 추가 가격
-
- +$0.05/GB - - +$0.05/GB - - 데이터는 기본적으로 미국 데이터 센터에 저장됩니다. -
- 최대 [쿼리 한도](/docs/query-your-data/nrql-new-relic-query-language/get-started/rate-limits-nrql-queries/#query-limits) - - 분당 최대 200억 개의 데이터 포인트 - - 분당 최대 60B 데이터 포인트 - -
- 최대 [쿼리 기간](/docs/query-your-data/nrql-new-relic-query-language/get-started/rate-limits-nrql-queries/#query-duration) - - 1 분 - - 최대 10분 - -
- 클라우드 공급자 선택 - - 단일 클라우드 공급자 - - Azure 또는 여러 클라우드 공급자 - - 원격 측정 스토리지를 엔지니어링 배포 모델 및 클라우드 기본 설정에 맞추려면 관측 가능성 워크로드에 대해 선호하는 클라우드 공급자를 선택하세요. -
- [로그 난독화](/docs/logs/ui-data/obfuscation-ui/) - - 로그에서 알려진 신용 카드 및 주민등록번호 패턴을[자동으로](/docs/logs/get-started/new-relics-log-management-security-privacy/#log-obfuscation) 마스킹합니다. - - UI에서 직접 규칙을 만들고 추적하며 [마스크 또는 민감한 로그 데이터를 해시](/docs/logs/ui-data/obfuscation-ui/) 합니다. - -
- [New Relic 취약점 관리](/docs/vulnerability-management/overview)
(전체 플랫폼 사용자만 해당) -
- +$0.10/GB
(무료 한도 초과) -
- 스탠다드(Standard), 프로(Pro), 엔터프라이즈(Enterprise) - - 소프트웨어 수명 주기의 모든 단계에서 취약점을 식별하고 위험을 해결합니다. -
- [FedRAMP 보통](/docs/security/security-privacy/compliance/fedramp-compliant-endpoints) 및 [HIPAA](/docs/security/security-privacy/compliance/hipaa-readiness-new-relic) 자격 - - - - 기업 - - FedRAMP 및 HIPAA 요구 사항을 충족하는 데 도움이 되는 구성을 통해 보안 규정 준수를 달성하십시오. -
- [스트리밍 데이터 내보내기](/docs/apis/nerdgraph/examples/nerdgraph-streaming-export) - - - - 스탠다드(Standard), 프로(Pro), 엔터프라이즈(Enterprise) - - 원격 분석 데이터를 선택한 AWS 또는 Azure 스토리지로 동시에 내보내는 규칙을 구성합니다. 클라우드 공급자에 대한 추가 수출 수수료가 적용됩니다. -
- [과거 데이터 내보내기](/docs/apis/nerdgraph/examples/nerdgraph-historical-data-export) - - - - 스탠다드(Standard), 프로(Pro), 엔터프라이즈(Enterprise) - - 기록 분석 및 모델링, 장기 저장 및 다른 데이터 분석 플랫폼과의 통합을 위한 제한 시간 없이 더 큰 쿼리를 실행합니다. -
- Azure Native New Relic Service - - - - 스탠다드, 프로, 엔터프라이즈
([몇 가지 제한 사항이 있음](#azure-native-data-plus)) -
-
- -Data Plus와 기존 데이터 옵션을 나란히 비교하려면 [Data Plus 데이터 시트를](https://newrelic.com/resources/datasheets/data-plus) 확인하세요. - -데이터 플러스에 관심이 있으십니까? [데이터 플러스로 업그레이드를](#upgrade-data-plus)참조하십시오. - -### Azure Native New Relic Service 세부 정보 [#azure-native-data-plus] - -[Azure Native New Relic Service를](/docs/infrastructure/microsoft-azure-integrations/get-started/azure-native) 사용하면 Azure에서 직접 앱 및 인프라에 대한 원격 분석 데이터를 수집하고 저장할 수 있습니다. 이 기능은 Data Plus에 포함되어 있지만 다음과 같은 제한 사항이 있습니다. - -* 미국 데이터 센터 지역에서만 사용 가능 -* FedRAMP 보통/HIPAA 자격 없음 -* 이전 데이터 내보내기를 사용할 수 없음 - -## 데이터 플러스로 업그레이드 [#upgrade-data-plus] - -데이터 플러스(Data Plus)로 업그레이드하려면 데이터 관리 허브의 [**Data retention** UI](/docs/data-apis/manage-data/manage-data-retention/#adjust-retention) 로 이동하여 **Upgrade retention** 클릭하세요. - -* 참고: **Edit data retention** 버튼이 보일 수 있지만 이것은 **Upgrade retention** 버튼과 다릅니다. -* **Upgrade retention** 버튼을 보려면 [결제 권한이](/docs/accounts/accounts-billing/new-relic-one-user-management/user-management-concepts/#admin-settings) 있어야 합니다. 요구 사항을 충족했지만 여전히 **Upgrade retention** 옵션이 표시되지 않으면 뉴렐릭 계정 담당자에게 문의하세요. - -## 청구 가능한 GB 수집량으로 간주되는 것은 무엇입니까? [#usage-calculation] - -[New Relic 요금제](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing)의 맥락에서 "수집된 데이터"는 다양한 데이터 트리밍 및 데이터 변환 규칙을 적용한 후 조직에서 New Relic에 저장한 데이터를 의미합니다. 즉, New Relic으로 보내는 raw data의 양이 아니라 실제로 저장되는 데이터의 크기입니다. - -일반적으로, 당사의 기능을 제공하기 위해 생성되는 데이터는 수집된 GB에 포함되지 않습니다. GB Ingested에 포함되지 않는 기능 및 기능 관련 데이터의 예는 다음과 같습니다. - -* [기본 알림 기능](/docs/alerts-applied-intelligence/new-relic-alerts/learn-alerts/alerts-concepts-workflow). 예를 들어, 이러한 기능을 생성하는 데 사용되는 이벤트인 `NrAiIncident` 은 수집된 GB에 포함되지 않습니다. -* 집계된 원시 데이터(예: [집계된 인프라 데이터](/docs/data-apis/manage-data/manage-data-retention/#infrastructure-data) 또는 [차원 메트릭 데이터](/data-apis/manage-data/manage-data-retention/#dimensional-metrics))로 생성된 데이터입니다. -* [골든 메트릭](/docs/apis/nerdgraph/examples/golden-metrics-entities-nerdgraph-api-tutorial) (골든 메트릭에 대한 자세한 내용은 [엔터티 정의](https://github.com/newrelic/entity-definitions)참조). -* 합성 모니터 확인. 합성 청구에 대한 자세한 내용은 [합성 한도 및 가격 책정을](/docs/synthetics/synthetic-monitoring/using-monitors/monitor-limits)참조하십시오. -* 사용량 및 청구 추적 데이터(예: `NrConsumption`). -* 계정 관리와 관련된 데이터(예: `NrIntegrationError`, `NrAuditEvent`). - -사용량을 이해하려면 [사용량 UI를](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing#usage-ui)참조하세요. - -## 기타 계산 세부 정보 [#calculation-details] - -* 가격 책정 모델의 맥락에서 GB는 10억 바이트로 정의됩니다. -* 월별 수집된 GB 수는 가장 가까운 정수로 반올림됩니다. 예를 들어, 조직에서 한 달에 100.9GB를 사용했다면 100GB로 계산됩니다. - -## 무료 버전 [#free-tier-limits] - -무료 버전의 GB Ingested에 대한 자세한 내용은 [무료 버전을](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing/#free) 참조하세요. - -## 더 알아보기 [#related-docs] - -* 수집된 GB를 관리하는 방법에 대한 자세한 내용은 [데이터 수집 관리를](/docs/data-apis/manage-data/manage-data-coming-new-relic) 참조하세요. -* 사용량을 쿼리하는 방법은 [쿼리 및 사용량 알림을](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/usage-queries-alerts) 참조하세요. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx b/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx deleted file mode 100644 index 15511a3dca9..00000000000 --- a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx +++ /dev/null @@ -1,61 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-10-10' -version: 'Oct 06 - Oct 10, 2025' -translationType: machine ---- - -### 새로운 문서 - -* 웹 애플리케이션에서 작업 기간을 모니터링하기 위해 성능 마크와 측정값을 수집하는 방법에 대한 지침을 제공하기 위해 [브라우저 에이전트로 마크와 측정값을 수집하는 기능이](/whats-new/2025/09/whats-new-10-02-browser-marks-and-measures) 추가되었습니다. -* 문제 해결을 제공하기 위해 [Kubernetes APM 자동 연결에 데이터 없음을](/docs/apm/agents/ruby-agent/troubleshooting/no-data-kubernetes-auto-attach) 추가하고, 비 Rails 프레임워크를 사용하는 Kubernetes APM 자동 연결을 사용하여 루비 특수에 대한 지침을 해결했습니다. - -### 주요 변경 사항 - -* `BrowserTiming` 이벤트에 대한 사용 중단 공지와 향상된 브라우저 에이전트 기능 설명을 담은 [속성 사전이](/attribute-dictionary) 업데이트되어 기술 참조의 정확도가 향상되었습니다. -* 향상된 [Pipeline 클라우드 규칙 API](/docs/new-relic-control/pipeline-control/cloud-rules-api) cloud 규칙을 활성화, 비활성화 및 다시 활성화하는 방법에 대한 포괄적인 지침을 제공하여 운영 제어를 개선합니다. - -### 사소한 변경 사항 - -* 정확성 향상을 위해 [라이브 아카이브 청구](/docs/logs/get-started/live-archives-billing) 의 가격 용어를 "컴퓨팅 약 단위(CCU)"에서 "Advanced 컴퓨팅 약 단위(CCU)"로 업데이트했습니다. -* [에이전트 제어 설정](/docs/new-relic-control/agent-control/setup) 지침의 조직을 개선하여 팁 콜아웃을 재배치하고 중복된 내용을 제거하여 간소화된 설치 지침을 제공했습니다. -* 플랫폼 동기화를 개선하기 위해 [작업 카탈로그](/docs/workflow-automation/setup-and-configuration/actions-catalog), [스케줄링 API](/docs/workflow-automation/create-a-workflow-automation/start-schedule) 및 템플릿 설정에 대한 최신 변경 사항을 적용하여 폴리스우 자동화 설명서를 업데이트했습니다. -* 에이전트 플루리트 GA 릴리스에 대한 개선된 메시지와 더욱 명확한 기능 설명을 통해 향상된 [뉴렐릭 제어 공지](/whats-new/2025/09/whats-new-30-09-new-relic-control) 입니다. - -### 릴리즈 정보 - -* 최신 릴리스에 대한 최신 정보를 받아보세요. - - * [루비 에이전트 v9.22.0](/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-22-0): - - * Kubernetes 용 단계별 측정 및 계측기가 추가되었습니다(현재 일반적으로 사용 가능). - * 루비 2.4 및 2.5 지원에 대한 사용 중단 공지가 추가되었습니다. - * `newrelic deployments` 명령에 대한 사용 중단 알림이 추가되었습니다. - * 루비 3.5와의 호환성을 보장하기 위해 Method#source\_location이 변경되었습니다. - - * [.NET 에이전트 v10.45.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-45-0): - - * 새로운 분산 추적 샘플러인 TraceId 비율 기반 샘플러가 추가되었습니다. - * 데이터 저장 측정, 로그를 비활성화할 수 있는 MSSQL 연결 문자열 구문 분석 예외를 수정했습니다. - * Kafka "Consume" 측정, 리소스 호환성 문제가 해결되었습니다. - - * [그립 에이전트 v11.0.1](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-110001): - - * Django 측정, 로그의 조기 활성화가 방지되었습니다. - * 서버 설정을 로컬 설정 동기화 문제로 수정했습니다. - * trace\_cache.pop()으로 인한 충돌을 방지하기 위한 보호 기능이 추가되었습니다. - - * [인프라 에이전트 v1.69.0](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1690): - - * AWS SDK를 V1에서 V2로 업그레이드했습니다. - * 도커 API 라이브러리가 v26에서 v28로 업그레이드되었습니다. - * 여러 CPU 그룹이 있는 인스턴스에 대한 고정 Windows CPU 처리가 추가되었습니다. - - * [iOS 에이전트 v7.5.11](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-7511): - - * 상호작용 추적을 사용할 때 발생할 수 있는 성능 문제가 해결되었습니다. - * 잘못 표시될 수 있는 분산 추적 관련 로그를 수정했습니다. - - * [노드 브라우저 런타임 v3.0.55](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.55): - - * 여러 보안 CVE를 해결하여 Ubuntu의 기본 취약점을 수정했습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx b/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx deleted file mode 100644 index d66f505267a..00000000000 --- a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-10-17' -version: 'October 13 - October 17, 2025' -translationType: machine ---- - -### 주요 변경 사항 - -* [서비스 아키텍처 인텔리전스를 위한 GitHub 통합이](/docs/service-architecture-intelligence/github-integration) 업데이트되어 명확성이 향상되고 새로운 조직 관리 옵션이 추가되기 위한 광범위한 개정이 이루어졌습니다. -* 기능이 일반 가용성에 도달함에 따라 향상된 조직 및 명확성을 위해 재구성된 [에이전트 제어 개요](/docs/new-relic-control/agent-control/overview) 및 관련 에이전트 제어 문서입니다. - -### 사소한 변경 사항 - -* [사용자 관리 UI 및 일반 작업](/docs/accounts/accounts-billing/new-relic-one-user-management/user-management-ui-and-tasks) 에 사용자 대량 가져오기 섹션을 추가했습니다. -* [뉴렐릭 OTel K8s 지표 매핑](/docs/kubernetes-pixie/kubernetes-integration/installation/k8s-otel-metrics) 에 OTEL에 대한 리소스 할당량 매핑을 추가했습니다. -* 업데이트된 [뉴렐릭 eBPF 통합 설치 및 구성](/docs/ebpf/k8s-installation) 및 [설치 및 설정 기능이 향상된 뉴렐릭 eBPF 통합 설치 및 구성](/docs/ebpf/linux-installation) . -* 명확성을 높이기 위해 [알림 공지 통합을](/docs/alerts/get-notified/notification-integrations) 업데이트했습니다. -* [도커 컨테이너 모니터링 통합](/docs/infrastructure/host-integrations/host-integrations-list/docker-container-monitoring-integration) 에 대한 호환성 버전이 수정되었습니다. -* [Kubernetes 통합에서 Kubernetes 버전 호환성이 업데이트되었습니다: 호환성 및 요구 사항](/docs/kubernetes-pixie/kubernetes-integration/get-started/kubernetes-integration-compatibility-requirements). -* [지표 API 제한 및 제한된 속성](/docs/data-apis/ingest-apis/metric-api/metric-api-limits-restricted-attributes) 의 지표당 최대 속성이 업데이트되었습니다. - -### 릴리즈 정보 - -* 최신 릴리스에 대한 최신 정보를 받아보세요. - - * [Node.js 에이전트 v13.5.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-5-0): - - * 방출된 이벤트를 구독하기 위해 `fastify` 측정, 로그를 업데이트했습니다. - * 방출된 이벤트를 구독하도록 `pg` 및 `pg-native` 측정 측정을 업데이트했습니다. - * 기본적으로 `timers.setTimeout` 및 `timers.setInterval` 비활성화하기 위해 `config.instrumentation.timers.enabled` false로 업데이트했습니다. - * 새로운 진단 기본 클래스를 추가하고 undici를 마이그레이션하여 새 클래스를 사용하도록 했습니다. - - * [Kubernetes 통합 v3.46.0](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-46-0): - - * v1.34 지원이 추가되었고 v1.29 지원은 중단되었습니다. - * golang.org/x/crypto를 v0.42.0으로 업데이트했습니다. - * Alpine을 v3.22.2로 업데이트했습니다. - * Kubernetes 패키지를 v0.34.1로 업데이트했습니다. - - * [.NET MAUI 에이전트 v1.1.13](/docs/release-notes/mobile-release-notes/net-maui-release-notes/net-maui-agent-1113): - - * 기본 Android 에이전트를 버전 7.6.10으로 업데이트했습니다. - * 네이티브 iOS 에이전트를 7.5.11 버전으로 업데이트했습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx b/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx deleted file mode 100644 index 44ee3a23503..00000000000 --- a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx +++ /dev/null @@ -1,267 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-07-25' -version: 'June 13 - July 24, 2025' -translationType: machine ---- - -### 새로운 문서 - -* 에이전트 버전 1.285.0 이상에서 향상된 문제 해결을 위한 세부 로깅, 네트워크 요청 모니터링, 검사 이벤트를 포함하여 [뉴렐릭 브라우저 에이전트 문제를 디버깅하는 방법](/docs/browser/new-relic-browser/troubleshooting/how-to-debug-browser-agent/) 에 대한 새로운 기능이 추가되었습니다. -* `python` 및 `.node.js` 함수 모니터링에 대한 [Azure Functions](/docs/serverless-function-monitoring/azure-function-monitoring/introduction-azure-monitoring/) 지원이 추가되었습니다. -* 뉴렐릭 플랫폼에서 비효율성을 식별하고, 최적화 권장 사항을 제공하고, CCU 절감액을 추정하는 기능을 통해 컴퓨트 효율성을 향상시키기 위해 실행 가능한 인사이트를 위한 [비용 최적화 기능](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-optimizer/) 을 추가했습니다. -* [클라우드 비용 인텔리전스](/docs/cci/getting-started/overview) 가 추가되어 포괄적인 비용 분석, Kubernetes 비용 할당, 미래 비용 추정, 계정 간 데이터 수집 등의 기능을 포함하여 cloud 비용의 가시성과 관리를 위한 도구를 제공하며 현재는 AWS 클라우드 비용만 지원합니다. -* Helm 차트를 통한 클러스터의 원활한 모니터링을 위해 [뉴렐릭 기능 제공자 독립적 통합이 포함된 Kubernetes 용OpenTelemetry 옵저버빌리티가](/docs/kubernetes-pixie/k8s-otel/intro/) 추가되었으며, 메트릭, 이벤트에 대한 텔메트리 신호가 향상되고 뉴렐릭 도구와 대시보드로 전송됩니다. -* [Windows 통합에 대한 제한 사항 및 문제 해결, 해결](/docs/kubernetes-pixie/kubernetes-integration/troubleshooting/troubleshooting-windows/)추가 -* [CloudFormation 및 CloudWatch Metric Streams를](/docs/infrastructure/amazon-integrations/aws-integration-for-metrics/via-cloudformation-cwms/) 통해 AWS 통합을 추가하여 지원되지 않는 서비스에 대한 API 폴링을 지원합니다. -* MySQL 및 MS SQL Server용 온호스트 통합을 통해 데이터베이스 부분 모니터용 [뉴렐릭 데이터베이스 처리에 대한 향상된 태그를](/docs/infrastructure/host-integrations/db-entity-tags/) 추가하여 청구 또는 기존 텔레메트리에 영향을 주지 않고 메타데이터 인사이트 및 뉴렐릭 조직을 강화했습니다. - -### 주요 변경 사항 - -* [NRQL 참조](/docs/nrql/nrql-syntax-clauses-functions/#non-aggregator-functions/) 에 집계자 이외의 함수를 추가했습니다. -* [루비 에이전트 요구 사항을 업데이트하고 프레임워크를 지원했습니다](/docs/apm/agents/ruby-agent/getting-started/ruby-agent-requirements-supported-frameworks/). -* [뉴렐릭 문서의OpenTelemetry 로그인에](/docs/opentelemetry/best-practices/opentelemetry-best-practices-logs/#custom-events) 뉴렐릭 커스텀 대시보드로 로그를 추가했습니다. -* [범용 Azure Functions에 대한 호환성 및 요구 사항](/docs/serverless-function-monitoring/azure-function-monitoring/compatibility-requirement-azure-monitoring/#supported-runtimes) 문서에서 Linux, Windows 및 컨테이너화된 함수에 대해 지원되는 런타임이 업데이트되었습니다. -* [Confluent 클라우드 통합에](/docs/message-queues-streaming/installation/confluent-cloud-integration/#metrics) 대한 메트릭 데이터를 업데이트했습니다. -* [Node.js 에이전트 설정](/docs/apm/agents/nodejs-agent/installation-configuration/nodejs-agent-configuration/) 에서 GCP Cloud Run을 삭제했습니다. -* .NET 에이전트에서 지원하는 추가 라이브러리를 포함하도록 [AI 모니터링에 대한 호환성 및 요구 사항이](/docs/ai-monitoring/compatibility-requirements-ai-monitoring/) 업데이트되었습니다. -* [뉴렐릭 네트워크 트래픽](/docs/new-relic-solutions/get-started/networks/#new-relic-endpoints) 에 뉴렐릭 플래메트리 듀얼 스택 엔드포인트를 추가했습니다. -* [Google Cloud Load Balancing 모니터링 통합](/docs/infrastructure/google-cloud-platform-integrations/gcp-integrations-list/google-cloud-load-balancing-monitoring-integration/) 에 `GcpHttpExternalRegionalLoadBalancerSample` 추가했습니다. -* [신세틱스 작업 관리자 문서를 설치하는](/docs/synthetics/synthetic-monitoring/private-locations/install-job-manager/#-install) 방법에 대한 OpenShift 시작 절차를 추가했습니다. -* [Node.js 에이전트 버전 12를](/docs/apm/agents/nodejs-agent/installation-configuration/update-nodejs-agent/) 업데이트했습니다. -* [CloudFormation 및 CloudWatch Metric Streams활용한AWS ](/docs/infrastructure/amazon-integrations/aws-integration-for-metrics/via-cloudformation-cwms/)용 원활한 통합을 추가했으며, API 폴링도 지원합니다. - -### 사소한 변경 사항 - -* [프로세서 트레이스](/docs/data-apis/manage-data/manage-data-retention/#retention-periods/) 의 보존 기간으로 `Transaction` 추가했습니다. -* [알림 규칙 및 제한](/docs/alerts/admin/rules-limits-alerts/) 에 `Destination` 새 카테고리로 추가했습니다. -* [Azure Native 서비스 소개](/docs/infrastructure/microsoft-azure-integrations/get-started/azure-native/) 문서에 Azure 리소스의 진단 설정이 올바르게 구성되었는지 확인하거나 Azure Native 서비스를 통한 전달을 비활성화하여 데이터가 Azure Native 플랫폼으로 전송되지 않도록 하는 콜아웃을 추가했습니다. -* [.NET 에이전트](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements/) 에 대한 최신 호환 라이브러리를 업데이트했습니다. -* iOS SDK 버전 7.5.4부터 시작되는 내용을 알리기 위해 [iOS 에이전트 릴리스 노트](/docs/release-notes/mobile-release-notes/ios-release-notes/index/) 문서에 콜아웃을 추가했습니다. 이제 변경 사항으로 인해 이전에 억제되었던 처리된 예외 이벤트가 보고됩니다. -* Kubernetes 환경에 대한 리소스 속성 및Kubernetes 가 아닌 환경에 대한 `container.id` 지정에 대한 서비스-컨테이너 관계에 대한 요구 사항을 업데이트하여 [뉴렐릭에서OpenTelemetry 리소스](/docs/opentelemetry/best-practices/opentelemetry-best-practices-resources/) 에 대한 적절한 텔레메트리 설정을 보장합니다. -* [특정 구현 에이전트](/docs/infrastructure/infrastructure-agent/new-relic-guided-install-overview/#install-specific-versions) 버전 설치에 대한 CLI 지원이 추가되어 일관된 구현, 배포 및 시스템 호환성이 가능해졌습니다. 레시피 이름에 `@X.XX.X` 사용하여 버전을 지정합니다. -* UI 에서 **Manage Account Cardinality**, **Manage Indicator Cardinality**, **Create Pruning Rules** 기능을 사용하기 위한 역할 액세스 요구 사항을 강조하는 콜아웃을 추가했습니다. [Cardinality Management](/docs/data-apis/ingest-apis/metric-api/cardinality-management/#attributes-table) 에서 권한이 설정되어 있는지 확인하세요. -* [Node.js 에이전트의 호환성 및 요구 사항을](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent/) `v12.23.0` 으로 업데이트했습니다. -* [Elasticsearch를](/docs/infrastructure/host-integrations/host-integrations-list/elasticsearch/elasticsearch-integration) 설정하는 데 필요한 최소 권한을 추가했습니다. -* [NRQL 공지 구문](/docs/alerts/create-alert/create-alert-condition/create-nrql-alert-conditions/) 에 대한 `FACET` 속성 최대 허용 제한 사용 값을 5000에서 20000으로 업데이트했습니다. - -### 릴리즈 정보 - -* [`SystemSample`, `ProcessSample`, `NetworkSample` 및 `StorageSample`의 인프라 이벤트를 타겟으로 하는 삭제 규칙](/eol/2025/05/drop-rule-filter/)의 수명 종료 날짜로 2026년 1월 7일을 발표함 - -* [공지 조건의 messageId 및 타임스탬프에 대한 FACET](/eol/2025/07/deprecating-alert-conditions/) 의 수명 종료가 즉시 발효됩니다. - -* 2025년 10월 28일을 [Attention Required](/eol/2025/07/upcoming-eols/) 의 수명 종료일로 발표했습니다. - -* 새로운 소식 게시물을 확인하세요. - - * [Microsoft Teams에 직접 공지 보내기](/whats-new/2025/03/whats-new-03-13-microsoft-teams-integration/) - * [뉴렐릭 컴퓨팅 Optimizer가 정식 출시되었습니다!](/whats-new/2025/06/whats-new-06-25-compute-optimizer/) - * [통합 쿼리 탐색기에서 계정 간 쿼리 로그](/whats-new/2025/07/whats-new-07-01-logs-uqe-cross-account-query/) - * [OpenTelemetry를 활용한 Kubernetes 모니터링이 정식 출시되었습니다!](/whats-new/2025/07/whats-new-7-01-k8s-otel-monitoring/) - * [Kubernetes용 Windows 노드 모니터링이 이제 공개 미리 보기로 제공됩니다.](/whats-new/2025/07/whats-new-07-04-k8s-windows-nodes-preview/) - * [성능 문제 정확히 파악: 페이지 뷰 및 Core Web Vitals에 대한 고급 필터링](/whats-new/2025/07/whats-new-07-09-browser-monitoring/) - * [이제 최신 오류별로 정렬할 수 있습니다.](/whats-new/2025/07/whats-new-7-08-ei-sort-by-newest/) - * [귀하의 브라우저 데이터, 귀하의 이용 약관: 새로운 제어 옵션](/whats-new/2025/07/whats-new-07-10-browser-monitoring/) - * [데이터베이스에 대한 심층 쿼리 분석이 이제 일반적으로 사용 가능합니다.](/whats-new/2025/07/whats-new-07-24-db-query-performance-monitoring/) - * [NRQL 프리딕션 및 예측 경보가 이제 일반적으로 사용 가능합니다.](/whats-new/2025/07/whats-new-7-22-predictive-analytics/) - * [APM + OpenTelemetry Convergence GA](/whats-new/2025/07/whats-new-07-21-apm-otel/) - * [GitHub Copilot 및 ServiceNow용 Agentic 통합이 이제 일반적으로 사용 가능합니다.](/whats-new/2025/07/whats-new-7-15-agentic-ai-integrations/) - -* 최신 릴리스에 대한 최신 정보를 받아보세요. - - * [노드 API 런타임 v1.2.119](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.119/) - * 취약점 문제가 해결되었습니다. - - * [Ping 런타임 v1.51.0](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.119/) - - * ping 런타임에 대한 logback-core 취약점이 수정되었습니다. - * ping 런타임에 대한 jetty-server 취약점이 수정되었습니다. - * ping 런타임에 대한 Ubuntu 취약점이 수정되었습니다. - - * [브라우저 에이전트 v1.292.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.292.0/) - - * `BrowserInteraction` 및 `previousUrl` 정의를 업데이트합니다. - * 추가 검사 이벤트를 추가했습니다. - * `finished` API `timeSinceLoad` 값이 고정되었습니다. - - * [Kubernetes 통합 v3.42.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-42-1/) - * 향후 플랫폼 호환성을 위해 백앤드 및 CI 관련 내부 조정을 수정했습니다. - - * [작업 관리자 v444](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-444/) - * 일부 모니터에서 실행 시간이 길어서 일부 고객이 결과를 볼 수 없었던 문제를 해결했습니다. - - * [파이썬 에이전트 v10.14.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101400/) - - * `Azure Function Apps` 에 대한 지원이 추가되었습니다. - * `protobuf v6` 지원을 활성화하기 위해 `pb2` 파일을 수정했습니다. - - * [안드로이드 에이전트 v7.6.7](/docs/release-notes/mobile-release-notes/android-release-notes/android-767/) - - * 로그를 보고할 때 ANR을 해결하는 성능이 향상되었습니다. - * 애플리케이션을 종료한 후에도 로그 보고를 계속하도록 문제를 해결했습니다. - * 애플리케이션 상태 모니터링 및 데이터 전송과 관련된 문제가 해결되었습니다. - * strictmode를 켜면 몇 가지 위반 사항이 개선되었습니다. - - * [Kubernetes 통합 v3.42.2](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-42-2/) - - * `golang.org/x/crypto` `v0.39.0` 로 업데이트했습니다. - * `go` `v1.24.4` 로 업데이트했습니다. - - * [.NET 에이전트 v10.42.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-42-0/) - - * Azure Service Bus에 대한 지원이 추가되었습니다. - * 최신 VS에서 발생한 프로필러 빌드 오류를 수정했습니다. - - * [PHP 에이전트 v11.10.0.24](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-11-10-0-24/) - - * PHP 애플리케이션에서 사용하는 패키지를 감지하기 위해 기본적으로 사용되는 Composer 런타임 API를 추가했습니다. - * Composer 런타임 API에서 정의되지 않은 동작이 수정되었습니다. - - * [노드 브라우저 런타임 v3.0.32](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.32/) - * 크롬 131에 대한 크롬 빌더 옵션이 업데이트되었습니다. - - * [iOS v6.9.8용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6098/) - * 더욱 견고하고 안정적인 소켓 연결로 Ask AI 기능을 향상시켜 원활한 경험을 보장합니다. - - * [Android v5.29.7용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5297/) - * 더욱 견고하고 안정적인 소켓 연결로 Ask AI 기능을 향상시켜 원활한 경험을 보장합니다. - - * [Node.js 에이전트 v12.22.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-22-0/) - - * `openai` v5 스트리밍 지원이 추가되었습니다. - * `openai.responses.create` API에 대한 지원이 추가되었습니다. - * 정의되지 않은 tracestate 헤더에 대한 오류 로깅이 수정되었습니다. - - * [인프라 에이전트 v1.65.0](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1650/) - - * 의존성/종속성 `newrelic/nri-winservices` 을(를) 다음으로 업데이트했습니다. `v1.2.0` - * 알파인 도커 태그가 업데이트되었습니다. `v3.22` - - * [인프라 에이전트 v1.65.1](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1651/) - * 의존성/종속성 `newrelic/nri-flex` 을(를) 다음으로 업데이트하세요. `v1.16.6` - - * [브라우저 에이전트 v1.292.1](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.292.1/) - * 사용자 정의 속성 경쟁 조건 우선 순위를 수정했습니다. - - * [NRDOT v1.2.0](/docs/release-notes/nrdot-release-notes/nrdot-2025-06-26/) - * OTEL 베타 코어를 범프했습니다. `v0.128.0` - - * [HTML5.JS v3.0.0용 미디어 에이전트](/docs/release-notes/streaming-browser-release-notes/streaming-browser-agent-25-04-15/) - - * 새로운 이벤트 유형을 도입했습니다. - * `PageAction` 이벤트 유형이 더 이상 사용되지 않습니다. - - * [HTML5.JS v3.1.1용 미디어 에이전트](/docs/release-notes/streaming-browser-release-notes/streaming-browser-agent-25-06-15/) - - * 패키지에 대한 npm 게시를 활성화하여 쉬운 접근성과 배포를 보장했습니다. - * CommonJS, ES 모듈 및 UMD 모듈 형식과의 호환성을 보장하기 위해 `dist` 폴더에 `cjs`, `esm` 및 `umd` 빌드를 추가했습니다. - - * [Roku v4.0.0용 미디어 에이전트](/docs/release-notes/streaming-others-release-notes/streaming-others-agent-25-02-25/) - - * 새로운 이벤트 유형을 도입했습니다. - * `RokuVideo` 이벤트 유형이 더 이상 사용되지 않습니다. - * `RokuSystem` 이벤트 유형이 더 이상 사용되지 않습니다. - - * [Roku v4.0.1용 미디어 에이전트](/docs/release-notes/streaming-others-release-notes/streaming-others-agent-25-04-22/) - * `errorName` 더 이상 사용되지 않으므로 `errorName` 의 이름이 `errorMessage` 로 변경되었습니다. - - * [작업 관리자 v447](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-447/) - * `ubuntu 22.04` 에서 고정 기본 이미지 업그레이드 `ubuntu 24.4` - - * [핑 런타임 v1.52.0](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.52.0/) - * `ubuntu 22.04` 에서 기본 이미지 업그레이드가 개선되었습니다. `ubuntu 24.04` - - * [Kubernetes 통합 v3.43.0](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-0/) - * 쿠버네티스 클러스터에 Windows 노드 모니터링 지원이 추가되었습니다. - - * [Android v5.29.8용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5298/) - * 버그를 수정하고 UI를 개선하여 더욱 원활한 경험을 제공했습니다. - - * [Node.js 에이전트 v12.23.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-23-0/) - - * 진입 및 종료 기간에 대해서만 보고하는 기능이 추가되었습니다. - * Node.js 24 지원이 추가되었습니다. - * 호환성 보고서가 업데이트되었습니다. - - * [노드 API 런타임 v1.2.120](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.120/) - * 취약점을 수정했습니다. `CVE-2024-39249` - - * [iOS v6.9.9용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6099/) - * 동적 프롬프트를 통해 AI 질문 기능을 향상시켰습니다. - - * [브라우저 에이전트 v1.293.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.293.0/) - - * **긴 작업** 내부 메시지를 추가했습니다. - * 내보내기 트레이스가 비활성화되지 않도록 하는 문제를 해결했습니다. - - * [노드 브라우저 런타임 v3.0.35](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.35/) - * 업그레이드된 기본 이미지 - - * [자바 에이전트 v8.22.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8220/) - - * Azure App Services에 대한 연결된 메타데이터입니다. - * `MonoFlatMapMain` 측정, 로그를 삭제했습니다. - - * [Node.js 에이전트 v12.24.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-24-0/) - - * 구성 가능한 속성 값 크기 제한을 구현했습니다. - * 호환성 보고서가 업데이트되었습니다. - - * [Kubernetes 통합 v3.43.2](docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-2/) - * kube-state-Metric 차트 버전을 `5.12.1` 에서 업데이트합니다. `5.30.1` - - * [iOS 에이전트 v7.5.7](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-757/) - * 세션 시작 시 분산 추적에 필요한 모든 계정 정보가 포함되지 않는 문제를 해결했습니다. - - * [Android v5.29.9용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5299/) - * 동적 UI 렌더링으로 피드백을 향상시켰습니다. - - * [Android v5.30.0용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-53000/) - * 버그를 수정하고 Teams GA 플래그를 업데이트하여 사용자 경험을 개선했습니다. - - * [Go 에이전트 v3.40.1](/docs/release-notes/agent-release-notes/go-release-notes/go-agent-3-40-1/) - - * 교착 상태 버그로 인해 활용도가 되돌려졌습니다. v3.39.0 릴리스로 돌아갑니다. - * go 모듈에 직접 의존성/종속성을 추가한 awssupport\_test.go 테스트를 제거했습니다. - - * [플러터 에이전트 v1.1.12](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1112/) - - * 네이티브 안드로이드 에이전트가 7.6.7 버전으로 업데이트되었습니다. - * 네이티브 iOS 에이전트가 7.5.6 버전으로 업데이트되어 개선되었습니다. - - * [Node.js 에이전트 v13.0.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-0-0/) - - * Node.js 18에 대한 지원이 중단되었습니다. - * `fastify` 에 대한 최소 지원 버전을 3.0.0으로 업데이트했습니다. `pino` 에서 8.0.0으로, `koa-router` 에서 12.0.0으로 - - * [브라우저 에이전트 v1.294.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.294.0/) - * 고정 보고서가 비어 있는 previousUrl을 정의되지 않은 것으로 표시했습니다. - - * [인프라 에이전트 v1.65.4](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1654/) - * 의존성/종속성 `newrelic/nri-prometheus` 을 v2.26.2로 업데이트했습니다. - - * [iOS v6.9.10용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6100/) - * 동적 UI 렌더링으로 피드백을 향상시켰습니다. - - * [안드로이드 NDK 에이전트 v1.1.3](/docs/release-notes/mobile-release-notes/android-release-notes/android-ndk-113/) - * 16KB 페이지 크기에 대한 지원이 추가되었습니다. - - * [인프라 에이전트 v1.65.3](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1653/) - - * Windows 프로세스 핸들이 변경되었습니다. - * `nri-docker` `v2.5.1` 로, `nri-prometheus` 로 올렸습니다. `v2.26.1` - - * [.NET 에이전트 v10.43.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-43-0/) - * Azure Service Bus에 대한 항목 지원이 추가되었습니다. - - * [Node.js 에이전트 v12.25.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-25-0/) - * 수정된 리소스입니다. AWS Bedrock Converse API - - * [Node.js 에이전트 v12.24.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-24-0/) - - * 구성 가능한 속성 값 크기 제한을 구현했습니다. - * 업데이트된 호환성 보고서 - - * [진단 CLI(nrdiag) v3.4.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-340/) - * `/lib64/libc.so.6: version 'GLIBC_2.34'` 찾을 수 없음과 같은 GLIBC 관련 오류가 해결되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx b/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx deleted file mode 100644 index e6aff2f120f..00000000000 --- a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx +++ /dev/null @@ -1,99 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-01' -version: 'July 25 - August 01, 2025' -translationType: machine ---- - -### 새로운 문서 - -* 컴퓨트 소비 단위(CCU) 사용량에 대한 모니터링 및 공지 메커니즘을 제공하기 위해 [컴퓨트 예산 문서를](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-budgets/overview) 추가했습니다. - -### 주요 변경 사항 - -* Node.js 에이전트에 대한 [호환성 및 요구 사항이](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent) 업데이트되었습니다. - -* PHP 에이전트용 [Arcin Linux의 호환성 및 요구 사항이](/docs/apm/agents/php-agent/getting-started/php-agent-compatibility-requirements) 업데이트되었습니다. - -* [파이프라인](/docs/new-relic-control/pipeline-control/modify-agent-configuration) 위험에 대한 에이전트별 요구 사항을 업데이트했습니다. - -* [지속 저항](/docs/apm/agents/java-agent/configuration/java-agent-configuration-config-file#jfr-harvest-interval) 에 대한 설정 요구 사항과 관련된 JFR을 업데이트했습니다. - -* 뉴렐릭 가격 및 청구에 대한 가격 및 청구 정보가 업데이트되었습니다. - - * [데이터: 청구 및 규칙](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing) - * [사용량 관련 쿼리 및 알림](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/usage-queries-alerts) - * [뉴렐릭 이용 계획](/docs/licenses/license-information/usage-plans/new-relic-usage-plan) - -### 사소한 변경 사항 - -* .NET 에이전트 [호환성 및 요구 사항 문서에서 SQL 에이전트를 캡처하기 위해 .NET 에이전트](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements) 의 언어를 명확하게 했습니다. -* [작업 데이터베이스 모니터링 통합](/docs/infrastructure/host-integrations/host-integrations-list/oracle-database-monitoring-integration) 의 언어가 개선되었습니다. - -### 릴리즈 정보 - -* 새로운 소식 게시물을 확인하세요. - - * [컴퓨터 예산이 이제 일반적으로 이용 가능합니다](/whats-new/2025/07/whats-new-7-30-compute-budgets). - * [사용자 경험 강화: 핵심 웹 바이탈 최적화를 위해 세션 리플레이 활용](/whats-new/2025/07/whats-new-7-31-augmenting-user-experiences-browser). - -* 최신 릴리스에 대한 최신 정보를 받아보세요. - - * [안드로이드 에이전트 v7.6.8](/docs/release-notes/mobile-release-notes/android-release-notes/android-768): - - * Unity 오류에 대한 스택 추적이 올바르게 표시되지 않는 문제를 해결했습니다. - * 앱이 처음 실행된 후 포그라운드로 돌아왔을 때 요약 지표가 기록되지 않는 문제를 해결했습니다. - * 로그 항목에 잘못된 JSON이 포함되어 오류가 발생할 수 있는 문제를 해결했습니다. - - * [진단 CLI(nrdiag) v3.4.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-341): - * 에이전트 제어 설치에서 생성된 로그를 수집하기 위해 `K8s/AgentControl/agent-control-install-job-logs` 을 추가했습니다. - - * [작업 관리자 v451](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-451): - - * SJM의 보안 문제를 해결하기 위해 `common-lang3` ยู่ 및 Ubuntu와 관련된 버그를 수정했습니다. - * 내부 서비스 아키텍처의 마이그레이션과 관련된 프로세서 대기열 마이그레이션 변경 사항을 구현했습니다. - * SJM 로그에서 문제 해결, 해결에 대한 더 나은 컨텍스트를 제공하기 위해 전체 예외 세부 정보를 포함하도록 문제를 수정했습니다. - - * [Android v5.30.1용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5301): - * 로그인 경험이 향상되었습니다. - - * [iOS v7.5.8용 모바일 앱](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-758): - - * Xcode 16.4를 사용하여 에이전트를 빌드했습니다. - * 세션 시작 시 분산 추적에 필요한 모든 계정 정보가 포함되지 않는 문제를 해결했습니다. - * 에이전트 시작 시 충돌이 발생할 수 있는 문제를 해결했습니다. - - * [노드 API 런타임](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.122): - * Node API 런타임에서 보안 교육을 처리하기 위해 양식 데이터 잘라내 및 기본 Ubuntu 잘라내를 수정했습니다. - - * [노드 브라우저 런타임](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.39): - * Node 브라우저 런타임의 보안 쿠키를 해결하기 위해 form-data 쿠키 및 기본 Ubuntu 괄호를 수정했습니다. - - * [Ping 런타임](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.0): - * Ping 런타임의 보안 문제를 해결하기 위해 `common-lang3` ย 및 Ubuntu와 관련된 고정된 버그를 수정했습니다. - - * [접착제 에이전트 v10.15.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101500): - - * [`oracledb`](https://pypi.org/project/oracledb/)에 대한 지원이 추가되었습니다. - * `MessageBroker` 측정, 과학적에서 serialize 메서드가 `MessageTransaction` 에서 `destination_name` 속성을 찾고 있었지만 해당 속성이 존재하지 않았던 버그를 수정했습니다. - * AWS와 K8s를 함께 실행할 때 발생하는 AWS 활용 메타데이터 문제를 해결했습니다. - - * [루비 에이전트 v9.20.0](/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-20-0): - - * AWS ECS Fargate 환경에서 실행할 때 도커 ID를 기록하는 지원이 추가되었습니다. - * 버전 비교를 단순화하기 위해 새로운 도우미 메서드를 추가했습니다. - * 기간이 구성된 청년 값을 초과하는 경우 데이터 스토어 범위에 `code.stacktrace` 속성을 추가했습니다. - * `Brewfile` 소스 링크가 수정되었습니다. - * `HTTPX 1.5.0` 사용하여 응답을 저장할 때 발생하는 오류를 수정했습니다. - * 에이전트가 설정 소스를 읽을 때 디버그 수준에서 에이전트에 의한 정보 로그를 개선했습니다. - - * [유니티 에이전트 v1.4.8](/docs/release-notes/mobile-release-notes/unity-release-notes/unity-agent-148): - - * 네이티브 안드로이드 에이전트를 v7.6.7로 업데이트했습니다. - * 네이티브 iOS 에이전트를 v7.5.6으로 업데이트했습니다. - - * [유니티 에이전트 v1.4.9](/docs/release-notes/mobile-release-notes/unity-release-notes/unity-agent-149): - - * 네이티브 안드로이드 에이전트를 v7.6.8로 업데이트했습니다. - * 네이티브 iOS 에이전트를 v7.5.8로 업데이트했습니다. - * 네임스페이스가 사용될 때 발생하는 Unity 예외 스택 추적 문제가 해결되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx b/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx deleted file mode 100644 index 8223f140d0d..00000000000 --- a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx +++ /dev/null @@ -1,60 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-08' -version: 'August 01 - August 07, 2025' -translationType: machine ---- - -### 새로운 문서 - -* [NerdGraph 튜토리얼을 추가했습니다: Teams에 대한 사용자 지정 역할 만들기는](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-budgets/overview) NerdGraph API 사용하여 Teams에 대한 사용자 지정 역할을 만들고 관리하는 방법을 안내합니다. - -### 사소한 변경 사항 - -* [조건별 알림 이벤트를 분당 1,000개로](/docs/alerts/admin/rules-limits-alerts) 변경했습니다. -* 최신 검증된 [.Net 에이전트 호환 버전과 요구 사항을](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements) 업데이트했습니다. -* [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-service-broker-integration) 의 서비스 브로커에 대한 버전 및 버전 지원 정보가 업데이트되었습니다. -* [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-nginx-buildpack-integration) 용 뉴렐릭 NGINX 통합 빌드팩에 대한 버전 지원 정보를 업데이트했습니다. -* [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-firehose-nozzle-integration/#product-snapshot) 용 뉴렐릭 Nozzle에 대한 버전 및 버전 지원 정보를 업데이트했습니다. - -### 릴리즈 정보 - -* 새로운 소식 게시물을 확인하세요. - - * [의 인박스(errors inbox)가 이제 워크로드 내에 통합되었습니다](/whats-new/2025/08/whats-new-08-06-workloads-errors-inbox). - -* 최신 릴리스에 대한 최신 정보를 받아보세요. - - * [작업 관리자 v452](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-452): - * 대기열 메시지 처리 시 예외 처리를 위한 내부 개선 사항이 추가되었습니다. - - * [Kubernetes 통합 v3.43.3](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-3): - * 뉴렐릭 Kubernetes 모니터링 솔루션을 구현하고 배포하기 위해 Helm 차트를 추가했습니다. - - * [파이프라인 컨트롤 게이트웨이 v1.1.0](/docs/release-notes/pipeline-control-gateway-release-notes/pipeline-control-gateway-25-08-05): - - * 삭제 규칙을 사용하여 `SqlTrace` 및 `TransactionTrace` 이벤트에서 데이터와 속성을 선택적으로 삭제하는 새로운 기능을 구현했습니다. - - * IPv6 영역 ID와 관련된 HTTP 프록시 우회 및 사이트 간 스프레드시트 문제를 포함하여 `golang.org/x/net` 패키지의 취약점을 해결했습니다. - - * Go `1.24` 로 업그레이드되었으며 다음 의존성/종속성이 보안을 강화하고 최근 수정 사항을 통합하도록 업데이트되었습니다. - - * `golang.org/x/net to v0.38.0` - * `golang.org/x/sys to v0.31.0` - * `golang.org/x/text to v0.23.0` - - * [iOS v6.9.11용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6101): - * 사용자의 인증 도메인을 저장하고 사용자를 로그인 페이지로 직접 리디렉션하여 로그인 흐름을 두 단계로 줄였습니다. - - * [플러터 에이전트 v1.1.13](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1113): - - * 개선된 네이티브 Android 에이전트가 버전 7.6.8로 업데이트되었습니다. - * 향상된 네이티브 iOS 에이전트가 버전 7.5.8로 업데이트되었습니다. - - * [.NET MAUI 에이전트 v1.1.11](/docs/release-notes/mobile-release-notes/net-maui-release-notes/net-maui-agent-1111) - - * 개선된 네이티브 Android 에이전트가 버전 7.6.8로 업데이트되었습니다. - * 향상된 네이티브 iOS 에이전트가 버전 7.5.8로 업데이트되었습니다. - - * [인프라 에이전트 v1.65.5](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1655): - * 저장소 샘플에서 지원 AWS EFS 마운트를 변경했습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx b/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx deleted file mode 100644 index aa88f66f598..00000000000 --- a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx +++ /dev/null @@ -1,112 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-15' -version: 'August 08 - August 14, 2025' -translationType: machine ---- - -### 새로운 문서 - -* [NRQL 함수에 대한 지원을 게이트웨이 규칙에](/docs/new-relic-control/pipeline-control/nrql-functions) 추가하여 NRQL 게이트웨이 규칙에서 지원되는 NRQL 함수를 간략하게 설명했습니다. -* 뉴렐릭 인프라 에이전트 설정에서 호스트명 해상도 설정을 조정하여 [빈번한 Fluent Bit Restart 이벤트를](/docs/infrastructure/infrastructure-troubleshooting/troubleshoot-infrastructure/frequent-fluent-bit-restart-events) 해결하기 위한 문제 해결, 해결 단계를 추가했습니다. - -### 주요 변경 사항 - -* 최신 가격 정보가 포함된 업데이트된 [사용 계획](/docs/licenses/license-information/usage-plans/new-relic-usage-plan/#list-price) 입니다. -* [워크로드 UI](/docs/new-relic-solutions/new-relic-one/workloads/use-workloads/#errors)에 **Error inbox** \[오류 받은 편지함]을 추가했습니다. -* [저항](/docs/apm/agents/java-agent/configuration/java-agent-configuration-config-file/#skip-applications) 세력 설정에 대한 강화된 보안 설정과 함께 환경 변수를 통해 시작 메인 클래스 또는 실행 가능한 jar를 기반으로 선택적 에이전트 비활성화를 추가했습니다. -* 에이전트 제어에 [개인용 스테이션 설정](/docs/new-relic-control/agent-control/configuration/#private-repository-configuration) 에 대한 지원이 추가되어 기본 또는 TLS 인증서 방법을 통한 인증으로 관리형 에이전트의 구현, 배포가 가능해졌습니다. -* 에이전트 제어에서 [비밀 관리](/docs/new-relic-control/agent-control/configuration/#secrets-management) 에 대한 지원이 추가되어 전용 비밀 공급자로부터 비밀번호 및 API 키와 같은 민감한 데이터를 검색하여 관리할 수 있습니다. - -### 사소한 변경 사항 - -* [파이프라인 제어 cloud 규칙을 사용하여 데이터 삭제](/docs/new-relic-control/pipeline-control/cloud-rules-api/#restrictions) 에 `WHERE` 절에 대한 카테고리 태그 제한을 추가했습니다. -* 뉴렐릭 AI 지식 커넥터에 대한 [지식 소스 콘텐츠를 최적화하기 위한 모범 사례를](/docs/agentic-ai/knowledge-integration/overview/#configure) 추가했습니다. - -### 릴리즈 정보 - -* 새로운 소식 게시물을 확인하세요. - - * [UniqueCount 고정밀 모드와 향상된 인수 지원이 이제 일반적으로 사용 가능합니다](/whats-new/2025/08/whats-new-8-13-high-precision-uniquecount). - -* 최신 릴리스에 대한 최신 정보를 받아보세요. - - * [코도바 에이전트 v7.0.8](/docs/release-notes/mobile-release-notes/cordova-release-notes/cordova-agent-708/): - - * 네이티브 안드로이드 에이전트를 7.6.8 버전으로 업데이트하세요 - * 네이티브 iOS 에이전트를 7.5.8 버전으로 업데이트하세요. - - * [코도바 에이전트 v7.0.9](/docs/release-notes/mobile-release-notes/cordova-release-notes/cordova-agent-709/): - - * 네이티브 안드로이드 에이전트를 7.6.6 버전으로 업데이트하세요 - * 네이티브 iOS 에이전트를 7.5.5 버전으로 업데이트하세요. - - * [Capacitor 에이전트 v1.5.8](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-158/): - - * 네이티브 안드로이드 에이전트를 7.6.6 버전으로 업데이트하세요 - * 네이티브 iOS 에이전트를 7.5.5 버전으로 업데이트하세요. - - * [Capacitor 에이전트 v1.5.9](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-159/): - * 고정된 중단 신호 충돌 - - * [Capacitor 에이전트 v1.5.10](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-1510/): - - * 네이티브 안드로이드 에이전트를 7.6.8 버전으로 업데이트하세요 - * 네이티브 iOS 에이전트를 7.5.8 버전으로 업데이트하세요. - - * [진단 CLI(nrdiag) v3.5.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-350/): - * `Java/Appserver/JbossEapCheck` 버전 호환성 검사를 업데이트했습니다. - - * [.NET 에이전트 v10.44.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-44-0/): - - * Serverless 모드에서 성능 메트릭 샘플러 활성화 - * 측정, 리소스에서 Azure Function 웹호스트(Linux) 프로세스를 제외했습니다. - - * [NRDOT v1.3.0](/docs/release-notes/nrdot-release-notes/nrdot-2025-08-13/): - - * 호텔 구성 요소 버전이 v0.128.0에서 v0.131.0으로 상향 조정되었습니다. - * nrdot 코어 배포판 출시 - - * [Node.js 에이전트 v13.1.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-1-0/): - - * OTEL 로그 API에 대한 지원이 추가되었습니다. - * 패키지에 대해 측정, 로그가 비활성화된 경우 지원 가능성 지표를 추가했습니다. - * 비활성화된 타이머 측정, 기본적으로 샘플 설정의 로그 - * `transaction.url` 난독화 수정 - - * [작업 관리자 v454](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-454/): - * SJM의 보안 취약점을 해결하기 위해 Ubuntu의 기본 취약점을 수정했습니다. - - * [노드 API 런타임 v1.2.124](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.124/): - * Node API 런타임의 보안 취약점을 해결하기 위해 기본 Ubuntu 취약점을 수정했습니다. - - * [노드 브라우저 런타임 v3.0.41](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.41/): - * 노드 브라우저 런타임의 보안 쿠키를 해결하기 위해 tmp `CVE-2025-54798` 붂개 및 기본 Ubuntu 접속을 수정했습니다. - - * [Ping 런타임 v1.54.0](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.0/): - * Ping 런타임의 보안 문제를 해결하기 위해 Ubuntu와 관련된 취약점을 수정했습니다. - - * [대응 에이전트 v8.23.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8230/): - - * graphql v24를 지원하도록 업데이트되었습니다. - * 양상추 6.5 측정, 로그가 추가되었습니다. - * commons-lang 버전을 3.18.0으로 올렸습니다. - - * [AWS Lambda 로그인 전달자 v1.1.1](/docs/release-notes/aws-lambda-log-forwarder-release-notes/lambda-25-07-25/): - * 시스템의 Go 버전을 1.24.4로 업그레이드하여 보안 태세를 강화했습니다. - - * [PHP 에이전트 v12.0.0.25](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-12-0-0-25/): - - * Drupal Hook Map 오류 로깅이 개선되었습니다. - * 시큐리티 RX의 구형 패키지 감지 문제를 수정했습니다. - - * [인프라 에이전트 v1.66.1](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1661/): - * 스토리지 샘플에서 AWS EFS 마운트에 대한 지원을 되돌렸습니다. - - * [Android v5.30.6용 모바일 앱](docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5306/): - * SAML 및 소셜 로그인에 대한 향상된 Passkey 지원. - - * [브라우저 에이전트 v1.295.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.0/): - - * 오류 원인 감지 기능이 추가되었습니다. - * 몽키 패칭 경고를 추가했습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx b/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx deleted file mode 100644 index 690e192131c..00000000000 --- a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx +++ /dev/null @@ -1,56 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-22' -version: 'August 15 - August 21, 2025' -translationType: machine ---- - -### 주요 변경 사항 - -* [Node.js 에이전트](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent/) 호환성 보고서가 업데이트되었습니다. -* 최신 검증된 호환 라이브러리 버전으로 [.NET 에이전트를](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements/) 업데이트했습니다. - -### 사소한 변경 사항 - -* Linux용 [에이전트](/docs/infrastructure/infrastructure-agent/requirements-infrastructure-agent/#os) 에이전트를 지원하도록 [Debian 운영 시스템을 버전 12("bookworm")로 업데이트했습니다.](/docs/infrastructure/infrastructure-agent/linux-installation/package-manager-install/) -* 데이터 제한을 쿼리하기 위한 [`accountId()`](/docs/data-apis/manage-data/query-limits/) 함수가 업데이트되었습니다. -* 64비트Windows (Intel/AMD)를 지원하도록 [Windows MSI 설치기를](/docs/infrastructure/infrastructure-agent/windows-installation/windows-msi-installer/#install-windows) 업데이트했습니다. - -### 릴리즈 정보 - -* [AI 모니터링 UI](/docs/ai-monitoring/drop-sensitive-data/) 를 통해 2026년 1월 7일이 폐기 규칙의 수명 종료일로 발표되었습니다. - -* [iOS 에이전트 v7.5.9](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-759/) - - * 세션 시작 시 분산 추적에 필요한 모든 계정 정보가 포함되지 않는 문제를 해결했습니다. - * 에이전트 시작 시 충돌이 발생할 수 있는 문제를 해결했습니다. - -* [파이썬 에이전트 v10.16.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101600/) - - * 새로운 [REDIS](https://pypi.org/project/redis/) 기능에 대한 지원이 추가되었습니다. - * 모든 내부 경로를 `os.path` 에서 `pathlib.Path` 로 변환했습니다. - * PosixPath의 JSON 인코딩 문제가 해결되었습니다. - -* [Kubernetes 통합 v3.44.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-44-1/) - - * 이 통합은 다음 차트 버전에 포함되어 있습니다. - - * [뉴렐릭-인프라-3.49.1](https://github.com/newrelic/nri-kubernetes/releases/tag/newrelic-infrastructure-3.49.1) - * [nri-bundle-6.0.10](https://github.com/newrelic/helm-charts/releases/tag/nri-bundle-6.0.10) - -* [.NET 에이전트 v10.44.1](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-44-1/) - - * Service Bus 측정, 로그 래퍼에서 예외 처리가 수정되었습니다. - * 측정, 리소스에서 Azure Function 웹호스트(Linux) 프로세스를 제외했습니다. - -* [Node.js 에이전트 v13.2.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-2-0/) - - * 구독자 기반 측정, 리소스에 대한 `Supportability/Features/Instrumentation/OnRequire/` 지표를 등록하는 기능이 추가되었습니다. - * orchestrion-js와 함께 작동하도록 esm 로더 후크와 commonjs 패치를 추가했습니다. - * `@modelcontextprotocol/sdk` 클라이언트 호출 `client.callTool`, `client.readResource` 및 `client.getPrompt` 에 대한 측정, 로그가 추가되었습니다. - * OTEL 패키지 감지에 대한 고정 논리가 적용되었습니다. - * 비활성화된 구독자를 올바르게 설정하고 건너뛸 수 있도록 `shimmer.setupSubscribers` 업데이트했습니다. - -* [Node.js 에이전트 v13.2.1](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-2-1/) - - * 추적 채널 기반 측정을 위한 CJS/ESM 등록에 `@apm-js-collab/tracing-hooks` 사용하도록 에이전트가 업데이트되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx b/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx deleted file mode 100644 index 84c09bfdf01..00000000000 --- a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-05' -version: 'September 01 - September 05, 2025' -translationType: machine ---- - -### 새로운 문서 - -* 설치, 설정, 문제 해결, 해결 절차를 포함하여 뉴렐릭을 사용한 SAP 모델링 모델링에 대한 포괄적인 지침을 제공하기 위해 [SAP 솔루션 모델링 문서를](/docs/sap-solutions/overview) 추가했습니다. - -### 주요 변경 사항 - -* 새로운 에이전트 유형, 설정 옵션, 모니터링 기능, 문제 해결, 해결 섹션을 포함한 광범위한 개정으로 [에이전트 제어 문서가](/docs/new-relic-control/agent-control/overview) 업데이트되었습니다. -* AWS Kinesis Firehose, Azure Event Hub 또는 GCP Pub/Sub에 대한 스트리밍 데이터에 대한 [NerdGraph 스트리밍 내보내기 설명서를](/docs/apis/nerdgraph/examples/nerdgraph-streaming-export) 재구성했습니다. - -### 사소한 변경 사항 - -* [대시보드 템플릿 변수](/docs/query-your-data/explore-query-data/dashboards/dashboard-template-variables) 에 ENUM/목록 기반 변수에 대한 새로운 예를 추가했습니다. -* [Terraform 에이전트 제어](/docs/infrastructure/host-integrations/installation/install-infrastructure-host-integrations-via-terraform/agent-control) 에 대한 설정 문서가 업데이트되었습니다. -* 개선된 지침으로 [로그 수집 관리](/docs/logs/forward-logs/log-collectors/log-collector-management) 문서가 향상되었습니다. -* 다양한 깨진 링크와 탐색 문제를 해결했습니다. - -### 릴리즈 정보 - -* 최신 릴리스에 대한 최신 정보를 받아보세요. - - * [인프라 에이전트 v1.67.3](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1673): - * 업그레이드된 임베디드 통합 버전. - * [노드 API 런타임 v1.2.126](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.126): - * Node API 런타임의 보안 취약점을 해결하기 위해 Ubuntu의 기본 취약점을 수정했습니다. - * [작업 관리자 v463](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-463): - * SJM의 보안 취약점을 해결하기 위해 CVE-2025-55163 및 기본 Ubuntu 취약점을 수정했습니다. - * [노드 브라우저 런타임 v3.0.43](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.43): - * Node 브라우저 런타임의 보안 인증을 해결하기 위해 기본 Ubuntu를 수정했습니다. - * [에이전트 제어 구현, 배포 차트 v0.0.74](/docs/release-notes/agent-control-deployment-chart-release-notes/agent-control-deployment-chart-05-09-25): - * 에이전트 제어 구현, 배포 구성 요소의 원격 업그레이드에 대한 지원이 추가되었습니다. - * [에이전트 제어 체인 배포 차트 v0.0.2](/docs/release-notes/agent-control-continuous-delivery-chart-release-notes/agent-control-continuous-delivery-chart-05-09-25): - * 에이전트 제어 문자열 배포 구성 요소의 원격 업그레이드에 대한 지원이 추가되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx b/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx deleted file mode 100644 index b882f2ec86d..00000000000 --- a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx +++ /dev/null @@ -1,94 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-14' -version: 'September 08 - September 12, 2025' -translationType: machine ---- - -### 새로운 문서 - -* 4가지 핵심 영역(비즈니스 업타임, 디지털 경험, 엔지니어링 우수성, 인텔리전스)에 걸쳐 옵저버빌리티 관행을 측정하고 개선하기 위한 지침을 제공하기 위해 포괄적인 [옵저버빌리티 성숙도 모델](/docs/new-relic-solutions/observability-maturity/) 문서를 추가했습니다. - -### 주요 변경 사항 - -* 샘플링 컨트롤 및 프레임워크 예외 처리기 측정을 위한 광범위한 새 설정 옵션으로 [PHP 에이전트 설정이](/docs/apm/agents/php-agent/configuration/php-agent-configuration/) 업데이트되었습니다. - -### 사소한 변경 사항 - -* 대시보드 사용에 대한 향상된 가이드를 포함하여 [대시보드 소개가](/docs/query-your-data/explore-query-data/dashboards/introduction-dashboards/) 업데이트되었습니다. -* JSON 관리를 위한 간소화된 콘텐츠로 [대시보드 관리](/docs/query-your-data/explore-query-data/dashboards/manage-your-dashboard/) 문서가 개선되었습니다. -* [뉴렐릭 사용 계획](/docs/licenses/license-information/usage-plans/new-relic-usage-plan/) 문서의 깨진 링크를 수정했습니다. -* [.NET 에이전트 문제 해결, 해결](/docs/apm/agents/net-agent/troubleshooting/debugging-net-windows/) 문서의 디버깅 설정이 수정되었습니다. - -### 릴리즈 정보 - -* 최신 릴리스에 대한 최신 정보를 받아보세요. - - * [브라우저 에이전트 v1.297.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.0/): - - * 재시도 기간 동안 조기 수확을 방지하여 더 나은 속도 제한 처리를 제공합니다. - * 청구 가능한 바이트를 줄이기 위해 나가는 리플레이 페이로드에서 Newrelic 메타 속성을 제거했습니다. - * 빈 수확으로 인해 발생하는 null 본문에 대한 고정 예외가 수정되었습니다. - - * [PHP 에이전트 v12.1.0.26](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-12-1-0-26/): - - * 업스트림 w3c 트레이스 바로 결정을 기반으로 샘플링 제어가 추가되었습니다. - * 프레임워크 예외 처리기의 측정, 서명을 건너뛰는 설정 옵션이 추가되었습니다. - * `newrelic_end_transaction(true)` 호출할 때 잠재적인 메모리 누수가 해결되었습니다. - * 보안 개선을 위해 Golang 버전을 1.25.1로 올렸습니다. - - * [접착제 에이전트 v10.17.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101700/): - - * Celery에서 사용자 정의 작업에 대한 지원이 추가되었습니다. - * Graphene-Django 모니터링에 대한 지원이 추가되었습니다. - * Django에서 미들웨어 필터링에 대한 지원이 추가되었습니다. - * AWS Bedrock Converse API에 대한 지원이 추가되었습니다. - * W3CTraceParent 헤더 샘플링 플래그에 대한 지원이 추가되었습니다. - - * [대응 에이전트 v8.24.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8240/): - - * MongoDB Reactive Streams 5.2.0 이상에 대한 지원이 추가되었습니다. - * Jedis 6 지원이 추가되었습니다. - * CouchBase 이중 측정, 로그 문제가 해결되었습니다. - * Spring WebClient 5.x 헤더 래핑 문제가 해결되었습니다. - - * [Node.js 에이전트 v13.3.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-0/): - - * MCP `StreamableHTTPClientTransport` 지원이 추가되었습니다. - - * [Node.js 에이전트 v13.3.1](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-1/): - - * `transaction.addRequestParameters` 의 객체에 `requestParameters` 기본값으로 지정하여 충돌을 해결했습니다. - - * [Node.js 에이전트 v13.3.2](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-2/): - - * 아웃바운드 http 호출에서 `protocol` 얻기 위한 방어 코드가 추가되었습니다. - - * [Kubernetes 통합 v3.45.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-45-1/): - - * 최신 개선 사항과 버그 수정이 적용되었습니다. - - * [작업 관리자 v464](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-464/): - - * 고객이 podman을 사용하여 사용자 지정 레지스트리에서 이미지를 가져올 수 없는 문제가 해결되었습니다. - - * [노드 브라우저 런타임 v3.0.43](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.43/): - - * 보안 취약점을 해결하기 위해 Ubuntu의 기본 취약점을 수정했습니다. - - * [iOS v6.9.12용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6102/): - - * 대시보드 및 알림에 대한 딥 링크 문제가 해결되었습니다. - * CCU 대시보드 ID 문제가 해결되었습니다. - - * [Android v5.30.7용 모바일 앱](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5307/): - - * 버그 수정 및 개선 사항이 추가되었습니다. - - * [플러터 에이전트 v1.1.14](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1114/): - - * 추가적인 안정성 개선 및 버그 수정이 이루어졌습니다. - - * [파이프라인 컨트롤 게이트웨이 v25.09.01](/docs/release-notes/pipeline-control-gateway-release-notes/pipeline-control-gateway-25-09-01/): - - * 파이프라인 제어 기능이 향상된 새로운 릴리스가 추가되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx b/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx deleted file mode 100644 index efa2da490ea..00000000000 --- a/src/i18n/content/kr/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx +++ /dev/null @@ -1,36 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-25' -version: 'Sep 20 - Sep 25, 2025' -translationType: machine ---- - -### 주요 변경 사항 - -* 포괄적인 표 구조를 재편하여 명확성과 조직을 개선하고 [새로운 가격 및 청구 방식](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing) 을 업데이트했습니다. - -### 사소한 변경 사항 - -* [Azure Linux 컨테이너](/install/dotnet/installation/azure-linux-container), [도커 Linux 설치](/install/dotnet/installation/dockerLinux) 및 .NET 에이전트 구현, 배포용 [Linux 설치](/install/dotnet/installation/linuxInstall2) 에 대한 APT 설정 지침이 업데이트되었습니다. -* [AWS Lambda 모니터링 설명서의 환경 변수](/docs/serverless-function-monitoring/aws-lambda-monitoring/instrument-lambda-function/env-variables-lambda) 에 NEW\_RELIC\_CLOUD\_AWS\_ACCOUNT\_ID 환경 변수에 대한 설명이 추가되었습니다. -* 업데이트된 지원 리소스 참조를 통해 [도움말 및 지원](/docs/new-relic-solutions/solve-common-issues/find-help-get-support) 문서가 향상되었습니다. -* [iOS 에이전트 7.5.9 릴리스 노트](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-759) 에 대한 콜아웃 관련 에이전트 시작 충돌 문제가 해결되었습니다. -* 표준 구성 형식에 대한 [온호스트 통합 문서의](/docs/infrastructure/host-integrations/infrastructure-integrations-sdk/specifications/host-integrations-standard-configuration-format/#configure-how-the-agent-executes-your-integrations) 에이전트 설정에 대한 최대 간격 설정 정보를 업데이트했습니다. - -### 릴리즈 정보 - -* 최신 릴리스에 대한 최신 정보를 받아보세요. - - * [Go 에이전트 v3.41.0](/docs/release-notes/agent-release-notes/go-release-notes/go-agent-3-41-0): - - * 내보내는 트레이스 샘플링 동작을 제어하기 위한 원격 상위 샘플링 설정 옵션이 추가되었습니다. - * 보안 개선을 위해 타사 라이브러리 버전을 업데이트했습니다. - - * [Node.js 에이전트 v13.3.3](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-3): - - * 구독자에 대한 콜백 추적 지원이 추가되었습니다. - * OpenAI 측정, 계측을 수정하여 APIPromise를 올바르게 반환하고 충돌을 방지했습니다. - - * [iOS 에이전트 v7.5.10](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-7510): - - * 에이전트 시작 시 발생할 수 있는 충돌을 해결했습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx b/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx deleted file mode 100644 index d2e754e3a25..00000000000 --- a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-08-04' -version: 1.295.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Add error cause detection -bugs: - - Add monkey-patching warnings - - Calculate first and last timestamps from raw data -security: [] -translationType: machine ---- - -## v1.295.0 - -### 특징 - -#### 오류 원인 감지 추가 - -캡처된 JavaScriptError 이벤트에서 원인 속성을 감지하고 보고합니다. 원인이 오류의 인스턴스인 경우 스택 추적이 캡처되고, 그렇지 않은 경우 원인의 문자열화된 내용이 보고됩니다. 이는 `cause` 속성 아래의 JavaScriptError 이벤트에서 쿼리될 수 있습니다. - -### 버그 수정 - -#### 몽키 패칭 경고 추가 - -에이전트가 페이지에서 실행되기 전에 예상되는 글로벌 변수에 몽키 패치가 적용된 경우 감지 및 경고가 추가되었습니다. 이로 인해 예상치 못한 동작이 발생할 수 있으며, 고객에게 이러한 동작에 대해 알리는 것이 목적입니다. - -#### 원시 데이터에서 첫 번째 및 마지막 타임스탬프 계산 - -UI 리플레이어의 일관성을 개선하기 위해 수집하기 전에 에이전트가 SessionReplay 페이로드의 첫 번째 및 마지막 타임스탬프를 수동으로 계산하도록 합니다. - -## 지지 성명 - -뉴렐릭은 에이전트를 정기적으로 업그레이드하여 최신 기능과 성능 이점을 얻을 것을 권장합니다. 이전 릴리스는 지원 [종료](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/) 시점부터 더 이상 지원되지 않습니다. 출시일은 에이전트 버전의 원래 출판일을 반영합니다. - -새로운 브라우저 에이전트 릴리스는 일정 기간 동안 작은 단계로 고객에게 출시됩니다. 이로 인해, 귀하의 계정에서 해당 릴리스에 접근할 수 있는 날짜가 원래 게시 날짜와 일치하지 않을 수 있습니다. 자세한 내용은 이 [상태 대시보드를](https://newrelic.github.io/newrelic-browser-agent-release/) 참조하세요. - -[브라우저 지원 정책](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types) 에 따라, 브라우저 에이전트 v1.295.0은 다음 브라우저 및 버전 범위에 맞춰 빌드되고 테스트되었습니다: Chrome 128-138, Edge 128-138, Safari 17-19, Firefox 130-140. 모바일 장치의 경우 v1.295.0은 Android OS 16 및 iOS Safari 17-26용으로 구축 및 테스트되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx b/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx deleted file mode 100644 index 6325fc4941e..00000000000 --- a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-08-19' -version: 1.296.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Harvest traces early -bugs: - - Remove event buffer inspection event -security: [] -translationType: machine ---- - -## v1.296.0 - -### 특징 - -#### 수확 트레이스 조기 - -에이전트가 [1.294.0](https://docs.newrelic.com/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.294.0/) 부터 다른 기능이 데이터를 처리하는 것과 동일한 방식으로 세션 트레이스를 처리하도록 업데이트합니다. 16kb 크기에서 수확을 허용함으로써. - -### 버그 수정 - -#### 이벤트 버퍼 검사 이벤트 제거 - -`newrelic` 창 이벤트 리스너와 함께 console.log를 사용할 때 메모리 누수를 방지하기 위해 이벤트 버퍼 검사 이벤트를 제거합니다. - -## 지지 성명 - -뉴렐릭은 에이전트를 정기적으로 업그레이드하여 최신 기능과 성능 이점을 얻을 것을 권장합니다. 이전 릴리스는 지원 [종료](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/) 시점부터 더 이상 지원되지 않습니다. 출시일은 에이전트 버전의 원래 출판일을 반영합니다. - -새로운 브라우저 에이전트 릴리스는 일정 기간 동안 작은 단계로 고객에게 출시됩니다. 이로 인해, 귀하의 계정에서 해당 릴리스에 접근할 수 있는 날짜가 원래 게시 날짜와 일치하지 않을 수 있습니다. 자세한 내용은 이 [상태 대시보드를](https://newrelic.github.io/newrelic-browser-agent-release/) 참조하세요. - -[브라우저 지원 정책](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types) 에 따라, 브라우저 에이전트 v1.296.0은 다음 브라우저 및 버전 범위에 맞춰 빌드되고 테스트되었습니다: Chrome 129-139, Edge 129-139, Safari 17-19, Firefox 131-141. 모바일 장치의 경우 v1.296.0은 Android OS 16 및 iOS Safari 17-18.1에 대해 구축 및 테스트되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx b/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx deleted file mode 100644 index 67041e6d551..00000000000 --- a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx +++ /dev/null @@ -1,27 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-09-17' -version: 1.297.1 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: [] -bugs: - - Prevent double import of Session Replay aggregate class -security: [] -translationType: machine ---- - -## v1.297.1 - -### 버그 수정 - -#### 세션 리플레이 집계 클래스 이중 가져오기 방지 - -newrelic.recordReplay를 사용할 때 세션 재생 집계 클래스를 두 번 가져올 수 있는 문제가 발견되었습니다. 사전 로딩이 활성화된 동안 API 메서드가 활성화되었습니다. - -## 지지 성명 - -뉴렐릭은 에이전트를 정기적으로 업그레이드하여 최신 기능과 성능 이점을 얻을 것을 권장합니다. 이전 릴리스는 지원 [종료](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/) 시점부터 더 이상 지원되지 않습니다. 출시일은 에이전트 버전의 원래 출판일을 반영합니다. - -새로운 브라우저 에이전트 릴리스는 일정 기간 동안 작은 단계로 고객에게 출시됩니다. 이로 인해, 귀하의 계정에서 해당 릴리스에 접근할 수 있는 날짜가 원래 게시 날짜와 일치하지 않을 수 있습니다. 자세한 내용은 이 [상태 대시보드를](https://newrelic.github.io/newrelic-browser-agent-release/) 참조하세요. - -[브라우저 지원 정책](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types) 에 따라, 브라우저 에이전트 v1.297.1은 다음 브라우저 및 버전 범위에 맞춰 빌드되고 테스트되었습니다: Chrome 130-140, Edge 130-140, Safari 17-19, Firefox 132-142. 모바일 장치의 경우 v1.297.1은 Android OS 16 및 iOS Safari 17-18.5에 대해 구축 및 테스트되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx b/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx deleted file mode 100644 index 9461f6b5431..00000000000 --- a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-09-19' -version: 1.298.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Factor long tasks into soft nav base interaction span -bugs: - - Force LCP to report the original page URL -security: [] -translationType: machine ---- - -## v1.298.0 - -### 특징 - -#### 긴 작업을 소프트 네비게이션 기반의 블록 복합 스팬으로 통합 - -`BrowserInteraction` 소프트 네비게이션("SPA 2.0")에서는 DOM 수정 시간을 넘어 5초 동안 긴 작업이 관찰되지 않는 지점까지 지속 시간이 확장됩니다. `JavascriptError` 및 `AjaxRequest` 원래 휴리스틱이 끝난 이후 이 확장된 기간 동안 아직 그러한 전략과 연관되지 않았습니다. - -### 버그 수정 - -#### LCP가 원래 페이지 URL을 보고하도록 강제합니다. - -LCP가 수확 URL과 별도로 pageUrl을 보고하도록 허용합니다. LCP 수집 전에 발생하는 소프트 탐색에서 LCP에 연결된 원래 페이지 URL 대신 현재 페이지 URL이 보고되는 문제가 관찰되었습니다. 이 변경을 통해 LCP 수확 노드는 현재 페이지 URL에 관계없이 원래 URL을 보고할 수 있습니다. 변경 사항은 `pageUrl` 및 `targetGroupedUrl` 속성 모두에 적용되어야 합니다. - -## 지지 성명 - -뉴렐릭은 에이전트를 정기적으로 업그레이드하여 최신 기능과 성능 이점을 얻을 것을 권장합니다. 이전 릴리스는 지원 [종료](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/) 시점부터 더 이상 지원되지 않습니다. 출시일은 에이전트 버전의 원래 출판일을 반영합니다. - -새로운 브라우저 에이전트 릴리스는 일정 기간 동안 작은 단계로 고객에게 출시됩니다. 이로 인해, 귀하의 계정에서 해당 릴리스에 접근할 수 있는 날짜가 원래 게시 날짜와 일치하지 않을 수 있습니다. 자세한 내용은 이 [상태 대시보드를](https://newrelic.github.io/newrelic-browser-agent-release/) 참조하세요. - -[브라우저 지원 정책](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types) 에 따라, 브라우저 에이전트 v1.298.0은 다음 브라우저 및 버전 범위에 맞춰 빌드되고 테스트되었습니다: Chrome 130-140, Edge 130-140, Safari 17-19, Firefox 132-142. 모바일 장치의 경우 v1.298.0이 Android OS 16 및 iOS Safari 17-26용으로 구축 및 테스트되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx b/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx deleted file mode 100644 index 7b24bd9374d..00000000000 --- a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-10-14' -version: 1.300.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Remove usage of the marks and measures feature flag - - Reduce hasReplay attribute false positive rate -bugs: - - Update typings for interaction API to reflect waitForEnd - - Address issues with dynamic require and Rollup.js -security: [] -translationType: machine ---- - -## v1.300.0 - -### 특징 - -#### 마크 및 측정 기능 플래그 사용 제거 - -더 이상 내부 기능 플래그로 에이전트를 게이트하지 않습니다. 애플리케이션 설정을 통해 끄지 않는 한, 모든 사용자가 기본적으로 측정 기능을 사용할 수 있습니다. - -#### hasReplay 속성 오탐 비율 감소 - -오탐을 줄이는 데 도움이 되도록 성공적인 세션 리플레이 수집이 관찰된 후에만 "hasReplay" 속성을 설정하세요. - -### 버그 수정 - -#### waitForEnd를 반영하도록 상호작용 API에 대한 타이핑을 업데이트합니다. - -[문서화된](https://docs.newrelic.com/docs/browser/new-relic-browser/browser-apis/interaction/#parameters) 대로 선택적 `waitForEnd` 인수를 고려하여 `.interaction` API를 정의하는 타이핑 파일이 올바르게 데코레이션되지 않은 문제를 해결합니다. - -#### 동적 require 및 rollup.js 관련 문제 해결 - -MicroAgent 로더를 포함하는 페이지를 빌드할 때 롤업.js에서 오류 `Error: Could not dynamically require ...` 가 발생하는 문제를 해결합니다. - -## 지지 성명 - -뉴렐릭은 에이전트를 정기적으로 업그레이드하여 최신 기능과 성능 이점을 얻을 것을 권장합니다. 이전 릴리스는 지원 [종료](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/) 시점부터 더 이상 지원되지 않습니다. 출시일은 에이전트 버전의 원래 출판일을 반영합니다. - -새로운 브라우저 에이전트 릴리스는 일정 기간 동안 작은 단계로 고객에게 출시됩니다. 이로 인해, 귀하의 계정에서 해당 릴리스에 접근할 수 있는 날짜가 원래 게시 날짜와 일치하지 않을 수 있습니다. 자세한 내용은 이 [상태 대시보드를](https://newrelic.github.io/newrelic-browser-agent-release/) 참조하세요. - -[브라우저 지원 정책](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types) 에 따라, 브라우저 에이전트 v1.300.0은 다음 브라우저 및 버전 범위에 맞춰 빌드되고 테스트되었습니다: Chrome 131-141, Edge 131-141, Safari 17-26, Firefox 133-143. 모바일 장치의 경우 v1.300.0이 Android OS 16 및 iOS Safari 17-26용으로 구축 및 테스트되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx b/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx deleted file mode 100644 index e2cc84ded46..00000000000 --- a/src/i18n/content/kr/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-10-21' -version: 1.301.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Switch to using NR fork of rrweb -bugs: - - Preserve agent attributes for log payloads -security: [] -translationType: machine ---- - -## v1.301.0 - -### 특징 - -#### rrweb의 NR 포크를 사용하도록 전환 - -브라우저 에이전트는 이제 원본 대신 뉴렐릭의 세션 리플레이용 rrweb 포크 버전을 사용하도록 전환됩니다. 이를 통해 브라우저 팀은 문제에 대한 핫픽스를 사용자 정의할 수 있습니다. - -### 버그 수정 - -#### 로그 페이로드에 대한 에이전트 속성 보존 - -브라우저 로그 페이로드를 조정하여 에이전트가 예약한 속성이 동일한 이름을 공유하는 경우 사용자가 제공한 값보다 우선하도록 합니다. - -## 지지 성명 - -뉴렐릭은 에이전트를 정기적으로 업그레이드하여 최신 기능과 성능 이점을 얻을 것을 권장합니다. 이전 릴리스는 지원 [종료](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/) 시점부터 더 이상 지원되지 않습니다. 출시일은 에이전트 버전의 원래 출판일을 반영합니다. - -새로운 브라우저 에이전트 릴리스는 일정 기간 동안 작은 단계로 고객에게 출시됩니다. 이로 인해, 귀하의 계정에서 해당 릴리스에 접근할 수 있는 날짜가 원래 게시 날짜와 일치하지 않을 수 있습니다. 자세한 내용은 이 [상태 대시보드를](https://newrelic.github.io/newrelic-browser-agent-release/) 참조하세요. - -[브라우저 지원 정책](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types) 에 따라, 브라우저 에이전트 v1.301.0은 다음 브라우저 및 버전 범위에 맞춰 빌드되고 테스트되었습니다: Chrome 131-141, Edge 131-141, Safari 17-26, Firefox 133-143. 모바일 장치의 경우 v1.301.0이 Android OS 16 및 iOS Safari 17-26용으로 구축 및 테스트되었습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx b/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx deleted file mode 100644 index 3406c1d2490..00000000000 --- a/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Node API runtime -releaseDate: '2025-07-29' -version: 1.2.122 -translationType: machine ---- - -### 수정 사항 - -* Node API 런타임에서 보안 교육을 처리하기 위해 양식 데이터 잘라내 및 기본 Ubuntu 잘라내를 수정했습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx b/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx deleted file mode 100644 index 063ff1fe630..00000000000 --- a/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Node browser runtime -releaseDate: '2025-07-29' -version: 3.0.39 -translationType: machine ---- - -### 개량 - -* Node 브라우저 런타임의 보안 쿠키를 해결하기 위해 form-data 쿠키 및 기본 Ubuntu 괄호를 수정했습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx b/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx deleted file mode 100644 index d0c4af0c3c3..00000000000 --- a/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Ping Runtime -releaseDate: '2025-07-29' -version: 1.53.0 -translationType: machine ---- - -### 개량 - -* Ping 런타임의 보안 문제를 해결하기 위해 `common-lang3` ย 및 Ubuntu와 관련된 고정된 버그를 수정했습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx b/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx deleted file mode 100644 index 1e9b8e6103d..00000000000 --- a/src/i18n/content/kr/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Ping Runtime -releaseDate: '2025-08-13' -version: 1.54.0 -translationType: machine ---- - -### 개량 - -* Ping 런타임의 보안 문제를 해결하기 위해 Ubuntu와 관련된 취약점을 수정했습니다. \ No newline at end of file diff --git a/src/i18n/content/kr/docs/service-architecture-intelligence/github-integration.mdx b/src/i18n/content/kr/docs/service-architecture-intelligence/github-integration.mdx deleted file mode 100644 index 2b511410cb5..00000000000 --- a/src/i18n/content/kr/docs/service-architecture-intelligence/github-integration.mdx +++ /dev/null @@ -1,220 +0,0 @@ ---- -title: 서비스 아키텍처 인텔리전스를 위한 GitHub 통합 -tags: - - New Relic integrations - - GitHub integration -metaDescription: 'Learn how to integrate GitHub with New Relic to import repositories, teams, and user data for enhanced service architecture intelligence.' -freshnessValidatedDate: never -translationType: machine ---- - -GitHub 계정의 데이터를 활용하여 서비스에 대한 인사이트를 더욱 심도 있게 얻고 싶으신가요? 뉴렐릭 GitHub 통합은 선택적 데이터 가져오기 기능을 통해 사용자, 팀 및 사용자 데이터를 뉴렐릭 플랫폼으로 직접 가져옵니다. - -이러한 통합을 통해 사용자와 팀의 온보딩 프로세스가 간소화되고 역할 관리도 간소화됩니다. 또한 소유권 상호 관계를 명확히 하여 설정 시간과 노력을 줄여줍니다. 새로운 선택적 데이터 가져오기 기능을 사용하면 팀과 사용자, 저장소와 풀 요청 또는 둘 다 등 가져올 데이터 유형을 정확하게 선택할 수 있습니다. 이 통합 AI 모니터링은 뉴렐릭 내의 [카탈로그](/docs/service-architecture-intelligence/catalogs/catalogs) 및 [스코어카드](/docs/service-architecture-intelligence/scorecards/getting-started) 의 관리 및 가시성을 향상합니다. 자세한 내용은 [서비스 아키텍처 인텔리전스 기능을](/docs/service-architecture-intelligence/getting-started) 참조하세요. - -* **지원되는 플랫폼:** - - * GitHub 클라우드 - * GitHub Enterprise(GHE) 클라우드(데이터 상주 없음) - -* **지원 지역:** 미국 및 EU 지역 - - - * 온프레미스 GHE와 데이터 상주 기능이 있는 GHE 클라우드는 지원되지 않습니다. - * GitHub 사용자 계정에 통합을 설치하는 것은 지원되지 않습니다. GitHub에서는 사용자 계정에 앱을 설치하는 것을 허용하지만 동기화 메커니즘이 작동하지 않으며 데이터가 뉴렐릭으로 가져오지 않습니다. - * GitHub 통합은 FedRAMP와 호환되지 않습니다. - - -**필수 조건:** - -* 통합하려는 GitHub 계정에 로그인하세요. - -* 조직 관리자 또는 인증 도메인 관리자여야 합니다. - -* 필요한 권한: - - * `teams_discount_usage` - * `integration_github_discount_usage` - * `integration_github_ccu` - -## IP 화이트리스트/포함 요구사항 - -귀하의 조직이 아웃바운드 연결에 IP 화이트리스트/포함을 사용하는 경우 데이터 수집기 엔드포인트의 트래픽을 허용해야 합니다. - -허용 IP 주소의 전체 및 최신 목록을 화이트리스트/포함 설정에 추가하려면 공식 뉴렐릭 공개 문서를 참조하세요. - -## 어떤 데이터를 동기화할 수 있나요? - -GitHub 통합을 사용하면 뉴렐릭으로 가져올 데이터 유형을 선택적으로 선택할 수 있으므로 어떤 정보가 동기화되는지 제어할 수 있습니다. - -### 사용 가능한 데이터 유형 - -* **팀 및 사용자**: GitHub 팀 구조 및 사용자 정보를 가져와 팀 관리 및 소유권 매핑을 강화합니다. - - - **사용자 이메일 가시성 요구 사항**: 통합은 GitHub 프로필 설정에서 이메일 주소를 공개로 구성한 GitHub 사용자만 가져옵니다. 개인 이메일 설정을 사용하는 팀원은 사용자 데이터 동기화 프로세스에서 제외됩니다. - - -* **사용자 및 끌어오기**: 더 나은 코드 가시성 및 구현, 배포 추적을 위해 데이터를 가져오고 정보를 가져옵니다. - -* **둘 다**: 포괄적인 GitHub 통합을 위해 사용 가능한 모든 데이터 유형을 가져옵니다. - -### 데이터 선택 고려 사항 - - - **팀 통합 충돌**: 팀이 다른 소스(예: 서비스 팀)에서 이미 뉴렐릭에 통합된 경우 데이터 충돌을 방지하기 위해 GitHub 팀을 가져오고 저장할 수 없습니다. 이 경우에는, 사용자를 선택하고 데이터를 가져오는 것만 가능합니다. - - -초기 설정 과정에서 데이터 선택 기본 설정을 구성할 수 있습니다. - -## GitHub 통합 설정 - -1. **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)** 으로 이동합니다. - -2. **Select an action** \[작업 선택] 단계에서 **Set up a new integration** \[새 통합 설정을] 선택하고 **Continue** \[계속을] 클릭합니다. - -3. **Begin integration** \[통합 시작] 화면에서: - - a. GitHub 계정에 연결하려면 **Get started in GitHub** \[GitHub에서 시작하기를] 클릭합니다. 뉴렐릭 옵션저버빌리티가 GitHub 마켓플레이스에서 열립니다. 비. 선택한 데이터 유형과 관련된 데이터를 검색하려면 GitHub 조직 내에서 앱 설치를 완료하세요. 설치가 완료되면 **Select an action** \[작업 선택] 단계로 한 번 더 이동하게 됩니다. 기음. **Begin integration** \[통합 시작을] 선택하고 **Continue** \[계속을] 클릭합니다. - - d. **Select your data preferences** \[데이터 기본 설정 선택]: 동기화할 데이터 유형을 선택하세요. - - * **Teams + Users** \[Teams + 사용자]: GitHub 팀 구조 및 사용자 정보 가져오기 - * **Repositories + Pull Requests** \[표면 + 당겨]: 표면을 가져오고 데이터를 가져옵니다. - * **Both** \[둘 다]: 사용 가능한 모든 데이터 유형을 가져옵니다. - - - 팀이 다른 소스(예: 서비스 팀)에서 이미 통합된 경우 충돌을 방지하기 위해 **Teams + Users** \[팀 + 사용자] 옵션이 비활성화됩니다. - - - e. **Start first sync** \[첫 번째 동기화 시작]을 클릭하여 선택한 데이터 유형을 가져오기 시작합니다. - - g. **Sync started** \[동기화 시작] 메시지가 표시된 후 **Continue** \[계속을] 클릭합니다. **Integration status** \[통합 상태] 화면에는 선택한 데이터 유형(팀, 저장소 등)의 수가 표시되며 5초마다 새로 고쳐집니다. 모든 데이터를 완전히 가져오는 데 몇 분이 걸릴 수 있습니다. - - GitHub integration - -4. *(선택 사항)* **GitHub integration** \[GitHub 통합] 화면에서 가져온 데이터에 액세스합니다. - - * 설정 중에 팀을 **Go to Teams** \[선택한 경우] [Teams](/docs/service-architecture-intelligence/teams/teams) 에서 가져온 팀 정보를 보려면 '팀으로 이동 '을 클릭하세요. - * **Go to Repositories** \[클립으로 이동을] 클릭하면 [클립](/docs/service-architecture-intelligence/repositories/repositories) 에서 가져온 클립 정보를 볼 수 있습니다(설정 중에 클립을 선택한 경우). - - - **팀에 저장소 자동 할당**: GitHub에서 `teamOwningRepo` 사용자 정의 속성을 만들어 GitHub 저장소를 해당 팀에 자동으로 할당할 수 있습니다. 조직 수준에서 사용자 정의 속성을 만들고 저장소 수준에서 사용자 정의 속성에 대한 값을 할당합니다. 또한 조직 수준에서 여러 저장소에 대한 사용자 정의 속성을 동시에 설정할 수 있습니다. 통합을 통해 사용자 정의 속성에 따라 각 팀에 저장소가 자동으로 할당됩니다. 사용자 정의 속성을 만드는 방법에 대한 자세한 내용은 [GitHub 설명서를](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization) 참조하세요. - - -## 팀 소유권 검색 활성화 - -GitHub 통합에는 GitHub의 조직 구조와 사용자 정의 속성을 기반으로 저장소의 팀 소유권을 자동으로 설정할 수 있는 검색 서비스가 포함되어 있습니다. - -### 팀 소유권이 작동하는 방식 - -검색 서비스는 여러 가지 방법을 사용하여 저장소 소유권을 설정합니다. - -1. **GitHub 사용자 정의 속성**: `teamOwningRepo` 사용자 정의 속성을 사용하여 팀에 저장소를 직접 할당합니다. -2. **팀 멤버십 분석**: 커밋 패턴과 팀원 기여도를 분석하여 소유권을 추론합니다. -3. **저장소 구성**: GitHub의 조직 구조와 팀 권한을 사용하여 소유권을 결정합니다. - -### 자동 팀 소유권 설정 - -자동 팀 소유권 검색을 활성화하려면: - -1. **GitHub에서 사용자 정의 속성을 만듭니다** (권장): - - * GitHub 조직 설정으로 이동합니다. - * 조직 수준에서 `teamOwningRepo` 사용자 정의 속성을 만듭니다. - * 구성원 수준에서 구성원에게 팀 가치를 할당합니다. - * 통합은 동기화 중에 이러한 관계를 자동으로 매핑합니다. - -2. **팀 권한 구성**: - - * 팀이 GitHub에서 적절한 저장소 액세스 권한을 가지고 있는지 확인하세요. - * 검색 서비스는 이러한 권한을 사용하여 소유권 관계를 추론합니다. - -3. **자동 팀 소유권 검색 활성화**: - - * 동기화가 완료되면 뉴렐릭에서 자동 팀 소유권 검색을 활성화합니다. 자세한 내용은 [팀 자동화 소유권 문서를](https://docs.newrelic.com/docs/service-architecture-intelligence/teams/manage-teams/#assign-ownership) 참조하세요. - * 소유권 관계가 올바르게 설정되었는지 확인하세요. - - - **팀 소유권을 위한 모범 사례**: - - * GitHub 및 Newrellic 전반의 팀에 일관된 명명 규칙을 사용합니다. - * 저장소 소유권이 변경되면 사용자 정의 속성을 정기적으로 업데이트합니다. - * 정확성을 보장하기 위해 각 동기화 후 소유권 매핑을 검토하고 검증합니다. - - -## GitHub 통합 관리 - -GitHub 통합을 설정한 후에는 뉴렐릭 인터페이스를 통해 관리할 수 있습니다. 여기에는 데이터 새로 고침, 설정 편집, 필요 시 설치 제거가 포함됩니다. - -### 액세스 통합 관리 - -1. **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)** 으로 이동합니다. - -2. **Select an action** \[작업 선택] 단계에서 **Manage your organization** \[조직 관리를] 선택하고 **Continue** \[계속을] 클릭합니다. - - Screenshot showing the manage organization option in GitHub integration - -**Manage GitHub integration** \[GitHub 통합 관리] 화면에는 연결된 조직과 해당 조직의 현재 동기화 상태 및 데이터 유형이 표시됩니다. - -### 데이터 새로 고침 - -**Refresh data** \[데이터 새로 고침] 옵션을 클릭하면 뉴렐릭에서 GitHub 데이터를 업데이트하는 간소화된 방법이 제공됩니다. - -**데이터를 새로 고치려면:** - -1. **Manage GitHub integration** \[GitHub 통합 관리] 화면에서 조직을 찾으세요. - -2. 업데이트하려는 조직 옆에 있는 **Refresh data** \[데이터 새로 고침을] 클릭한 다음 **Continue** \[계속을] 클릭합니다. - -3. **Refresh Data** \[데이터 새로 고침] 단계에서 **Sync on demand** \[주문형 동기화를] 클릭합니다. - -그러면 시스템에서 GitHub 권한과 조직 액세스를 검증하고, 마지막 동기화 이후 새 데이터나 변경된 데이터만 가져오고, 선택한 데이터 유형에 따라 업데이트된 데이터를 처리하고 매핑하고, 최신 동기화 타임스탬프와 데이터 수를 반영하도록 통합 상태를 업데이트합니다. - -**새로고침되는 내용:** - -* GitHub 팀에 새로운 팀원이 추가되었습니다. -* 포인터 변경(새 리포지터리, 보관된 리포지터리, 권한 변경) -* 사용자 정의 속성을 통해 업데이트된 팀 소유권 -* 사용자 프로필 및 팀 구조 변경 - - - **새로 고침 빈도**: 필요한 만큼 자주 데이터를 새로 고칠 수 있습니다. 일반적으로 이 프로세스는 조직의 규모와 선택한 데이터 유형에 따라 몇 분 정도 걸립니다. - - -### 통합 설정 편집 - -초기 설정 후 통합 구성을 수정하려면 **Edit** \[편집] 옵션을 사용하세요. 현재 요구 사항에 따라 Teams + 사용자, 저장소 + 풀 요청 또는 두 데이터 유형 모두 중에서 선택하여 GitHub와 뉴렐릭 간에 동기화되는 데이터 유형을 조정할 수 있습니다. - -**GitHub 통합을 편집하려면:** - -1. **Manage GitHub integration** \[GitHub 통합 관리] 화면에서 조직을 찾으세요. - -2. 업데이트하려는 조직 옆에 있는 **Edit** \[편집]을 클릭한 다음 **Continue** \[계속]을 클릭합니다. - -3. **Edit Integration Settings** \[통합 설정 편집] 단계에서 필요에 따라 데이터 유형 선택 사항을 조정합니다. - -4. **Save changes** \[변경 사항 저장을] 클릭하여 업데이트를 적용하세요. - -**편집 중에 무슨 일이 일어나는가:** - -* 설정 변경 중에도 현재 데이터는 그대로 유지됩니다. -* 새로운 설정은 후속 동기화에 적용됩니다. -* 변경 사항을 적용하기 전에 미리 볼 수 있습니다. -* 변경 사항을 저장할 때까지 이전 설정으로 통합이 계속 실행됩니다. - -### GitHub 통합 제거 - -GitHub 통합을 제거하면 선택한 기관의 데이터 동기화가 중지되지만 이전에 뉴렐릭에 가져온 모든 데이터는 보존됩니다. - -**제거하려면:** - -1. **Manage GitHub integration** \[GitHub 통합 관리] 화면에서 제거하려는 조직을 찾아 **Uninstall** \[제거를] 클릭합니다. - -2. 확인 대화 상자에서 조직 세부 정보를 검토하고 **Uninstall organization** \[조직 제거를] 클릭하여 확인합니다. - -3. 제거가 완료되었음을 확인하는 성공 메시지가 표시됩니다. - - - **제거 후 데이터 표시**: 통합을 제거한 후에도 이전에 동기화된 모든 데이터(팀, 사용자, 네온, 풀 요청)는 뉴렐릭에 남아 있습니다. 이 데이터를 삭제해야 하는 경우 뉴렐릭 지원팀에 문의하세요. - \ No newline at end of file diff --git a/src/i18n/content/pt/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx b/src/i18n/content/pt/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx deleted file mode 100644 index 518f9563586..00000000000 --- a/src/i18n/content/pt/docs/accounts/accounts-billing/new-relic-one-pricing-billing/add-on-billing.mdx +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Faturamento adicional (opcional) -tags: - - Accounts - - Accounts and billing - - New Relic pricing and billing -metaDescription: Add-ons are an optional billing factor -freshnessValidatedDate: '2024-10-23T00:00:00.000Z' -translationType: machine ---- - -Além dos fatores de cobrança principais do GB Ingested e do usuário faturável, você também pode usar complementos faturáveis opcionais para estender sua experiência com New Relic. - -* **Advanced Compute (anteriormente Add-on Compute)**: este complemento se aplica à cobrança baseada no uso para ações que você executa relacionadas ao CodeStream, Live Archives e outros recursos disponibilizados. Você é medido e cobrado com base no uso de [CCUs avançadas](/docs/licenses/license-information/product-definitions/new-relic-one-pricing-definitions/#compute-capacity-unit). - - - O uso do CodeStream no Advanced Computer incorrerá em cobranças de CCU, independentemente do tipo de usuário. Isso significa que o usuário básico gratuito pode acessar recursos de computador avançados e incorrer em cobranças por CCUs avançados. - - -* **EU Data Center for Original Data or Data Plus**: Este complemento se aplica à sua opção de dados (Dados Originais ou Dados Plus) quando você seleciona a União Europeia como sua região de dados, conforme disponível. - -* **Extended Retention for Original Data or Data Plus**: este complemento será aplicado se você exceder o período padrão de retenção dos seus dados. Isso se aplica a todos os seus dados — não apenas aos logs — e é uma boa opção se você precisar fazer muitas consultas pequenas ou consultar grandes volumes de dados. - -* **Live Archives**: estenda a duração do armazenamento de logs em até sete anos. Live Archives também requer um computador avançado. - -* **New Relic Synthetic Checks**: este complemento é aplicado caso suas verificações excedam o número padrão de verificações do monitoramento sintético. - -* **Security RX**: Este recurso está incluído no Data Plus, mas o complemento se aplica se você usar o recurso Security RX sem o Data Plus. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx b/src/i18n/content/pt/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx deleted file mode 100644 index 6d724b3c3f9..00000000000 --- a/src/i18n/content/pt/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing.mdx +++ /dev/null @@ -1,354 +0,0 @@ ---- -title: 'Dados: Faturamento e regras' -tags: - - Accounts - - Accounts and billing - - New Relic pricing and billing -metaDescription: 'For New Relic pricing, an explanation of how data ingest is calculated for billing purposes.' -freshnessValidatedDate: '2024-10-23T00:00:00.000Z' -translationType: machine ---- - -Para os preços da New Relic, os dados ingeridos pela sua organização New Relic são um fator de cobrança. - -## Saiba mais sobre custos [#costs] - -Se você ainda não é cliente New Relic e está curioso sobre custos, consulte primeiro [nossa página principal de preços](https://newrelic.com/pricing). Se você já é cliente, continue lendo para saber detalhes sobre o faturamento de ingestão de dados. - -## Ver a ingestão de dados na interface [#ui] - -Para saber como encontrar informações de uso e cobrança na interface, consulte [Interface de cobrança](/docs/accounts/accounts-billing/general-account-settings/introduction-account-settings). - -Para saber como visualizar e gerenciar a ingestão de dados, consulte [Gerenciar ingestão](/docs/data-apis/manage-data/manage-data-coming-new-relic). - -## Opções de dados: Data Plus e original [#data-prices] - -O preço da sua organização por GB de dados ingeridos varia dependendo da opção de dados que sua organização tem: **Data Plus** ou nossa opção **Original Data** . A opção Data Plus oferece recursos avançados de dados para desempenho, escala, segurança e governança otimizados. Uma organização New Relic pode ter apenas uma opção por vez. - -Aqui está uma tabela com comparações das duas opções. Os preços e limites são mensais e os preços estão em dólares americanos. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Recurso/habilidade - - **Original Data** opção - - **Data Plus** opção - - Mais detalhes do recurso -
- [Edições](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing/#editions) - - Todas as edições - - Requer Standard, Pro ou Enterprise - - (Observamos abaixo se um recurso é específico de uma edição) - -
- Limite de dados grátis - - 100 GB ingeridos - - 100 GB ingeridos - -
- Preço dos dados
(além do limite livre) -
- US$ 0,40/GB ingerido - - US$ 0,60/GB ingerido - -
- Limite livre de retenção de dados
([varia de acordo com o tipo de dados](/docs/data-apis/manage-data/manage-data-retention)) -
- Padrão de pelo menos 8 dias - - 90 dias extras por inadimplência - -
- Preço para cada 30 dias adicionais de retenção
(além do limite gratuito) -
- +US$ 0,05/GB - - +US$ 0,05/GB - -
- Preço adicional para armazenar dados no [data center da UE](/docs/accounts/accounts-billing/account-setup/choose-your-data-center)
-
- +US$ 0,05/GB - - +US$ 0,05/GB - - Os dados são armazenados no data center dos EUA por padrão. -
- [Limite máximo de consulta](/docs/query-your-data/nrql-new-relic-query-language/get-started/rate-limits-nrql-queries/#query-limits) - - Até 20 bilhões de pontos de dados por minuto - - Até 60 bilhões de pontos de dados por minuto - -
- [Duração máxima da consulta](/docs/query-your-data/nrql-new-relic-query-language/get-started/rate-limits-nrql-queries/#query-duration) - - 1 minuto - - Até 10 minutos - -
- Escolha do provedor de nuvem - - Provedor de nuvem único - - Azure ou vários provedores de nuvem - - Escolha seu provedor de nuvem preferido para sua carga de trabalho de observabilidade para alinhar seu armazenamento de telemetria com seu modelo de implantação de engenharia e preferência de nuvem. -
- [Ofuscação de logs](/docs/logs/ui-data/obfuscation-ui/) - - Mascarar [automaticamente](/docs/logs/get-started/new-relics-log-management-security-privacy/#log-obfuscation) padrões conhecidos de cartões de crédito e números de previdência social nos registros. - - Crie e rastreie regras diretamente na interface e [mascarar ou aplicar](/docs/logs/ui-data/obfuscation-ui/) dados log sensíveis a hash. - -
- [Gerenciamento de vulnerabilidades New Relic ](/docs/vulnerability-management/overview)
(apenas usuário da plataforma completa) -
- +US$ 0,10/GB
(além do limite gratuito) -
- Standard, Pro e Enterprise - - Identifique vulnerabilidades e resolva riscos em todas as fases do ciclo de vida do software. -
- Elegibilidade [FedRAMP Moderate](/docs/security/security-privacy/compliance/fedramp-compliant-endpoints) e [HIPAA](/docs/security/security-privacy/compliance/hipaa-readiness-new-relic) - - - - Empreendimento - - Obtenha conformidade de segurança por meio de configurações que ajudam você a atender aos requisitos FedRAMP e HIPAA. -
- [Exportação de dados de streaming](/docs/apis/nerdgraph/examples/nerdgraph-streaming-export) - - - - Standard, Pro e Enterprise - - Configure regras para exportar simultaneamente dados de telemetria para o armazenamento AWS ou Azure de sua preferência. Serão aplicadas taxas de exportação adicionais para o provedor de nuvem. -
- [Exportação de dados históricos](/docs/apis/nerdgraph/examples/nerdgraph-historical-data-export) - - - - Standard, Pro e Enterprise - - Execute consultas maiores sem tempo limite para análise e modelagem histórica, armazenamento de longo prazo e integração com outras plataformas de análise de dados. -
- Serviço New Relic Nativo do Azure - - - - Standard, Pro e Enterprise
([com algumas limitações](#azure-native-data-plus)) -
-
- -Para ver uma comparação lado a lado do Data Plus e nossa opção de dados original, consulte [nossa planilha de dados do Data Plus](https://newrelic.com/resources/datasheets/data-plus). - -Interessado no Data Plus? Consulte [Atualizar para Data Plus](#upgrade-data-plus). - -### Detalhes do serviço New Relic nativo do Azure [#azure-native-data-plus] - -Com o [Azure Native New Relic Service](/docs/infrastructure/microsoft-azure-integrations/get-started/azure-native), você pode coletar e armazenar dados de telemetria para aplicativos e infraestrutura diretamente no Azure. Este recurso está incluído no Data Plus, mas com estas limitações: - -* Disponível apenas na região do data center dos EUA -* Elegibilidade FedRAMP moderada/HIPAA não disponível -* Exportação de dados históricos não disponível - -## Atualize para o Data Plus [#upgrade-data-plus] - -Para atualizar para o Data Plus, acesse a [interface do usuário**Data retention** ](/docs/data-apis/manage-data/manage-data-retention/#adjust-retention)no hub de gerenciamento de dados e clique em **Upgrade retention**. - -* Observação: você pode ver um botão **Edit data retention** , mas ele é diferente do botão **Upgrade retention** . -* Para ver o botão **Upgrade retention** , você precisa ter [permissões de faturamento](/docs/accounts/accounts-billing/new-relic-one-user-management/user-management-concepts/#admin-settings). Se você atende aos requisitos e ainda não vê a opção **Upgrade retention**, fale com seu representante de conta New Relic . - -## O que conta como GB ingeridos faturáveis? [#usage-calculation] - -No contexto do [plano de preços da New Relic](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing), "dados ingeridos" referem-se aos dados salvos na New Relic pela sua organização depois de aplicarmos várias regras de corte e transformação de dados. Em outras palavras, não é a quantidade de dados brutos enviados para a New Relic, mas o tamanho dos dados que realmente acabam sendo armazenados. - -Em geral, os dados que geramos para fornecer nosso recurso não contam para seus GB ingeridos. Exemplos de recursos e dados relacionados a recursos que não contam para o GB Ingerido incluem: - -* [Funcionalidade básica de alerta](/docs/alerts-applied-intelligence/new-relic-alerts/learn-alerts/alerts-concepts-workflow). Por exemplo, `NrAiIncident`, um evento usado para gerar esses recursos, não conta para GB ingeridos. -* Dados criados por dados brutos agregados (por exemplo, [dados agregados de infraestrutura](/docs/data-apis/manage-data/manage-data-retention/#infrastructure-data) ou [dados métricos dimensionais](/data-apis/manage-data/manage-data-retention/#dimensional-metrics)). -* [métricas clássicas](/docs/apis/nerdgraph/examples/golden-metrics-entities-nerdgraph-api-tutorial) (para mais informações clássicas, consulte nossas [definições de entidade](https://github.com/newrelic/entity-definitions)). -* Verificação do monitoramento sintético. Para obter detalhes sobre o faturamento do Sintético, consulte [Limites e preços do Sintético](/docs/synthetics/synthetic-monitoring/using-monitors/monitor-limits). -* Dados de rastreamento de uso e faturamento (por exemplo, `NrConsumption`). -* Dados relacionados à administração da conta (por exemplo, `NrIntegrationError`, `NrAuditEvent`). - -Para entender seu uso, consulte a [interface de uso](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing#usage-ui). - -## Outros detalhes de cálculo [#calculation-details] - -* No contexto do nosso modelo de preços, um GB é definido como 1 bilhão de bytes. -* O GB ingerido mensalmente é arredondado para o número inteiro mais próximo. Por exemplo, se sua organização usa 100,9 GB durante um mês, isso é contado como 100 GB. - -## Edição grátis [#free-tier-limits] - -Para obter detalhes sobre o GB Ingested para nossa edição gratuita, consulte [Edição gratuita](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing/#free). - -## Saber mais [#related-docs] - -* Para obter mais informações sobre como gerenciar GB ingeridos, consulte [Gerenciar ingestão de dados](/docs/data-apis/manage-data/manage-data-coming-new-relic). -* Para saber como consultar o uso, veja [consulta e alerta de uso](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/usage-queries-alerts). \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx b/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx deleted file mode 100644 index eb15d48c75f..00000000000 --- a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-10-10-2025.mdx +++ /dev/null @@ -1,61 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-10-10' -version: 'Oct 06 - Oct 10, 2025' -translationType: machine ---- - -### Novos documentos - -* Adicionado [Coletar marcas e medidas com o agente do navegador](/whats-new/2025/09/whats-new-10-02-browser-marks-and-measures) para fornecer orientação sobre a captura de marcas e medidas de desempenho para durações de tarefas de monitoramento em aplicativos da web. -* Adicionado [nenhum dado com anexação automática Kubernetes APM ](/docs/apm/agents/ruby-agent/troubleshooting/no-data-kubernetes-auto-attach)para fornecer orientação de resolução de problemas para aplicativos Ruby usando anexação automática Kubernetes APM com estrutura não Rails. - -### Grandes mudanças - -* [Dicionário de atributos](/attribute-dictionary) atualizado com avisos de descontinuação para o evento `BrowserTiming` e descrições aprimoradas da funcionalidade do agente do navegador para maior precisão de referência técnica. -* [API aprimorada de regras de nuvem do Pipeline](/docs/new-relic-control/pipeline-control/cloud-rules-api) com orientação abrangente sobre como habilitar, desabilitar e reabilitar regras de nuvem para melhor controle operacional. - -### Pequenas mudanças - -* Terminologia de precificação atualizada no [faturamento do Live Archives](/docs/logs/get-started/live-archives-billing) de "unidade de capacidade de computação" para "unidade avançada de capacidade de computação" para maior precisão. -* Melhor organização das instruções [de configuração do controle do agente](/docs/new-relic-control/agent-control/setup) , realocando a legenda da ponta e removendo conteúdo duplicado para orientação de instalação simplificada. -* Documentação de automação de fluxo de trabalho atualizada com as últimas alterações no [catálogo de ações](/docs/workflow-automation/setup-and-configuration/actions-catalog), [APIs de agendamento](/docs/workflow-automation/create-a-workflow-automation/start-schedule) e configuração de modelo para sincronização de plataforma aprimorada. -* [Anúncio aprimorado doNew Relic Control](/whats-new/2025/09/whats-new-30-09-new-relic-control) com mensagens refinadas e descrições de recursos mais claras para o lançamento do agente Controle de Agentes GA. - -### Notas de versão - -* Fique por dentro dos nossos últimos lançamentos: - - * [Agente Ruby v9.22.0](/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-22-0): - - * Adicionada instrumentação de uma etapa para Kubernetes (agora disponível para o público em geral). - * Avisos de descontinuação adicionados para suporte ao Ruby 2.4 e 2.5. - * Aviso de descontinuação adicionado para o comando `newrelic deployments` . - * Compatibilidade garantida com alterações do Ruby 3.5 no Method#source\_location. - - * [Agente .NET v10.45.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-45-0): - - * Adicionado novo amostrador de rastreamento distribuído, o TraceId Ratio-Based Sampler. - * Corrigidas exceções de análise de cadeia de conexão MSSQL que poderiam desabilitar o armazenamento de instrumentação de dados. - * Problemas resolvidos com a compatibilidade da instrumentação "Consume" do Kafka. - - * [Agente Python v11.0.1](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-110001): - - * Impediu a ativação antecipada na instrumentação do Django. - * Corrigidos problemas de sincronização da configuração do servidor com a configuração local. - * Adicionadas proteções contra travamentos de trace\_cache.pop(). - - * [agente de infraestrutura v1.69.0](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1690): - - * AWS SDK atualizado de V1 para V2. - * Biblioteca API Docker atualizada da v26 para a v28. - * Manipulação de CPU Windows corrigida para instância com vários grupos de CPU. - - * [Agente iOS v7.5.11](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-7511): - - * Problemas de desempenho corrigidos que poderiam ocorrer ao usar o Rastreamento de interação. - * Corrigiu um log relacionado ao rastreamento distribuído que poderia ser exibido incorretamente. - - * [Tempo de execução do navegador Node v3.0.55](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.55): - - * Corrigidas vulnerabilidades subjacentes do Ubuntu, abordando vários CVEs de segurança. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx b/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx deleted file mode 100644 index 6f9edaf9a13..00000000000 --- a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-10-17-2025.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-10-17' -version: 'October 13 - October 17, 2025' -translationType: machine ---- - -### Grandes mudanças - -* Atualizada [a integração do GitHub para Inteligência de Arquitetura de Serviços](/docs/service-architecture-intelligence/github-integration) com extensas revisões para melhorar a clareza e adicionar novas opções de gestão organizacional. -* [Visão geral do Agente Control](/docs/new-relic-control/agent-control/overview) reestruturada e documentação relacionada ao Agente Control para melhor organização e clareza, uma vez que o recurso atingiu disponibilidade geral. - -### Pequenas mudanças - -* Adicionada seção de importação em massa de usuários à [interface de gerenciamento de usuários e tarefas comuns](/docs/accounts/accounts-billing/new-relic-one-user-management/user-management-ui-and-tasks). -* Adicionado mapeamento de cota de recursos para OTEL ao [mapeamento de métrico do New Relic OTel K8s](/docs/kubernetes-pixie/kubernetes-integration/installation/k8s-otel-metrics). -* Atualizado [Instalar e configurar a integração do New Relic eBPF](/docs/ebpf/k8s-installation) e [Instalar e configurar a integração do New Relic eBPF](/docs/ebpf/linux-installation) com aprimoramentos de instalação e configuração. -* [Alertas de notificação](/docs/alerts/get-notified/notification-integrations) atualização atualizados para maior clareza. -* Corrigida versão de compatibilidade para [integração de monitoramento de contêineres Docker](/docs/infrastructure/host-integrations/host-integrations-list/docker-container-monitoring-integration). -* Compatibilidade de versão do Kubernetes atualizada na [integração do Kubernetes: compatibilidade e requisitos](/docs/kubernetes-pixie/kubernetes-integration/get-started/kubernetes-integration-compatibility-requirements). -* Atualizado o limite máximo de atributo por métrica nos [limites API métrica e atributo restrito](/docs/data-apis/ingest-apis/metric-api/metric-api-limits-restricted-attributes). - -### Notas de versão - -* Fique por dentro dos nossos últimos lançamentos: - - * [AgenteNode.js v13.5.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-5-0): - - * Atualizada a instrumentação `fastify` para assinatura do evento emitido. - * Atualizada a instrumentação `pg` e `pg-native` para subscrever o evento emitido. - * Atualizado `config.instrumentation.timers.enabled` para falso para desabilitar `timers.setTimeout` e `timers.setInterval` por padrão. - * Adicionada nova classe base de diagnóstico e migrado undici para usar a nova classe. - - * [Integração Kubernetes v3.46.0](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-46-0): - - * Adicionado suporte para v1.34 e removido suporte para v1.29. - * Atualizado golang.org/x/crypto para v0.42.0. - * Alpine atualizado para v3.22.2. - * Pacotes Kubernetes atualizados para v0.34.1. - - * [Agente .NET MAUI v1.1.13](/docs/release-notes/mobile-release-notes/net-maui-release-notes/net-maui-agent-1113): - - * Agente Android nativo atualizado para a versão 7.6.10. - * Agente iOS nativo atualizado para a versão 7.5.11. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx b/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx deleted file mode 100644 index 85a43dedea4..00000000000 --- a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-7-25-2025.mdx +++ /dev/null @@ -1,267 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-07-25' -version: 'June 13 - July 24, 2025' -translationType: machine ---- - -### Novos documentos - -* Adicionado novo recurso sobre [como depurar problemas de agente New Relic Browser ](/docs/browser/new-relic-browser/troubleshooting/how-to-debug-browser-agent/), incluindo logging detalhado, monitoramento de solicitação de rede e evento de inspeção para melhor resolução de problemas em agentes versões 1.285.0 e superiores. -* Adicionado suporte [ao Azure Functions](/docs/serverless-function-monitoring/azure-function-monitoring/introduction-azure-monitoring/) para monitoramento de funções `python` e `.node.js`. -* [Otimizador de custos](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-optimizer/) adicionado para insights acionáveis para melhorar a eficiência do computador, com recurso para identificar ineficiências, fornecer recomendações de otimização e estimar economias de CCU na plataforma New Relic. -* Adicionada [Inteligência de Custos na Nuvem](/docs/cci/getting-started/overview), oferecendo ferramentas para visibilidade e gerenciamento de custos cloud, incluindo recursos como detalhamentos abrangentes de custos, alocação de custos Kubernetes, estimativa de custos em tempo real e coleta de dados entre contas, atualmente suportando apenas custos da Nuvem da AWS. -* Adicionada [observabilidade OpenTelemetry para Kubernetes com integração independente de provedor de recursos New Relic](/docs/kubernetes-pixie/k8s-otel/intro/) para monitoramento contínuo do cluster por meio do gráfico Helm, aprimorando os sinais de telemetria para métricas, eventos e logs transmitidos para as ferramentas e o painel do New Relic. -* Adicionada [limitação e resolução de problemas para integração Windows](/docs/kubernetes-pixie/kubernetes-integration/troubleshooting/troubleshooting-windows/) -* Adicionada integração com AWS via [CloudFormation e CloudWatch Metric Streams](/docs/infrastructure/amazon-integrations/aws-integration-for-metrics/via-cloudformation-cwms/), com suporte à API Polling para serviços não suportados. -* Adicionada [tag aprimorada para banco de dados entidade New Relic ](/docs/infrastructure/host-integrations/db-entity-tags/)para banco de dados entidade monitorada via integração no host para MySQL e MS SQL Server, enriquecendo insights e organização de metadados no New Relic sem afetar o faturamento ou a telemetria existente. - -### Grandes mudanças - -* Adicionadas funções não agregadoras às [referênciasNRQL ](/docs/nrql/nrql-syntax-clauses-functions/#non-aggregator-functions/). -* Atualizados os [requisitos do agenteRuby e a estrutura suportada](/docs/apm/agents/ruby-agent/getting-started/ruby-agent-requirements-supported-frameworks/). -* Adicionados logs como evento personalizado New Relic aos [logs do OpenTelemetry no documento New Relic](/docs/opentelemetry/best-practices/opentelemetry-best-practices-logs/#custom-events). -* Atualizados os tempos de execução com suporte para funções Linux, Windows e em contêineres no documento [Compatibilidade e requisitos para funções Azure instrumentadas](/docs/serverless-function-monitoring/azure-function-monitoring/compatibility-requirement-azure-monitoring/#supported-runtimes). -* Atualizados os dados métricos do [Confluent integração na nuvem](/docs/message-queues-streaming/installation/confluent-cloud-integration/#metrics). -* O GCP Cloud Run foi removido da [configuração do agente Node.js.](/docs/apm/agents/nodejs-agent/installation-configuration/nodejs-agent-configuration/) -* [Compatibilidade e requisitos atualizados para monitoramento de IA](/docs/ai-monitoring/compatibility-requirements-ai-monitoring/) para incluir bibliotecas adicionais suportadas pelo agente .NET. -* Adicionado ponto de extremidade dualstack de telemetria New Relic ao [tráfego de redeNew Relic ](/docs/new-relic-solutions/get-started/networks/#new-relic-endpoints). -* Adicionado `GcpHttpExternalRegionalLoadBalancerSample` à [integração de monitoramento do Google Cloud Load Balancing](/docs/infrastructure/google-cloud-platform-integrations/gcp-integrations-list/google-cloud-load-balancing-monitoring-integration/). -* Adicionado o procedimento de inicialização do OpenShift sobre como [instalar o documento do gerenciador de tarefas do Sintéticos](/docs/synthetics/synthetic-monitoring/private-locations/install-job-manager/#-install). -* Atualizada a [versão 12 do agente Node.js.](/docs/apm/agents/nodejs-agent/installation-configuration/update-nodejs-agent/) -* Adicionada integração perfeita para [AWS com New Relic utilizando CloudFormation e CloudWatch Metric Streams](/docs/infrastructure/amazon-integrations/aws-integration-for-metrics/via-cloudformation-cwms/), incluindo suporte para pesquisa de API. - -### Pequenas mudanças - -* Adicionado `Transaction` como período de retenção para [rastreamento da transação](/docs/data-apis/manage-data/manage-data-retention/#retention-periods/). -* Adicionado `Destination` como uma nova categoria para [Regras e limites de alerta](/docs/alerts/admin/rules-limits-alerts/). -* Foi adicionado um destaque na [Introdução ao documento do Azure Native New Relic Service](/docs/infrastructure/microsoft-azure-integrations/get-started/azure-native/) para garantir que as configurações de diagnóstico nos recursos do Azure estejam configuradas corretamente ou desabilitar o encaminhamento por meio do Azure Native New Relic Service para impedir que dados sejam enviados para a plataforma New Relic. -* Atualizou a última biblioteca compatível para [o agente .NET](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements/). -* Adicionou um aviso no documento [de notas de versão do agente iOS](/docs/release-notes/mobile-release-notes/ios-release-notes/index/) para anunciar que, a partir da versão 7.5.4 do iOS SDK, uma alteração agora resulta no relato de evento Handled Exception suprimido anteriormente. -* Requisitos atualizados para relacionamentos de contêiner de serviço para especificar atributos de recursos para ambientes Kubernetes e `container.id` para ambientes não-Kubernetes, garantindo a configuração de telemetria adequada para [recursosOpenTelemetry no New Relic](/docs/opentelemetry/best-practices/opentelemetry-best-practices-resources/). -* Adicionado suporte CLI para instalação de versão de [agente de infraestrutura específica](/docs/infrastructure/infrastructure-agent/new-relic-guided-install-overview/#install-specific-versions), permitindo implantação consistente e compatibilidade de sistema; especifique a versão usando `@X.XX.X` no nome da receita. -* Foi adicionado um destaque para enfatizar os requisitos de acesso de função para usar os recursos **Manage Account Cardinality**, **Manage Metric Cardinality** e **Create Pruning Rules** na interface; certifique-se de que as permissões estejam definidas no [Gerenciamento de Cardinalidade](/docs/data-apis/ingest-apis/metric-api/cardinality-management/#attributes-table). -* Atualizada a [compatibilidade e os requisitos para o agente Node.js](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent/) para `v12.23.0`. -* Adicionadas permissões mínimas necessárias para configurar um [Elasticsearch](/docs/infrastructure/host-integrations/host-integrations-list/elasticsearch/elasticsearch-integration). -* Atualizou o atributo `FACET` limite máximo de uso aceitável de 5.000 para 20.000 valores para [sintaxe de alerta NRQL](/docs/alerts/create-alert/create-alert-condition/create-nrql-alert-conditions/). - -### Notas de versão - -* Anunciado 7 de janeiro de 2026 como a data de fim de vida para as [regras de descarte direcionadas a infraestrutura evento em `SystemSample`, `ProcessSample`, `NetworkSample` e `StorageSample`](/eol/2025/05/drop-rule-filter/) - -* Com efeito imediato, o Fim da Vida Útil do [FACET em messageId e timestamp na condição do alerta](/eol/2025/07/deprecating-alert-conditions/). - -* Anunciado 28 de outubro de 2025 como a data de fim da vida útil do [Attention Required](/eol/2025/07/upcoming-eols/). - -* Confira nossas postagens de Novidades: - - * [Envie notificação diretamente para o Microsoft Teams](/whats-new/2025/03/whats-new-03-13-microsoft-teams-integration/) - * [O New Relic Compute Optimizer já está disponível para todos!](/whats-new/2025/06/whats-new-06-25-compute-optimizer/) - * [Consulta de Logs Cross Account no Unified consulta Explorer](/whats-new/2025/07/whats-new-07-01-logs-uqe-cross-account-query/) - * [O monitoramento do Kubernetes com OpenTelemetry já está disponível!](/whats-new/2025/07/whats-new-7-01-k8s-otel-monitoring/) - * [O monitoramento de nós do Windows para Kubernetes agora está em versão de visualização pública](/whats-new/2025/07/whats-new-07-04-k8s-windows-nodes-preview/) - * [Identificar problemas de desempenho: filtragem avançada para visualizações de página e Core Web Vitals](/whats-new/2025/07/whats-new-07-09-browser-monitoring/) - * [Agora você pode classificar pelos erros mais recentes](/whats-new/2025/07/whats-new-7-08-ei-sort-by-newest/) - * [Seus dados do navegador, seus termos: Novas opções de controle](/whats-new/2025/07/whats-new-07-10-browser-monitoring/) - * [Análise de consulta profunda para banco de dados agora disponível para todos](/whats-new/2025/07/whats-new-07-24-db-query-performance-monitoring/) - * [NRQL Previsões e Alertas Preditivos agora estão disponíveis para o público em geral](/whats-new/2025/07/whats-new-7-22-predictive-analytics/) - * [Convergência APM + OpenTelemetry GA](/whats-new/2025/07/whats-new-07-21-apm-otel/) - * [Integração Agentic para GitHub Copilot e ServiceNow agora disponível para todos](/whats-new/2025/07/whats-new-7-15-agentic-ai-integrations/) - -* Fique por dentro dos nossos últimos lançamentos: - - * [Tempo de execução da API do Node v1.2.119](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.119/) - * Corrigidos problemas de vulnerabilidades. - - * [Tempo de execução do Ping v1.51.0](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.119/) - - * Vulnerabilidades de logback-core corrigidas para tempo de execução de ping. - * Vulnerabilidades do servidor jetty corrigidas para tempo de execução de ping. - * Vulnerabilidades corrigidas do Ubuntu para tempo de execução de ping. - - * [Agente Browser v1.292.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.292.0/) - - * Atualizar definição de `BrowserInteraction` e `previousUrl`. - * Adicionado evento de inspeção adicional. - * Valor fixo da API `finished` `timeSinceLoad`. - - * [Integração Kubernetes v3.42.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-42-1/) - * Ajustes internos corrigidos no backend e relacionados ao CI para compatibilidade futura da plataforma. - - * [Gerenciador de tarefas v444](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-444/) - * Corrigido um problema que impedia que certos clientes vissem resultados para alguns monitores com tempos de execução mais longos. - - * [Agente Python v10.14.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101400/) - - * Adicionado suporte para `Azure Function Apps`. - * Arquivos `pb2` corrigidos para habilitar o suporte `protobuf v6`. - - * [Agente Android v7.6.7](/docs/release-notes/mobile-release-notes/android-release-notes/android-767/) - - * Desempenho aprimorado para resolver ANRs ao relatar logs. - * Corrigido um problema para continuar relatando logs após o encerramento do aplicativo. - * Foi resolvido um problema com o monitoramento do estado do aplicativo e a transmissão de dados. - * Poucas violações foram melhoradas ao ativar o modo estrito. - - * [Integração Kubernetes v3.42.2](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-42-2/) - - * Atualizado `golang.org/x/crypto` para `v0.39.0`. - * Atualizado `go` para `v1.24.4`. - - * [.NET agente v10.42.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-42-0/) - - * Adicionado suporte para o Azure Service Bus. - * Erros de compilação do profiler corrigidos com o VS mais recente. - - * [agente PHP v11.10.0.24](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-11-10-0-24/) - - * Adicionada API de tempo de execução do Composer para ser usada por padrão para detectar pacotes usados pelo aplicativo PHP. - * Corrigido comportamento indefinido na API de tempo de execução do Composer. - - * [Tempo de execução do navegador Node v3.0.32](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.32/) - * Opções do construtor de cromo atualizadas para o Chrome 131. - - * [Aplicativo móvel para iOS v6.9.8](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6098/) - * O recurso Ask AI foi aprimorado com uma conexão de soquete mais robusta e confiável, garantindo uma experiência perfeita. - - * [Aplicativo móvel para Android v5.29.7](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5297/) - * O recurso Ask AI foi aprimorado com uma conexão de soquete mais robusta e confiável, garantindo uma experiência perfeita. - - * [Agente Node.js v12.22.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-22-0/) - - * Adicionado suporte para streaming `openai` v5. - * Adicionado suporte para api `openai.responses.create`. - * Corrigido o log de erro para cabeçalho tracestate indefinido. - - * [agente de infraestrutura v1.65.0](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1650/) - - * Dependência atualizada `newrelic/nri-winservices` para `v1.2.0` - * tag do docker alpina atualizada para `v3.22` - - * [agente de infraestrutura v1.65.1](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1651/) - * atualizar dependência `newrelic/nri-flex` para `v1.16.6` - - * [Agente Browser v1.292.1](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.292.1/) - * Corrigida a precedência da condição de corrida do atributo personalizado. - - * [NRDOT v1.2.0](/docs/release-notes/nrdot-release-notes/nrdot-2025-06-26/) - * Aumentou o núcleo beta do OTEL para `v0.128.0` - - * [Agente de mídia para HTML5.JS v3.0.0](/docs/release-notes/streaming-browser-release-notes/streaming-browser-agent-25-04-15/) - - * Foi introduzido um novo tipo de evento. - * O tipo de evento `PageAction` foi descontinuado. - - * [Agente de mídia para HTML5.JS v3.1.1](/docs/release-notes/streaming-browser-release-notes/streaming-browser-agent-25-06-15/) - - * Publicação npm habilitada para o pacote, garantindo fácil acessibilidade e distribuição. - * As compilações `cjs`, `esm` e `umd` foram adicionadas à pasta `dist`, garantindo compatibilidade com os formatos de módulo CommonJS, ES Modules e UMD. - - * [Agente de mídia para Roku v4.0.0](/docs/release-notes/streaming-others-release-notes/streaming-others-agent-25-02-25/) - - * Foi introduzido um novo tipo de evento. - * O tipo de evento `RokuVideo` foi descontinuado. - * O tipo de evento `RokuSystem` foi descontinuado. - - * [Agente de mídia para Roku v4.0.1](/docs/release-notes/streaming-others-release-notes/streaming-others-agent-25-04-22/) - * Renomeado `errorName` com `errorMessage`, pois `errorName` foi descontinuado. - - * [Gerenciador de tarefas v447](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-447/) - * Atualização de imagem base fixa de `ubuntu 22.04` para `ubuntu 24.4` - - * [Tempo de execução do Ping v1.52.0](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.52.0/) - * Atualização da imagem base aprimorada de `ubuntu 22.04` para `ubuntu 24.04` - - * [Kubernetes integração v3.43.0](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-0/) - * Adicionado suporte para monitoramento de nós Windows no cluster do Kubernetes. - - * [Aplicativo móvel para Android v5.29.8](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5298/) - * Bug corrigido e interface de usuário melhorada para uma experiência mais suave. - - * [Agente Node.js v12.23.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-23-0/) - - * Adicionada a capacidade de gerar relatórios apenas sobre os intervalos de entrada e saída. - * Adicionado suporte ao Node.js 24. - * Relatório de compatibilidade atualizado. - - * [Tempo de execução da API do Node v1.2.120](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.120/) - * Corrigidas as vulnerabilidades para `CVE-2024-39249` - - * [Aplicativo móvel para iOS v6.9.9](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6099/) - * O recurso Ask AI foi aprimorado com prompt dinâmico. - - * [Agente Browser v1.293.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.293.0/) - - * Adicionada mensagem interna **para tarefas longas**. - * Resolvido o problema que impedia que o rastreamento distribuído fosse desabilitado. - - * [Tempo de execução do navegador Node v3.0.35](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.35/) - * Imagem base atualizada - - * [Agente Java v8.22.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8220/) - - * Metadados vinculados para serviços de aplicativos Azure. - * Removido `MonoFlatMapMain` instrumentação. - - * [Agente Node.js v12.24.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-24-0/) - - * Implementado limite de tamanho de valor de atributo configurável - * Relatório de compatibilidade atualizado. - - * [Integração Kubernetes v3.43.2](docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-2/) - * Atualizar a versão do gráfico kube-state-métrica de `5.12.1` para `5.30.1` - - * [Agente iOS v7.5.7](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-757/) - * Corrigido um problema que poderia fazer com que distributed tracing não tivesse todas as informações de conta necessárias no início de uma sessão. - - * [Aplicativo móvel para Android v5.29.9](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5299/) - * Feedback aprimorado com renderização dinâmica da interface do usuário. - - * [Aplicativo móvel para Android v5.30.0](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-53000/) - * Corrigimos bugs e atualizamos os sinalizadores do Teams GA para uma melhor experiência do usuário. - - * [Go agente v3.40.1](/docs/release-notes/agent-release-notes/go-release-notes/go-agent-3-40-1/) - - * Utilização revertida. Voltar para a versão v3.39.0 devido a bug de deadlock - * Removidos os testes awssupport\_test.go que adicionavam dependência direta ao módulo go - - * [Agente Flutter v1.1.12](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1112/) - - * Melhorou o agente nativo do Android atualizado para a versão 7.6.7 - * Melhorou o agente nativo do iOS atualizado para a versão 7.5.6 - - * [Agente Node.js v13.0.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-0-0/) - - * Suporte abandonado para Node.js 18 - * Versão mínima suportada atualizada para `fastify` para 3.0.0, `pino` para 8.0.0 e `koa-router` para 12.0.0 - - * [Agente Browser v1.294.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.294.0/) - * Corrigido o relatório previousUrl vazio como indefinido - - * [agente de infraestrutura v1.65.4](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1654/) - * Atualizou a dependência `newrelic/nri-prometheus` para v2.26.2 - - * [Aplicativo móvel para iOS v6.9.10](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6100/) - * Feedback aprimorado com renderização dinâmica da interface do usuário. - - * [Agente Android NDK v1.1.3](/docs/release-notes/mobile-release-notes/android-release-notes/android-ndk-113/) - * Adicionado suporte para tamanho de página de 16 KB - - * [agente de infraestrutura v1.65.3](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1653/) - - * Alça de processo do Windows alterada. - * Colidiu `nri-docker` para `v2.5.1`, `nri-prometheus` para `v2.26.1` - - * [.NET agente v10.43.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-43-0/) - * Adicionado suporte para tópicos no Azure Service Bus - - * [Agente Node.js v12.25.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-25-0/) - * Instrumento fixo AWS Bedrock Converse API - - * [Agente Node.js v12.24.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-12-24-0/) - - * Implementado limite de tamanho de valor de atributo configurável - * Relatório de compatibilidade atualizado - - * [CLI de diagnóstico (nrdiag) v3.4.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-340/) - * Erros corrigidos relacionados ao GLIBC, como `/lib64/libc.so.6: version 'GLIBC_2.34'` não encontrado, foram resolvidos \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx b/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx deleted file mode 100644 index 465d315090e..00000000000 --- a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-01-2025.mdx +++ /dev/null @@ -1,99 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-01' -version: 'July 25 - August 01, 2025' -translationType: machine ---- - -### Novos documentos - -* Adicionadas [documentações de orçamentos de computador](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-budgets/overview) para fornecer um mecanismo para monitorar e alertar sobre o uso da unidade de consumo (CCU) do seu computador. - -### Grandes mudanças - -* [Compatibilidade e requisitos](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent) atualizados para o agente Node.js. - -* [Compatibilidade e requisitos atualizados para o Alpine Linux](/docs/apm/agents/php-agent/getting-started/php-agent-compatibility-requirements) para o agente PHP. - -* Atualizados os requisitos específicos do agente para [Controle de Pipeline](/docs/new-relic-control/pipeline-control/modify-agent-configuration). - -* Atualizou o JFR relacionado aos requisitos de configuração para [o agente Java](/docs/apm/agents/java-agent/configuration/java-agent-configuration-config-file#jfr-harvest-interval). - -* Atualizadas as informações de preços e cobrança do New Relic em: - - * [Dados: Faturamento e regras](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/data-ingest-billing) - * [Consultas e alertas relacionados a uso](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/usage-queries-alerts) - * [Plano de uso do New Relic](/docs/licenses/license-information/usage-plans/new-relic-usage-plan) - -### Pequenas mudanças - -* Esclareceu a linguagem no .NET agente para capturar o parâmetro SQL no [.NET compatível com o agente e o documento de requisitos](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements). -* Aprimorou a linguagem no [Oracle banco de dados monitoramento integração](/docs/infrastructure/host-integrations/host-integrations-list/oracle-database-monitoring-integration). - -### Notas de versão - -* Confira nossas postagens de Novidades: - - * [Orçamentos de computadores agora disponíveis para o público em geral](/whats-new/2025/07/whats-new-7-30-compute-budgets). - * [Aumentando a experiência do usuário: aproveitando Session Replay para otimização vital da Web](/whats-new/2025/07/whats-new-7-31-augmenting-user-experiences-browser). - -* Fique por dentro dos nossos últimos lançamentos: - - * [AgenteAndroid v7.6.8](/docs/release-notes/mobile-release-notes/android-release-notes/android-768): - - * Corrigido um problema em que o rastreamento stack para erros do Unity não era exibido corretamente. - * Corrigido um problema que impedia que o resumo métrico fosse gravado quando o aplicativo retornava ao primeiro plano após seu lançamento inicial. - * Corrigido um problema em que JSON inválido em entradas de log poderia causar erros. - - * [CLI de diagnóstico (nrdiag) v3.4.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-341): - * Adicionado `K8s/AgentControl/agent-control-install-job-logs` para coletar logs gerados pela instalação do controle do agente. - - * [Gerenciador de tarefas v451](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-451): - - * Vulnerabilidades corrigidas relacionadas ao `common-lang3` Java e Ubuntu para resolver problemas de segurança no SJM. - * Implementou alterações na migração da fila do processador relacionadas à migração da nossa arquitetura de serviço interna. - * Corrigido um problema para incluir detalhes completos da exceção para fornecer melhor contexto para resolução de problemas em logs do SJM. - - * [Aplicativo móvel para Android v5.30.1](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5301): - * Melhorou a experiência de login. - - * [Aplicativo móvel para iOS v7.5.8](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-758): - - * Criei o agente usando o Xcode 16.4. - * Corrigido um problema que poderia fazer com que distributed tracing não tivesse todas as informações de conta necessárias no início de uma sessão. - * Corrigido um problema que poderia causar uma falha na inicialização do agente. - - * [Tempo de execução da API do Node](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.122): - * Corrigidas as vulnerabilidades de dados de formulário e as vulnerabilidades subjacentes do Ubuntu para lidar com vulnerabilidades de segurança em tempos de execução API do Node. - - * [Node browser runtime](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.39): - * Corrigidas as vulnerabilidades de dados de formulário e as vulnerabilidades subjacentes do Ubuntu para lidar com vulnerabilidades de segurança em tempos de execução do Node Browser. - - * [Tempo de execução do ping](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.0): - * Vulnerabilidades corrigidas relacionadas ao `common-lang3` Java e Ubuntu para resolver problemas de segurança no tempo de execução do Ping. - - * [Agente Python v10.15.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101500): - - * Adicionado suporte para [`oracledb`](https://pypi.org/project/oracledb/) - * Corrigido um bug na instrumentação `MessageBroker` onde os métodos de serialização estavam procurando o atributo `destination_name` no `MessageTransaction` e ele não existia. - * Corrigiu o problema de metadados de utilização da AWS ao executar AWS e K8s juntos. - - * [AgenteRuby v9.20.0](/docs/release-notes/agent-release-notes/ruby-release-notes/ruby-agent-9-20-0): - - * Adicionado suporte para registrar o ID do Docker ao executar no ambiente AWS ECS Fargate. - * Adicionado um novo método auxiliar para simplificar a comparação de versões. - * Adicionado o atributo `code.stacktrace` aos intervalos de armazenamento de dados quando a duração excede o limite configurado. - * Links de origem corrigidos `Brewfile`. - * Corrigido um erro que ocorre ao usar `HTTPX 1.5.0` para armazenar resposta. - * Melhorou as informações registradas no nível de depuração pelo agente quando o agente lê uma fonte de configuração. - - * [Agente Unity v1.4.8](/docs/release-notes/mobile-release-notes/unity-release-notes/unity-agent-148): - - * O agente Android nativo foi atualizado para a versão 7.6.7. - * O agente nativo do iOS foi atualizado para a versão 7.5.6. - - * [Agente Unity v1.4.9](/docs/release-notes/mobile-release-notes/unity-release-notes/unity-agent-149): - - * O agente Android nativo foi atualizado para a versão 7.6.8. - * O agente nativo do iOS foi atualizado para a versão 7.5.8. - * Problema de rastreamento stack de exceção do Unity corrigido quando namespace é usado. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx b/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx deleted file mode 100644 index 56fc49bcdf6..00000000000 --- a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-08-2025.mdx +++ /dev/null @@ -1,60 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-08' -version: 'August 01 - August 07, 2025' -translationType: machine ---- - -### Novos documentos - -* Adicionado [tutorial do NerdGraph: Criar função personalizada para equipes](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/compute-budgets/overview) para orientar você no uso da API NerdGraph do New Relic para criar e gerenciar funções personalizadas para equipes. - -### Pequenas mudanças - -* Alterado o [limite de eventos de alerta por condição](/docs/alerts/admin/rules-limits-alerts) para 1k por minuto. -* Atualizadas as últimas [versões e requisitos compatíveis do agente .Net](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements) verificados. -* Atualizadas as informações de versão e suporte de versão sobre o service broker para [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-service-broker-integration). -* Atualizadas as informações de suporte de versão sobre o pacote de integração New Relic NGINX para [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-nginx-buildpack-integration). -* Atualizadas as informações de versão e suporte de versão sobre o New Relic Nozzle para [VMware Tanzu](/docs/infrastructure/other-infrastructure-integrations/cloudfoundry-integrations/vmware-tanzu-firehose-nozzle-integration/#product-snapshot). - -### Notas de versão - -* Confira nossas postagens de Novidades: - - * [Errors Inbox agora está integrada à carga de trabalho](/whats-new/2025/08/whats-new-08-06-workloads-errors-inbox). - -* Fique por dentro dos nossos últimos lançamentos: - - * [Gerenciador de tarefas v452](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-452): - * Melhorias internas adicionadas para tratamento de exceções no processamento de mensagens da fila. - - * [IntegraçãoKubernetes v3.43.3](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-43-3): - * Adicionou um gráfico Helm para implantar a solução de monitoramento Kubernetes da New Relic. - - * [Controle de Pipeline Gateway v1.1.0](/docs/release-notes/pipeline-control-gateway-release-notes/pipeline-control-gateway-25-08-05): - - * Implementou uma nova funcionalidade para descartar seletivamente dados e atributos dos eventos `SqlTrace` e `TransactionTrace` usando regras de descarte. - - * Foram corrigidas vulnerabilidades no pacote `golang.org/x/net`, incluindo um problema de script entre sites e um desvio de proxy HTTP relacionado a IDs de zona IPv6. - - * Atualizado para Go `1.24` e as seguintes dependências foram atualizadas para aumentar a segurança e incorporar correções recentes: - - * `golang.org/x/net to v0.38.0` - * `golang.org/x/sys to v0.31.0` - * `golang.org/x/text to v0.23.0` - - * [Aplicativo móvel para iOS v6.9.11](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6101): - * Reduziu o fluxo de login em duas etapas, armazenando o domínio de autenticação do usuário e redirecionando-o diretamente para sua página de login. - - * [AgenteFlutter v1.1.13](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1113): - - * Agente Android nativo aprimorado e atualizado para a versão 7.6.8 - * Agente iOS nativo aprimorado atualizado para a versão 7.5.8 - - * [Agente .NET MAUI v1.1.11](/docs/release-notes/mobile-release-notes/net-maui-release-notes/net-maui-agent-1111) - - * Agente Android nativo aprimorado e atualizado para a versão 7.6.8 - * Agente iOS nativo aprimorado atualizado para a versão 7.5.8 - - * [agente de infraestrutura v1.65.5](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1655): - * Alterado o suporte para montagens AWS efs em amostras de armazenamento \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx b/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx deleted file mode 100644 index 1ca88ca0ec1..00000000000 --- a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-14-2025.mdx +++ /dev/null @@ -1,112 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-15' -version: 'August 08 - August 14, 2025' -translationType: machine ---- - -### Novos documentos - -* Adicionado [suporte para funções NRQL em regras de gateway](/docs/new-relic-control/pipeline-control/nrql-functions) para delinear as funções NRQL suportadas nas regras de gateway do Controle de Pipeline . -* Adicionadas etapas de resolução de problemas para resolver [eventos de reinicialização frequente de Fluent Bit](/docs/infrastructure/infrastructure-troubleshooting/troubleshoot-infrastructure/frequent-fluent-bit-restart-events) ajustando as configurações de resolução de nome do host na configuração do agente do New Relic Infrastructure. - -### Grandes mudanças - -* [Plano de uso](/docs/licenses/license-information/usage-plans/new-relic-usage-plan/#list-price) atualizado com as informações de preços mais recentes. -* **Errors Inbox** adicionada à [interface de carga de trabalho](/docs/new-relic-solutions/new-relic-one/workloads/use-workloads/#errors). -* Adicionada desativação seletiva do agente com base na classe principal de inicialização ou no jar executável por meio de variáveis de ambiente, juntamente com configurações de segurança aprimoradas para [configuração do agente Java](/docs/apm/agents/java-agent/configuration/java-agent-configuration-config-file/#skip-applications). -* Adicionado suporte para [configuração de repositório privado](/docs/new-relic-control/agent-control/configuration/#private-repository-configuration) no Controle de Agente, possibilitando a implantação de agente gerenciado com autenticação via métodos de certificado básico ou TLS. -* Adicionado suporte para [Gerenciamento de Segredos](/docs/new-relic-control/agent-control/configuration/#secrets-management) no Agente de Controle, para gerenciar dados confidenciais, como senhas e chaves de API, recuperando-os de um provedor de segredos dedicado. - -### Pequenas mudanças - -* Adicionadas restrições de tag de entidade para a cláusula `WHERE` em [Drop data usando regras cloud do Controle de Pipeline ](/docs/new-relic-control/pipeline-control/cloud-rules-api/#restrictions). -* Adicionadas [práticas recomendadas para otimizar o conteúdo da sua fonte de conhecimento](/docs/agentic-ai/knowledge-integration/overview/#configure) para o conector New Relic AI Knowledge. - -### Notas de versão - -* Confira nossas postagens de Novidades: - - * [O modo de alta precisão UniqueCount e o suporte de argumentos aumentado agora estão disponíveis para o público em geral](/whats-new/2025/08/whats-new-8-13-high-precision-uniquecount). - -* Fique por dentro dos nossos últimos lançamentos: - - * [Cordova agente v7.0.8](/docs/release-notes/mobile-release-notes/cordova-release-notes/cordova-agent-708/): - - * Atualizar o agente Android nativo para a versão 7.6.8 - * Atualizar o agente iOS nativo para a versão 7.5.8 - - * [Cordova agente v7.0.9](/docs/release-notes/mobile-release-notes/cordova-release-notes/cordova-agent-709/): - - * Atualizar o agente Android nativo para a versão 7.6.6 - * Atualizar o agente iOS nativo para a versão 7.5.5 - - * [Capacitor agente v1.5.8](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-158/): - - * Atualizar o agente Android nativo para a versão 7.6.6 - * Atualizar o agente iOS nativo para a versão 7.5.5 - - * [Capacitor agente v1.5.9](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-159/): - * Corrigida a falha do sinal de aborto - - * [Capacitor agente v1.5.10](/docs/release-notes/mobile-release-notes/capacitor-release-notes/capacitor-agent-1510/): - - * Atualizar o agente Android nativo para a versão 7.6.8 - * Atualizar o agente iOS nativo para a versão 7.5.8 - - * [CLI de diagnóstico (nrdiag) v3.5.0](/docs/release-notes/diagnostics-release-notes/diagnostics-cli-release-notes/diagnostics-cli-350/): - * atualizou a verificação de compatibilidade da versão `Java/Appserver/JbossEapCheck` - - * [.NET agente v10.44.0](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-44-0/): - - * Amostradores de métricas de desempenho habilitados no modo Serverless - * Processo de host da Web do Azure Function (Linux) excluído da instrumentação. - - * [NRDOT v1.3.0](/docs/release-notes/nrdot-release-notes/nrdot-2025-08-13/): - - * Versões do componente hotel aumentadas de v0.128.0 para v0.131.0 - * Introdução da distribuição do núcleo nrdot - - * [Agente Node.js v13.1.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-1-0/): - - * Adicionado suporte para API de logs OTEL - * Adicionada a capacidade de suporte métrico quando a instrumentação foi desabilitada para um pacote - * Instrumentação de temporizadores desabilitados por padrão no exemplo de configuração - * Ofuscação `transaction.url` fixa - - * [Gerenciador de tarefas v454](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-454/): - * Corrigidas as vulnerabilidades subjacentes do Ubuntu para abordar vulnerabilidades de segurança no SJM. - - * [Tempo de execução da API do Node v1.2.124](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.124/): - * Corrigidas as vulnerabilidades subjacentes do Ubuntu para lidar com vulnerabilidades de segurança nos tempos de execução da API do Node. - - * [Runtime do navegador Node v3.0.41](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.41/): - * Corrigidas as vulnerabilidades do tmp `CVE-2025-54798` e as vulnerabilidades subjacentes do Ubuntu para abordar vulnerabilidades de segurança nos tempos de execução do Node Browser . - - * [Tempo de execução do Ping v1.54.0](/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.0/): - * Vulnerabilidades corrigidas relacionadas ao Ubuntu para resolver problemas de segurança no tempo de execução do Ping. - - * [Agente Java v8.23.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8230/): - - * Atualizado para oferecer suporte à v24 do graphql. - * Adicionada instrumentação lettuce 6.5. - * Versão commons-lang elevada para 3.18.0 - - * [AWS Lambda direcionador de logs v1.1.1](/docs/release-notes/aws-lambda-log-forwarder-release-notes/lambda-25-07-25/): - * Postura de segurança aprimorada com a atualização da versão Go para 1.24.4 nos sistemas. - - * [Agente PHP v12.0.0.25](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-12-0-0-25/): - - * Melhoria no logging de erros do mapa de hooks do Drupal. - * Problemas corrigidos de detecção de pacotes legados para Security RX. - - * [agente de infraestrutura v1.66.1](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1661/): - * Suporte revertido para montagens do AWS EFS em amostras de armazenamento. - - * [Aplicativo móvel para Android v5.30.6](docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5306/): - * Suporte aprimorado de senha para logins SAML e sociais. - - * [Agente Browser v1.295.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.0/): - - * Adicionada detecção de causa de erro. - * Adicionados avisos de monkey-patching. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx b/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx deleted file mode 100644 index bb5951d3f88..00000000000 --- a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-8-21-2025.mdx +++ /dev/null @@ -1,56 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-08-22' -version: 'August 15 - August 21, 2025' -translationType: machine ---- - -### Grandes mudanças - -* Relatório de compatibilidade [do agente Node.js](/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent/) atualizado. -* [Agente .NET](/docs/apm/agents/net-agent/getting-started/net-agent-compatibility-requirements/) atualizado com as últimas versões de bibliotecas compatíveis verificadas. - -### Pequenas mudanças - -* Atualizou o sistema operacional [Debian](/docs/infrastructure/infrastructure-agent/linux-installation/package-manager-install/) para a versão 12 ("bookworm") para oferecer suporte ao [agente de infraestrutura](/docs/infrastructure/infrastructure-agent/requirements-infrastructure-agent/#os) para Linux. -* Função [`accountId()`](/docs/data-apis/manage-data/query-limits/) atualizada para consultar os limites de dados. -* [Instalador MSIWindows ](/docs/infrastructure/infrastructure-agent/windows-installation/windows-msi-installer/#install-windows)atualizado para oferecer suporte Windows de 64 bits (Intel/AMD). - -### Notas de versão - -* Anunciado 7 de janeiro de 2026 como a data de fim da vida útil das regras de descarte por meio da [interface de AI Monitoring](/docs/ai-monitoring/drop-sensitive-data/). - -* [Agente iOS v7.5.9](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-759/) - - * Corrigido um problema que poderia fazer com que distributed tracing não tivesse todas as informações de conta necessárias no início de uma sessão. - * Corrigido um problema que poderia causar uma falha na inicialização do agente. - -* [Agente Python v10.16.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101600/) - - * Adicionado suporte para novas funções [do Redis](https://pypi.org/project/redis/). - * Converteu todos os caminhos internos de `os.path` para `pathlib.Path`. - * Problema corrigido com codificação JSON PosixPath. - -* [Integração Kubernetes v3.44.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-44-1/) - - * Essa integração está incluída nas seguintes versões de gráfico: - - * [newrelic-infraestrutura-3.49.1](https://github.com/newrelic/nri-kubernetes/releases/tag/newrelic-infrastructure-3.49.1) - * [nri-bundle-6.0.10](https://github.com/newrelic/helm-charts/releases/tag/nri-bundle-6.0.10) - -* [.NET agente v10.44.1](/docs/release-notes/agent-release-notes/net-release-notes/net-agent-10-44-1/) - - * Tratamento de exceções corrigido no wrapper de instrumentação do Service Bus. - * Processo de host da Web do Azure Function (Linux) excluído da instrumentação. - -* [Agente Node.js v13.2.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-2-0/) - - * Adicionada capacidade de registrar `Supportability/Features/Instrumentation/OnRequire/` métricas para instrumentação baseada em assinantes. - * Adicionado gancho do carregador esm e patch commonjs para funcionar com orchestran-js. - * Adicionada instrumentação para `@modelcontextprotocol/sdk` chamadas de cliente `client.callTool`, `client.readResource` e `client.getPrompt`. - * Lógica corrigida em torno da detecção de pacotes OTEL. - * Atualizado `shimmer.setupSubscribers` para configurar corretamente e ignorar assinantes desabilitados. - -* [Agente Node.js v13.2.1](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-2-1/) - - * Agente atualizado para usar `@apm-js-collab/tracing-hooks` para o registro CJS/ESM para rastreamento de instrumentação baseada em canal. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx b/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx deleted file mode 100644 index b3a2fc814e4..00000000000 --- a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-04-2025.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-05' -version: 'September 01 - September 05, 2025' -translationType: machine ---- - -### Novos documentos - -* Adicionada [documentação de monitoramento de soluções SAP](/docs/sap-solutions/overview) para fornecer orientação abrangente para monitoramento de aplicativos SAP com New Relic, incluindo procedimentos de instalação, configuração e resolução de problemas. - -### Grandes mudanças - -* [Documentação de controle de agentes](/docs/new-relic-control/agent-control/overview) atualizada com revisões extensas, incluindo novos tipos de agentes, opções de configuração, recursos de monitoramento e seções de resolução de problemas. -* [Documentação de exportação de streaming do NerdGraph](/docs/apis/nerdgraph/examples/nerdgraph-streaming-export) reestruturada para dados de streaming para AWS Kinesis Firehose, Azure Event Hub ou GCP Pub/Sub. - -### Pequenas mudanças - -* Adicionado novo exemplo para variáveis baseadas em ENUM/Lista às [variáveis de modelo do dashboard](/docs/query-your-data/explore-query-data/dashboards/dashboard-template-variables). -* Documentação de configuração atualizada para [o agente Terraform Control](/docs/infrastructure/host-integrations/installation/install-infrastructure-host-integrations-via-terraform/agent-control). -* Documentação aprimorada [de gerenciamento do coletor de logs](/docs/logs/forward-logs/log-collectors/log-collector-management) com instruções melhoradas. -* Corrigidos vários links quebrados e problemas de navegação. - -### Notas de versão - -* Fique por dentro dos nossos últimos lançamentos: - - * [Agente de infraestrutura v1.67.3](/docs/release-notes/infrastructure-release-notes/infrastructure-agent-release-notes/new-relic-infrastructure-agent-1673): - * Versões de integração incorporadas atualizadas. - * [Tempo de execução da API do nó v1.2.126](/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.126): - * Vulnerabilidades subjacentes do Ubuntu corrigidas para lidar com vulnerabilidades de segurança em tempos de execução API do Node. - * [Gerenciador de tarefas v463](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-463): - * Corrigimos o CVE-2025-55163 e as vulnerabilidades subjacentes do Ubuntu para resolver vulnerabilidades de segurança no SJM. - * [Node Browser Runtime v3.0.43](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.43): - * Vulnerabilidades subjacentes do Ubuntu corrigidas para lidar com vulnerabilidades de segurança em tempos de execução do Node Browser. - * [Gráfico de implantação do controle do agente v0.0.74](/docs/release-notes/agent-control-deployment-chart-release-notes/agent-control-deployment-chart-05-09-25): - * Adicionado suporte para atualização remota do componente de implantação de controle de agente. - * [Gráfico de entrega contínua de controle de agente v0.0.2](/docs/release-notes/agent-control-continuous-delivery-chart-release-notes/agent-control-continuous-delivery-chart-05-09-25): - * Adicionado suporte para atualização remota do componente Agente de Controle de entrega contínua. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx b/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx deleted file mode 100644 index 9d88cfd440c..00000000000 --- a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-12-2025.mdx +++ /dev/null @@ -1,94 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-14' -version: 'September 08 - September 12, 2025' -translationType: machine ---- - -### Novos documentos - -* Adicionada documentação abrangente [do Modelo de Maturidade de Observabilidade](/docs/new-relic-solutions/observability-maturity/) para fornecer orientação para medir e melhorar práticas de observabilidade em quatro áreas principais: Tempo de operação de negócios, Experiência Digital, Excelência em Engenharia e Observabilidade Inteligente. - -### Grandes mudanças - -* [Configuração de agente PHP](/docs/apm/agents/php-agent/configuration/php-agent-configuration/) atualizada com novas opções de configuração extensivas para controles de amostragem e instrumentação de manipulador de exceções framework. - -### Pequenas mudanças - -* [Introdução o dashboard](/docs/query-your-data/explore-query-data/dashboards/introduction-dashboards/) atualizada com orientação aprimorada para uso dashboard. -* Documentação aprimorada [de dashboard](/docs/query-your-data/explore-query-data/dashboards/manage-your-dashboard/) com conteúdo simplificado para gerenciamento de JSON. -* Links quebrados corrigidos na documentação [do plano de uso do New Relic](/docs/licenses/license-information/usage-plans/new-relic-usage-plan/). -* Corrigida configuração de depuração na documentação [do agente de resolução de problemas do .NET](/docs/apm/agents/net-agent/troubleshooting/debugging-net-windows/). - -### Notas de versão - -* Fique por dentro dos nossos últimos lançamentos: - - * [Agente Browser v1.297.0](/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.0/): - - * Evitar colheitas precoces durante o período de repetição para melhor manejo de limitação de taxa. - * O meta atributo newrelic foi removido da carga de replay de saída para reduzir bytes faturáveis. - * Exceções corrigidas para corpos nulos decorrentes de colheitas vazias. - - * [Agente PHP v12.1.0.26](/docs/release-notes/agent-release-notes/php-release-notes/php-agent-12-1-0-26/): - - * Controles de amostragem adicionados com base na decisão de amostragem de trace w3c upstream. - * Adicionada opção de configuração para pular a instrumentação de manipuladores de exceção do framework. - * Corrigido possível vazamento de memória ao chamar `newrelic_end_transaction(true)`. - * A versão do golang foi aumentada para 1.25.1 para melhorias de segurança. - - * [Agente Python v10.17.0](/docs/release-notes/agent-release-notes/python-release-notes/python-agent-101700/): - - * Adicionado suporte para tarefas personalizadas no Celery. - * Adicionado suporte para monitoramento Graphene-Django. - * Adicionado suporte para filtragem de middleware no Django. - * Adicionado suporte para a API AWS Bedrock Converse. - * Adicionado suporte para o sinalizador amostrado do cabeçalho W3CTraceParent. - - * [Agente Java v8.24.0](/docs/release-notes/agent-release-notes/java-release-notes/java-agent-8240/): - - * Adicionado suporte para MongoDB Reactive Streams 5.2.0 e superiores. - * Adicionado suporte para Jedis 6. - * Corrigido o problema de instrumentação dupla do CouchBase. - * Corrigido o problema de encapsulamento de cabeçalho do Spring WebClient 5.x. - - * [Agente Node.js v13.3.0](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-0/): - - * Adicionado suporte a MCP `StreamableHTTPClientTransport`. - - * [Agente Node.js v13.3.1](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-1/): - - * Corrigida a falha ao definir `requestParameters` como padrão para um objeto em `transaction.addRequestParameters`. - - * [Agente Node.js v13.3.2](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-2/): - - * Adicionado código defensivo para obter `protocol` em chamadas http de saída. - - * [Integração Kubernetes v3.45.1](/docs/release-notes/infrastructure-release-notes/kubernetes-integration-release-notes/kubernetes-integration-3-45-1/): - - * Atualizado com as últimas melhorias e correções de bugs. - - * [Gerenciador de tarefas v464](/docs/release-notes/synthetics-release-notes/job-manager-release-notes/job-manager-release-464/): - - * Problema corrigido em que os clientes não conseguiam extrair imagens de um registro personalizado usando o podman. - - * [Tempo de execução do navegador Node v3.0.43](/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.43/): - - * Vulnerabilidades subjacentes do Ubuntu corrigidas para lidar com vulnerabilidades de segurança. - - * [Aplicativo móvel para iOS v6.9.12](/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6102/): - - * Problemas de link profundo corrigidos para painel e alertas. - * Problema corrigido no ID do painel do CCU. - - * [Aplicativo móvel para Android v5.30.7](/docs/release-notes/mobile-apps-release-notes/new-relic-android-release-notes/new-relic-android-5307/): - - * Adicionadas correções de bugs e melhorias. - - * [Agente Flutter v1.1.14](/docs/release-notes/mobile-release-notes/flutter-release-notes/flutter-agent-1114/): - - * Adicionou melhorias adicionais de estabilidade e correções de bugs. - - * [Controle de Pipeline Gateway v25.09.01](/docs/release-notes/pipeline-control-gateway-release-notes/pipeline-control-gateway-25-09-01/): - - * Adicionada nova versão com recursos aprimorados de controle de pipeline. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx b/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx deleted file mode 100644 index 140e7dba4e8..00000000000 --- a/src/i18n/content/pt/docs/release-notes/docs-release-notes/docs-9-25-2025.mdx +++ /dev/null @@ -1,36 +0,0 @@ ---- -subject: Docs -releaseDate: '2025-09-25' -version: 'Sep 20 - Sep 25, 2025' -translationType: machine ---- - -### Grandes mudanças - -* [Preços e faturamento do New Relic](/docs/accounts/accounts-billing/new-relic-one-pricing-billing/new-relic-one-pricing-billing) atualizados com reestruturação abrangente da tabela para maior clareza e organização. - -### Pequenas mudanças - -* Instruções atualizadas de configuração do repositório APT para [Azure Linux contêiner](/install/dotnet/installation/azure-linux-container), [Docker Linux instalação](/install/dotnet/installation/dockerLinux) e [Linux instalação](/install/dotnet/installation/linuxInstall2) para .NET agente implantação. -* Descrição adicionada para a variável de ambiente NEW\_RELIC\_CLOUD\_AWS\_ACCOUNT\_ID nas [variáveis de ambiente para documentação de monitoramento do AWS Lambda](/docs/serverless-function-monitoring/aws-lambda-monitoring/instrument-lambda-function/env-variables-lambda). -* [Ajuda aprimorada e documentação de suporte](/docs/new-relic-solutions/solve-common-issues/find-help-get-support) com referências de recursos de suporte atualizadas. -* Problema de travamento de inicialização do agente corrigido relacionado à chamada para [notas de versão do agente iOS 7.5.9](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-759). -* Informações de configuração de intervalo máximo atualizadas para configurações de agente no [documento de integração no host](/docs/infrastructure/host-integrations/infrastructure-integrations-sdk/specifications/host-integrations-standard-configuration-format/#configure-how-the-agent-executes-your-integrations) para formato de configuração padrão. - -### Notas de versão - -* Fique por dentro dos nossos últimos lançamentos: - - * [Agente Go v3.41.0](/docs/release-notes/agent-release-notes/go-release-notes/go-agent-3-41-0): - - * Adicionadas opções de configuração de Amostragem de Pai Remota para controlar o comportamento de amostragem distributed trace. - * Versões atualizadas de bibliotecas de terceiros para melhorias de segurança. - - * [Agente Node.js v13.3.3](/docs/release-notes/agent-release-notes/nodejs-release-notes/node-agent-13-3-3): - - * Adicionado suporte para rastreamento de retorno de chamada em assinantes. - * Corrigida a instrumentação OpenAI para retornar APIPromise corretamente e evitar travamentos. - - * [Agente iOS v7.5.10](/docs/release-notes/mobile-release-notes/ios-release-notes/ios-agent-7510): - - * Corrigida uma falha que poderia ocorrer na inicialização do agente. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx b/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx deleted file mode 100644 index 3cf842161b5..00000000000 --- a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.295.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-08-04' -version: 1.295.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Add error cause detection -bugs: - - Add monkey-patching warnings - - Calculate first and last timestamps from raw data -security: [] -translationType: machine ---- - -## v1.295.0 - -### Recurso - -#### Adicionar detecção de causa de erro - -Detecte e relate o atributo de causa no evento JavaScriptError capturado. Se a causa for uma instância de um erro, o stack trace será capturado; caso contrário, o conteúdo em string da causa será relatado. Isso poderá ser consultado no evento JavaScriptError sob o atributo `cause`. - -### Correções de bugs - -#### Adicionar avisos de monkey-patching - -Detecção e avisos adicionados para quando os globais esperados foram corrigidos antes do agente ser executado na página. Isso pode causar comportamentos inesperados e a intenção é informar os clientes sobre esse comportamento. - -#### Calcular o primeiro e o último registro de data e hora a partir de dados brutos - -Certifique-se de que o agente calcule manualmente o primeiro e o último registro de data e hora de uma carga do SessionReplay antes da coleta para ajudar a melhorar a consistência no replayer da interface. - -## Declaração de apoio - -New Relic recomenda que você atualize o agente regularmente para garantir que esteja obtendo os benefícios mais recentes de recursos e desempenho. Versões mais antigas não terão mais suporte quando chegarem [ao fim de sua vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). As datas de lançamento refletem a data de publicação original da versão do agente. - -Novos lançamentos de agente do browser são disponibilizados aos clientes em pequenas etapas ao longo de um período de tempo. Por esse motivo, a data em que o lançamento fica acessível à sua conta pode não corresponder à data de publicação original. Consulte este [dashboard de status](https://newrelic.github.io/newrelic-browser-agent-release/) para obter mais informações. - -De acordo com nossa [política de suporte a navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), a versão v1.295.0 do Agente do browser foi criada e testada nesses navegadores e intervalos de versão: Chrome 128-138, Edge 128-138, Safari 17-19 e Firefox 130-140. Para dispositivos móveis, a versão v1.295.0 foi criada e testada para Android OS 16 e iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx b/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx deleted file mode 100644 index 2f08aaa8206..00000000000 --- a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.296.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-08-19' -version: 1.296.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Harvest traces early -bugs: - - Remove event buffer inspection event -security: [] -translationType: machine ---- - -## v1.296.0 - -### Recurso - -#### Colheita de rastros precoce - -Atualize o agente para tratar o trace da sessão da mesma forma que outros recursos tratam os dados a partir de [1.294.0](https://docs.newrelic.com/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.294.0/), permitindo colheitas com tamanho de 16kb. - -### Correções de bugs - -#### Remover evento de inspeção de buffer de evento - -Remove a inspeção do buffer de eventos para evitar um vazamento de memória ao usar console.log com o ouvinte de eventos da janela `newrelic`. - -## Declaração de apoio - -New Relic recomenda que você atualize o agente regularmente para garantir que esteja obtendo os benefícios mais recentes de recursos e desempenho. Versões mais antigas não terão mais suporte quando chegarem [ao fim de sua vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). As datas de lançamento refletem a data de publicação original da versão do agente. - -Novos lançamentos de agente do browser são disponibilizados aos clientes em pequenas etapas ao longo de um período de tempo. Por esse motivo, a data em que o lançamento fica acessível à sua conta pode não corresponder à data de publicação original. Consulte este [dashboard de status](https://newrelic.github.io/newrelic-browser-agent-release/) para obter mais informações. - -De acordo com nossa [política de suporte a navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), a versão v1.296.0 do agente Browser foi criada e testada nesses navegadores e intervalos de versão: Chrome 129-139, Edge 129-139, Safari 17-19 e Firefox 131-141. Para dispositivos móveis, a versão v1.296.0 foi criada e testada para Android OS 16 e iOS Safari 17-18.1. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx b/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx deleted file mode 100644 index c5167cc6355..00000000000 --- a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.297.mdx +++ /dev/null @@ -1,27 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-09-17' -version: 1.297.1 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: [] -bugs: - - Prevent double import of Session Replay aggregate class -security: [] -translationType: machine ---- - -## v1.297.1 - -### Correções de bugs - -#### Impedir importação dupla da classe agregada Session Replay - -Corrige um problema encontrado em que a classe agregada Session Replay poderia ser importada duas vezes ao usar o método API newrelic.recordReplay durante o pré-carregamento foi habilitado. - -## Declaração de apoio - -New Relic recomenda que você atualize o agente regularmente para garantir que esteja obtendo os benefícios mais recentes de recursos e desempenho. Versões mais antigas não terão mais suporte quando chegarem [ao fim de sua vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). As datas de lançamento refletem a data de publicação original da versão do agente. - -Novos lançamentos de agente do browser são disponibilizados aos clientes em pequenas etapas ao longo de um período de tempo. Por esse motivo, a data em que o lançamento fica acessível à sua conta pode não corresponder à data de publicação original. Consulte este [dashboard de status](https://newrelic.github.io/newrelic-browser-agent-release/) para obter mais informações. - -De acordo com nossa [política de suporte a navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), a versão v1.297.1 do agente do Browser foi criada e testada nesses navegadores e intervalos de versão: Chrome 130-140, Edge 130-140, Safari 17-19 e Firefox 132-142. Para dispositivos móveis, a versão v1.297.1 foi criada e testada para Android OS 16 e iOS Safari 17-18.5. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx b/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx deleted file mode 100644 index a076aefbcc4..00000000000 --- a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.298.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-09-19' -version: 1.298.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Factor long tasks into soft nav base interaction span -bugs: - - Force LCP to report the original page URL -security: [] -translationType: machine ---- - -## v1.298.0 - -### Recurso - -#### Fator de tarefas longas em um intervalo de interação de base de navegação suave - -`BrowserInteraction` sob navegação suave ("SPA 2.0") se estenderá em duração além do tempo de modificação do DOM até o ponto em que nenhuma tarefa longa for observada por 5 segundos. `JavascriptError` e `AjaxRequest` ainda não estão associados a essa interação durante esse período estendido além do fim da heurística original. - -### Correções de bugs - -#### Forçar o LCP a relatar a URL da página original - -Permitir que o LCP relate seu pageUrl de forma distinta do URL de coleta. Foi observado um problema em que navegações suaves ocorrendo antes da coleta do LCP relatavam a URL da página atual em vez da URL da página original vinculada ao LCP. Essa alteração permite que os nós de coleta do LCP relatem o URL original, independentemente do URL da página atual. A alteração deve ser aplicada aos atributos `pageUrl` e `targetGroupedUrl`. - -## Declaração de apoio - -New Relic recomenda que você atualize o agente regularmente para garantir que esteja obtendo os benefícios mais recentes de recursos e desempenho. Versões mais antigas não terão mais suporte quando chegarem [ao fim de sua vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). As datas de lançamento refletem a data de publicação original da versão do agente. - -Novos lançamentos de agente do browser são disponibilizados aos clientes em pequenas etapas ao longo de um período de tempo. Por esse motivo, a data em que o lançamento fica acessível à sua conta pode não corresponder à data de publicação original. Consulte este [dashboard de status](https://newrelic.github.io/newrelic-browser-agent-release/) para obter mais informações. - -De acordo com nossa [política de suporte a navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), a versão v1.298.0 do agente Browser foi criada e testada nesses navegadores e intervalos de versão: Chrome 130-140, Edge 130-140, Safari 17-19 e Firefox 132-142. Para dispositivos móveis, a versão v1.298.0 foi criada e testada para Android OS 16 e iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx b/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx deleted file mode 100644 index b092869b604..00000000000 --- a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.300.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-10-14' -version: 1.300.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Remove usage of the marks and measures feature flag - - Reduce hasReplay attribute false positive rate -bugs: - - Update typings for interaction API to reflect waitForEnd - - Address issues with dynamic require and Rollup.js -security: [] -translationType: machine ---- - -## v1.300.0 - -### Recurso - -#### Remover o uso do sinalizador de recurso de marcas e medidas - -Não limita mais o agente por um sinalizador de recurso interno. As medidas serão habilitadas para todos os usuários por padrão, a menos que sejam desativadas nas configurações do aplicativo. - -#### Reduzir hasReplay atributo falso positivo rate - -Defina o atributo "hasReplay" somente quando uma coleta bem-sucedida de Session Replay for observada para ajudar a reduzir falsos positivos. - -### Correções de bugs - -#### Atualizar as tipificações da API de interação para refletir waitForEnd - -Corrige um problema em que o arquivo de digitação que define a API `.interaction` não foi decorado corretamente para levar em conta o argumento opcional `waitForEnd`, conforme [documentado](https://docs.newrelic.com/docs/browser/new-relic-browser/browser-apis/interaction/#parameters). - -#### Resolva problemas com require dinâmico e agregar.js - -Corrige um problema que fazia com que o agregar.js gerasse o erro `Error: Could not dynamically require ...` ao criar páginas que incluíam o carregador MicroAgent. - -## Declaração de apoio - -New Relic recomenda que você atualize o agente regularmente para garantir que esteja obtendo os benefícios mais recentes de recursos e desempenho. Versões mais antigas não terão mais suporte quando chegarem [ao fim de sua vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). As datas de lançamento refletem a data de publicação original da versão do agente. - -Novos lançamentos de agente do browser são disponibilizados aos clientes em pequenas etapas ao longo de um período de tempo. Por esse motivo, a data em que o lançamento fica acessível à sua conta pode não corresponder à data de publicação original. Consulte este [dashboard de status](https://newrelic.github.io/newrelic-browser-agent-release/) para obter mais informações. - -De acordo com nossa [política de suporte a navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), a versão 1.300.0 do agente de Browser foi criada e testada nesses navegadores e intervalos de versão: Chrome 131-141, Edge 131-141, Safari 17-26 e Firefox 133-143. Para dispositivos móveis, a versão v1.300.0 foi criada e testada para Android OS 16 e iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx b/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx deleted file mode 100644 index 31f2dfa6654..00000000000 --- a/src/i18n/content/pt/docs/release-notes/new-relic-browser-release-notes/browser-agent-release-notes/browser-agent-v1.301.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -subject: Browser agent -releaseDate: '2025-10-21' -version: 1.301.0 -downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent' -features: - - Switch to using NR fork of rrweb -bugs: - - Preserve agent attributes for log payloads -security: [] -translationType: machine ---- - -## v1.301.0 - -### Recurso - -#### Mude para usar o fork NR do rrweb - -O agente do Browser agora mudará para usar a versão bifurcada do rrweb do New Relic para Session Replay em vez do repositório original. Isso permitirá que a equipe do navegador personalize correções para problemas. - -### Correções de bugs - -#### Preservar atributo do agente para carga de logs - -Ajuste as cargas dos logs do navegador, de modo que o atributo reservado pelo agente tenha precedência sobre os valores fornecidos pelo usuário, caso eles compartilhem o mesmo nome. - -## Declaração de apoio - -New Relic recomenda que você atualize o agente regularmente para garantir que esteja obtendo os benefícios mais recentes de recursos e desempenho. Versões mais antigas não terão mais suporte quando chegarem [ao fim de sua vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). As datas de lançamento refletem a data de publicação original da versão do agente. - -Novos lançamentos de agente do browser são disponibilizados aos clientes em pequenas etapas ao longo de um período de tempo. Por esse motivo, a data em que o lançamento fica acessível à sua conta pode não corresponder à data de publicação original. Consulte este [dashboard de status](https://newrelic.github.io/newrelic-browser-agent-release/) para obter mais informações. - -De acordo com nossa [política de suporte a navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), a versão v1.301.0 Agente do Browser foi criada e testada nesses navegadores e intervalos de versão: Chrome 131-141, Edge 131-141, Safari 17-26 e Firefox 133-143. Para dispositivos móveis, a versão v1.301.0 foi criada e testada para Android OS 16 e iOS Safari 17-26. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx b/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx deleted file mode 100644 index a893b8d607c..00000000000 --- a/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/node-api-runtime-release-notes/node-api-runtime-1.2.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Node API runtime -releaseDate: '2025-07-29' -version: 1.2.122 -translationType: machine ---- - -### Correções - -* Corrigidas as vulnerabilidades de dados de formulário e as vulnerabilidades subjacentes do Ubuntu para lidar com vulnerabilidades de segurança em tempos de execução API do Node. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx b/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx deleted file mode 100644 index 36ec24357e4..00000000000 --- a/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/node-browser-runtime-release-notes/node-browser-runtime-3.0.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Node browser runtime -releaseDate: '2025-07-29' -version: 3.0.39 -translationType: machine ---- - -### Melhorias - -* Corrigidas as vulnerabilidades de dados de formulário e as vulnerabilidades subjacentes do Ubuntu para lidar com vulnerabilidades de segurança em tempos de execução do Node Browser. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx b/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx deleted file mode 100644 index 4bb67078ec7..00000000000 --- a/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.53.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Ping Runtime -releaseDate: '2025-07-29' -version: 1.53.0 -translationType: machine ---- - -### Melhorias - -* Vulnerabilidades corrigidas relacionadas ao `common-lang3` Java e Ubuntu para resolver problemas de segurança no tempo de execução do Ping. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx b/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx deleted file mode 100644 index b7b8a18c47c..00000000000 --- a/src/i18n/content/pt/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.54.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -subject: Ping Runtime -releaseDate: '2025-08-13' -version: 1.54.0 -translationType: machine ---- - -### Melhorias - -* Vulnerabilidades corrigidas relacionadas ao Ubuntu para resolver problemas de segurança no tempo de execução do Ping. \ No newline at end of file diff --git a/src/i18n/content/pt/docs/service-architecture-intelligence/github-integration.mdx b/src/i18n/content/pt/docs/service-architecture-intelligence/github-integration.mdx deleted file mode 100644 index f3ce0622fe6..00000000000 --- a/src/i18n/content/pt/docs/service-architecture-intelligence/github-integration.mdx +++ /dev/null @@ -1,220 +0,0 @@ ---- -title: GitHub integração para Inteligência de Arquitetura de Serviços -tags: - - New Relic integrations - - GitHub integration -metaDescription: 'Learn how to integrate GitHub with New Relic to import repositories, teams, and user data for enhanced service architecture intelligence.' -freshnessValidatedDate: never -translationType: machine ---- - -Você deseja obter insights mais profundos sobre sua arquitetura de serviço aproveitando dados da sua conta do GitHub? A integração New Relic GitHub importa dados de repositórios, equipes e usuários diretamente para a plataforma New Relic com recursos seletivos de busca de dados. - -Essa integração agiliza o processo de integração de usuários e equipes, ao mesmo tempo em que simplifica o gerenciamento de funções. Ele também esclarece o mapeamento de propriedade da entidade, reduzindo o tempo e o esforço de configuração. Com o novo recurso de busca seletiva de dados, você pode escolher exatamente quais tipos de dados importar — sejam equipes e usuário, repositório e pull requests, ou ambos. Esta integração do AI Monitoring melhora o gerenciamento e a visibilidade de [catálogos](/docs/service-architecture-intelligence/catalogs/catalogs) e [scorecards](/docs/service-architecture-intelligence/scorecards/getting-started) no New Relic. Para mais informações consulte o [recurso Inteligência de Arquitetura de Serviços](/docs/service-architecture-intelligence/getting-started). - -* **Plataforma suportada:** - - * Nuvem GitHub - * GitHub Enterprise (GHE) Cloud (sem residência de dados) - -* **Regiões suportadas:** regiões dos EUA e UE - - - * GHE local e GHE Cloud com residência de dados não são suportados. - * A instalação da integração em contas de usuário do GitHub não é suportada. Embora o GitHub permita instalar o aplicativo em uma conta de usuário, o mecanismo de sincronização não funcionará e nenhum dado será importado para o New Relic. - * Observe que a integração do GitHub não é compatível com FedRAMP. - - -**Pré-requisitos:** - -* Efetue login na sua conta do GitHub que você planeja integrar com o New Relic. - -* Você deve ser o gerente da organização ou o gerente do domínio de autenticação. - -* Direitos necessários: - - * `teams_discount_usage` - * `integration_github_discount_usage` - * `integration_github_ccu` - -## Requisito de lista de permissões de IP - -Se a sua organização usa lista de permissões IP para conexões de saída, você deverá permitir o tráfego do nosso terminal coletor de dados. - -Consulte a documentação pública oficial do New Relic para obter a lista completa e mais atualizada de endereços IP permitidos que você precisa adicionar à sua configuração de lista de permissões. - -## Quais dados podem ser sincronizados - -A integração com o GitHub permite que você escolha seletivamente quais tipos de dados importar para o New Relic, dando a você controle sobre quais informações são sincronizadas: - -### Tipos de dados disponíveis - -* **Equipes e usuário**: importe estruturas de equipe do GitHub e informações de usuário para aprimorar o gerenciamento de equipe e mapeamento de propriedade - - - **Requisito de visibilidade de e-mail do usuário**: a integração importa apenas usuários do GitHub que configuraram seus endereços de e-mail como públicos nas configurações de perfil do GitHub. Membros da equipe com configuração de e-mail privada serão excluídos do processo de sincronização de dados do usuário. - - -* **Repositórios e pull requests**: Importe dados do repositório e informações pull request para melhor visibilidade do código e rastreamento de implantação - -* **Ambos**: Importe todos os tipos de dados disponíveis para integração abrangente com o GitHub - -### Considerações sobre a seleção de dados - - - **Conflitos de integração de equipe**: se equipes já tiverem sido integradas ao New Relic de outra fonte (como equipes de serviço), as equipes do GitHub não poderão ser buscadas e armazenadas para evitar conflitos de dados. Nesse caso, você só pode selecionar dados do repositório e pull request . - - -Você poderá configurar suas preferências de seleção de dados durante o processo de configuração inicial. - -## Configurar a integração do GitHub - -1. Acesse **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)**. - -2. Na etapa **Select an action** , selecione **Set up a new integration** e clique em **Continue**. - -3. Na tela **Begin integration** : - - a. Para se conectar à sua conta do GitHub, clique em **Get started in GitHub**. A observabilidade New Relic é aberta no GitHub Marketplace. b. Conclua a instalação do aplicativo na sua organização do GitHub para recuperar dados relacionados aos tipos de dados selecionados. Após a conclusão da instalação, você será redirecionado para a etapa **Select an action** mais uma vez. c. Selecione **Begin integration** e clique em **Continue**. - - d. **Select your data preferences**: Escolha quais tipos de dados você deseja sincronizar: - - * **Teams + Users**: importa estruturas de equipe do GitHub e informações do usuário - * **Repositories + Pull Requests**: Importa repositório e dados pull request - * **Both**: Importar todos os tipos de dados disponíveis - - - Se as equipes já estiverem integradas de outra fonte (como equipes de serviço), a opção **Teams + Users** será desabilitada para evitar conflitos. - - - e. Clique em **Start first sync** para começar a importar os tipos de dados selecionados. - - g. Depois de visualizar a mensagem **Sync started** , clique em **Continue**. A tela **Integration status** exibirá a contagem dos tipos de dados selecionados (equipes, repositório, etc.), atualizando a cada 5 segundos. Aguarde alguns minutos para a importação completa de todos os dados. - - GitHub integration - -4. *(Opcional)* Na tela de **GitHub integration** , acesse seus dados importados: - - * Clique em **Go to Teams** para visualizar as informações das equipes importadas no [Teams](/docs/service-architecture-intelligence/teams/teams) (se as equipes foram selecionadas durante a configuração) - * Clique em **Go to Repositories** para visualizar as informações do repositório importado no [repositório](/docs/service-architecture-intelligence/repositories/repositories) (se o repositório tiver sido selecionado durante a configuração) - - - **Atribuir repositório automaticamente às equipes**: você pode atribuir repositórios do GitHub automaticamente às suas equipes criando uma propriedade personalizada `teamOwningRepo` no GitHub. Crie a propriedade personalizada no nível da organização e atribua um valor para ela no nível do repositório. Além disso, você pode configurar uma propriedade personalizada para vários repositórios no nível da organização simultaneamente. A integração atribuirá automaticamente o repositório às respectivas equipes com base na propriedade personalizada. Para obter mais informações sobre como criar propriedades personalizadas, consulte a [documentação do GitHub](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). - - -## Habilitar descoberta de propriedade de equipe - -A integração do GitHub inclui um serviço de descoberta que pode estabelecer automaticamente a propriedade da equipe do repositório com base na estrutura organizacional e nas propriedades personalizadas do GitHub. - -### Como funciona a propriedade da equipe - -O serviço de descoberta usa vários métodos para estabelecer a propriedade do repositório: - -1. **Propriedades personalizadas do GitHub**: usa a propriedade personalizada `teamOwningRepo` para atribuir repositório diretamente às equipes -2. **Análise de membros da equipe**: analisa padrões de comprometimento e contribuições dos membros da equipe para inferir propriedade -3. **repositório organização**: usa a estrutura organizacional e as permissões da equipe do GitHub para determinar a propriedade - -### Configurando a propriedade automática da equipe - -Para habilitar a descoberta automática de propriedade da equipe: - -1. **Crie propriedades personalizadas no GitHub** (recomendado): - - * Navegue até as configurações da sua organização no GitHub - * Crie uma propriedade personalizada `teamOwningRepo` no nível da organização - * Atribuir valores de equipe ao repositório no nível do repositório - * A integração mapeará automaticamente esses relacionamentos durante a sincronização - -2. **Configurar permissões de equipe**: - - * Garantir que as equipes tenham acesso apropriado ao repositório no GitHub - * O serviço de descoberta usará essas permissões para inferir relacionamentos de propriedade - -3. **Habilitar descoberta automática de propriedade de equipe**: - - * Após a conclusão da sincronização, ative a descoberta automática de propriedade da equipe no New Relic. Para obter mais informações, consulte a [documentação de propriedade do Automating Teams](https://docs.newrelic.com/docs/service-architecture-intelligence/teams/manage-teams/#assign-ownership). - * Verifique se as relações de propriedade estão estabelecidas corretamente - - - **práticas recomendadas para propriedade da equipe**: - - * Use convenções de nomenclatura consistentes para equipes no GitHub e no New Relic - * Atualize regularmente as propriedades personalizadas quando a propriedade do repositório for alterada - * Revise e valide o mapeamento de propriedade após cada sincronização para garantir a precisão - - -## Gerencie sua integração com o GitHub - -Depois de configurar sua integração com o GitHub, você pode gerenciá-la por meio da interface do New Relic. Isso inclui atualizar dados, editar configurações e desinstalar quando necessário. - -### Gerenciamento de integração de acesso - -1. Acesse **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)**. - -2. Na etapa **Select an action** , selecione **Manage your organization** e clique em **Continue**. - - Screenshot showing the manage organization option in GitHub integration - -A tela **Manage GitHub integration** exibe sua organização conectada com seu status de sincronização atual e tipos de dados. - -### Atualizar dados - -Ao clicar na opção **Refresh data** , você obtém uma maneira simplificada de atualizar seus dados do GitHub no New Relic. - -**Para atualizar dados:** - -1. Na tela **Manage GitHub integration** , localize sua organização. - -2. Clique em **Refresh data** ao lado da organização que você deseja atualizar e depois clique em **Continue**. - -3. Na etapa **Refresh Data** , clique em **Sync on demand**. - -O sistema validará suas permissões do GitHub e o acesso à organização, buscará apenas dados novos ou alterados desde a última sincronização, processará e mapeará os dados atualizados de acordo com os tipos de dados selecionados e atualizará o status da integração para refletir o registro de data timestamp da sincronização mais recente e as contagens de dados. - -**O que é atualizado:** - -* Novos membros da equipe adicionados às equipes do GitHub -* alterações no repositório (novo repositório, repositório arquivado, alterações de permissão) -* Propriedade da equipe atualizada por meio de propriedades personalizadas -* Mudanças nos perfis dos usuários e estruturas de equipe - - - **Frequência de atualização**: você pode atualizar os dados sempre que necessário. O processo normalmente leva alguns minutos, dependendo do tamanho da sua organização e dos tipos de dados selecionados. - - -### Editar configurações de integração - -Use a opção **Edit** para modificar sua configuração de integração após a configuração inicial. Você pode ajustar quais tipos de dados são sincronizados entre o GitHub e New Relic, escolhendo entre Teams + Users, Repositories + Pull Requests ou Both os tipos de dados, com base em suas necessidades atuais. - -**Para editar a integração do GitHub:** - -1. Na tela **Manage GitHub integration** , localize sua organização. - -2. Clique em **Edit** ao lado da organização que você deseja atualizar e depois clique em **Continue**. - -3. Na etapa **Edit Integration Settings** , ajuste suas seleções de tipo de dados conforme necessário. - -4. Clique em **Save changes** para aplicar suas atualizações. - -**O que acontece durante a edição:** - -* Os dados atuais permanecem intactos durante as alterações de configuração -* Novas configurações se aplicam a sincronizações subsequentes -* Você pode visualizar as alterações antes de aplicá-las -* A integração continua sendo executada com as configurações anteriores até que você salve as alterações - -### Desinstalar a integração do GitHub - -Desinstalar a integração do GitHub interrompe a sincronização de dados da organização selecionada, mas preserva todos os dados importados anteriormente no New Relic. - -**Para desinstalar:** - -1. Na tela **Manage GitHub integration** , localize a organização que você deseja desinstalar e clique em **Uninstall**. - -2. Na caixa de diálogo de confirmação, revise os detalhes da organização e clique em **Uninstall organization** para confirmar. - -3. Você verá uma mensagem de sucesso confirmando a desinstalação. - - - **Retenção de dados após desinstalação**: Todos os dados previamente sincronizados (equipes, usuário, repositório, pull request) permanecerão no New Relic após a desinstalação da integração. Se precisar remover esses dados, entre em contato com o suporte da New Relic. - \ No newline at end of file From 79b23fe3171428b39ca84b6e501dfce292e1b14b Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Thu, 30 Oct 2025 21:59:41 +0530 Subject: [PATCH 09/14] Fixed review comments --- .../github-cloud-integration.mdx | 1 + .../github-enterprise-integration.mdx | 34 ++++++++++++++++--- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx index 04d47b888de..31be1af2488 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-cloud-integration.mdx @@ -69,6 +69,7 @@ You'll be able to configure your data selection preferences during the initial s ## Set up the GitHub integration 1. Go to **[one.newrelic.com > + Integration & Agents > GitHub integration](https://one.newrelic.com/marketplace/install-data-source?state=9306060d-b674-b245-083e-ff8d42765e0d)**. +2. Select **Github Enterprise Cloud** as your instrumentation method. 2. On the **Select an action** step, select **Set up a new integration**, and click **Continue**. 3. On the **Begin integration** screen: a. To connect with your GitHub account, click **Get started in GitHub**. The New Relic Observability opens in the GitHub Marketplace. diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx index 7c5bd14c655..6c5843ba5dd 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx @@ -90,22 +90,22 @@ This integration streamlines the onboarding process for users and teams while si `SERVER_SSL_KEY_STORE` SSL Configuration - Path to the SSL keystore file for HTTPS configuration. + Path to the SSL keystore file for HTTPS configuration. See SSL certificate setup instructions below. `SERVER_SSL_KEY_STORE_PASSWORD` SSL Configuration - Password for the SSL keystore file. + Password for the SSL keystore file. This is the password you set when creating the PKCS12 keystore. `SERVER_SSL_KEY_STORE_TYPE` SSL Configuration - Type of the SSL keystore (e.g., PKCS12, JKS). + Type of the SSL keystore (e.g., PKCS12, JKS). Use PKCS12 when following the SSL setup instructions below. `SERVER_SSL_KEY_ALIAS` SSL Configuration - Alias for the SSL key within the keystore. + Alias for the SSL key within the keystore. This is the name you specify when creating the keystore. `SERVER_PORT` @@ -115,6 +115,30 @@ This integration streamlines the onboarding process for users and teams while si + **SSL Certificate Setup Instructions** + + To obtain an SSL certificate from a trusted Certificate Authority (CA) for HTTPS configuration, follow these steps: + + 1. **Generate a private key and a Certificate Signing Request (CSR)**: + + ```bash + openssl req -new -newkey rsa:2048 -nodes -keyout mycert.key -out mycert.csr + ``` + + 2. **Submit the CSR to your chosen CA**: Submit the `mycert.csr` file to your chosen Certificate Authority (e.g., DigiCert, Let's Encrypt, GoDaddy). + + 3. **Complete domain validation**: Complete any required domain validation steps as instructed by the CA. + + 4. **Download the certificate**: Download the issued certificate files from the CA (commonly a `.crt` or `.pem` file). + + 5. **Create a PKCS12 keystore**: Combine the certificate and private key into a PKCS12 keystore: + + ```bash + openssl pkcs12 -export -in mycert.crt -inkey mycert.key -out keystore.p12 -name mycert + ``` + + 6. **Use the keystore**: Use the generated `keystore.p12` file as the value for `SERVER_SSL_KEY_STORE` in your Docker configuration. + 3. **Deploy the collector service**: The collector service is delivered as a Docker image. Deployment can be done in one of two ways: **Option A: Using Docker Compose (Recommended)** @@ -131,7 +155,7 @@ This integration streamlines the onboarding process for users and teams while si **Option B: Direct Docker image run** - You can download the Docker image directly from our Docker App registry and run it using your organization's preferred CI/CD pipeline or deployment method. + You can download the Docker image directly from our [Docker Hub registry](https://hub.docker.com/repository/docker/newrelic/nr-ghe-collector/general) and run it using your organization's preferred CI/CD pipeline or deployment method. 4. **Access the New Relic UI**: From c2b96f9c0bfdb196ba9aea03b7d5423ed81232e2 Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Fri, 31 Oct 2025 00:49:22 +0530 Subject: [PATCH 10/14] All review comments are addressed --- .../github-enterprise-integration.mdx | 42 +++++++++++++++---- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx index 6c5843ba5dd..d320c689dd7 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx @@ -1,5 +1,5 @@ --- -title: Service Architecture Intelligence with GitHub Enterprise (On-prem) +title: Service Architecture Intelligence with GitHub Enterprise (on-premises) tags: - New Relic integrations - GitHub Enterprise integration @@ -20,17 +20,40 @@ This integration streamlines the onboarding process for users and teams while si **Prerequisites** -* GitHub Enterprise account that you want to integrate with New Relic. +* GitHub Enterprise on-premises account that you want to integrate with New Relic. * Docker environment to run the collector service within your GHE network. **To set up the GitHub Enterprise integration:** -1. **Create and configure a GitHub app**: In your GHE instance, navigate to **Settings → Developer Settings → GitHub Apps → New GitHub App**. +1. **Create and configure a GitHub app**: In your GHE instance, navigate to **Settings → Developer Settings → GitHub Apps → New GitHub App**. For detailed instructions on creating a GitHub App, refer to the [GitHub documentation on registering a GitHub App](https://docs.github.com/en/apps/creating-github-apps/registering-a-github-app/registering-a-github-app). - a. **Configure Permissions**: Set the specific permissions required for the app to perform real-time and initial data syncs. A separate document outlining the required permissions will be provided. - b. **Set Up Webhooks**: Configure the Webhook URL (which we will provide) and create a custom Event Secret for secure communication. + a. **Configure Permissions**: Set the specific permissions required for the app to perform real-time and initial data syncs. For detailed guidance on GitHub App permissions, refer to the [GitHub documentation on setting permissions for GitHub Apps](https://docs.github.com/en/apps/creating-github-apps/setting-up-a-github-app/setting-permissions-for-github-apps). + b. **Set Up Webhooks**: Configure the Webhook URL and create a custom Event Secret for secure communication: + + - **Webhook URL**: Use the following format based on your collector service deployment: + - For HTTP: `http://your-collector-host:8080/webhook` + - For HTTPS: `https://your-collector-host:8443/webhook` + + **Example**: If your collector service is deployed at `collector.yourcompany.com`, the webhook URL would be: + `https://collector.yourcompany.com:8443/webhook` + + - **Event Secret**: Generate a secure random string (32+ characters) for webhook authentication. Save this value as you'll need it for the `EVENT_SECRET` environment variable. c. **Install the App**: Install the created GitHub App on the relevant GHE organizations that you want to integrate with New Relic. d. **Generate Keys**: Upon creation, the app will generate a unique App ID and a Private Key file (.pem format). Save these securely as they will be needed for the collector service configuration. + e. **Convert Private Key to Base64**: The collector service requires the private key in Base64 format. Convert your downloaded private key file using the following command: + + ```bash + # For Linux/macOS + base64 -i your-private-key.pem + + # For Windows (using PowerShell) + [Convert]::ToBase64String([IO.File]::ReadAllBytes("your-private-key.pem")) + + # Alternative for Windows (using certutil) + certutil -encode your-private-key.pem temp.b64 && findstr /v /c:- temp.b64 + ``` + + Copy the resulting Base64 string and use it as the value for `GITHUB_APP_PRIVATE_KEY` environment variable in your collector configuration. 2. **Prepare environment variables**: Before deploying the collector service, gather the following information: @@ -44,12 +67,12 @@ This integration streamlines the onboarding process for users and teams while si - `API_KEY` + `NR_API_KEY` New Relic Generate an API key from the New Relic dashboard. - `LICENSE_KEY` + `NR_LICENSE_KEY` New Relic Generate a License Key from the New Relic dashboard. @@ -59,12 +82,12 @@ This integration streamlines the onboarding process for users and teams while si The base URL for your GHE server (e.g., `https://source.datanot.us`). - `APP_ID` + `GITHUB_APP_ID` GitHub App The unique App ID generated when you created the GitHub App. - `PRIVATE_KEY` + `GITHUB_APP_PRIVATE_KEY` GitHub App The content of the private key (`.pem`) file, converted to a Base64 string. We will provide the necessary conversion command. @@ -174,6 +197,7 @@ This integration streamlines the onboarding process for users and teams while si 5. On the **GitHub Enterprise integration** screen: - Click **Go to Teams** to view the imported teams information on [Teams](/docs/service-architecture-intelligence/teams/teams). + - Click **Go to Repositories** to view the imported repositories information on [Catalogs](/docs/service-architecture-intelligence/catalogs/catalogs). **Assigning repositories to New Relic Teams** From 46f78be6c43c4cf7357339068b916682b97fc92d Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Fri, 31 Oct 2025 01:47:25 +0530 Subject: [PATCH 11/14] Updates to styes --- .../github-enterprise-integration.mdx | 475 +++++++++++------- 1 file changed, 305 insertions(+), 170 deletions(-) diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx index d320c689dd7..08692e985d4 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx @@ -25,181 +25,312 @@ This integration streamlines the onboarding process for users and teams while si **To set up the GitHub Enterprise integration:** -1. **Create and configure a GitHub app**: In your GHE instance, navigate to **Settings → Developer Settings → GitHub Apps → New GitHub App**. For detailed instructions on creating a GitHub App, refer to the [GitHub documentation on registering a GitHub App](https://docs.github.com/en/apps/creating-github-apps/registering-a-github-app/registering-a-github-app). - - a. **Configure Permissions**: Set the specific permissions required for the app to perform real-time and initial data syncs. For detailed guidance on GitHub App permissions, refer to the [GitHub documentation on setting permissions for GitHub Apps](https://docs.github.com/en/apps/creating-github-apps/setting-up-a-github-app/setting-permissions-for-github-apps). - b. **Set Up Webhooks**: Configure the Webhook URL and create a custom Event Secret for secure communication: - - - **Webhook URL**: Use the following format based on your collector service deployment: - - For HTTP: `http://your-collector-host:8080/webhook` - - For HTTPS: `https://your-collector-host:8443/webhook` - - **Example**: If your collector service is deployed at `collector.yourcompany.com`, the webhook URL would be: - `https://collector.yourcompany.com:8443/webhook` - - - **Event Secret**: Generate a secure random string (32+ characters) for webhook authentication. Save this value as you'll need it for the `EVENT_SECRET` environment variable. - c. **Install the App**: Install the created GitHub App on the relevant GHE organizations that you want to integrate with New Relic. - d. **Generate Keys**: Upon creation, the app will generate a unique App ID and a Private Key file (.pem format). Save these securely as they will be needed for the collector service configuration. - e. **Convert Private Key to Base64**: The collector service requires the private key in Base64 format. Convert your downloaded private key file using the following command: - - ```bash - # For Linux/macOS - base64 -i your-private-key.pem - - # For Windows (using PowerShell) - [Convert]::ToBase64String([IO.File]::ReadAllBytes("your-private-key.pem")) - - # Alternative for Windows (using certutil) - certutil -encode your-private-key.pem temp.b64 && findstr /v /c:- temp.b64 - ``` - - Copy the resulting Base64 string and use it as the value for `GITHUB_APP_PRIVATE_KEY` environment variable in your collector configuration. - -2. **Prepare environment variables**: Before deploying the collector service, gather the following information: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VariableSourceHow to obtain
`NR_API_KEY`New RelicGenerate an API key from the New Relic dashboard.
`NR_LICENSE_KEY`New RelicGenerate a License Key from the New Relic dashboard.
`GHE_BASE_URL`GHE ServerThe base URL for your GHE server (e.g., `https://source.datanot.us`).
`GITHUB_APP_ID`GitHub AppThe unique App ID generated when you created the GitHub App.
`GITHUB_APP_PRIVATE_KEY`GitHub AppThe content of the private key (`.pem`) file, converted to a Base64 string. We will provide the necessary conversion command.
`EVENT_SECRET`GitHub AppThe custom Event Secret value you set when creating the GitHub App.
- - The following are optional environment variables for making API HTTPS. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Optional VariableSourceHow to obtain
`SERVER_SSL_KEY_STORE`SSL ConfigurationPath to the SSL keystore file for HTTPS configuration. See SSL certificate setup instructions below.
`SERVER_SSL_KEY_STORE_PASSWORD`SSL ConfigurationPassword for the SSL keystore file. This is the password you set when creating the PKCS12 keystore.
`SERVER_SSL_KEY_STORE_TYPE`SSL ConfigurationType of the SSL keystore (e.g., PKCS12, JKS). Use PKCS12 when following the SSL setup instructions below.
`SERVER_SSL_KEY_ALIAS`SSL ConfigurationAlias for the SSL key within the keystore. This is the name you specify when creating the keystore.
`SERVER_PORT`SSL ConfigurationServer port for HTTPS communication. Use 8443 for HTTPS.
- - **SSL Certificate Setup Instructions** - - To obtain an SSL certificate from a trusted Certificate Authority (CA) for HTTPS configuration, follow these steps: - - 1. **Generate a private key and a Certificate Signing Request (CSR)**: - - ```bash - openssl req -new -newkey rsa:2048 -nodes -keyout mycert.key -out mycert.csr - ``` - - 2. **Submit the CSR to your chosen CA**: Submit the `mycert.csr` file to your chosen Certificate Authority (e.g., DigiCert, Let's Encrypt, GoDaddy). - - 3. **Complete domain validation**: Complete any required domain validation steps as instructed by the CA. - - 4. **Download the certificate**: Download the issued certificate files from the CA (commonly a `.crt` or `.pem` file). - - 5. **Create a PKCS12 keystore**: Combine the certificate and private key into a PKCS12 keystore: - - ```bash - openssl pkcs12 -export -in mycert.crt -inkey mycert.key -out keystore.p12 -name mycert - ``` - - 6. **Use the keystore**: Use the generated `keystore.p12` file as the value for `SERVER_SSL_KEY_STORE` in your Docker configuration. - -3. **Deploy the collector service**: The collector service is delivered as a Docker image. Deployment can be done in one of two ways: - - **Option A: Using Docker Compose (Recommended)** - - We will provide a sample Docker Compose file that automates the download and deployment of the service. - - a. Download the provided Docker Compose file. - b. Configure the environment variables as described in step 2. - c. Run the following command: - - ```bash - docker-compose up -d - ``` - - **Option B: Direct Docker image run** - - You can download the Docker image directly from our [Docker Hub registry](https://hub.docker.com/repository/docker/newrelic/nr-ghe-collector/general) and run it using your organization's preferred CI/CD pipeline or deployment method. - -4. **Access the New Relic UI**: - - 1. Once the collector service is running and the GitHub App is installed on your GHE organization(s), the corresponding GHE organizations will appear in the New Relic UI. - 2. Click **First time sync** to start the initial data synchronization. - 3. *(Optional)* Click **On-demand sync** to manually sync the data. - - + - You can manually synchronize the data once every 4 hours. The **On-demand sync** button remains disabled if sync has occurred within the previous 4 hours. + +## Create and configure a GitHub App + +In your GHE instance, navigate to **Settings → Developer Settings → GitHub Apps → New GitHub App**. For detailed instructions on creating a GitHub App, refer to the [GitHub documentation on registering a GitHub App](https://docs.github.com/en/apps/creating-github-apps/registering-a-github-app/registering-a-github-app). + +### Configure permissions + +Set the specific permissions required for the app to perform real-time and initial data syncs. For detailed guidance on GitHub App permissions, refer to the [GitHub documentation on setting permissions for GitHub Apps](https://docs.github.com/en/apps/creating-github-apps/setting-up-a-github-app/setting-permissions-for-github-apps). + +**Required Repository Permissions**: +- **Contents**: Read (to access repository files and content) +- **Metadata**: Read (to access basic repository information) +- **Issues**: Read (to access issue data) +- **Pull requests**: Read (to access pull request data) +- **Repository security advisories**: Read (to access security information) + +**Required Organization Permissions**: +- **Members**: Read (to access organization member information) +- **Organization administration**: Read (to access organization settings) +- **Team discussions**: Read (to access team information) + +**Required Account Permissions**: +- **Email addresses**: Read (to access user email information) + +**Subscribe to Events**: Enable the following webhook events for real-time synchronization: +- Repository events: `repository`, `push`, `pull_request`, `issues` +- Organization events: `organization`, `team`, `membership` +- Security events: `repository_vulnerability_alert`, `security_advisory` + +### Set up webhooks + +Configure the Webhook URL and create a custom Event Secret for secure communication: + +- **Webhook URL**: Use the following format based on your collector service deployment: + - For HTTP: `http://your-collector-host:8080/webhook` + - For HTTPS: `https://your-collector-host:8443/webhook` + + **Example**: If your collector service is deployed at `collector.yourcompany.com`, the webhook URL would be: + `https://collector.yourcompany.com:8443/webhook` + +- **Event Secret**: Generate a secure random string (32+ characters) for webhook authentication. Save this value as you'll need it for the `EVENT_SECRET` environment variable. + +### Generate and convert keys + +1. Upon creation, the app will generate a unique App ID and a Private Key file (.pem format). Save these securely as they will be needed for the collector service configuration. + +2. Convert your downloaded private key file to Base64 format using the following command: + + ```bash + # For Linux/macOS + base64 your-private-key.pem + + # For Windows (using PowerShell) + [Convert]::ToBase64String([IO.File]::ReadAllBytes("your-private-key.pem")) + + # Alternative for Windows (using certutil) + certutil -encode your-private-key.pem temp.b64 && findstr /v /c:- temp.b64 + ``` + + Copy the resulting Base64 string and use it as the value for `GITHUB_APP_PRIVATE_KEY` environment variable in your collector configuration. + + + + +## Prepare environment variables + +Before deploying the collector service, gather the following information: + +### Required environment variables + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
VariableSourceHow to obtain
`NR_API_KEY`New RelicGenerate an API key from the New Relic dashboard.
`NR_LICENSE_KEY`New RelicGenerate a License Key from the New Relic dashboard.
`GHE_BASE_URL`GHE ServerThe base URL for your GHE server (e.g., `https://source.datanot.us`).
`GITHUB_APP_ID`GitHub AppThe unique App ID generated when you created the GitHub App.
`GITHUB_APP_PRIVATE_KEY`GitHub AppThe content of the private key (`.pem`) file, converted to a Base64 string. See step 1 for conversion instructions.
`EVENT_SECRET`GitHub AppThe custom Event Secret value you set when creating the GitHub App.
+ +### Optional SSL environment variables + +The following are optional environment variables for making API HTTPS. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Optional VariableSourceHow to obtain
`SERVER_SSL_KEY_STORE`SSL ConfigurationPath to the SSL keystore file for HTTPS configuration. See SSL certificate setup instructions below.
`SERVER_SSL_KEY_STORE_PASSWORD`SSL ConfigurationPassword for the SSL keystore file. This is the password you set when creating the PKCS12 keystore.
`SERVER_SSL_KEY_STORE_TYPE`SSL ConfigurationType of the SSL keystore (e.g., PKCS12, JKS). Use PKCS12 when following the SSL setup instructions below.
`SERVER_SSL_KEY_ALIAS`SSL ConfigurationAlias for the SSL key within the keystore. This is the name you specify when creating the keystore.
`SERVER_PORT`SSL ConfigurationServer port for HTTPS communication. Use 8443 for HTTPS.
+ +### SSL certificate setup instructions + +To obtain an SSL certificate from a trusted Certificate Authority (CA) for HTTPS configuration, follow these steps: + +1. **Generate a private key and a Certificate Signing Request (CSR)**: + + ```bash + openssl req -new -newkey rsa:2048 -nodes -keyout mycert.key -out mycert.csr + ``` + +2. **Submit the CSR to your chosen CA**: Submit the `mycert.csr` file to your chosen Certificate Authority (e.g., DigiCert, Let's Encrypt, GoDaddy). + +3. **Complete domain validation**: Complete any required domain validation steps as instructed by the CA. + +4. **Download the certificate**: Download the issued certificate files from the CA (commonly a `.crt` or `.pem` file). + +5. **Create a PKCS12 keystore**: Combine the certificate and private key into a PKCS12 keystore: + + ```bash + openssl pkcs12 -export -in mycert.crt -inkey mycert.key -out keystore.p12 -name mycert + ``` + +6. **Use the keystore**: Use the generated `keystore.p12` file as the value for `SERVER_SSL_KEY_STORE` in your Docker configuration. + +
+ + +## Deploy the collector service + +The collector service is delivered as a Docker image. Deployment can be done in one of two ways: + +### Option A: Using Docker Compose (recommended) + +Create a Docker Compose file that automates the download and deployment of the service. + +1. Create a `docker-compose.yml` file with the following content: + + ```yaml + version: '3.8' + + services: + nr-ghe-collector: + image: newrelic/nr-ghe-collector:latest + container_name: nr-ghe-collector + restart: unless-stopped + ports: + - "8080:8080" # HTTP port + - "8443:8443" # HTTPS port (when SSL is configured) + environment: + # Required environment variables + - NR_API_KEY=${NR_API_KEY} + - NR_LICENSE_KEY=${NR_LICENSE_KEY} + - GHE_BASE_URL=${GHE_BASE_URL} + - GITHUB_APP_ID=${GITHUB_APP_ID} + - GITHUB_APP_PRIVATE_KEY=${GITHUB_APP_PRIVATE_KEY} + - EVENT_SECRET=${EVENT_SECRET} + + # Optional SSL environment variables (uncomment and configure if using HTTPS) + # - SERVER_SSL_KEY_STORE=${SERVER_SSL_KEY_STORE} + # - SERVER_SSL_KEY_STORE_PASSWORD=${SERVER_SSL_KEY_STORE_PASSWORD} + # - SERVER_SSL_KEY_STORE_TYPE=${SERVER_SSL_KEY_STORE_TYPE} + # - SERVER_SSL_KEY_ALIAS=${SERVER_SSL_KEY_ALIAS} + # - SERVER_PORT=8443 + volumes: + # Uncomment the line below if using SSL keystore + # - /path/to/your/keystore.p12:/app/keystore.p12:ro + - collector-data:/app/data + networks: + - ghe-network -
+ volumes: + collector-data: - 4. After you view the Sync started message, click **Continue**. The **GitHub Enterprise Integration** screen will then display the count of teams and repositories, refreshing every 5 seconds. Allow a few minutes for the complete import of all data. + networks: + ghe-network: + driver: bridge + ``` -5. On the **GitHub Enterprise integration** screen: +2. Create a `.env` file in the same directory with your environment variables: - - Click **Go to Teams** to view the imported teams information on [Teams](/docs/service-architecture-intelligence/teams/teams). - - Click **Go to Repositories** to view the imported repositories information on [Catalogs](/docs/service-architecture-intelligence/catalogs/catalogs). + ```bash + # New Relic Configuration + NR_API_KEY=your_newrelic_api_key + NR_LICENSE_KEY=your_newrelic_license_key -**Assigning repositories to New Relic Teams** + # GitHub Enterprise Configuration + GHE_BASE_URL=https://your-ghe-server.com + GITHUB_APP_ID=your_github_app_id + GITHUB_APP_PRIVATE_KEY=your_base64_encoded_private_key + EVENT_SECRET=your_github_app_event_secret + + # SSL Configuration (uncomment if using HTTPS) + # SERVER_SSL_KEY_STORE=/app/keystore.p12 + # SERVER_SSL_KEY_STORE_PASSWORD=your_keystore_password + # SERVER_SSL_KEY_STORE_TYPE=PKCS12 + # SERVER_SSL_KEY_ALIAS=your_key_alias + ``` + +3. Run the following command to start the service: + + ```bash + docker-compose up -d + ``` + +### Option B: Direct Docker image run + +You can download the Docker image directly from our [Docker Hub registry](https://hub.docker.com/repository/docker/newrelic/nr-ghe-collector/general) and run it using your organization's preferred CI/CD pipeline or deployment method. + + + + +## Install the GitHub App + +After the collector service is running, you need to install the GitHub App on the specific organizations you want to integrate: + +1. Navigate to your GitHub Enterprise instance. +2. Go to **Settings** → **Developer Settings** → **GitHub Apps**. +3. Find the GitHub App you created in step 1 and click on it. +4. Click **Install App** in the left sidebar. +5. Select the organizations where you want to install the app. +6. Choose whether to install on all repositories or select specific repositories. +7. Click **Install** to complete the installation. + + + + +## Access New Relic UI + +Once the collector service is running and the GitHub App is installed on your GHE organization(s), complete the integration setup in New Relic: + +1. The corresponding GHE organizations will appear in the New Relic UI. +2. Click **First time sync** to start the initial data synchronization. +3. *(Optional)* Click **On-demand sync** to manually sync the data. + + + You can manually synchronize the data once every 4 hours. The **On-demand sync** button remains disabled if sync has occurred within the previous 4 hours. + + +4. After you view the Sync started message, click **Continue**. The **GitHub Enterprise Integration** screen will then display the count of teams and repositories, refreshing every 5 seconds. Allow a few minutes for the complete import of all data. + +### Viewing your data + +On the **GitHub Enterprise integration** screen: + +- Click **Go to Teams** to view the imported teams information on [Teams](/docs/service-architecture-intelligence/teams/teams). +- Click **Go to Repositories** to view the imported repositories information on [Catalogs](/docs/service-architecture-intelligence/catalogs/catalogs). + + + + +## Configure team assignments (optional) You can auto-assign GitHub repositories to their teams by adding `teamOwningRepo` as a custom property in GitHub Enterprise. @@ -210,7 +341,11 @@ Once this is set up, we'll automatically match each repo with its correct team. For more information on creating custom properties, refer to the [GitHub documentation](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). -**Uninstallation** + + + + +## Uninstallation To uninstall the GHE integration, you must: From 168cd73b90a79f630e13df8c319eb20607601839 Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Mon, 3 Nov 2025 21:08:07 +0530 Subject: [PATCH 12/14] review comments are addressed --- .../github-enterprise-integration.mdx | 217 ++++++++++++------ 1 file changed, 152 insertions(+), 65 deletions(-) diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx index 08692e985d4..c20633d8a1b 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx @@ -14,9 +14,10 @@ freshnessValidatedDate: never This feature is currently provided as part of a preview program pursuant to our [pre-release policies](/docs/licenses/license-information/referenced-policies/new-relic-pre-release-policy). -Are you looking to gain deeper insights into your service architecture by leveraging data from your on-premise GitHub Enterprise account? The New Relic GitHub Enterprise integration imports repositories, teams, and user data directly into the New Relic platform using a secure collector service deployed within your private network. +Are you looking to gain deeper insights into your service architecture by leveraging data from your on-premise GitHub Enterprise account? The New Relic GitHub Enterprise integration imports repositories, and teams directly into the New Relic platform using a secure collector service deployed within your private network. + +With the new selective data fetching feature, you can choose exactly which data types to import—whether it's teams, repositories and pull requests, or both. This integration aims to enhance the management and visibility of Teams, Catalogs and Scorecards within New Relic. For more information, refer to the Service Architecture Intelligence capability. -This integration streamlines the onboarding process for users and teams while simplifying role management. It also clarifies entity ownership mapping, reducing setup time and effort. Due to the restricted nature of GHE environments, integration is achieved via a local collector service deployed within your private network. This integration aims to enhance the management and visibility of [Catalogs](/docs/service-architecture-intelligence/catalogs/catalogs) and [Scorecards](/docs/service-architecture-intelligence/scorecards/getting-started) within New Relic. For more information, refer to the [Service Architecture Intelligence capability](/docs/service-architecture-intelligence/getting-started). **Prerequisites** @@ -34,27 +35,132 @@ In your GHE instance, navigate to **Settings → Developer Settings → GitHub A ### Configure permissions -Set the specific permissions required for the app to perform real-time and initial data syncs. For detailed guidance on GitHub App permissions, refer to the [GitHub documentation on setting permissions for GitHub Apps](https://docs.github.com/en/apps/creating-github-apps/setting-up-a-github-app/setting-permissions-for-github-apps). - -**Required Repository Permissions**: -- **Contents**: Read (to access repository files and content) -- **Metadata**: Read (to access basic repository information) -- **Issues**: Read (to access issue data) -- **Pull requests**: Read (to access pull request data) -- **Repository security advisories**: Read (to access security information) - -**Required Organization Permissions**: -- **Members**: Read (to access organization member information) -- **Organization administration**: Read (to access organization settings) -- **Team discussions**: Read (to access team information) +When integrating a GitHub application, it's essential to configure app permissions accurately to ensure seamless data fetching during the initial sync and efficient listening to webhook events thereafter. App permissions define the scope of access that the application has to various repository and organizational resources on GitHub. By tailoring these permissions, you can enhance security, ensuring that the application only accesses the necessary data while minimizing exposure. Proper configuration facilitates smooth initial data synchronization and reliable event handling, optimizing the application's integration with GitHub's ecosystem. + +For detailed guidance on GitHub App permissions, refer to the [GitHub documentation on setting permissions for GitHub Apps](https://docs.github.com/en/apps/creating-github-apps/setting-up-a-github-app/setting-permissions-for-github-apps). + +#### Required repository permissions + +Configure the following repository-level permissions exactly as shown to enable data synchronization: + +- **Administration**: Read-only ✓ +- **Checks**: Read-only ✓ +- **Commit statuses**: Selected ✓ +- **Contents**: Selected ✓ +- **Custom properties**: Selected ✓ +- **Deployments**: Read-only ✓ +- **Metadata**: Read-only (mandatory) ✓ +- **Pull requests**: Selected ✓ +- **Webhooks**: Read-only ✓ + +**Leave these permissions as "No access":** +- Actions +- Attestations +- Code scanning alerts +- Codespaces +- Codespaces lifecycle admin +- Codespaces metadata +- Codespaces secrets +- Dependabot alerts +- Dependabot secrets +- Discussions +- Environments +- Issues +- Merge queues +- Packages +- Pages +- Projects +- Repository security advisories +- Secret scanning alert dismissal requests +- Secret scanning alerts +- Secret scanning push protection bypass requests +- Secrets +- Single file +- Variables +- Workflows + +#### Required organization permissions + +Configure the following organization-level permissions exactly as shown: + +- **Administration**: Read-only ✓ +- **Custom organization roles**: Selected ✓ +- **Custom properties**: Selected ✓ +- **Custom repository roles**: Selected ✓ +- **Events**: Selected ✓ +- **Members**: Selected ✓ +- **Webhooks**: Selected ✓ + +**Leave these permissions as "No access":** +- Blocking users +- Organization announcement banners +- Organization codespaces +- Organization codespaces secrets +- Organization codespaces settings +- Organization dependabot secrets +- Organization hooks +- Organization packages +- Organization plan +- Organization projects +- Organization secrets +- Organization self hosted runners +- Plan +- Team discussions + +#### Required account permissions + +Enable account-level access for user identification: -**Required Account Permissions**: - **Email addresses**: Read (to access user email information) -**Subscribe to Events**: Enable the following webhook events for real-time synchronization: -- Repository events: `repository`, `push`, `pull_request`, `issues` -- Organization events: `organization`, `team`, `membership` -- Security events: `repository_vulnerability_alert`, `security_advisory` +#### Webhook event subscriptions + +Select the following webhook events exactly as shown for real-time synchronization and monitoring: + +**✓ Select these events:** +- `commit_comment` - Comments on commits +- `create` - Branch or tag creation +- `custom_property` - Custom property changes for team assignments +- `delete` - Branch or tag deletion +- `deployment` - Deployment activities +- `deployment_review` - Deployment review processes +- `deployment_status` - Deployment status updates +- `installation_target` - GitHub App installation changes +- `member` - Member profile changes +- `membership` - Member additions and removals +- `organization` - Organization-level changes +- `pull_request` - Pull request activities +- `pull_request_review` - Pull request review activities +- `pull_request_review_comment` - Review comment activities +- `push` - Code pushes and commits +- `repository` - Repository creation, deletion, and modifications +- `team` - Team creation and modifications +- `team_add` - Team member additions + +**Leave these events unselected:** +- `branch_protection_configuration` +- `check_run` +- `fork` +- `gollum` +- `issues` +- `label` +- `merge_queue_entry` +- `meta` +- `milestone` +- `public` +- `release` +- `repository_dispatch` +- `repository_ruleset` +- `security_and_analysis` +- `star` +- `status` +- `watch` +- `workflow_dispatch` +- `workflow_job` + + +**Security best practice**: Only enable the minimum permissions required for your integration needs. This reduces security exposure and follows the principle of least privilege access. + ### Set up webhooks @@ -67,23 +173,29 @@ Configure the Webhook URL and create a custom Event Secret for secure communicat **Example**: If your collector service is deployed at `collector.yourcompany.com`, the webhook URL would be: `https://collector.yourcompany.com:8443/webhook` -- **Event Secret**: Generate a secure random string (32+ characters) for webhook authentication. Save this value as you'll need it for the `EVENT_SECRET` environment variable. +- **Event Secret**: Generate a secure random string (32+ characters) for webhook authentication. Save this value as you'll need it for the `GITHUB_APP_WEBHOOK_SECRET` environment variable. ### Generate and convert keys 1. Upon creation, the app will generate a unique App ID and a Private Key file (.pem format). Save these securely as they will be needed for the collector service configuration. -2. Convert your downloaded private key file to Base64 format using the following command: +2. Convert your downloaded private key file to DER format and then encode it in Base64: + **Step 1: Convert .pem to DER format** + ```bash + openssl rsa -outform der -in private-key.pem -out output.der + ``` + + **Step 2: Encode the DER file in Base64** ```bash # For Linux/macOS - base64 your-private-key.pem + base64 -i output.der -o outputBase64 # For Windows (using PowerShell) - [Convert]::ToBase64String([IO.File]::ReadAllBytes("your-private-key.pem")) + [Convert]::ToBase64String([IO.File]::ReadAllBytes("output.der")) # Alternative for Windows (using certutil) - certutil -encode your-private-key.pem temp.b64 && findstr /v /c:- temp.b64 + certutil -encode output.der temp.b64 && findstr /v /c:- temp.b64 ``` Copy the resulting Base64 string and use it as the value for `GITHUB_APP_PRIVATE_KEY` environment variable in your collector configuration. @@ -132,7 +244,7 @@ Before deploying the collector service, gather the following information: The content of the private key (`.pem`) file, converted to a Base64 string. See step 1 for conversion instructions. - `EVENT_SECRET` + `GITHUB_APP_WEBHOOK_SECRET` GitHub App The custom Event Secret value you set when creating the GitHub App. @@ -222,20 +334,19 @@ Create a Docker Compose file that automates the download and deployment of the s services: nr-ghe-collector: - image: newrelic/nr-ghe-collector:latest + image: newrelic/nr-ghe-collector:tag # use latest tag available in dockerhub starting with v* container_name: nr-ghe-collector restart: unless-stopped ports: - - "8080:8080" # HTTP port - - "8443:8443" # HTTPS port (when SSL is configured) + - "8080:8080" # HTTP port, make 8443 in case of HTTPS environment: # Required environment variables - - NR_API_KEY=${NR_API_KEY} - - NR_LICENSE_KEY=${NR_LICENSE_KEY} - - GHE_BASE_URL=${GHE_BASE_URL} - - GITHUB_APP_ID=${GITHUB_APP_ID} - - GITHUB_APP_PRIVATE_KEY=${GITHUB_APP_PRIVATE_KEY} - - EVENT_SECRET=${EVENT_SECRET} + - NR_API_KEY=${NR_API_KEY:-DEFAULT_VALUE} + - NR_LICENSE_KEY=${NR_LICENSE_KEY:-DEFAULT_VALUE} + - GHE_BASE_URL=${GHE_BASE_URL:-DEFAULT_VALUE} + - GITHUB_APP_ID=${GITHUB_APP_ID:-DEFAULT_VALUE} + - GITHUB_APP_PRIVATE_KEY=${GITHUB_APP_PRIVATE_KEY:-DEFAULT_VALUE} + - GITHUB_APP_WEBHOOK_SECRET=${GITHUB_APP_WEBHOOK_SECRET:-DEFAULT_VALUE} # Optional SSL environment variables (uncomment and configure if using HTTPS) # - SERVER_SSL_KEY_STORE=${SERVER_SSL_KEY_STORE} @@ -243,40 +354,16 @@ Create a Docker Compose file that automates the download and deployment of the s # - SERVER_SSL_KEY_STORE_TYPE=${SERVER_SSL_KEY_STORE_TYPE} # - SERVER_SSL_KEY_ALIAS=${SERVER_SSL_KEY_ALIAS} # - SERVER_PORT=8443 - volumes: - # Uncomment the line below if using SSL keystore - # - /path/to/your/keystore.p12:/app/keystore.p12:ro - - collector-data:/app/data - networks: - - ghe-network - - volumes: - collector-data: + #volumes: # Uncomment the line below if using SSL keystore + # - ./keystore.p12:/app/keystore.p12 # path to your keystore file + network_mode: bridge networks: - ghe-network: + nr-network: driver: bridge ``` -2. Create a `.env` file in the same directory with your environment variables: - - ```bash - # New Relic Configuration - NR_API_KEY=your_newrelic_api_key - NR_LICENSE_KEY=your_newrelic_license_key - - # GitHub Enterprise Configuration - GHE_BASE_URL=https://your-ghe-server.com - GITHUB_APP_ID=your_github_app_id - GITHUB_APP_PRIVATE_KEY=your_base64_encoded_private_key - EVENT_SECRET=your_github_app_event_secret - - # SSL Configuration (uncomment if using HTTPS) - # SERVER_SSL_KEY_STORE=/app/keystore.p12 - # SERVER_SSL_KEY_STORE_PASSWORD=your_keystore_password - # SERVER_SSL_KEY_STORE_TYPE=PKCS12 - # SERVER_SSL_KEY_ALIAS=your_key_alias - ``` +2. Set your environment variables by replacing the `DEFAULT_VALUE` placeholders in the Docker Compose file with your actual values, or create environment variables on your system before running the command. 3. Run the following command to start the service: @@ -308,7 +395,7 @@ After the collector service is running, you need to install the GitHub App on th ## Access New Relic UI -Once the collector service is running and the GitHub App is installed on your GHE organization(s), complete the integration setup in New Relic: +Once the collector service is running and the GitHub App is installed on your GHE organization(s), complete the integration setup as instructed in the New Relic UI: 1. The corresponding GHE organizations will appear in the New Relic UI. 2. Click **First time sync** to start the initial data synchronization. From b2f48c4577ff3700ce6ab0ace6ba3c74e1a9f9b7 Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Mon, 3 Nov 2025 21:27:07 +0530 Subject: [PATCH 13/14] minor enhancements --- .../github-enterprise-integration.mdx | 280 +++++++++++------- 1 file changed, 165 insertions(+), 115 deletions(-) diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx index c20633d8a1b..dc16460f54a 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx @@ -14,15 +14,26 @@ freshnessValidatedDate: never This feature is currently provided as part of a preview program pursuant to our [pre-release policies](/docs/licenses/license-information/referenced-policies/new-relic-pre-release-policy). -Are you looking to gain deeper insights into your service architecture by leveraging data from your on-premise GitHub Enterprise account? The New Relic GitHub Enterprise integration imports repositories, and teams directly into the New Relic platform using a secure collector service deployed within your private network. +Are you looking to gain deeper insights into your service architecture by leveraging data from your on-premise GitHub Enterprise account? The New Relic GitHub Enterprise integration imports repositories and teams directly into the New Relic platform using a secure collector service deployed within your private network. -With the new selective data fetching feature, you can choose exactly which data types to import—whether it's teams, repositories and pull requests, or both. This integration aims to enhance the management and visibility of Teams, Catalogs and Scorecards within New Relic. For more information, refer to the Service Architecture Intelligence capability. +With the new selective data fetching feature, you can choose exactly which data types to import—whether it's teams, repositories and pull requests, or both. This integration aims to enhance the management and visibility of [Teams](/docs/service-architecture-intelligence/teams/teams), [Catalogs](/docs/service-architecture-intelligence/catalogs/catalogs), and [Scorecards](/docs/service-architecture-intelligence/scorecards/getting-started) within New Relic. For more information, refer to the [Service Architecture Intelligence capability](/docs/service-architecture-intelligence/getting-started). **Prerequisites** -* GitHub Enterprise on-premises account that you want to integrate with New Relic. -* Docker environment to run the collector service within your GHE network. +* GitHub Enterprise on-premises account with organization administrator privileges. +* Docker environment to run the collector service within your GitHub Enterprise network. +* New Relic account with appropriate permissions to create integrations. + +## Security considerations + +This integration follows security best practices: + +* Uses GitHub App authentication with minimal required permissions +* Webhook events are authenticated using secret keys +* All data transmission occurs over HTTPS +* No user credentials are stored or transmitted +* Only repositories and teams data are imported **To set up the GitHub Enterprise integration:** @@ -35,7 +46,7 @@ In your GHE instance, navigate to **Settings → Developer Settings → GitHub A ### Configure permissions -When integrating a GitHub application, it's essential to configure app permissions accurately to ensure seamless data fetching during the initial sync and efficient listening to webhook events thereafter. App permissions define the scope of access that the application has to various repository and organizational resources on GitHub. By tailoring these permissions, you can enhance security, ensuring that the application only accesses the necessary data while minimizing exposure. Proper configuration facilitates smooth initial data synchronization and reliable event handling, optimizing the application's integration with GitHub's ecosystem. +Configure app permissions accurately to ensure seamless data fetching during the initial sync and efficient listening to webhook events thereafter. App permissions define the scope of access that the application has to various repository and organizational resources on GitHub. By tailoring these permissions, you can enhance security, ensuring that the application only accesses the necessary data while minimizing exposure. Proper configuration facilitates smooth initial data synchronization and reliable event handling, optimizing the application's integration with GitHub's ecosystem. For detailed guidance on GitHub App permissions, refer to the [GitHub documentation on setting permissions for GitHub Apps](https://docs.github.com/en/apps/creating-github-apps/setting-up-a-github-app/setting-permissions-for-github-apps). @@ -43,120 +54,114 @@ For detailed guidance on GitHub App permissions, refer to the [GitHub documentat Configure the following repository-level permissions exactly as shown to enable data synchronization: -- **Administration**: Read-only ✓ -- **Checks**: Read-only ✓ -- **Commit statuses**: Selected ✓ -- **Contents**: Selected ✓ -- **Custom properties**: Selected ✓ -- **Deployments**: Read-only ✓ -- **Metadata**: Read-only (mandatory) ✓ -- **Pull requests**: Selected ✓ -- **Webhooks**: Read-only ✓ +* **Administration**: Read-only ✓ +* **Checks**: Read-only ✓ +* **Commit statuses**: Selected ✓ +* **Contents**: Selected ✓ +* **Custom properties**: Selected ✓ +* **Deployments**: Read-only ✓ +* **Metadata**: Read-only (mandatory) ✓ +* **Pull requests**: Selected ✓ +* **Webhooks**: Read-only ✓ **Leave these permissions as "No access":** -- Actions -- Attestations -- Code scanning alerts -- Codespaces -- Codespaces lifecycle admin -- Codespaces metadata -- Codespaces secrets -- Dependabot alerts -- Dependabot secrets -- Discussions -- Environments -- Issues -- Merge queues -- Packages -- Pages -- Projects -- Repository security advisories -- Secret scanning alert dismissal requests -- Secret scanning alerts -- Secret scanning push protection bypass requests -- Secrets -- Single file -- Variables -- Workflows +* Actions +* Attestations +* Code scanning alerts +* Codespaces +* Codespaces lifecycle admin +* Codespaces metadata +* Codespaces secrets +* Dependabot alerts +* Dependabot secrets +* Discussions +* Environments +* Issues +* Merge queues +* Packages +* Pages +* Projects +* Repository security advisories +* Secret scanning alert dismissal requests +* Secret scanning alerts +* Secret scanning push protection bypass requests +* Secrets +* Single file +* Variables +* Workflows #### Required organization permissions Configure the following organization-level permissions exactly as shown: -- **Administration**: Read-only ✓ -- **Custom organization roles**: Selected ✓ -- **Custom properties**: Selected ✓ -- **Custom repository roles**: Selected ✓ -- **Events**: Selected ✓ -- **Members**: Selected ✓ -- **Webhooks**: Selected ✓ +* **Administration**: Read-only ✓ +* **Custom organization roles**: Selected ✓ +* **Custom properties**: Selected ✓ +* **Custom repository roles**: Selected ✓ +* **Events**: Selected ✓ +* **Members**: Selected ✓ +* **Webhooks**: Selected ✓ **Leave these permissions as "No access":** -- Blocking users -- Organization announcement banners -- Organization codespaces -- Organization codespaces secrets -- Organization codespaces settings -- Organization dependabot secrets -- Organization hooks -- Organization packages -- Organization plan -- Organization projects -- Organization secrets -- Organization self hosted runners -- Plan -- Team discussions - -#### Required account permissions - -Enable account-level access for user identification: - -- **Email addresses**: Read (to access user email information) +* Blocking users +* Organization announcement banners +* Organization codespaces +* Organization codespaces secrets +* Organization codespaces settings +* Organization dependabot secrets +* Organization hooks +* Organization packages +* Organization plan +* Organization projects +* Organization secrets +* Organization self hosted runners +* Plan +* Team discussions #### Webhook event subscriptions Select the following webhook events exactly as shown for real-time synchronization and monitoring: **✓ Select these events:** -- `commit_comment` - Comments on commits -- `create` - Branch or tag creation -- `custom_property` - Custom property changes for team assignments -- `delete` - Branch or tag deletion -- `deployment` - Deployment activities -- `deployment_review` - Deployment review processes -- `deployment_status` - Deployment status updates -- `installation_target` - GitHub App installation changes -- `member` - Member profile changes -- `membership` - Member additions and removals -- `organization` - Organization-level changes -- `pull_request` - Pull request activities -- `pull_request_review` - Pull request review activities -- `pull_request_review_comment` - Review comment activities -- `push` - Code pushes and commits -- `repository` - Repository creation, deletion, and modifications -- `team` - Team creation and modifications -- `team_add` - Team member additions +* `commit_comment` - Comments on commits +* `create` - Branch or tag creation +* `custom_property` - Custom property changes for team assignments +* `delete` - Branch or tag deletion +* `deployment` - Deployment activities +* `deployment_review` - Deployment review processes +* `deployment_status` - Deployment status updates +* `installation_target` - GitHub App installation changes +* `member` - Member profile changes +* `membership` - Member additions and removals +* `organization` - Organization-level changes +* `pull_request` - Pull request activities +* `pull_request_review` - Pull request review activities +* `pull_request_review_comment` - Review comment activities +* `push` - Code pushes and commits +* `repository` - Repository creation, deletion, and modifications +* `team` - Team creation and modifications +* `team_add` - Team member additions **Leave these events unselected:** -- `branch_protection_configuration` -- `check_run` -- `fork` -- `gollum` -- `issues` -- `label` -- `merge_queue_entry` -- `meta` -- `milestone` -- `public` -- `release` -- `repository_dispatch` -- `repository_ruleset` -- `security_and_analysis` -- `star` -- `status` -- `watch` -- `workflow_dispatch` -- `workflow_job` +* `branch_protection_configuration` +* `check_run` +* `fork` +* `gollum` +* `issues` +* `label` +* `merge_queue_entry` +* `meta` +* `milestone` +* `public` +* `release` +* `repository_dispatch` +* `repository_ruleset` +* `security_and_analysis` +* `star` +* `status` +* `watch` +* `workflow_dispatch` +* `workflow_job` **Security best practice**: Only enable the minimum permissions required for your integration needs. This reduces security exposure and follows the principle of least privilege access. @@ -166,14 +171,14 @@ Select the following webhook events exactly as shown for real-time synchronizati Configure the Webhook URL and create a custom Event Secret for secure communication: -- **Webhook URL**: Use the following format based on your collector service deployment: - - For HTTP: `http://your-collector-host:8080/webhook` - - For HTTPS: `https://your-collector-host:8443/webhook` +* **Webhook URL**: Use the following format based on your collector service deployment: + * For HTTP: `http://your-collector-host:8080/webhook` + * For HTTPS: `https://your-collector-host:8443/webhook` **Example**: If your collector service is deployed at `collector.yourcompany.com`, the webhook URL would be: `https://collector.yourcompany.com:8443/webhook` -- **Event Secret**: Generate a secure random string (32+ characters) for webhook authentication. Save this value as you'll need it for the `GITHUB_APP_WEBHOOK_SECRET` environment variable. +* **Event Secret**: Generate a secure random string (32+ characters) for webhook authentication. Save this value as you'll need it for the `GITHUB_APP_WEBHOOK_SECRET` environment variable. ### Generate and convert keys @@ -190,6 +195,7 @@ Configure the Webhook URL and create a custom Event Secret for secure communicat ```bash # For Linux/macOS base64 -i output.der -o outputBase64 + cat outputBase64 # Copy this output # For Windows (using PowerShell) [Convert]::ToBase64String([IO.File]::ReadAllBytes("output.der")) @@ -200,6 +206,11 @@ Configure the Webhook URL and create a custom Event Secret for secure communicat Copy the resulting Base64 string and use it as the value for `GITHUB_APP_PRIVATE_KEY` environment variable in your collector configuration. +**✓ Success indicators:** +* GitHub App shows "Installed" status in your GitHub Enterprise instance +* App ID and private key are securely saved +* Webhook URL is configured and accessible + @@ -330,7 +341,7 @@ Create a Docker Compose file that automates the download and deployment of the s 1. Create a `docker-compose.yml` file with the following content: ```yaml - version: '3.8' + version: '3.9' services: nr-ghe-collector: @@ -365,6 +376,10 @@ Create a Docker Compose file that automates the download and deployment of the s 2. Set your environment variables by replacing the `DEFAULT_VALUE` placeholders in the Docker Compose file with your actual values, or create environment variables on your system before running the command. + +Never commit environment files containing secrets to version control. Use secure secret management practices in production. + + 3. Run the following command to start the service: ```bash @@ -375,10 +390,15 @@ Create a Docker Compose file that automates the download and deployment of the s You can download the Docker image directly from our [Docker Hub registry](https://hub.docker.com/repository/docker/newrelic/nr-ghe-collector/general) and run it using your organization's preferred CI/CD pipeline or deployment method. +**✓ Success indicators:** +* Collector service is running and accessible on the configured port +* Docker container logs show successful startup without errors +* Service responds to health checks (if configured) + -## Install the GitHub App +## Install the GitHub App on organizations After the collector service is running, you need to install the GitHub App on the specific organizations you want to integrate: @@ -390,10 +410,15 @@ After the collector service is running, you need to install the GitHub App on th 6. Choose whether to install on all repositories or select specific repositories. 7. Click **Install** to complete the installation. +**✓ Success indicators:** +* GitHub App shows "Installed" status for selected organizations +* Webhook deliveries appear in the GitHub App settings +* No authentication errors in the collector service logs + -## Access New Relic UI +## Complete integration setup in New Relic UI Once the collector service is running and the GitHub App is installed on your GHE organization(s), complete the integration setup as instructed in the New Relic UI: @@ -405,14 +430,14 @@ Once the collector service is running and the GitHub App is installed on your GH You can manually synchronize the data once every 4 hours. The **On-demand sync** button remains disabled if sync has occurred within the previous 4 hours. -4. After you view the Sync started message, click **Continue**. The **GitHub Enterprise Integration** screen will then display the count of teams and repositories, refreshing every 5 seconds. Allow a few minutes for the complete import of all data. +4. After you view the Sync started message, click **Continue**. The **GitHub Enterprise Integration** screen displays the count of teams and repositories, refreshing every 5 seconds. Allow 15-30 minutes for the complete import of all data (timing depends on repository count). ### Viewing your data On the **GitHub Enterprise integration** screen: -- Click **Go to Teams** to view the imported teams information on [Teams](/docs/service-architecture-intelligence/teams/teams). -- Click **Go to Repositories** to view the imported repositories information on [Catalogs](/docs/service-architecture-intelligence/catalogs/catalogs). +* Click **Go to Teams** to view the imported teams information on [Teams](/docs/service-architecture-intelligence/teams/teams). +* Click **Go to Repositories** to view the imported repositories information on [Catalogs](/docs/service-architecture-intelligence/catalogs/catalogs). @@ -424,7 +449,7 @@ You can auto-assign GitHub repositories to their teams by adding `teamOwningRepo 1. Create the custom property at the organization level and assign a value for the custom property at the repository level. Additionally, you can set up a custom property for multiple repositories at the organization level simultaneously. 2. Then, in New Relic Teams, enable the [Automated Ownership](/docs/service-architecture-intelligence/teams/manage-teams/#assign-ownership) feature, making sure to use `team` as the tag key. -Once this is set up, we'll automatically match each repo with its correct team. +Once this is set up, New Relic automatically matches each repo with its correct team. For more information on creating custom properties, refer to the [GitHub documentation](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). @@ -432,12 +457,37 @@ For more information on creating custom properties, refer to the [GitHub documen +## Troubleshooting + +### Common issues and solutions + +**Webhook delivery failures:** +* Verify the collector service is running and accessible from GitHub Enterprise +* Check firewall settings and network connectivity +* Confirm webhook URL uses the correct port (8080 for HTTP, 8443 for HTTPS) + +**Authentication errors:** +* Verify the GitHub App ID and private key are correctly configured +* Ensure the private key is properly converted to DER format and Base64 encoded +* Check that the webhook secret matches between GitHub App and collector configuration + +**Sync failures:** +* Verify the GitHub App has the required permissions +* Check that the app is installed on the correct organizations +* Review collector service logs for specific error messages + +**Network connectivity issues:** +* Ensure the collector service can reach your GitHub Enterprise instance +* Verify SSL certificates are properly configured if using HTTPS +* Check DNS resolution for your GitHub Enterprise domain + ## Uninstallation -To uninstall the GHE integration, you must: +To uninstall the GitHub Enterprise integration: 1. Navigate to your GitHub Enterprise UI. 2. Go to the organization's settings where the app is installed. -3. Uninstall the GitHub App directly from the GHE interface. This action will trigger the backend process to cease data collection. +3. Uninstall the GitHub App directly from the GitHub Enterprise interface. This action will trigger the backend process to cease data collection. +4. Stop and remove the collector service from your Docker environment. From f1ea8befa4f81a8b83c3e5517d44c773bc9b99ea Mon Sep 17 00:00:00 2001 From: cbehera-newrelic Date: Tue, 11 Nov 2025 12:27:02 +0530 Subject: [PATCH 14/14] Review comments are incorporated --- .../github-enterprise-integration.mdx | 96 ++++--------------- 1 file changed, 21 insertions(+), 75 deletions(-) diff --git a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx index dc16460f54a..c6443b71c16 100644 --- a/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx +++ b/src/content/docs/service-architecture-intelligence/github-integrations/github-enterprise-integration.mdx @@ -48,7 +48,7 @@ In your GHE instance, navigate to **Settings → Developer Settings → GitHub A Configure app permissions accurately to ensure seamless data fetching during the initial sync and efficient listening to webhook events thereafter. App permissions define the scope of access that the application has to various repository and organizational resources on GitHub. By tailoring these permissions, you can enhance security, ensuring that the application only accesses the necessary data while minimizing exposure. Proper configuration facilitates smooth initial data synchronization and reliable event handling, optimizing the application's integration with GitHub's ecosystem. -For detailed guidance on GitHub App permissions, refer to the [GitHub documentation on setting permissions for GitHub Apps](https://docs.github.com/en/apps/creating-github-apps/setting-up-a-github-app/setting-permissions-for-github-apps). +For detailed guidance on GitHub App permissions, refer to the [GitHub documentation on setting permissions for GitHub Apps](https://docs.github.com/en/apps/creating-github-apps/registering-a-github-app/choosing-permissions-for-a-github-app). #### Required repository permissions @@ -64,59 +64,19 @@ Configure the following repository-level permissions exactly as shown to enable * **Pull requests**: Selected ✓ * **Webhooks**: Read-only ✓ -**Leave these permissions as "No access":** -* Actions -* Attestations -* Code scanning alerts -* Codespaces -* Codespaces lifecycle admin -* Codespaces metadata -* Codespaces secrets -* Dependabot alerts -* Dependabot secrets -* Discussions -* Environments -* Issues -* Merge queues -* Packages -* Pages -* Projects -* Repository security advisories -* Secret scanning alert dismissal requests -* Secret scanning alerts -* Secret scanning push protection bypass requests -* Secrets -* Single file -* Variables -* Workflows #### Required organization permissions Configure the following organization-level permissions exactly as shown: * **Administration**: Read-only ✓ -* **Custom organization roles**: Selected ✓ -* **Custom properties**: Selected ✓ -* **Custom repository roles**: Selected ✓ -* **Events**: Selected ✓ -* **Members**: Selected ✓ -* **Webhooks**: Selected ✓ - -**Leave these permissions as "No access":** -* Blocking users -* Organization announcement banners -* Organization codespaces -* Organization codespaces secrets -* Organization codespaces settings -* Organization dependabot secrets -* Organization hooks -* Organization packages -* Organization plan -* Organization projects -* Organization secrets -* Organization self hosted runners -* Plan -* Team discussions +* **Custom organization roles**: Read-only ✓ +* **Custom properties**: Read-only ✓ +* **Custom repository roles**: Read-only ✓ +* **Events**: Read-only ✓ +* **Members**: Read-only ✓ +* **Webhooks**: Read-only ✓ + #### Webhook event subscriptions @@ -130,7 +90,12 @@ Select the following webhook events exactly as shown for real-time synchronizati * `deployment` - Deployment activities * `deployment_review` - Deployment review processes * `deployment_status` - Deployment status updates +* `discussion` - Discussion activities +* `discussion_comment` - Comments on discussions +* `installation` - GitHub App installation events +* `installation_repositories` - Repository access changes for installations * `installation_target` - GitHub App installation changes +* `issue_comment` - Comments on issues * `member` - Member profile changes * `membership` - Member additions and removals * `organization` - Organization-level changes @@ -142,26 +107,6 @@ Select the following webhook events exactly as shown for real-time synchronizati * `team` - Team creation and modifications * `team_add` - Team member additions -**Leave these events unselected:** -* `branch_protection_configuration` -* `check_run` -* `fork` -* `gollum` -* `issues` -* `label` -* `merge_queue_entry` -* `meta` -* `milestone` -* `public` -* `release` -* `repository_dispatch` -* `repository_ruleset` -* `security_and_analysis` -* `star` -* `status` -* `watch` -* `workflow_dispatch` -* `workflow_job` **Security best practice**: Only enable the minimum permissions required for your integration needs. This reduces security exposure and follows the principle of least privilege access. @@ -172,17 +117,17 @@ Select the following webhook events exactly as shown for real-time synchronizati Configure the Webhook URL and create a custom Event Secret for secure communication: * **Webhook URL**: Use the following format based on your collector service deployment: - * For HTTP: `http://your-collector-host:8080/webhook` - * For HTTPS: `https://your-collector-host:8443/webhook` + * For HTTP: `http://your-domain-name/github/sync/webhook` + * For HTTPS: `https://your-domain-name/github/sync/webhook` **Example**: If your collector service is deployed at `collector.yourcompany.com`, the webhook URL would be: - `https://collector.yourcompany.com:8443/webhook` + `https://collector.yourcompany.com/github/sync/webhook` * **Event Secret**: Generate a secure random string (32+ characters) for webhook authentication. Save this value as you'll need it for the `GITHUB_APP_WEBHOOK_SECRET` environment variable. ### Generate and convert keys -1. Upon creation, the app will generate a unique App ID and a Private Key file (.pem format). Save these securely as they will be needed for the collector service configuration. +1. Upon creation, the app will generate a unique App ID and a Private Key file (.pem format). Save these securely as they will be needed for the collector service configuration. Note that the customer needs to create a private key for the app, which will be generated automatically during this process. 2. Convert your downloaded private key file to DER format and then encode it in Base64: @@ -207,7 +152,7 @@ Configure the Webhook URL and create a custom Event Secret for secure communicat Copy the resulting Base64 string and use it as the value for `GITHUB_APP_PRIVATE_KEY` environment variable in your collector configuration. **✓ Success indicators:** -* GitHub App shows "Installed" status in your GitHub Enterprise instance +* Github app is created successfully * App ID and private key are securely saved * Webhook URL is configured and accessible @@ -388,7 +333,7 @@ Never commit environment files containing secrets to version control. Use secure ### Option B: Direct Docker image run -You can download the Docker image directly from our [Docker Hub registry](https://hub.docker.com/repository/docker/newrelic/nr-ghe-collector/general) and run it using your organization's preferred CI/CD pipeline or deployment method. +You can download the Docker image directly from our [Docker Hub registry](https://hub.docker.com/repository/docker/newrelic/nr-ghe-collector/general) and run it using your organization's preferred CI/CD pipeline or deployment method. Note that the customer needs to pass all the environment variables listed above while starting the collector service. **✓ Success indicators:** * Collector service is running and accessible on the configured port @@ -432,6 +377,8 @@ Once the collector service is running and the GitHub App is installed on your GH 4. After you view the Sync started message, click **Continue**. The **GitHub Enterprise Integration** screen displays the count of teams and repositories, refreshing every 5 seconds. Allow 15-30 minutes for the complete import of all data (timing depends on repository count). +{/* TODO: Add screenshot of the New Relic Dashboard UI showing the GitHub Enterprise Integration screen */} + ### Viewing your data On the **GitHub Enterprise integration** screen: @@ -464,7 +411,6 @@ For more information on creating custom properties, refer to the [GitHub documen **Webhook delivery failures:** * Verify the collector service is running and accessible from GitHub Enterprise * Check firewall settings and network connectivity -* Confirm webhook URL uses the correct port (8080 for HTTP, 8443 for HTTPS) **Authentication errors:** * Verify the GitHub App ID and private key are correctly configured