diff --git a/admin/authentication/authentication-tokens/org-tokens.rst b/admin/authentication/authentication-tokens/org-tokens.rst
index dbc952968..44d589bf0 100644
--- a/admin/authentication/authentication-tokens/org-tokens.rst
+++ b/admin/authentication/authentication-tokens/org-tokens.rst
@@ -201,8 +201,6 @@ To finish creating the token, select an expiration date for the token.
* :menuselection:`Only admins can receive alert`: Only admins receive an alert when the token is close to its expiration date.
* :menuselection:`Admins and users or teams with token permissions can receive alert`: Admins and any users with token permissions receive an alert when the token is close to its expiration date.
-
-#. (Optional) Set a time for when Splunk Observability Cloud sends an expiration alert. For example, a value of 7 days means Splunk Observability Cloud will send an alert 7 days before the token expires.
#. Select :guilabel:`Create` to finish creating the new token.
.. _access-token-rotate:
@@ -299,4 +297,4 @@ To change limits for your access tokens, including host and container limits, fo
#. Select the token actions menu (|verticaldots|), and select :guilabel:`Manage limits`.
#. In the :guilabel:`Manage limits` menu, add the new token limits.
-To learn more about token limits, see :ref:`admin-manage-usage`.
\ No newline at end of file
+To learn more about token limits, see :ref:`admin-manage-usage`.
diff --git a/gdi/get-data-in/application/java/java-otel-requirements.rst b/gdi/get-data-in/application/java/java-otel-requirements.rst
index 395f76862..447629376 100644
--- a/gdi/get-data-in/application/java/java-otel-requirements.rst
+++ b/gdi/get-data-in/application/java/java-otel-requirements.rst
@@ -45,15 +45,14 @@ Supported libraries and frameworks
The Splunk Distribution of OpenTelemetry Java instruments numerous libraries, frameworks, and application servers.
+.. note:: To deactivate specific instrumentations, see :ref:`java-instrumentation-issues`.
+
.. raw:: html
For a complete list of supported libraries and frameworks, see :new-page:`Supported libraries ` in the OpenTelemetry documentation.
-.. note:: To deactivate specific instrumentations, see :ref:`java-instrumentation-issues`.
-
-
.. _java-otel-connector-requirement:
Install and configure the Splunk Distribution of OpenTelemetry Collector
diff --git a/gdi/get-data-in/connect/aws/aws-prereqs.rst b/gdi/get-data-in/connect/aws/aws-prereqs.rst
index fe8d58ec2..47cf10717 100644
--- a/gdi/get-data-in/connect/aws/aws-prereqs.rst
+++ b/gdi/get-data-in/connect/aws/aws-prereqs.rst
@@ -218,6 +218,8 @@ On top of the required permissions, you also need to include the specific permis
These are these permissions to allow Splunk Observability Cloud to collect AWS tags and properties:
+- ``"acm:DescribeCertificate"``
+- ``"acm:ListCertificates"``
- ``"airflow:ListEnvironments"``
- ``"airflow:GetEnvironment"``
- ``"apigateway:GET"``
diff --git a/gdi/monitors-monitoring/cadvisor.rst b/gdi/monitors-monitoring/cadvisor.rst
index a5b0b587d..a863f29e5 100644
--- a/gdi/monitors-monitoring/cadvisor.rst
+++ b/gdi/monitors-monitoring/cadvisor.rst
@@ -8,28 +8,50 @@ cAdvisor
The Splunk Distribution of OpenTelemetry Collector uses the Smart Agent receiver with the
cAdvisor monitor type to pull metrics directly from cAdvisor. By
-default, it runs on port 4194, but it can be configured to any other
-port.
+default, it runs on port 4193, but it can be configured to any other
+port.
+
+This integration is available on Kubernetes, Linux, and Windows.
+
+cAdvisor with Kubernetes
+------------------------
If you are using Kubernetes, consider the
:ref:`kubelet-stats-receiver` because many Kubernetes nodes do not
expose cAdvisor on a network port, even though they are running it
within Kubelet.
+If you are using Kubernetes, consider the Kubelet stats receiver
+because many Kubernetes nodes do not expose cAdvisor on a network port,
+even though they are running it within Kubelet.
+
+In some managed Kubernetes environments, such as Amazon EKS, you cannot
+directly access cAdvisor metrics due to the cluster provider's
+security and control design. For example, in Amazon EKS,
+the ``kubeletstats`` receiver cannot directly collect cAdvisor metrics.
+This constraint is specific to managed environments and is not a restriction
+of the Splunk Distribution of OpenTelemetry Collector.
+
+You can, however, indirectly collect cAdvisor metrics exposed through
+the Kubernetes proxy metric server using a receiver with the required configuration.
+We recommend using the :ref:`Prometheus receiver `
+to scrape metrics from the proxy metric server.
+
+
+cAdvisor with Docker
+---------------------
+
If you are running containers with Docker, retrieved metrics might
-overlap with ``docker-container-stats``\ '. Consider not enabling the
+overlap with ``docker-container-stats``. Consider not enabling the
Docker monitor in a Kubernetes environment, or else use filtering to
allow only certain metrics. This will cause the built-in Docker
dashboards to be blank, but container metrics will be available on the
Kubernetes dashboards instead.
-This integration is available on Kubernetes, Linux, and Windows.
Benefits
--------
-
-
.. raw:: html
@@ -41,13 +63,9 @@ Benefits
-
-
Installation
------------
-
-
.. raw:: html
@@ -59,13 +77,9 @@ Installation
-
-
Configuration
-------------
-
-
.. raw:: html
@@ -77,10 +91,11 @@ Configuration
+Examples
+^^^^^^^^
-
-Example
-~~~~~~~
+Activate integration
+####################
To activate this integration, add the following to your Collector
configuration:
@@ -102,8 +117,60 @@ section of your configuration file:
metrics:
receivers: [smartagent/cadvisor]
+.. _prometheus_receiver:
+
+Prometheus receiver
+###################
+
+The following example shows how to configure a Prometheus receiver
+to scrape cAdvisor metrics securely from Kubernetes nodes using TLS and authorization
+credentials.
+
+.. code:: yaml
+
+ agent:
+ config:
+ receivers:
+ prometheus/cadvisor:
+ config:
+ scrape_configs:
+ - job_name: cadvisor
+ tls_config:
+ ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
+ authorization:
+ credentials_file: /var/run/secrets/kubernetes.io/serviceaccount/token
+ scheme: https
+ kubernetes_sd_configs:
+ - role: node
+ relabel_configs:
+ - replacement: 'kubernetes.default.svc.cluster.local:443'
+ target_label: __address__
+ - regex: (.+)
+ replacement: '/api/v1/nodes/$${1}/proxy/metrics/cadvisor'
+ source_labels:
+ - __meta_kubernetes_node_name
+ target_label: __metrics_path__
+ service:
+ pipelines:
+ metrics:
+ exporters:
+ - signalfx
+ processors:
+ - memory_limiter
+ - batch
+ - resourcedetection
+ - resource
+ receivers:
+ - hostmetrics
+ - kubeletstats
+ - otlp
+ - prometheus/cadvisor
+ - receiver_creator
+ - signalfx
+
+
Configuration settings
-~~~~~~~~~~~~~~~~~~~~~~
+^^^^^^^^^^^^^^^^^^^^^^
The following table shows the configuration options for this receiver:
@@ -135,9 +202,7 @@ The following metrics are available for this integration:
Notes
-~~~~~
-
-
+^^^^^
.. raw:: html
@@ -155,8 +220,6 @@ Notes
Troubleshooting
---------------
-
-
.. raw:: html
diff --git a/gdi/opentelemetry/components/http-forwarder-extension.rst b/gdi/opentelemetry/components/http-forwarder-extension.rst
index b7fbe77b6..a3f75c143 100644
--- a/gdi/opentelemetry/components/http-forwarder-extension.rst
+++ b/gdi/opentelemetry/components/http-forwarder-extension.rst
@@ -9,3 +9,5 @@ HTTP forwarder extension
The Splunk Distribution of the OpenTelemetry Collector supports the HTTP forwarder extension. Documentation is planned for a future release.
+Splunk Observability Cloud uses OpenTelemetry to correlate telemetry types. To do this, your telemetry field names or metadata key names must exactly match the metadata key names used by both OpenTelemetry and Splunk Observability Cloud. To ensure your metadata key names are correctly named, see :ref:`relatedcontent-collector`.
+
diff --git a/gdi/opentelemetry/components/otlphttp-exporter.rst b/gdi/opentelemetry/components/otlphttp-exporter.rst
index bb0a262c0..ee5595810 100644
--- a/gdi/opentelemetry/components/otlphttp-exporter.rst
+++ b/gdi/opentelemetry/components/otlphttp-exporter.rst
@@ -46,7 +46,7 @@ The following settings are optional and can be added to the configuration for mo
* ``logs_endpoint``. The target URL to send log data to. For example, ``https://example.com:4318/v1/logs``.
-* ``metrics_endpoint``. The target URL to send metric data to. For example, ``"https://ingest.us0.signalfx.com/v2/trace/otlp"`` to send metrics to Splunk Observability Cloud.
+* ``metrics_endpoint``. The target URL to send metric data to. For example, ``"https://ingest..signalfx.com/v2/datapoint/otlp"`` to send metrics to Splunk Observability Cloud.
* ``tls``. See :ref:`TLS Configuration Settings ` in this document for the full set of available options. Only applicable for sending data to a custom endpoint.
@@ -67,6 +67,8 @@ To send traces and metrics to Splunk Observability Cloud using OTLP over HTTP, c
otlphttp:
# The target URL to send trace data to. By default it's set to ``https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace/otlp``.
traces_endpoint: https://ingest..signalfx.com/v2/trace/otlp
+ # The target URL to send metrics data to. By default it's set to ``https://ingest.${SPLUNK_REALM}.signalfx.com/v2/datapoint/otlp``.
+ metrics_endpoint: https://ingest..signalfx.com/v2/datapoint/otlp
# Set of HTTP headers added to every request.
headers:
# X-SF-Token is the authentication token provided by Splunk Observability Cloud.
@@ -92,8 +94,8 @@ This is a detailed configuration example:
.. code-block:: yaml
endpoint: "https://1.2.3.4:1234"
- traces_endpoint: https://ingest.us0.signalfx.com/v2/trace/otlp
- metrics_endpoint: https://ingest.us0.signalfx.com/v2/datapoint/otlp
+ traces_endpoint: https://ingest..signalfx.com/v2/trace/otlp
+ metrics_endpoint: https://ingest..signalfx.com/v2/datapoint/otlp
headers:
X-SF-Token:
timeout: 10s
@@ -160,8 +162,8 @@ For example:
exporters:
otlphttp:
- metrics_endpoint: https://ingest.lab0.signalfx.com/v2/datapoint/otlp
- traces_endpoint: https://ingest.lab0.signalfx.com/v2/trace/otlp
+ metrics_endpoint: https://ingest..signalfx.com/v2/datapoint/otlp
+ traces_endpoint: https://ingest..signalfx.com/v2/trace/otlp
headers:
"X-SF-Token": "mytoken"
auth:
diff --git a/locales/ja_JA/LC_MESSAGES/_includes.mo b/locales/ja_JA/LC_MESSAGES/_includes.mo
index 0f58a712a..aea124796 100644
Binary files a/locales/ja_JA/LC_MESSAGES/_includes.mo and b/locales/ja_JA/LC_MESSAGES/_includes.mo differ
diff --git a/locales/ja_JA/LC_MESSAGES/_includes.po b/locales/ja_JA/LC_MESSAGES/_includes.po
index 21f6c6fee..67506e9e8 100644
--- a/locales/ja_JA/LC_MESSAGES/_includes.po
+++ b/locales/ja_JA/LC_MESSAGES/_includes.po
@@ -1,4 +1,3 @@
-# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023 Splunk, Inc
# This file is distributed under the same license as the Splunk package.
# FIRST AUTHOR , 2023.
@@ -7,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Splunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-01-29 18:45+0000\n"
-"PO-Revision-Date: 2025-02-27 12:03+0000\n"
+"POT-Creation-Date: 2025-03-13 09:38+0000\n"
+"PO-Revision-Date: 2025-04-10 14:13+0100\n"
"Last-Translator: \n"
"Language-Team: ja_JA \n"
"Language: ja_JA\n"
@@ -16,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
-"X-Generator: Poedit 3.5\n"
+"X-Generator: Poedit 3.6\n"
#: ../../_includes/activate-deactivate-native-metrics.rst:2
msgid "Activate or deactivate specific metrics"
@@ -50,28 +49,28 @@ msgstr "ホストベースのプランの場合、このドキュメントでア
msgid "Learn more at :ref:`monitor-imm-billing-usage`."
msgstr "詳しくは :ref:`monitor-imm-billing-usage` を参照してください。"
-#: ../../_includes/admin/roles_alerts_detectors.rst:7 ../../_includes/admin/roles_apm.rst:5 ../../_includes/admin/roles_dashbds_only.rst:6 ../../_includes/admin/roles_data_configuration.rst:5 ../../_includes/admin/roles_help_support.rst:6 ../../_includes/admin/roles_log_observer.rst:7 ../../_includes/admin/roles_mpm.rst:7 ../../_includes/admin/roles_navigation.rst:7 ../../_includes/admin/roles_navs_dashbds.rst:6
-#: ../../_includes/admin/rum-roles-caps.rst:5 ../../_includes/admin/synth-roles-caps.rst:5
+#: ../../_includes/admin/roles_alerts_detectors.rst:7 ../../_includes/admin/roles_apm.rst:5 ../../_includes/admin/roles_dashbds_only.rst:6 ../../_includes/admin/roles_data_configuration.rst:5 ../../_includes/admin/roles_help_support.rst:6 ../../_includes/admin/roles_log_observer.rst:7 ../../_includes/admin/roles_mpm.rst:7
+#: ../../_includes/admin/roles_navigation.rst:7 ../../_includes/admin/roles_navs_dashbds.rst:6 ../../_includes/admin/rum-roles-caps.rst:5 ../../_includes/admin/synth-roles-caps.rst:5
msgid ":strong:`Permission`"
msgstr ":strong:`権限`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:8 ../../_includes/admin/roles_apm.rst:6 ../../_includes/admin/roles_dashbds_only.rst:7 ../../_includes/admin/roles_data_configuration.rst:6 ../../_includes/admin/roles_help_support.rst:7 ../../_includes/admin/roles_log_observer.rst:8 ../../_includes/admin/roles_mpm.rst:8 ../../_includes/admin/roles_navigation.rst:8 ../../_includes/admin/roles_navs_dashbds.rst:7
-#: ../../_includes/admin/rum-roles-caps.rst:6 ../../_includes/admin/synth-roles-caps.rst:6
+#: ../../_includes/admin/roles_alerts_detectors.rst:8 ../../_includes/admin/roles_apm.rst:6 ../../_includes/admin/roles_dashbds_only.rst:7 ../../_includes/admin/roles_data_configuration.rst:6 ../../_includes/admin/roles_help_support.rst:7 ../../_includes/admin/roles_log_observer.rst:8 ../../_includes/admin/roles_mpm.rst:8
+#: ../../_includes/admin/roles_navigation.rst:8 ../../_includes/admin/roles_navs_dashbds.rst:7 ../../_includes/admin/rum-roles-caps.rst:6 ../../_includes/admin/synth-roles-caps.rst:6
msgid ":strong:`admin`"
msgstr ":strong:`admin`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:9 ../../_includes/admin/roles_apm.rst:7 ../../_includes/admin/roles_dashbds_only.rst:8 ../../_includes/admin/roles_data_configuration.rst:7 ../../_includes/admin/roles_help_support.rst:8 ../../_includes/admin/roles_log_observer.rst:9 ../../_includes/admin/roles_mpm.rst:9 ../../_includes/admin/roles_navigation.rst:9 ../../_includes/admin/roles_navs_dashbds.rst:8
-#: ../../_includes/admin/rum-roles-caps.rst:7 ../../_includes/admin/synth-roles-caps.rst:7
+#: ../../_includes/admin/roles_alerts_detectors.rst:9 ../../_includes/admin/roles_apm.rst:7 ../../_includes/admin/roles_dashbds_only.rst:8 ../../_includes/admin/roles_data_configuration.rst:7 ../../_includes/admin/roles_help_support.rst:8 ../../_includes/admin/roles_log_observer.rst:9 ../../_includes/admin/roles_mpm.rst:9
+#: ../../_includes/admin/roles_navigation.rst:9 ../../_includes/admin/roles_navs_dashbds.rst:8 ../../_includes/admin/rum-roles-caps.rst:7 ../../_includes/admin/synth-roles-caps.rst:7
msgid ":strong:`power`"
msgstr ":strong:`power`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:10 ../../_includes/admin/roles_apm.rst:8 ../../_includes/admin/roles_dashbds_only.rst:9 ../../_includes/admin/roles_data_configuration.rst:8 ../../_includes/admin/roles_help_support.rst:9 ../../_includes/admin/roles_log_observer.rst:10 ../../_includes/admin/roles_mpm.rst:10 ../../_includes/admin/roles_navigation.rst:10 ../../_includes/admin/roles_navs_dashbds.rst:9
-#: ../../_includes/admin/rum-roles-caps.rst:8 ../../_includes/admin/synth-roles-caps.rst:8
+#: ../../_includes/admin/roles_alerts_detectors.rst:10 ../../_includes/admin/roles_apm.rst:8 ../../_includes/admin/roles_dashbds_only.rst:9 ../../_includes/admin/roles_data_configuration.rst:8 ../../_includes/admin/roles_help_support.rst:9 ../../_includes/admin/roles_log_observer.rst:10 ../../_includes/admin/roles_mpm.rst:10
+#: ../../_includes/admin/roles_navigation.rst:10 ../../_includes/admin/roles_navs_dashbds.rst:9 ../../_includes/admin/rum-roles-caps.rst:8 ../../_includes/admin/synth-roles-caps.rst:8
msgid ":strong:`usage`"
msgstr ":strong:`usage`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:11 ../../_includes/admin/roles_apm.rst:9 ../../_includes/admin/roles_dashbds_only.rst:10 ../../_includes/admin/roles_data_configuration.rst:9 ../../_includes/admin/roles_help_support.rst:10 ../../_includes/admin/roles_log_observer.rst:11 ../../_includes/admin/roles_mpm.rst:11 ../../_includes/admin/roles_navigation.rst:11 ../../_includes/admin/roles_navs_dashbds.rst:10
-#: ../../_includes/admin/rum-roles-caps.rst:9 ../../_includes/admin/synth-roles-caps.rst:9
+#: ../../_includes/admin/roles_alerts_detectors.rst:11 ../../_includes/admin/roles_apm.rst:9 ../../_includes/admin/roles_dashbds_only.rst:10 ../../_includes/admin/roles_data_configuration.rst:9 ../../_includes/admin/roles_help_support.rst:10 ../../_includes/admin/roles_log_observer.rst:11 ../../_includes/admin/roles_mpm.rst:11
+#: ../../_includes/admin/roles_navigation.rst:11 ../../_includes/admin/roles_navs_dashbds.rst:10 ../../_includes/admin/rum-roles-caps.rst:9 ../../_includes/admin/synth-roles-caps.rst:9
msgid ":strong:`read_only`"
msgstr ":strong:`read_only`"
@@ -79,75 +78,96 @@ msgstr ":strong:`read_only`"
msgid ":strong:`View alerts`"
msgstr ":strong:`アラートを表示する`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:15 ../../_includes/admin/roles_alerts_detectors.rst:16 ../../_includes/admin/roles_alerts_detectors.rst:17 ../../_includes/admin/roles_alerts_detectors.rst:18 ../../_includes/admin/roles_alerts_detectors.rst:22 ../../_includes/admin/roles_alerts_detectors.rst:23 ../../_includes/admin/roles_alerts_detectors.rst:28 ../../_includes/admin/roles_alerts_detectors.rst:29
-#: ../../_includes/admin/roles_alerts_detectors.rst:34 ../../_includes/admin/roles_alerts_detectors.rst:35 ../../_includes/admin/roles_alerts_detectors.rst:40 ../../_includes/admin/roles_alerts_detectors.rst:41 ../../_includes/admin/roles_alerts_detectors.rst:42 ../../_includes/admin/roles_alerts_detectors.rst:43 ../../_includes/admin/roles_alerts_detectors.rst:46 ../../_includes/admin/roles_alerts_detectors.rst:47
-#: ../../_includes/admin/roles_alerts_detectors.rst:52 ../../_includes/admin/roles_alerts_detectors.rst:53 ../../_includes/admin/roles_alerts_detectors.rst:58 ../../_includes/admin/roles_alerts_detectors.rst:59 ../../_includes/admin/roles_alerts_detectors.rst:64 ../../_includes/admin/roles_alerts_detectors.rst:65 ../../_includes/admin/roles_alerts_detectors.rst:70 ../../_includes/admin/roles_alerts_detectors.rst:71
-#: ../../_includes/admin/roles_alerts_detectors.rst:76 ../../_includes/admin/roles_alerts_detectors.rst:77 ../../_includes/admin/roles_alerts_detectors.rst:78 ../../_includes/admin/roles_alerts_detectors.rst:79 ../../_includes/admin/roles_alerts_detectors.rst:82 ../../_includes/admin/roles_alerts_detectors.rst:83 ../../_includes/admin/roles_alerts_detectors.rst:88 ../../_includes/admin/roles_alerts_detectors.rst:89
-#: ../../_includes/admin/roles_alerts_detectors.rst:94 ../../_includes/admin/roles_alerts_detectors.rst:95 ../../_includes/admin/roles_alerts_detectors.rst:96 ../../_includes/admin/roles_alerts_detectors.rst:97 ../../_includes/admin/roles_apm.rst:12 ../../_includes/admin/roles_apm.rst:13 ../../_includes/admin/roles_apm.rst:14 ../../_includes/admin/roles_apm.rst:15 ../../_includes/admin/roles_apm.rst:18
-#: ../../_includes/admin/roles_apm.rst:24 ../../_includes/admin/roles_apm.rst:25 ../../_includes/admin/roles_apm.rst:26 ../../_includes/admin/roles_apm.rst:27 ../../_includes/admin/roles_apm.rst:30 ../../_includes/admin/roles_apm.rst:36 ../../_includes/admin/roles_apm.rst:37 ../../_includes/admin/roles_apm.rst:38 ../../_includes/admin/roles_apm.rst:39 ../../_includes/admin/roles_apm.rst:42
-#: ../../_includes/admin/roles_dashbds_only.rst:13 ../../_includes/admin/roles_dashbds_only.rst:14 ../../_includes/admin/roles_dashbds_only.rst:15 ../../_includes/admin/roles_dashbds_only.rst:16 ../../_includes/admin/roles_dashbds_only.rst:19 ../../_includes/admin/roles_dashbds_only.rst:20 ../../_includes/admin/roles_dashbds_only.rst:25 ../../_includes/admin/roles_dashbds_only.rst:26
-#: ../../_includes/admin/roles_data_configuration.rst:12 ../../_includes/admin/roles_data_configuration.rst:13 ../../_includes/admin/roles_data_configuration.rst:14 ../../_includes/admin/roles_data_configuration.rst:15 ../../_includes/admin/roles_data_configuration.rst:18 ../../_includes/admin/roles_data_configuration.rst:25 ../../_includes/admin/roles_data_configuration.rst:26
-#: ../../_includes/admin/roles_data_configuration.rst:27 ../../_includes/admin/roles_data_configuration.rst:28 ../../_includes/admin/roles_help_support.rst:13 ../../_includes/admin/roles_help_support.rst:14 ../../_includes/admin/roles_help_support.rst:15 ../../_includes/admin/roles_help_support.rst:16 ../../_includes/admin/roles_help_support.rst:19 ../../_includes/admin/roles_help_support.rst:20
-#: ../../_includes/admin/roles_help_support.rst:21 ../../_includes/admin/roles_help_support.rst:22 ../../_includes/admin/roles_log_observer.rst:15 ../../_includes/admin/roles_log_observer.rst:16 ../../_includes/admin/roles_log_observer.rst:17 ../../_includes/admin/roles_log_observer.rst:18 ../../_includes/admin/roles_log_observer.rst:22 ../../_includes/admin/roles_log_observer.rst:23
-#: ../../_includes/admin/roles_log_observer.rst:24 ../../_includes/admin/roles_log_observer.rst:25 ../../_includes/admin/roles_log_observer.rst:28 ../../_includes/admin/roles_log_observer.rst:29 ../../_includes/admin/roles_log_observer.rst:30 ../../_includes/admin/roles_log_observer.rst:31 ../../_includes/admin/roles_log_observer.rst:34 ../../_includes/admin/roles_log_observer.rst:35
-#: ../../_includes/admin/roles_log_observer.rst:36 ../../_includes/admin/roles_log_observer.rst:37 ../../_includes/admin/roles_log_observer.rst:40 ../../_includes/admin/roles_log_observer.rst:41 ../../_includes/admin/roles_log_observer.rst:46 ../../_includes/admin/roles_log_observer.rst:47 ../../_includes/admin/roles_log_observer.rst:48 ../../_includes/admin/roles_log_observer.rst:49
-#: ../../_includes/admin/roles_log_observer.rst:52 ../../_includes/admin/roles_log_observer.rst:53 ../../_includes/admin/roles_log_observer.rst:58 ../../_includes/admin/roles_log_observer.rst:59 ../../_includes/admin/roles_log_observer.rst:64 ../../_includes/admin/roles_log_observer.rst:65 ../../_includes/admin/roles_log_observer.rst:70 ../../_includes/admin/roles_log_observer.rst:71
-#: ../../_includes/admin/roles_log_observer.rst:72 ../../_includes/admin/roles_log_observer.rst:76 ../../_includes/admin/roles_log_observer.rst:77 ../../_includes/admin/roles_log_observer.rst:82 ../../_includes/admin/roles_log_observer.rst:83 ../../_includes/admin/roles_log_observer.rst:88 ../../_includes/admin/roles_log_observer.rst:94 ../../_includes/admin/roles_log_observer.rst:100
-#: ../../_includes/admin/roles_log_observer.rst:102 ../../_includes/admin/roles_log_observer.rst:106 ../../_includes/admin/roles_mpm.rst:15 ../../_includes/admin/roles_mpm.rst:16 ../../_includes/admin/roles_mpm.rst:17 ../../_includes/admin/roles_mpm.rst:18 ../../_includes/admin/roles_mpm.rst:22 ../../_includes/admin/roles_mpm.rst:23 ../../_includes/admin/roles_mpm.rst:24 ../../_includes/admin/roles_mpm.rst:25
-#: ../../_includes/admin/roles_mpm.rst:28 ../../_includes/admin/roles_mpm.rst:34 ../../_includes/admin/roles_mpm.rst:35 ../../_includes/admin/roles_mpm.rst:40 ../../_includes/admin/roles_mpm.rst:41 ../../_includes/admin/roles_mpm.rst:46 ../../_includes/admin/roles_mpm.rst:47 ../../_includes/admin/roles_mpm.rst:52 ../../_includes/admin/roles_mpm.rst:53 ../../_includes/admin/roles_mpm.rst:58
-#: ../../_includes/admin/roles_mpm.rst:59 ../../_includes/admin/roles_mpm.rst:64 ../../_includes/admin/roles_mpm.rst:65 ../../_includes/admin/roles_mpm.rst:70 ../../_includes/admin/roles_navigation.rst:14 ../../_includes/admin/roles_navigation.rst:20 ../../_includes/admin/roles_navigation.rst:26 ../../_includes/admin/roles_navigation.rst:27 ../../_includes/admin/roles_navigation.rst:28
-#: ../../_includes/admin/roles_navigation.rst:29 ../../_includes/admin/roles_navigation.rst:32 ../../_includes/admin/roles_navigation.rst:38 ../../_includes/admin/roles_navigation.rst:40 ../../_includes/admin/roles_navigation.rst:44 ../../_includes/admin/roles_navigation.rst:45 ../../_includes/admin/roles_navigation.rst:46 ../../_includes/admin/roles_navigation.rst:47 ../../_includes/admin/roles_navigation.rst:50
-#: ../../_includes/admin/roles_navigation.rst:56 ../../_includes/admin/roles_navigation.rst:57 ../../_includes/admin/roles_navigation.rst:58 ../../_includes/admin/roles_navigation.rst:59 ../../_includes/admin/roles_navigation.rst:62 ../../_includes/admin/roles_navigation.rst:68 ../../_includes/admin/roles_navigation.rst:69 ../../_includes/admin/roles_navigation.rst:74 ../../_includes/admin/roles_navigation.rst:81
-#: ../../_includes/admin/roles_navigation.rst:87 ../../_includes/admin/roles_navs_dashbds.rst:13 ../../_includes/admin/roles_navs_dashbds.rst:14 ../../_includes/admin/roles_navs_dashbds.rst:15 ../../_includes/admin/roles_navs_dashbds.rst:16 ../../_includes/admin/roles_navs_dashbds.rst:19 ../../_includes/admin/roles_navs_dashbds.rst:20 ../../_includes/admin/roles_navs_dashbds.rst:25
-#: ../../_includes/admin/rum-roles-caps.rst:12 ../../_includes/admin/rum-roles-caps.rst:13 ../../_includes/admin/rum-roles-caps.rst:14 ../../_includes/admin/rum-roles-caps.rst:15 ../../_includes/admin/rum-roles-caps.rst:18 ../../_includes/admin/rum-roles-caps.rst:19 ../../_includes/admin/rum-roles-caps.rst:24 ../../_includes/admin/rum-roles-caps.rst:25 ../../_includes/admin/rum-roles-caps.rst:26
-#: ../../_includes/admin/rum-roles-caps.rst:27 ../../_includes/admin/rum-roles-caps.rst:30 ../../_includes/admin/rum-roles-caps.rst:31 ../../_includes/admin/rum-roles-caps.rst:32 ../../_includes/admin/rum-roles-caps.rst:33 ../../_includes/admin/rum-roles-caps.rst:36 ../../_includes/admin/rum-roles-caps.rst:37 ../../_includes/admin/rum-roles-caps.rst:38 ../../_includes/admin/rum-roles-caps.rst:39
-#: ../../_includes/admin/rum-roles-caps.rst:42 ../../_includes/admin/rum-roles-caps.rst:43 ../../_includes/admin/rum-roles-caps.rst:44 ../../_includes/admin/rum-roles-caps.rst:45 ../../_includes/admin/rum-roles-caps.rst:48 ../../_includes/admin/rum-roles-caps.rst:49 ../../_includes/admin/rum-roles-caps.rst:50 ../../_includes/admin/rum-roles-caps.rst:51 ../../_includes/admin/rum-roles-caps.rst:54
-#: ../../_includes/admin/rum-roles-caps.rst:55 ../../_includes/admin/rum-roles-caps.rst:60 ../../_includes/admin/rum-roles-caps.rst:61 ../../_includes/admin/synth-roles-caps.rst:12 ../../_includes/admin/synth-roles-caps.rst:13 ../../_includes/admin/synth-roles-caps.rst:18 ../../_includes/admin/synth-roles-caps.rst:19 ../../_includes/admin/synth-roles-caps.rst:20 ../../_includes/admin/synth-roles-caps.rst:21
-#: ../../_includes/admin/synth-roles-caps.rst:25 ../../_includes/admin/synth-roles-caps.rst:31 ../../_includes/admin/synth-roles-caps.rst:32 ../../_includes/admin/synth-roles-caps.rst:33 ../../_includes/admin/synth-roles-caps.rst:34 ../../_includes/admin/synth-roles-caps.rst:37 ../../_includes/admin/synth-roles-caps.rst:43 ../../_includes/admin/synth-roles-caps.rst:49 ../../_includes/admin/synth-roles-caps.rst:54
-#: ../../_includes/admin/synth-roles-caps.rst:55 ../../_includes/admin/synth-roles-caps.rst:56 ../../_includes/admin/synth-roles-caps.rst:57 ../../_includes/collector-env-vars.rst:13 ../../_includes/collector-env-vars.rst:16 ../../_includes/collector-env-vars.rst:22 ../../_includes/collector-env-vars.rst:25 ../../_includes/collector-env-vars.rst:37 ../../_includes/collector-env-vars.rst:40
-#: ../../_includes/collector-env-vars.rst:43 ../../_includes/collector-env-vars.rst:46 ../../_includes/collector-env-vars.rst:58 ../../_includes/gdi/processor-architecture-native.rst:15 ../../_includes/gdi/processor-architecture-native.rst:16 ../../_includes/gdi/processor-architecture-native.rst:17 ../../_includes/gdi/processor-architecture-native.rst:18 ../../_includes/gdi/processor-architecture-native.rst:20
-#: ../../_includes/gdi/processor-architecture-native.rst:21 ../../_includes/gdi/processor-architecture-native.rst:22 ../../_includes/gdi/processor-architecture-native.rst:23 ../../_includes/gdi/processor-architecture-native.rst:25 ../../_includes/gdi/processor-architecture-native.rst:26 ../../_includes/gdi/processor-architecture-native.rst:27 ../../_includes/gdi/processor-architecture-native.rst:28
-#: ../../_includes/gdi/processor-architecture-native.rst:30 ../../_includes/gdi/processor-architecture-native.rst:31 ../../_includes/gdi/processor-architecture-native.rst:32 ../../_includes/gdi/processor-architecture-native.rst:33 ../../_includes/gdi/processor-architecture-native.rst:35 ../../_includes/gdi/processor-architecture-native.rst:36 ../../_includes/gdi/processor-architecture-native.rst:37
-#: ../../_includes/gdi/processor-architecture-native.rst:38 ../../_includes/gdi/processor-architecture-native.rst:40 ../../_includes/gdi/processor-architecture-native.rst:41 ../../_includes/gdi/processor-architecture-native.rst:42 ../../_includes/gdi/processor-architecture-native.rst:43 ../../_includes/gdi/processor-architecture-native.rst:45 ../../_includes/gdi/processor-architecture-native.rst:46
-#: ../../_includes/gdi/processor-architecture-native.rst:47 ../../_includes/gdi/processor-architecture-native.rst:48 ../../_includes/gdi/processor-architecture-native.rst:50 ../../_includes/gdi/processor-architecture-native.rst:51 ../../_includes/gdi/processor-architecture-native.rst:52 ../../_includes/gdi/processor-architecture-native.rst:53 ../../_includes/gdi/processor-architecture-native.rst:55
-#: ../../_includes/gdi/processor-architecture-native.rst:56 ../../_includes/gdi/processor-architecture-native.rst:57 ../../_includes/gdi/processor-architecture-native.rst:60 ../../_includes/gdi/processor-architecture-native.rst:61 ../../_includes/gdi/processor-architecture-native.rst:62 ../../_includes/gdi/processor-architecture-native.rst:63 ../../_includes/gdi/processor-architecture-native.rst:65
-#: ../../_includes/gdi/processor-architecture-native.rst:66 ../../_includes/gdi/processor-architecture-native.rst:67 ../../_includes/gdi/processor-architecture-native.rst:68 ../../_includes/gdi/processor-architecture-native.rst:70 ../../_includes/gdi/processor-architecture-native.rst:71 ../../_includes/gdi/processor-architecture-native.rst:72 ../../_includes/gdi/processor-architecture-native.rst:73
-#: ../../_includes/gdi/processor-architecture-native.rst:75 ../../_includes/gdi/processor-architecture-native.rst:76 ../../_includes/gdi/processor-architecture-native.rst:77 ../../_includes/gdi/processor-architecture-native.rst:78 ../../_includes/gdi/processor-architecture-native.rst:80 ../../_includes/gdi/processor-architecture-native.rst:81 ../../_includes/gdi/processor-architecture-native.rst:82
-#: ../../_includes/gdi/processor-architecture-native.rst:83 ../../_includes/gdi/processor-architecture-native.rst:85 ../../_includes/gdi/processor-architecture-native.rst:86 ../../_includes/gdi/processor-architecture-native.rst:87 ../../_includes/gdi/processor-architecture-native.rst:88 ../../_includes/gdi/processor-architecture-native.rst:90 ../../_includes/gdi/processor-architecture-native.rst:91
-#: ../../_includes/gdi/processor-architecture-native.rst:92 ../../_includes/gdi/processor-architecture-native.rst:93 ../../_includes/gdi/processor-architecture-native.rst:95 ../../_includes/gdi/processor-architecture-native.rst:96 ../../_includes/gdi/processor-architecture-native.rst:97 ../../_includes/gdi/processor-architecture-native.rst:98 ../../_includes/gdi/processor-architecture-native.rst:100
-#: ../../_includes/gdi/processor-architecture-native.rst:101 ../../_includes/gdi/processor-architecture-native.rst:102 ../../_includes/gdi/processor-architecture-native.rst:103 ../../_includes/gdi/processor-architecture-native.rst:105 ../../_includes/gdi/processor-architecture-native.rst:106 ../../_includes/gdi/processor-architecture-native.rst:107 ../../_includes/gdi/processor-architecture-native.rst:108
-#: ../../_includes/gdi/processor-architecture-native.rst:110 ../../_includes/gdi/processor-architecture-native.rst:111 ../../_includes/gdi/processor-architecture-native.rst:112 ../../_includes/gdi/processor-architecture-native.rst:113 ../../_includes/gdi/processor-architecture-native.rst:115 ../../_includes/gdi/processor-architecture-native.rst:116 ../../_includes/gdi/processor-architecture-native.rst:117
-#: ../../_includes/gdi/processor-architecture-native.rst:118 ../../_includes/gdi/processor-architecture-native.rst:120 ../../_includes/gdi/processor-architecture-native.rst:121 ../../_includes/gdi/processor-architecture-native.rst:122 ../../_includes/gdi/processor-architecture-native.rst:123 ../../_includes/gdi/processor-architecture-native.rst:125 ../../_includes/gdi/processor-architecture-native.rst:126
-#: ../../_includes/gdi/processor-architecture-native.rst:127 ../../_includes/gdi/processor-architecture-native.rst:128 ../../_includes/gdi/processor-architecture-native.rst:130 ../../_includes/gdi/processor-architecture-native.rst:131 ../../_includes/gdi/processor-architecture-native.rst:132 ../../_includes/gdi/processor-architecture-native.rst:133 ../../_includes/gdi/processor-architecture-native.rst:135
-#: ../../_includes/gdi/processor-architecture-native.rst:136 ../../_includes/gdi/processor-architecture-native.rst:137 ../../_includes/gdi/processor-architecture-native.rst:138 ../../_includes/gdi/processor-architecture-native.rst:140 ../../_includes/gdi/processor-architecture-native.rst:141 ../../_includes/gdi/processor-architecture-native.rst:142 ../../_includes/gdi/processor-architecture-native.rst:143
-#: ../../_includes/gdi/processor-architecture-native.rst:145 ../../_includes/gdi/processor-architecture-native.rst:146 ../../_includes/gdi/processor-architecture-native.rst:147 ../../_includes/gdi/processor-architecture-native.rst:148 ../../_includes/gdi/processor-architecture-native.rst:150 ../../_includes/gdi/processor-architecture-native.rst:151 ../../_includes/gdi/processor-architecture-native.rst:152
-#: ../../_includes/gdi/processor-architecture-native.rst:153 ../../_includes/gdi/processor-architecture-native.rst:155 ../../_includes/gdi/processor-architecture-native.rst:156 ../../_includes/gdi/processor-architecture-native.rst:157 ../../_includes/gdi/processor-architecture-native.rst:158 ../../_includes/gdi/processor-architecture-native.rst:160 ../../_includes/gdi/processor-architecture-native.rst:161
-#: ../../_includes/gdi/processor-architecture-native.rst:162 ../../_includes/gdi/processor-architecture-native.rst:163 ../../_includes/gdi/processor-architecture-native.rst:165 ../../_includes/gdi/processor-architecture-native.rst:166 ../../_includes/gdi/processor-architecture-native.rst:167 ../../_includes/gdi/processor-architecture-native.rst:168 ../../_includes/gdi/processor-architecture-native.rst:170
-#: ../../_includes/gdi/processor-architecture-native.rst:171 ../../_includes/gdi/processor-architecture-native.rst:172 ../../_includes/gdi/processor-architecture-native.rst:173 ../../_includes/gdi/processor-architecture-native.rst:175 ../../_includes/gdi/processor-architecture-native.rst:176 ../../_includes/gdi/processor-architecture-native.rst:177 ../../_includes/gdi/processor-architecture-native.rst:178
-#: ../../_includes/gdi/processor-architecture-native.rst:180 ../../_includes/gdi/processor-architecture-native.rst:181 ../../_includes/gdi/processor-architecture-native.rst:182 ../../_includes/gdi/processor-architecture-native.rst:183 ../../_includes/gdi/processor-architecture-native.rst:185 ../../_includes/gdi/processor-architecture-native.rst:186 ../../_includes/gdi/processor-architecture-native.rst:187
-#: ../../_includes/gdi/processor-architecture-native.rst:188 ../../_includes/gdi/processor-architecture-native.rst:190 ../../_includes/gdi/processor-architecture-native.rst:191 ../../_includes/gdi/processor-architecture-native.rst:192 ../../_includes/gdi/processor-architecture-native.rst:193 ../../_includes/gdi/processor-architecture-native.rst:195 ../../_includes/gdi/processor-architecture-native.rst:196
-#: ../../_includes/gdi/processor-architecture-native.rst:197 ../../_includes/gdi/processor-architecture-native.rst:198 ../../_includes/gdi/processor-architecture-native.rst:200 ../../_includes/gdi/processor-architecture-native.rst:201 ../../_includes/gdi/processor-architecture-native.rst:202 ../../_includes/gdi/processor-architecture-native.rst:203 ../../_includes/gdi/processor-architecture-native.rst:219
-#: ../../_includes/gdi/processor-architecture-native.rst:220 ../../_includes/gdi/processor-architecture-native.rst:221 ../../_includes/gdi/processor-architecture-native.rst:222 ../../_includes/gdi/processor-architecture-native.rst:224 ../../_includes/gdi/processor-architecture-native.rst:225 ../../_includes/gdi/processor-architecture-native.rst:226 ../../_includes/gdi/processor-architecture-native.rst:227
-#: ../../_includes/gdi/processor-architecture-native.rst:229 ../../_includes/gdi/processor-architecture-native.rst:230 ../../_includes/gdi/processor-architecture-native.rst:231 ../../_includes/gdi/processor-architecture-native.rst:232 ../../_includes/gdi/processor-architecture-native.rst:234 ../../_includes/gdi/processor-architecture-native.rst:235 ../../_includes/gdi/processor-architecture-native.rst:236
-#: ../../_includes/gdi/processor-architecture-native.rst:237 ../../_includes/gdi/processor-architecture-native.rst:239 ../../_includes/gdi/processor-architecture-native.rst:240 ../../_includes/gdi/processor-architecture-native.rst:241 ../../_includes/gdi/processor-architecture-native.rst:242 ../../_includes/gdi/processor-architecture-native.rst:244 ../../_includes/gdi/processor-architecture-native.rst:245
-#: ../../_includes/gdi/processor-architecture-native.rst:246 ../../_includes/gdi/processor-architecture-native.rst:247 ../../_includes/gdi/processor-architecture-native.rst:249 ../../_includes/gdi/processor-architecture-native.rst:250 ../../_includes/gdi/processor-architecture-native.rst:251 ../../_includes/gdi/processor-architecture-native.rst:252 ../../_includes/gdi/processor-architecture-native.rst:254
-#: ../../_includes/gdi/processor-architecture-native.rst:255 ../../_includes/gdi/processor-architecture-native.rst:256 ../../_includes/gdi/processor-architecture-native.rst:257 ../../_includes/gdi/processor-architecture-native.rst:259 ../../_includes/gdi/processor-architecture-native.rst:260 ../../_includes/gdi/processor-architecture-native.rst:261 ../../_includes/gdi/processor-architecture-native.rst:262
-#: ../../_includes/gdi/processor-architecture-native.rst:264 ../../_includes/gdi/processor-architecture-native.rst:265 ../../_includes/gdi/processor-architecture-native.rst:266 ../../_includes/gdi/processor-architecture-native.rst:267 ../../_includes/gdi/processor-architecture-native.rst:269 ../../_includes/gdi/processor-architecture-native.rst:270 ../../_includes/gdi/processor-architecture-native.rst:271
-#: ../../_includes/gdi/processor-architecture-native.rst:272 ../../_includes/gdi/processor-architecture-native.rst:274 ../../_includes/gdi/processor-architecture-native.rst:275 ../../_includes/gdi/processor-architecture-native.rst:276 ../../_includes/gdi/processor-architecture-native.rst:277 ../../_includes/gdi/processor-architecture-native.rst:293 ../../_includes/gdi/processor-architecture-native.rst:294
-#: ../../_includes/gdi/processor-architecture-native.rst:295 ../../_includes/gdi/processor-architecture-native.rst:296 ../../_includes/gdi/processor-architecture-native.rst:298 ../../_includes/gdi/processor-architecture-native.rst:299 ../../_includes/gdi/processor-architecture-native.rst:300 ../../_includes/gdi/processor-architecture-native.rst:301 ../../_includes/gdi/processor-architecture-native.rst:303
-#: ../../_includes/gdi/processor-architecture-native.rst:304 ../../_includes/gdi/processor-architecture-native.rst:305 ../../_includes/gdi/processor-architecture-native.rst:306 ../../_includes/gdi/processor-architecture-native.rst:308 ../../_includes/gdi/processor-architecture-native.rst:309 ../../_includes/gdi/processor-architecture-native.rst:310 ../../_includes/gdi/processor-architecture-native.rst:311
-#: ../../_includes/gdi/processor-architecture-native.rst:313 ../../_includes/gdi/processor-architecture-native.rst:314 ../../_includes/gdi/processor-architecture-native.rst:315 ../../_includes/gdi/processor-architecture-native.rst:316 ../../_includes/gdi/processor-architecture-native.rst:318 ../../_includes/gdi/processor-architecture-native.rst:319 ../../_includes/gdi/processor-architecture-native.rst:320
-#: ../../_includes/gdi/processor-architecture-native.rst:321 ../../_includes/gdi/processor-architecture-native.rst:324 ../../_includes/gdi/processor-architecture-native.rst:328 ../../_includes/gdi/processor-architecture-native.rst:329 ../../_includes/gdi/processor-architecture-native.rst:330 ../../_includes/gdi/processor-architecture-native.rst:331 ../../_includes/gdi/processor-architecture-native.rst:333
-#: ../../_includes/gdi/processor-architecture-native.rst:334 ../../_includes/gdi/processor-architecture-native.rst:335 ../../_includes/gdi/processor-architecture-native.rst:336 ../../_includes/gdi/processor-architecture-native.rst:338 ../../_includes/gdi/processor-architecture-native.rst:339 ../../_includes/gdi/processor-architecture-native.rst:340 ../../_includes/gdi/processor-architecture-native.rst:341
-#: ../../_includes/gdi/processor-architecture-native.rst:343 ../../_includes/gdi/processor-architecture-native.rst:344 ../../_includes/gdi/processor-architecture-native.rst:345 ../../_includes/gdi/processor-architecture-native.rst:346 ../../_includes/gdi/processor-architecture-native.rst:349 ../../_includes/gdi/processor-architecture-native.rst:354 ../../_includes/gdi/processor-architecture-native.rst:359
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:15 ../../_includes/gdi/processor-architecture-subprocess.rst:20 ../../_includes/gdi/processor-architecture-subprocess.rst:25 ../../_includes/gdi/processor-architecture-subprocess.rst:30 ../../_includes/gdi/processor-architecture-subprocess.rst:35 ../../_includes/gdi/processor-architecture-subprocess.rst:40
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:45 ../../_includes/gdi/processor-architecture-subprocess.rst:50 ../../_includes/gdi/processor-architecture-subprocess.rst:55 ../../_includes/gdi/processor-architecture-subprocess.rst:60 ../../_includes/gdi/processor-architecture-subprocess.rst:79 ../../_includes/gdi/processor-architecture-subprocess.rst:84
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:89 ../../_includes/gdi/processor-architecture-subprocess.rst:94 ../../_includes/gdi/processor-architecture-subprocess.rst:99 ../../_includes/gdi/processor-architecture-subprocess.rst:104 ../../_includes/gdi/processor-architecture-subprocess.rst:123 ../../_includes/gdi/processor-architecture-subprocess.rst:124
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:128 ../../_includes/gdi/processor-architecture-subprocess.rst:129 ../../_includes/gdi/processor-architecture-subprocess.rst:133 ../../_includes/gdi/processor-architecture-subprocess.rst:134 ../../_includes/gdi/processor-architecture-subprocess.rst:138 ../../_includes/gdi/processor-architecture-subprocess.rst:139
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:143 ../../_includes/gdi/processor-architecture-subprocess.rst:144 ../../_includes/gdi/processor-architecture-subprocess.rst:148 ../../_includes/gdi/processor-architecture-subprocess.rst:149 ../../_includes/gdi/processor-architecture-subprocess.rst:153 ../../_includes/gdi/processor-architecture-subprocess.rst:154
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:158 ../../_includes/gdi/processor-architecture-subprocess.rst:159 ../../_includes/gdi/processor-architecture-subprocess.rst:163 ../../_includes/gdi/processor-architecture-subprocess.rst:164 ../../_includes/gdi/processor-architecture-subprocess.rst:168 ../../_includes/gdi/processor-architecture-subprocess.rst:169
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:173 ../../_includes/gdi/processor-architecture-subprocess.rst:174 ../../_includes/gdi/processor-architecture-subprocess.rst:178 ../../_includes/gdi/processor-architecture-subprocess.rst:179 ../../_includes/gdi/processor-architecture-subprocess.rst:183 ../../_includes/gdi/processor-architecture-subprocess.rst:184
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:188 ../../_includes/gdi/processor-architecture-subprocess.rst:189 ../../_includes/gdi/processor-architecture-subprocess.rst:207
+#: ../../_includes/admin/roles_alerts_detectors.rst:15 ../../_includes/admin/roles_alerts_detectors.rst:16 ../../_includes/admin/roles_alerts_detectors.rst:17 ../../_includes/admin/roles_alerts_detectors.rst:18 ../../_includes/admin/roles_alerts_detectors.rst:22 ../../_includes/admin/roles_alerts_detectors.rst:23
+#: ../../_includes/admin/roles_alerts_detectors.rst:28 ../../_includes/admin/roles_alerts_detectors.rst:29 ../../_includes/admin/roles_alerts_detectors.rst:34 ../../_includes/admin/roles_alerts_detectors.rst:35 ../../_includes/admin/roles_alerts_detectors.rst:40 ../../_includes/admin/roles_alerts_detectors.rst:41
+#: ../../_includes/admin/roles_alerts_detectors.rst:42 ../../_includes/admin/roles_alerts_detectors.rst:43 ../../_includes/admin/roles_alerts_detectors.rst:46 ../../_includes/admin/roles_alerts_detectors.rst:47 ../../_includes/admin/roles_alerts_detectors.rst:52 ../../_includes/admin/roles_alerts_detectors.rst:53
+#: ../../_includes/admin/roles_alerts_detectors.rst:58 ../../_includes/admin/roles_alerts_detectors.rst:59 ../../_includes/admin/roles_alerts_detectors.rst:64 ../../_includes/admin/roles_alerts_detectors.rst:65 ../../_includes/admin/roles_alerts_detectors.rst:70 ../../_includes/admin/roles_alerts_detectors.rst:71
+#: ../../_includes/admin/roles_alerts_detectors.rst:76 ../../_includes/admin/roles_alerts_detectors.rst:77 ../../_includes/admin/roles_alerts_detectors.rst:78 ../../_includes/admin/roles_alerts_detectors.rst:79 ../../_includes/admin/roles_alerts_detectors.rst:82 ../../_includes/admin/roles_alerts_detectors.rst:83
+#: ../../_includes/admin/roles_alerts_detectors.rst:88 ../../_includes/admin/roles_alerts_detectors.rst:89 ../../_includes/admin/roles_alerts_detectors.rst:94 ../../_includes/admin/roles_alerts_detectors.rst:95 ../../_includes/admin/roles_alerts_detectors.rst:96 ../../_includes/admin/roles_alerts_detectors.rst:97
+#: ../../_includes/admin/roles_apm.rst:12 ../../_includes/admin/roles_apm.rst:13 ../../_includes/admin/roles_apm.rst:14 ../../_includes/admin/roles_apm.rst:15 ../../_includes/admin/roles_apm.rst:18 ../../_includes/admin/roles_apm.rst:24 ../../_includes/admin/roles_apm.rst:25 ../../_includes/admin/roles_apm.rst:26
+#: ../../_includes/admin/roles_apm.rst:27 ../../_includes/admin/roles_apm.rst:30 ../../_includes/admin/roles_apm.rst:36 ../../_includes/admin/roles_apm.rst:37 ../../_includes/admin/roles_apm.rst:38 ../../_includes/admin/roles_apm.rst:39 ../../_includes/admin/roles_apm.rst:42 ../../_includes/admin/roles_dashbds_only.rst:13
+#: ../../_includes/admin/roles_dashbds_only.rst:14 ../../_includes/admin/roles_dashbds_only.rst:15 ../../_includes/admin/roles_dashbds_only.rst:16 ../../_includes/admin/roles_dashbds_only.rst:19 ../../_includes/admin/roles_dashbds_only.rst:20 ../../_includes/admin/roles_dashbds_only.rst:25
+#: ../../_includes/admin/roles_dashbds_only.rst:26 ../../_includes/admin/roles_data_configuration.rst:12 ../../_includes/admin/roles_data_configuration.rst:13 ../../_includes/admin/roles_data_configuration.rst:14 ../../_includes/admin/roles_data_configuration.rst:15 ../../_includes/admin/roles_data_configuration.rst:18
+#: ../../_includes/admin/roles_data_configuration.rst:25 ../../_includes/admin/roles_data_configuration.rst:26 ../../_includes/admin/roles_data_configuration.rst:27 ../../_includes/admin/roles_data_configuration.rst:28 ../../_includes/admin/roles_help_support.rst:13 ../../_includes/admin/roles_help_support.rst:14
+#: ../../_includes/admin/roles_help_support.rst:15 ../../_includes/admin/roles_help_support.rst:16 ../../_includes/admin/roles_help_support.rst:19 ../../_includes/admin/roles_help_support.rst:20 ../../_includes/admin/roles_help_support.rst:21 ../../_includes/admin/roles_help_support.rst:22
+#: ../../_includes/admin/roles_log_observer.rst:15 ../../_includes/admin/roles_log_observer.rst:16 ../../_includes/admin/roles_log_observer.rst:17 ../../_includes/admin/roles_log_observer.rst:18 ../../_includes/admin/roles_log_observer.rst:21 ../../_includes/admin/roles_log_observer.rst:22
+#: ../../_includes/admin/roles_log_observer.rst:23 ../../_includes/admin/roles_log_observer.rst:24 ../../_includes/admin/roles_log_observer.rst:27 ../../_includes/admin/roles_log_observer.rst:28 ../../_includes/admin/roles_log_observer.rst:29 ../../_includes/admin/roles_log_observer.rst:30
+#: ../../_includes/admin/roles_log_observer.rst:33 ../../_includes/admin/roles_log_observer.rst:34 ../../_includes/admin/roles_log_observer.rst:39 ../../_includes/admin/roles_log_observer.rst:40 ../../_includes/admin/roles_log_observer.rst:41 ../../_includes/admin/roles_log_observer.rst:42
+#: ../../_includes/admin/roles_log_observer.rst:45 ../../_includes/admin/roles_log_observer.rst:46 ../../_includes/admin/roles_log_observer.rst:47 ../../_includes/admin/roles_log_observer.rst:48 ../../_includes/admin/roles_log_observer.rst:51 ../../_includes/admin/roles_log_observer.rst:52
+#: ../../_includes/admin/roles_log_observer.rst:57 ../../_includes/admin/roles_log_observer.rst:58 ../../_includes/admin/roles_log_observer.rst:59 ../../_includes/admin/roles_log_observer.rst:63 ../../_includes/admin/roles_log_observer.rst:65 ../../_includes/admin/roles_log_observer.rst:69 ../../_includes/admin/roles_mpm.rst:15
+#: ../../_includes/admin/roles_mpm.rst:16 ../../_includes/admin/roles_mpm.rst:17 ../../_includes/admin/roles_mpm.rst:18 ../../_includes/admin/roles_mpm.rst:22 ../../_includes/admin/roles_mpm.rst:23 ../../_includes/admin/roles_mpm.rst:24 ../../_includes/admin/roles_mpm.rst:25 ../../_includes/admin/roles_mpm.rst:28
+#: ../../_includes/admin/roles_mpm.rst:34 ../../_includes/admin/roles_mpm.rst:35 ../../_includes/admin/roles_mpm.rst:40 ../../_includes/admin/roles_mpm.rst:41 ../../_includes/admin/roles_mpm.rst:46 ../../_includes/admin/roles_mpm.rst:47 ../../_includes/admin/roles_mpm.rst:52 ../../_includes/admin/roles_mpm.rst:53
+#: ../../_includes/admin/roles_mpm.rst:58 ../../_includes/admin/roles_mpm.rst:59 ../../_includes/admin/roles_mpm.rst:64 ../../_includes/admin/roles_mpm.rst:65 ../../_includes/admin/roles_mpm.rst:70 ../../_includes/admin/roles_navigation.rst:14 ../../_includes/admin/roles_navigation.rst:20
+#: ../../_includes/admin/roles_navigation.rst:26 ../../_includes/admin/roles_navigation.rst:27 ../../_includes/admin/roles_navigation.rst:28 ../../_includes/admin/roles_navigation.rst:29 ../../_includes/admin/roles_navigation.rst:32 ../../_includes/admin/roles_navigation.rst:38 ../../_includes/admin/roles_navigation.rst:40
+#: ../../_includes/admin/roles_navigation.rst:44 ../../_includes/admin/roles_navigation.rst:45 ../../_includes/admin/roles_navigation.rst:46 ../../_includes/admin/roles_navigation.rst:47 ../../_includes/admin/roles_navigation.rst:50 ../../_includes/admin/roles_navigation.rst:56 ../../_includes/admin/roles_navigation.rst:57
+#: ../../_includes/admin/roles_navigation.rst:58 ../../_includes/admin/roles_navigation.rst:59 ../../_includes/admin/roles_navigation.rst:62 ../../_includes/admin/roles_navigation.rst:68 ../../_includes/admin/roles_navigation.rst:69 ../../_includes/admin/roles_navigation.rst:74 ../../_includes/admin/roles_navigation.rst:81
+#: ../../_includes/admin/roles_navigation.rst:87 ../../_includes/admin/roles_navs_dashbds.rst:13 ../../_includes/admin/roles_navs_dashbds.rst:14 ../../_includes/admin/roles_navs_dashbds.rst:15 ../../_includes/admin/roles_navs_dashbds.rst:16 ../../_includes/admin/roles_navs_dashbds.rst:19
+#: ../../_includes/admin/roles_navs_dashbds.rst:20 ../../_includes/admin/roles_navs_dashbds.rst:25 ../../_includes/admin/rum-roles-caps.rst:12 ../../_includes/admin/rum-roles-caps.rst:13 ../../_includes/admin/rum-roles-caps.rst:14 ../../_includes/admin/rum-roles-caps.rst:15 ../../_includes/admin/rum-roles-caps.rst:18
+#: ../../_includes/admin/rum-roles-caps.rst:19 ../../_includes/admin/rum-roles-caps.rst:24 ../../_includes/admin/rum-roles-caps.rst:25 ../../_includes/admin/rum-roles-caps.rst:26 ../../_includes/admin/rum-roles-caps.rst:27 ../../_includes/admin/rum-roles-caps.rst:30 ../../_includes/admin/rum-roles-caps.rst:31
+#: ../../_includes/admin/rum-roles-caps.rst:32 ../../_includes/admin/rum-roles-caps.rst:33 ../../_includes/admin/rum-roles-caps.rst:36 ../../_includes/admin/rum-roles-caps.rst:37 ../../_includes/admin/rum-roles-caps.rst:38 ../../_includes/admin/rum-roles-caps.rst:39 ../../_includes/admin/rum-roles-caps.rst:42
+#: ../../_includes/admin/rum-roles-caps.rst:43 ../../_includes/admin/rum-roles-caps.rst:44 ../../_includes/admin/rum-roles-caps.rst:45 ../../_includes/admin/rum-roles-caps.rst:48 ../../_includes/admin/rum-roles-caps.rst:49 ../../_includes/admin/rum-roles-caps.rst:50 ../../_includes/admin/rum-roles-caps.rst:51
+#: ../../_includes/admin/rum-roles-caps.rst:54 ../../_includes/admin/rum-roles-caps.rst:55 ../../_includes/admin/rum-roles-caps.rst:60 ../../_includes/admin/rum-roles-caps.rst:61 ../../_includes/admin/synth-roles-caps.rst:12 ../../_includes/admin/synth-roles-caps.rst:13 ../../_includes/admin/synth-roles-caps.rst:18
+#: ../../_includes/admin/synth-roles-caps.rst:19 ../../_includes/admin/synth-roles-caps.rst:20 ../../_includes/admin/synth-roles-caps.rst:21 ../../_includes/admin/synth-roles-caps.rst:25 ../../_includes/admin/synth-roles-caps.rst:31 ../../_includes/admin/synth-roles-caps.rst:32 ../../_includes/admin/synth-roles-caps.rst:33
+#: ../../_includes/admin/synth-roles-caps.rst:34 ../../_includes/admin/synth-roles-caps.rst:37 ../../_includes/admin/synth-roles-caps.rst:43 ../../_includes/admin/synth-roles-caps.rst:49 ../../_includes/admin/synth-roles-caps.rst:54 ../../_includes/admin/synth-roles-caps.rst:55 ../../_includes/admin/synth-roles-caps.rst:56
+#: ../../_includes/admin/synth-roles-caps.rst:57 ../../_includes/collector-env-vars.rst:13 ../../_includes/collector-env-vars.rst:16 ../../_includes/collector-env-vars.rst:22 ../../_includes/collector-env-vars.rst:25 ../../_includes/collector-env-vars.rst:37 ../../_includes/collector-env-vars.rst:40
+#: ../../_includes/collector-env-vars.rst:43 ../../_includes/collector-env-vars.rst:46 ../../_includes/collector-env-vars.rst:58 ../../_includes/gdi/processor-architecture-native.rst:15 ../../_includes/gdi/processor-architecture-native.rst:16 ../../_includes/gdi/processor-architecture-native.rst:17
+#: ../../_includes/gdi/processor-architecture-native.rst:18 ../../_includes/gdi/processor-architecture-native.rst:20 ../../_includes/gdi/processor-architecture-native.rst:21 ../../_includes/gdi/processor-architecture-native.rst:22 ../../_includes/gdi/processor-architecture-native.rst:23
+#: ../../_includes/gdi/processor-architecture-native.rst:25 ../../_includes/gdi/processor-architecture-native.rst:26 ../../_includes/gdi/processor-architecture-native.rst:27 ../../_includes/gdi/processor-architecture-native.rst:28 ../../_includes/gdi/processor-architecture-native.rst:30
+#: ../../_includes/gdi/processor-architecture-native.rst:31 ../../_includes/gdi/processor-architecture-native.rst:32 ../../_includes/gdi/processor-architecture-native.rst:33 ../../_includes/gdi/processor-architecture-native.rst:35 ../../_includes/gdi/processor-architecture-native.rst:36
+#: ../../_includes/gdi/processor-architecture-native.rst:37 ../../_includes/gdi/processor-architecture-native.rst:38 ../../_includes/gdi/processor-architecture-native.rst:40 ../../_includes/gdi/processor-architecture-native.rst:41 ../../_includes/gdi/processor-architecture-native.rst:42
+#: ../../_includes/gdi/processor-architecture-native.rst:43 ../../_includes/gdi/processor-architecture-native.rst:45 ../../_includes/gdi/processor-architecture-native.rst:46 ../../_includes/gdi/processor-architecture-native.rst:47 ../../_includes/gdi/processor-architecture-native.rst:48
+#: ../../_includes/gdi/processor-architecture-native.rst:50 ../../_includes/gdi/processor-architecture-native.rst:51 ../../_includes/gdi/processor-architecture-native.rst:52 ../../_includes/gdi/processor-architecture-native.rst:53 ../../_includes/gdi/processor-architecture-native.rst:55
+#: ../../_includes/gdi/processor-architecture-native.rst:56 ../../_includes/gdi/processor-architecture-native.rst:57 ../../_includes/gdi/processor-architecture-native.rst:60 ../../_includes/gdi/processor-architecture-native.rst:61 ../../_includes/gdi/processor-architecture-native.rst:62
+#: ../../_includes/gdi/processor-architecture-native.rst:63 ../../_includes/gdi/processor-architecture-native.rst:65 ../../_includes/gdi/processor-architecture-native.rst:66 ../../_includes/gdi/processor-architecture-native.rst:67 ../../_includes/gdi/processor-architecture-native.rst:68
+#: ../../_includes/gdi/processor-architecture-native.rst:70 ../../_includes/gdi/processor-architecture-native.rst:71 ../../_includes/gdi/processor-architecture-native.rst:72 ../../_includes/gdi/processor-architecture-native.rst:73 ../../_includes/gdi/processor-architecture-native.rst:75
+#: ../../_includes/gdi/processor-architecture-native.rst:76 ../../_includes/gdi/processor-architecture-native.rst:77 ../../_includes/gdi/processor-architecture-native.rst:78 ../../_includes/gdi/processor-architecture-native.rst:80 ../../_includes/gdi/processor-architecture-native.rst:81
+#: ../../_includes/gdi/processor-architecture-native.rst:82 ../../_includes/gdi/processor-architecture-native.rst:83 ../../_includes/gdi/processor-architecture-native.rst:85 ../../_includes/gdi/processor-architecture-native.rst:86 ../../_includes/gdi/processor-architecture-native.rst:87
+#: ../../_includes/gdi/processor-architecture-native.rst:88 ../../_includes/gdi/processor-architecture-native.rst:90 ../../_includes/gdi/processor-architecture-native.rst:91 ../../_includes/gdi/processor-architecture-native.rst:92 ../../_includes/gdi/processor-architecture-native.rst:93
+#: ../../_includes/gdi/processor-architecture-native.rst:95 ../../_includes/gdi/processor-architecture-native.rst:96 ../../_includes/gdi/processor-architecture-native.rst:97 ../../_includes/gdi/processor-architecture-native.rst:98 ../../_includes/gdi/processor-architecture-native.rst:100
+#: ../../_includes/gdi/processor-architecture-native.rst:101 ../../_includes/gdi/processor-architecture-native.rst:102 ../../_includes/gdi/processor-architecture-native.rst:103 ../../_includes/gdi/processor-architecture-native.rst:105 ../../_includes/gdi/processor-architecture-native.rst:106
+#: ../../_includes/gdi/processor-architecture-native.rst:107 ../../_includes/gdi/processor-architecture-native.rst:108 ../../_includes/gdi/processor-architecture-native.rst:110 ../../_includes/gdi/processor-architecture-native.rst:111 ../../_includes/gdi/processor-architecture-native.rst:112
+#: ../../_includes/gdi/processor-architecture-native.rst:113 ../../_includes/gdi/processor-architecture-native.rst:115 ../../_includes/gdi/processor-architecture-native.rst:116 ../../_includes/gdi/processor-architecture-native.rst:117 ../../_includes/gdi/processor-architecture-native.rst:118
+#: ../../_includes/gdi/processor-architecture-native.rst:120 ../../_includes/gdi/processor-architecture-native.rst:121 ../../_includes/gdi/processor-architecture-native.rst:122 ../../_includes/gdi/processor-architecture-native.rst:123 ../../_includes/gdi/processor-architecture-native.rst:125
+#: ../../_includes/gdi/processor-architecture-native.rst:126 ../../_includes/gdi/processor-architecture-native.rst:127 ../../_includes/gdi/processor-architecture-native.rst:128 ../../_includes/gdi/processor-architecture-native.rst:130 ../../_includes/gdi/processor-architecture-native.rst:131
+#: ../../_includes/gdi/processor-architecture-native.rst:132 ../../_includes/gdi/processor-architecture-native.rst:133 ../../_includes/gdi/processor-architecture-native.rst:135 ../../_includes/gdi/processor-architecture-native.rst:136 ../../_includes/gdi/processor-architecture-native.rst:137
+#: ../../_includes/gdi/processor-architecture-native.rst:138 ../../_includes/gdi/processor-architecture-native.rst:140 ../../_includes/gdi/processor-architecture-native.rst:141 ../../_includes/gdi/processor-architecture-native.rst:142 ../../_includes/gdi/processor-architecture-native.rst:143
+#: ../../_includes/gdi/processor-architecture-native.rst:145 ../../_includes/gdi/processor-architecture-native.rst:146 ../../_includes/gdi/processor-architecture-native.rst:147 ../../_includes/gdi/processor-architecture-native.rst:148 ../../_includes/gdi/processor-architecture-native.rst:150
+#: ../../_includes/gdi/processor-architecture-native.rst:151 ../../_includes/gdi/processor-architecture-native.rst:152 ../../_includes/gdi/processor-architecture-native.rst:153 ../../_includes/gdi/processor-architecture-native.rst:155 ../../_includes/gdi/processor-architecture-native.rst:156
+#: ../../_includes/gdi/processor-architecture-native.rst:157 ../../_includes/gdi/processor-architecture-native.rst:158 ../../_includes/gdi/processor-architecture-native.rst:160 ../../_includes/gdi/processor-architecture-native.rst:161 ../../_includes/gdi/processor-architecture-native.rst:162
+#: ../../_includes/gdi/processor-architecture-native.rst:163 ../../_includes/gdi/processor-architecture-native.rst:165 ../../_includes/gdi/processor-architecture-native.rst:166 ../../_includes/gdi/processor-architecture-native.rst:167 ../../_includes/gdi/processor-architecture-native.rst:168
+#: ../../_includes/gdi/processor-architecture-native.rst:170 ../../_includes/gdi/processor-architecture-native.rst:171 ../../_includes/gdi/processor-architecture-native.rst:172 ../../_includes/gdi/processor-architecture-native.rst:173 ../../_includes/gdi/processor-architecture-native.rst:175
+#: ../../_includes/gdi/processor-architecture-native.rst:176 ../../_includes/gdi/processor-architecture-native.rst:177 ../../_includes/gdi/processor-architecture-native.rst:178 ../../_includes/gdi/processor-architecture-native.rst:180 ../../_includes/gdi/processor-architecture-native.rst:181
+#: ../../_includes/gdi/processor-architecture-native.rst:182 ../../_includes/gdi/processor-architecture-native.rst:183 ../../_includes/gdi/processor-architecture-native.rst:185 ../../_includes/gdi/processor-architecture-native.rst:186 ../../_includes/gdi/processor-architecture-native.rst:187
+#: ../../_includes/gdi/processor-architecture-native.rst:188 ../../_includes/gdi/processor-architecture-native.rst:190 ../../_includes/gdi/processor-architecture-native.rst:191 ../../_includes/gdi/processor-architecture-native.rst:192 ../../_includes/gdi/processor-architecture-native.rst:193
+#: ../../_includes/gdi/processor-architecture-native.rst:195 ../../_includes/gdi/processor-architecture-native.rst:196 ../../_includes/gdi/processor-architecture-native.rst:197 ../../_includes/gdi/processor-architecture-native.rst:198 ../../_includes/gdi/processor-architecture-native.rst:200
+#: ../../_includes/gdi/processor-architecture-native.rst:201 ../../_includes/gdi/processor-architecture-native.rst:202 ../../_includes/gdi/processor-architecture-native.rst:203 ../../_includes/gdi/processor-architecture-native.rst:219 ../../_includes/gdi/processor-architecture-native.rst:220
+#: ../../_includes/gdi/processor-architecture-native.rst:221 ../../_includes/gdi/processor-architecture-native.rst:222 ../../_includes/gdi/processor-architecture-native.rst:224 ../../_includes/gdi/processor-architecture-native.rst:225 ../../_includes/gdi/processor-architecture-native.rst:226
+#: ../../_includes/gdi/processor-architecture-native.rst:227 ../../_includes/gdi/processor-architecture-native.rst:229 ../../_includes/gdi/processor-architecture-native.rst:230 ../../_includes/gdi/processor-architecture-native.rst:231 ../../_includes/gdi/processor-architecture-native.rst:232
+#: ../../_includes/gdi/processor-architecture-native.rst:234 ../../_includes/gdi/processor-architecture-native.rst:235 ../../_includes/gdi/processor-architecture-native.rst:236 ../../_includes/gdi/processor-architecture-native.rst:237 ../../_includes/gdi/processor-architecture-native.rst:239
+#: ../../_includes/gdi/processor-architecture-native.rst:240 ../../_includes/gdi/processor-architecture-native.rst:241 ../../_includes/gdi/processor-architecture-native.rst:242 ../../_includes/gdi/processor-architecture-native.rst:244 ../../_includes/gdi/processor-architecture-native.rst:245
+#: ../../_includes/gdi/processor-architecture-native.rst:246 ../../_includes/gdi/processor-architecture-native.rst:247 ../../_includes/gdi/processor-architecture-native.rst:249 ../../_includes/gdi/processor-architecture-native.rst:250 ../../_includes/gdi/processor-architecture-native.rst:251
+#: ../../_includes/gdi/processor-architecture-native.rst:252 ../../_includes/gdi/processor-architecture-native.rst:254 ../../_includes/gdi/processor-architecture-native.rst:255 ../../_includes/gdi/processor-architecture-native.rst:256 ../../_includes/gdi/processor-architecture-native.rst:257
+#: ../../_includes/gdi/processor-architecture-native.rst:259 ../../_includes/gdi/processor-architecture-native.rst:260 ../../_includes/gdi/processor-architecture-native.rst:261 ../../_includes/gdi/processor-architecture-native.rst:262 ../../_includes/gdi/processor-architecture-native.rst:264
+#: ../../_includes/gdi/processor-architecture-native.rst:265 ../../_includes/gdi/processor-architecture-native.rst:266 ../../_includes/gdi/processor-architecture-native.rst:267 ../../_includes/gdi/processor-architecture-native.rst:269 ../../_includes/gdi/processor-architecture-native.rst:270
+#: ../../_includes/gdi/processor-architecture-native.rst:271 ../../_includes/gdi/processor-architecture-native.rst:272 ../../_includes/gdi/processor-architecture-native.rst:274 ../../_includes/gdi/processor-architecture-native.rst:275 ../../_includes/gdi/processor-architecture-native.rst:276
+#: ../../_includes/gdi/processor-architecture-native.rst:277 ../../_includes/gdi/processor-architecture-native.rst:293 ../../_includes/gdi/processor-architecture-native.rst:294 ../../_includes/gdi/processor-architecture-native.rst:295 ../../_includes/gdi/processor-architecture-native.rst:296
+#: ../../_includes/gdi/processor-architecture-native.rst:298 ../../_includes/gdi/processor-architecture-native.rst:299 ../../_includes/gdi/processor-architecture-native.rst:300 ../../_includes/gdi/processor-architecture-native.rst:301 ../../_includes/gdi/processor-architecture-native.rst:303
+#: ../../_includes/gdi/processor-architecture-native.rst:304 ../../_includes/gdi/processor-architecture-native.rst:305 ../../_includes/gdi/processor-architecture-native.rst:306 ../../_includes/gdi/processor-architecture-native.rst:308 ../../_includes/gdi/processor-architecture-native.rst:309
+#: ../../_includes/gdi/processor-architecture-native.rst:310 ../../_includes/gdi/processor-architecture-native.rst:311 ../../_includes/gdi/processor-architecture-native.rst:313 ../../_includes/gdi/processor-architecture-native.rst:314 ../../_includes/gdi/processor-architecture-native.rst:315
+#: ../../_includes/gdi/processor-architecture-native.rst:316 ../../_includes/gdi/processor-architecture-native.rst:318 ../../_includes/gdi/processor-architecture-native.rst:319 ../../_includes/gdi/processor-architecture-native.rst:320 ../../_includes/gdi/processor-architecture-native.rst:321
+#: ../../_includes/gdi/processor-architecture-native.rst:324 ../../_includes/gdi/processor-architecture-native.rst:328 ../../_includes/gdi/processor-architecture-native.rst:329 ../../_includes/gdi/processor-architecture-native.rst:330 ../../_includes/gdi/processor-architecture-native.rst:331
+#: ../../_includes/gdi/processor-architecture-native.rst:333 ../../_includes/gdi/processor-architecture-native.rst:334 ../../_includes/gdi/processor-architecture-native.rst:335 ../../_includes/gdi/processor-architecture-native.rst:336 ../../_includes/gdi/processor-architecture-native.rst:338
+#: ../../_includes/gdi/processor-architecture-native.rst:339 ../../_includes/gdi/processor-architecture-native.rst:340 ../../_includes/gdi/processor-architecture-native.rst:341 ../../_includes/gdi/processor-architecture-native.rst:343 ../../_includes/gdi/processor-architecture-native.rst:344
+#: ../../_includes/gdi/processor-architecture-native.rst:345 ../../_includes/gdi/processor-architecture-native.rst:346 ../../_includes/gdi/processor-architecture-native.rst:349 ../../_includes/gdi/processor-architecture-native.rst:354 ../../_includes/gdi/processor-architecture-native.rst:359
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:15 ../../_includes/gdi/processor-architecture-subprocess.rst:20 ../../_includes/gdi/processor-architecture-subprocess.rst:25 ../../_includes/gdi/processor-architecture-subprocess.rst:30 ../../_includes/gdi/processor-architecture-subprocess.rst:35
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:40 ../../_includes/gdi/processor-architecture-subprocess.rst:45 ../../_includes/gdi/processor-architecture-subprocess.rst:50 ../../_includes/gdi/processor-architecture-subprocess.rst:55 ../../_includes/gdi/processor-architecture-subprocess.rst:60
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:79 ../../_includes/gdi/processor-architecture-subprocess.rst:84 ../../_includes/gdi/processor-architecture-subprocess.rst:89 ../../_includes/gdi/processor-architecture-subprocess.rst:94 ../../_includes/gdi/processor-architecture-subprocess.rst:99
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:104 ../../_includes/gdi/processor-architecture-subprocess.rst:123 ../../_includes/gdi/processor-architecture-subprocess.rst:124 ../../_includes/gdi/processor-architecture-subprocess.rst:128 ../../_includes/gdi/processor-architecture-subprocess.rst:129
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:133 ../../_includes/gdi/processor-architecture-subprocess.rst:134 ../../_includes/gdi/processor-architecture-subprocess.rst:138 ../../_includes/gdi/processor-architecture-subprocess.rst:139 ../../_includes/gdi/processor-architecture-subprocess.rst:143
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:144 ../../_includes/gdi/processor-architecture-subprocess.rst:148 ../../_includes/gdi/processor-architecture-subprocess.rst:149 ../../_includes/gdi/processor-architecture-subprocess.rst:153 ../../_includes/gdi/processor-architecture-subprocess.rst:154
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:158 ../../_includes/gdi/processor-architecture-subprocess.rst:159 ../../_includes/gdi/processor-architecture-subprocess.rst:163 ../../_includes/gdi/processor-architecture-subprocess.rst:164 ../../_includes/gdi/processor-architecture-subprocess.rst:168
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:169 ../../_includes/gdi/processor-architecture-subprocess.rst:173 ../../_includes/gdi/processor-architecture-subprocess.rst:174 ../../_includes/gdi/processor-architecture-subprocess.rst:178 ../../_includes/gdi/processor-architecture-subprocess.rst:179
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:183 ../../_includes/gdi/processor-architecture-subprocess.rst:184 ../../_includes/gdi/processor-architecture-subprocess.rst:188 ../../_includes/gdi/processor-architecture-subprocess.rst:189 ../../_includes/gdi/processor-architecture-subprocess.rst:207
msgid "Yes"
msgstr "あり"
@@ -155,31 +175,36 @@ msgstr "あり"
msgid ":strong:`Create a new detector`"
msgstr ":strong:`新しいディテクターを作成する`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:24 ../../_includes/admin/roles_alerts_detectors.rst:25 ../../_includes/admin/roles_alerts_detectors.rst:30 ../../_includes/admin/roles_alerts_detectors.rst:31 ../../_includes/admin/roles_alerts_detectors.rst:36 ../../_includes/admin/roles_alerts_detectors.rst:37 ../../_includes/admin/roles_alerts_detectors.rst:48 ../../_includes/admin/roles_alerts_detectors.rst:49
-#: ../../_includes/admin/roles_alerts_detectors.rst:54 ../../_includes/admin/roles_alerts_detectors.rst:55 ../../_includes/admin/roles_alerts_detectors.rst:60 ../../_includes/admin/roles_alerts_detectors.rst:61 ../../_includes/admin/roles_alerts_detectors.rst:66 ../../_includes/admin/roles_alerts_detectors.rst:67 ../../_includes/admin/roles_alerts_detectors.rst:72 ../../_includes/admin/roles_alerts_detectors.rst:73
-#: ../../_includes/admin/roles_alerts_detectors.rst:84 ../../_includes/admin/roles_alerts_detectors.rst:85 ../../_includes/admin/roles_alerts_detectors.rst:90 ../../_includes/admin/roles_alerts_detectors.rst:91 ../../_includes/admin/roles_apm.rst:19 ../../_includes/admin/roles_apm.rst:20 ../../_includes/admin/roles_apm.rst:21 ../../_includes/admin/roles_apm.rst:31 ../../_includes/admin/roles_apm.rst:32
-#: ../../_includes/admin/roles_apm.rst:33 ../../_includes/admin/roles_apm.rst:43 ../../_includes/admin/roles_apm.rst:44 ../../_includes/admin/roles_apm.rst:45 ../../_includes/admin/roles_dashbds_only.rst:21 ../../_includes/admin/roles_dashbds_only.rst:22 ../../_includes/admin/roles_dashbds_only.rst:27 ../../_includes/admin/roles_dashbds_only.rst:28 ../../_includes/admin/roles_data_configuration.rst:19
-#: ../../_includes/admin/roles_data_configuration.rst:20 ../../_includes/admin/roles_data_configuration.rst:21 ../../_includes/admin/roles_log_observer.rst:42 ../../_includes/admin/roles_log_observer.rst:43 ../../_includes/admin/roles_log_observer.rst:54 ../../_includes/admin/roles_log_observer.rst:55 ../../_includes/admin/roles_log_observer.rst:60 ../../_includes/admin/roles_log_observer.rst:61
-#: ../../_includes/admin/roles_log_observer.rst:66 ../../_includes/admin/roles_log_observer.rst:67 ../../_includes/admin/roles_log_observer.rst:73 ../../_includes/admin/roles_log_observer.rst:78 ../../_includes/admin/roles_log_observer.rst:79 ../../_includes/admin/roles_log_observer.rst:84 ../../_includes/admin/roles_log_observer.rst:85 ../../_includes/admin/roles_log_observer.rst:89
-#: ../../_includes/admin/roles_log_observer.rst:90 ../../_includes/admin/roles_log_observer.rst:91 ../../_includes/admin/roles_log_observer.rst:96 ../../_includes/admin/roles_log_observer.rst:97 ../../_includes/admin/roles_log_observer.rst:101 ../../_includes/admin/roles_log_observer.rst:103 ../../_includes/admin/roles_log_observer.rst:107 ../../_includes/admin/roles_log_observer.rst:108
-#: ../../_includes/admin/roles_log_observer.rst:109 ../../_includes/admin/roles_mpm.rst:29 ../../_includes/admin/roles_mpm.rst:30 ../../_includes/admin/roles_mpm.rst:31 ../../_includes/admin/roles_mpm.rst:36 ../../_includes/admin/roles_mpm.rst:37 ../../_includes/admin/roles_mpm.rst:42 ../../_includes/admin/roles_mpm.rst:43 ../../_includes/admin/roles_mpm.rst:48 ../../_includes/admin/roles_mpm.rst:49
-#: ../../_includes/admin/roles_mpm.rst:54 ../../_includes/admin/roles_mpm.rst:55 ../../_includes/admin/roles_mpm.rst:60 ../../_includes/admin/roles_mpm.rst:61 ../../_includes/admin/roles_mpm.rst:66 ../../_includes/admin/roles_mpm.rst:67 ../../_includes/admin/roles_mpm.rst:74 ../../_includes/admin/roles_mpm.rst:75 ../../_includes/admin/roles_navigation.rst:15 ../../_includes/admin/roles_navigation.rst:16
-#: ../../_includes/admin/roles_navigation.rst:17 ../../_includes/admin/roles_navigation.rst:21 ../../_includes/admin/roles_navigation.rst:22 ../../_includes/admin/roles_navigation.rst:23 ../../_includes/admin/roles_navigation.rst:33 ../../_includes/admin/roles_navigation.rst:34 ../../_includes/admin/roles_navigation.rst:35 ../../_includes/admin/roles_navigation.rst:39 ../../_includes/admin/roles_navigation.rst:41
-#: ../../_includes/admin/roles_navigation.rst:51 ../../_includes/admin/roles_navigation.rst:52 ../../_includes/admin/roles_navigation.rst:53 ../../_includes/admin/roles_navigation.rst:63 ../../_includes/admin/roles_navigation.rst:64 ../../_includes/admin/roles_navigation.rst:65 ../../_includes/admin/roles_navigation.rst:70 ../../_includes/admin/roles_navigation.rst:71 ../../_includes/admin/roles_navigation.rst:77
-#: ../../_includes/admin/roles_navigation.rst:78 ../../_includes/admin/roles_navigation.rst:83 ../../_includes/admin/roles_navigation.rst:84 ../../_includes/admin/roles_navigation.rst:88 ../../_includes/admin/roles_navigation.rst:89 ../../_includes/admin/roles_navigation.rst:90 ../../_includes/admin/roles_navs_dashbds.rst:21 ../../_includes/admin/roles_navs_dashbds.rst:22 ../../_includes/admin/roles_navs_dashbds.rst:26
-#: ../../_includes/admin/roles_navs_dashbds.rst:27 ../../_includes/admin/roles_navs_dashbds.rst:28 ../../_includes/admin/rum-roles-caps.rst:20 ../../_includes/admin/rum-roles-caps.rst:21 ../../_includes/admin/rum-roles-caps.rst:56 ../../_includes/admin/rum-roles-caps.rst:57 ../../_includes/admin/rum-roles-caps.rst:62 ../../_includes/admin/rum-roles-caps.rst:63 ../../_includes/admin/synth-roles-caps.rst:14
-#: ../../_includes/admin/synth-roles-caps.rst:15 ../../_includes/admin/synth-roles-caps.rst:26 ../../_includes/admin/synth-roles-caps.rst:27 ../../_includes/admin/synth-roles-caps.rst:28 ../../_includes/admin/synth-roles-caps.rst:38 ../../_includes/admin/synth-roles-caps.rst:39 ../../_includes/admin/synth-roles-caps.rst:40 ../../_includes/admin/synth-roles-caps.rst:44 ../../_includes/admin/synth-roles-caps.rst:45
-#: ../../_includes/admin/synth-roles-caps.rst:46 ../../_includes/admin/synth-roles-caps.rst:50 ../../_includes/admin/synth-roles-caps.rst:51 ../../_includes/admin/synth-roles-caps.rst:52 ../../_includes/collector-env-vars.rst:19 ../../_includes/collector-env-vars.rst:28 ../../_includes/collector-env-vars.rst:31 ../../_includes/collector-env-vars.rst:34 ../../_includes/collector-env-vars.rst:49
-#: ../../_includes/collector-env-vars.rst:52 ../../_includes/collector-env-vars.rst:55 ../../_includes/gdi/processor-architecture-native.rst:58 ../../_includes/gdi/processor-architecture-native.rst:323 ../../_includes/gdi/processor-architecture-native.rst:325 ../../_includes/gdi/processor-architecture-native.rst:326 ../../_includes/gdi/processor-architecture-native.rst:348
-#: ../../_includes/gdi/processor-architecture-native.rst:350 ../../_includes/gdi/processor-architecture-native.rst:351 ../../_includes/gdi/processor-architecture-native.rst:353 ../../_includes/gdi/processor-architecture-native.rst:355 ../../_includes/gdi/processor-architecture-native.rst:356 ../../_includes/gdi/processor-architecture-native.rst:358 ../../_includes/gdi/processor-architecture-native.rst:360
-#: ../../_includes/gdi/processor-architecture-native.rst:361 ../../_includes/gdi/processor-architecture-subprocess.rst:16 ../../_includes/gdi/processor-architecture-subprocess.rst:18 ../../_includes/gdi/processor-architecture-subprocess.rst:21 ../../_includes/gdi/processor-architecture-subprocess.rst:23 ../../_includes/gdi/processor-architecture-subprocess.rst:26
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:28 ../../_includes/gdi/processor-architecture-subprocess.rst:31 ../../_includes/gdi/processor-architecture-subprocess.rst:33 ../../_includes/gdi/processor-architecture-subprocess.rst:36 ../../_includes/gdi/processor-architecture-subprocess.rst:38 ../../_includes/gdi/processor-architecture-subprocess.rst:41
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:43 ../../_includes/gdi/processor-architecture-subprocess.rst:46 ../../_includes/gdi/processor-architecture-subprocess.rst:48 ../../_includes/gdi/processor-architecture-subprocess.rst:51 ../../_includes/gdi/processor-architecture-subprocess.rst:53 ../../_includes/gdi/processor-architecture-subprocess.rst:56
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:58 ../../_includes/gdi/processor-architecture-subprocess.rst:61 ../../_includes/gdi/processor-architecture-subprocess.rst:63 ../../_includes/gdi/processor-architecture-subprocess.rst:80 ../../_includes/gdi/processor-architecture-subprocess.rst:82 ../../_includes/gdi/processor-architecture-subprocess.rst:85
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:87 ../../_includes/gdi/processor-architecture-subprocess.rst:90 ../../_includes/gdi/processor-architecture-subprocess.rst:92 ../../_includes/gdi/processor-architecture-subprocess.rst:95 ../../_includes/gdi/processor-architecture-subprocess.rst:97 ../../_includes/gdi/processor-architecture-subprocess.rst:100
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:102 ../../_includes/gdi/processor-architecture-subprocess.rst:105 ../../_includes/gdi/processor-architecture-subprocess.rst:107 ../../_includes/gdi/processor-architecture-subprocess.rst:126 ../../_includes/gdi/processor-architecture-subprocess.rst:131 ../../_includes/gdi/processor-architecture-subprocess.rst:136
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:141 ../../_includes/gdi/processor-architecture-subprocess.rst:146 ../../_includes/gdi/processor-architecture-subprocess.rst:151 ../../_includes/gdi/processor-architecture-subprocess.rst:156 ../../_includes/gdi/processor-architecture-subprocess.rst:161 ../../_includes/gdi/processor-architecture-subprocess.rst:166
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:171 ../../_includes/gdi/processor-architecture-subprocess.rst:176 ../../_includes/gdi/processor-architecture-subprocess.rst:181 ../../_includes/gdi/processor-architecture-subprocess.rst:186 ../../_includes/gdi/processor-architecture-subprocess.rst:191 ../../_includes/gdi/processor-architecture-subprocess.rst:210
+#: ../../_includes/admin/roles_alerts_detectors.rst:24 ../../_includes/admin/roles_alerts_detectors.rst:25 ../../_includes/admin/roles_alerts_detectors.rst:30 ../../_includes/admin/roles_alerts_detectors.rst:31 ../../_includes/admin/roles_alerts_detectors.rst:36 ../../_includes/admin/roles_alerts_detectors.rst:37
+#: ../../_includes/admin/roles_alerts_detectors.rst:48 ../../_includes/admin/roles_alerts_detectors.rst:49 ../../_includes/admin/roles_alerts_detectors.rst:54 ../../_includes/admin/roles_alerts_detectors.rst:55 ../../_includes/admin/roles_alerts_detectors.rst:60 ../../_includes/admin/roles_alerts_detectors.rst:61
+#: ../../_includes/admin/roles_alerts_detectors.rst:66 ../../_includes/admin/roles_alerts_detectors.rst:67 ../../_includes/admin/roles_alerts_detectors.rst:72 ../../_includes/admin/roles_alerts_detectors.rst:73 ../../_includes/admin/roles_alerts_detectors.rst:84 ../../_includes/admin/roles_alerts_detectors.rst:85
+#: ../../_includes/admin/roles_alerts_detectors.rst:90 ../../_includes/admin/roles_alerts_detectors.rst:91 ../../_includes/admin/roles_apm.rst:19 ../../_includes/admin/roles_apm.rst:20 ../../_includes/admin/roles_apm.rst:21 ../../_includes/admin/roles_apm.rst:31 ../../_includes/admin/roles_apm.rst:32
+#: ../../_includes/admin/roles_apm.rst:33 ../../_includes/admin/roles_apm.rst:43 ../../_includes/admin/roles_apm.rst:44 ../../_includes/admin/roles_apm.rst:45 ../../_includes/admin/roles_dashbds_only.rst:21 ../../_includes/admin/roles_dashbds_only.rst:22 ../../_includes/admin/roles_dashbds_only.rst:27
+#: ../../_includes/admin/roles_dashbds_only.rst:28 ../../_includes/admin/roles_data_configuration.rst:19 ../../_includes/admin/roles_data_configuration.rst:20 ../../_includes/admin/roles_data_configuration.rst:21 ../../_includes/admin/roles_log_observer.rst:35 ../../_includes/admin/roles_log_observer.rst:36
+#: ../../_includes/admin/roles_log_observer.rst:53 ../../_includes/admin/roles_log_observer.rst:54 ../../_includes/admin/roles_log_observer.rst:60 ../../_includes/admin/roles_log_observer.rst:64 ../../_includes/admin/roles_log_observer.rst:66 ../../_includes/admin/roles_log_observer.rst:70
+#: ../../_includes/admin/roles_log_observer.rst:71 ../../_includes/admin/roles_log_observer.rst:72 ../../_includes/admin/roles_mpm.rst:29 ../../_includes/admin/roles_mpm.rst:30 ../../_includes/admin/roles_mpm.rst:31 ../../_includes/admin/roles_mpm.rst:36 ../../_includes/admin/roles_mpm.rst:37
+#: ../../_includes/admin/roles_mpm.rst:42 ../../_includes/admin/roles_mpm.rst:43 ../../_includes/admin/roles_mpm.rst:48 ../../_includes/admin/roles_mpm.rst:49 ../../_includes/admin/roles_mpm.rst:54 ../../_includes/admin/roles_mpm.rst:55 ../../_includes/admin/roles_mpm.rst:60 ../../_includes/admin/roles_mpm.rst:61
+#: ../../_includes/admin/roles_mpm.rst:66 ../../_includes/admin/roles_mpm.rst:67 ../../_includes/admin/roles_mpm.rst:74 ../../_includes/admin/roles_mpm.rst:75 ../../_includes/admin/roles_navigation.rst:15 ../../_includes/admin/roles_navigation.rst:16 ../../_includes/admin/roles_navigation.rst:17
+#: ../../_includes/admin/roles_navigation.rst:21 ../../_includes/admin/roles_navigation.rst:22 ../../_includes/admin/roles_navigation.rst:23 ../../_includes/admin/roles_navigation.rst:33 ../../_includes/admin/roles_navigation.rst:34 ../../_includes/admin/roles_navigation.rst:35 ../../_includes/admin/roles_navigation.rst:39
+#: ../../_includes/admin/roles_navigation.rst:41 ../../_includes/admin/roles_navigation.rst:51 ../../_includes/admin/roles_navigation.rst:52 ../../_includes/admin/roles_navigation.rst:53 ../../_includes/admin/roles_navigation.rst:63 ../../_includes/admin/roles_navigation.rst:64 ../../_includes/admin/roles_navigation.rst:65
+#: ../../_includes/admin/roles_navigation.rst:70 ../../_includes/admin/roles_navigation.rst:71 ../../_includes/admin/roles_navigation.rst:77 ../../_includes/admin/roles_navigation.rst:78 ../../_includes/admin/roles_navigation.rst:83 ../../_includes/admin/roles_navigation.rst:84 ../../_includes/admin/roles_navigation.rst:88
+#: ../../_includes/admin/roles_navigation.rst:89 ../../_includes/admin/roles_navigation.rst:90 ../../_includes/admin/roles_navs_dashbds.rst:21 ../../_includes/admin/roles_navs_dashbds.rst:22 ../../_includes/admin/roles_navs_dashbds.rst:26 ../../_includes/admin/roles_navs_dashbds.rst:27
+#: ../../_includes/admin/roles_navs_dashbds.rst:28 ../../_includes/admin/rum-roles-caps.rst:20 ../../_includes/admin/rum-roles-caps.rst:21 ../../_includes/admin/rum-roles-caps.rst:56 ../../_includes/admin/rum-roles-caps.rst:57 ../../_includes/admin/rum-roles-caps.rst:62 ../../_includes/admin/rum-roles-caps.rst:63
+#: ../../_includes/admin/synth-roles-caps.rst:14 ../../_includes/admin/synth-roles-caps.rst:15 ../../_includes/admin/synth-roles-caps.rst:26 ../../_includes/admin/synth-roles-caps.rst:27 ../../_includes/admin/synth-roles-caps.rst:28 ../../_includes/admin/synth-roles-caps.rst:38 ../../_includes/admin/synth-roles-caps.rst:39
+#: ../../_includes/admin/synth-roles-caps.rst:40 ../../_includes/admin/synth-roles-caps.rst:44 ../../_includes/admin/synth-roles-caps.rst:45 ../../_includes/admin/synth-roles-caps.rst:46 ../../_includes/admin/synth-roles-caps.rst:50 ../../_includes/admin/synth-roles-caps.rst:51 ../../_includes/admin/synth-roles-caps.rst:52
+#: ../../_includes/collector-env-vars.rst:19 ../../_includes/collector-env-vars.rst:28 ../../_includes/collector-env-vars.rst:31 ../../_includes/collector-env-vars.rst:34 ../../_includes/collector-env-vars.rst:49 ../../_includes/collector-env-vars.rst:52 ../../_includes/collector-env-vars.rst:55
+#: ../../_includes/gdi/processor-architecture-native.rst:58 ../../_includes/gdi/processor-architecture-native.rst:323 ../../_includes/gdi/processor-architecture-native.rst:325 ../../_includes/gdi/processor-architecture-native.rst:326 ../../_includes/gdi/processor-architecture-native.rst:348
+#: ../../_includes/gdi/processor-architecture-native.rst:350 ../../_includes/gdi/processor-architecture-native.rst:351 ../../_includes/gdi/processor-architecture-native.rst:353 ../../_includes/gdi/processor-architecture-native.rst:355 ../../_includes/gdi/processor-architecture-native.rst:356
+#: ../../_includes/gdi/processor-architecture-native.rst:358 ../../_includes/gdi/processor-architecture-native.rst:360 ../../_includes/gdi/processor-architecture-native.rst:361 ../../_includes/gdi/processor-architecture-subprocess.rst:16 ../../_includes/gdi/processor-architecture-subprocess.rst:18
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:21 ../../_includes/gdi/processor-architecture-subprocess.rst:23 ../../_includes/gdi/processor-architecture-subprocess.rst:26 ../../_includes/gdi/processor-architecture-subprocess.rst:28 ../../_includes/gdi/processor-architecture-subprocess.rst:31
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:33 ../../_includes/gdi/processor-architecture-subprocess.rst:36 ../../_includes/gdi/processor-architecture-subprocess.rst:38 ../../_includes/gdi/processor-architecture-subprocess.rst:41 ../../_includes/gdi/processor-architecture-subprocess.rst:43
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:46 ../../_includes/gdi/processor-architecture-subprocess.rst:48 ../../_includes/gdi/processor-architecture-subprocess.rst:51 ../../_includes/gdi/processor-architecture-subprocess.rst:53 ../../_includes/gdi/processor-architecture-subprocess.rst:56
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:58 ../../_includes/gdi/processor-architecture-subprocess.rst:61 ../../_includes/gdi/processor-architecture-subprocess.rst:63 ../../_includes/gdi/processor-architecture-subprocess.rst:80 ../../_includes/gdi/processor-architecture-subprocess.rst:82
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:85 ../../_includes/gdi/processor-architecture-subprocess.rst:87 ../../_includes/gdi/processor-architecture-subprocess.rst:90 ../../_includes/gdi/processor-architecture-subprocess.rst:92 ../../_includes/gdi/processor-architecture-subprocess.rst:95
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:97 ../../_includes/gdi/processor-architecture-subprocess.rst:100 ../../_includes/gdi/processor-architecture-subprocess.rst:102 ../../_includes/gdi/processor-architecture-subprocess.rst:105 ../../_includes/gdi/processor-architecture-subprocess.rst:107
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:126 ../../_includes/gdi/processor-architecture-subprocess.rst:131 ../../_includes/gdi/processor-architecture-subprocess.rst:136 ../../_includes/gdi/processor-architecture-subprocess.rst:141 ../../_includes/gdi/processor-architecture-subprocess.rst:146
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:151 ../../_includes/gdi/processor-architecture-subprocess.rst:156 ../../_includes/gdi/processor-architecture-subprocess.rst:161 ../../_includes/gdi/processor-architecture-subprocess.rst:166 ../../_includes/gdi/processor-architecture-subprocess.rst:171
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:176 ../../_includes/gdi/processor-architecture-subprocess.rst:181 ../../_includes/gdi/processor-architecture-subprocess.rst:186 ../../_includes/gdi/processor-architecture-subprocess.rst:191 ../../_includes/gdi/processor-architecture-subprocess.rst:210
msgid "No"
msgstr "なし"
@@ -291,67 +316,39 @@ msgstr ":strong:`トレーニング`"
msgid ":strong:`View Timeline`"
msgstr ":strong:`タイムラインを表示する`"
-#: ../../_includes/admin/roles_log_observer.rst:21
-msgid ":strong:`Live Tail`"
-msgstr ":strong:`Live Tail`"
-
-#: ../../_includes/admin/roles_log_observer.rst:27
+#: ../../_includes/admin/roles_log_observer.rst:20
msgid ":strong:`Search and filter logs`"
msgstr ":strong:`ログを検索およびフィルターする`"
-#: ../../_includes/admin/roles_log_observer.rst:33
+#: ../../_includes/admin/roles_log_observer.rst:26
msgid ":strong:`Aggregate logs`"
msgstr ":strong:`ログを集計する`"
-#: ../../_includes/admin/roles_log_observer.rst:39
+#: ../../_includes/admin/roles_log_observer.rst:32
msgid ":strong:`Create and manage field aliases`"
msgstr ":strong:`フィールドエイリアスを作成および管理する`"
-#: ../../_includes/admin/roles_log_observer.rst:45
+#: ../../_includes/admin/roles_log_observer.rst:38
+msgid ":strong:`View field aliases`"
+msgstr ":strong:`フィールドエイリアスを表示する`"
+
+#: ../../_includes/admin/roles_log_observer.rst:44
msgid ":strong:`View individual log details`"
msgstr ":strong:`個々のログの詳細を表示する`"
-#: ../../_includes/admin/roles_log_observer.rst:51
-msgid ":strong:`Create and manage log processing rules`"
-msgstr ":strong:`ログ処理ルールを作成および管理する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:57
-msgid ":strong:`Apply processing rules across historical data`"
-msgstr ":strong:`過去のデータに処理ルールを適用する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:63
+#: ../../_includes/admin/roles_log_observer.rst:50
msgid ":strong:`Save and share Log Observer queries`"
msgstr ":strong:`Log Observer クエリを保存および共有する`"
-#: ../../_includes/admin/roles_log_observer.rst:69
+#: ../../_includes/admin/roles_log_observer.rst:56
msgid ":strong:`Add logs data to Splunk Observability Cloud dashboards`"
msgstr ":strong:`ログデータを Splunk Observability Cloud ダッシュボードに追加する`"
-#: ../../_includes/admin/roles_log_observer.rst:75
-msgid ":strong:`Transform data with log processing rules`"
-msgstr ":strong:`ログ処理ルールでデータを変換する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:81
-msgid ":strong:`Create and manage log metricization rules`"
-msgstr ":strong:`ログのメトリクス化ルールを作成および管理する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:87
-msgid ":strong:`Create new S3 connection to allow infinite logging rules`"
-msgstr ":strong:`無限のロギングルールを可能にする新しい S3 接続を作成する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:93
-msgid ":strong:`Create and manage infinite logging rules`"
-msgstr ":strong:`無限のロギングルールを作成および管理する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:95
-msgid "Yes - after admin creates S3 connection"
-msgstr "権限あり - 管理者がS3接続を作成した後"
-
-#: ../../_includes/admin/roles_log_observer.rst:99 ../../_includes/admin/roles_navigation.rst:37
+#: ../../_includes/admin/roles_log_observer.rst:62 ../../_includes/admin/roles_navigation.rst:37
msgid ":strong:`View org subscription usage`"
msgstr ":strong:`組織のサブスクリプション使用状況を表示する`"
-#: ../../_includes/admin/roles_log_observer.rst:105
+#: ../../_includes/admin/roles_log_observer.rst:68
msgid ":strong:`Set up Log Observer Connect connection to Splunk platform`"
msgstr ":strong:`Splunk プラットフォームに Log Observer Connect 接続をセットアップする`"
@@ -397,7 +394,9 @@ msgstr ":strong:`メトリクスパイプライン管理ルールセット全体
#: ../../_includes/admin/roles_mpm.rst:71
msgid "Yes, if default routing is real-time storage and the user deletes all aggregation rules. No, if default routing is Drop Data and the user deletes all aggregation rules. Metrics pipeline management doesn't delete the ruleset. An Admin needs to change the routing to real-time storage and delete the ruleset."
-msgstr "デフォルトのルーティングがリアルタイムストレージで、ユーザーがすべての集計ルールを削除する場合は、権限あり。デフォルトのルーティングが[Drop Data]で、ユーザーがすべての集計ルールを削除する場合は、権限なし。メトリクスパイプライン管理は、ルールセットの削除はしません。管理者がルーティングをリアルタイムストレージに変更して、ルールセットを削除する必要があります。"
+msgstr ""
+"デフォルトのルーティングがリアルタイムストレージで、ユーザーがすべての集計ルールを削除する場合は、権限あり。デフォルトのルーティングが[Drop Data]で、ユーザーがすべての集計ルールを削除する場合は、権限なし。メトリクスパイプライン管理は、ルールセットの削除はしません。管理者がルーティングをリアルタイムストレージに変更して、ルー"
+"ルセットを削除する必要があります。"
#: ../../_includes/admin/roles_navigation.rst:13
msgid ":strong:`View General Settings`"
@@ -597,54 +596,68 @@ msgstr "シグナル内で処理されるメトリック時系列の最大数"
#: ../../_includes/chart-mts-count.rst:10
msgid ""
-"To maximize responsiveness when processing incoming metric data, Splunk Observability Cloud limits the number of :term:`metric time series` (MTS) processed in a signal (single plot line) on a chart or detector. If the total number of time series for the metric specified in your signal exceeds this limit, Splunk Observability Cloud displays an orange border around the MTS number. This border notifies you that the "
-"processed data reflects only a subset of the time series in the data."
+"To maximize responsiveness when processing incoming metric data, Splunk Observability Cloud limits the number of :term:`metric time series` (MTS) processed in a signal (single plot line) on a chart, detector, or navigator. If the total number of time series for the metric specified in your signal exceeds this limit, Splunk "
+"Observability Cloud displays a message at the top of the chart, detector, or navigator. This message notifies you that the processed data reflects only a subset of the time series in the data."
msgstr ""
-"受信したメトリクスデータを処理する際の応答性を最大化するため、Splunk Observability Cloudは、チャートまたはディテクター上のシグナル(単一のプロット線)で処理される :term:`metric time series` (MTS)の数を制限しています。シグナル内で指定したメトリクスの時系列の総数がこの制限を超えると、Splunk Observability Cloudは、MTS番号の周囲にオレンジ色の境界線を表示します。この境界線が表示されている場合は、処理済みのデータが反映し"
-"ているのはデータ内の時系列のサブセットのみであることを意味します。"
+"受信したメトリクスデータを処理する際の応答性を最大化するため、Splunk Observability Cloudでは、チャート、ディテクター、またはナビゲーター上のシグナル (単一のプロットライン) で処理される :term:`metric time series` (MTS) の数を制限しています。シグナルで指定したメトリクスの時系列の合計数がこの制限を超えると、Splunk Observability "
+"Cloudはチャート、ディテクター、またはナビゲーターの上部にメッセージを表示します。このメッセージは、処理されたデータがデータ内の時系列のサブセットのみを反映していることを通知します。"
-#: ../../_includes/chart-mts-count.rst:14
-msgid "To ensure that your charts and detectors are processing all the time series in the data, apply as many filters as necessary to make the MTS number less than the maximum. You'll know you've succeeded when the orange outline around the MTS number and the message at the top of the chart or detector no longer appear."
-msgstr "チャートやディテクターがデータ内のすべての時系列を処理していることを保証するには、MTSの数が最大値より小さくなるようにするために必要な数のフィルターを適用します。MTS番号の周囲のオレンジ色の囲い線と、チャートまたはディテクターの上部のメッセージが表示されなくなれば、成功です。"
+#: ../../_includes/chart-mts-count.rst:12
+msgid "To ensure that your charts, detectors, and navigators are processing all the time series in the data, apply as many filters as necessary to make the MTS number less than the maximum. You'll know you've succeeded when the message at the top of the chart, detector, or navigator no longer appears."
+msgstr "チャート、ディテクター、ナビゲーターがデータ内のすべての時系列を処理していることを確認するには、MTS数が最大値以下になるように必要な数のフィルターを適用します。チャート、ディテクター、またはナビゲーターの上部にあるメッセージが表示されなくなれば、成功したことがわかります。"
-#: ../../_includes/chart-mts-count.rst:17
+#: ../../_includes/chart-mts-count.rst:14
msgid ""
-"For example, suppose you want to display the sum of available disk capacity per availability zone. You might use ``df.complex.free`` as your signal, then apply the Sum analytics function, grouped by availability zone. If you have a large number of disks, the number of MTS returned by this signal might exceed the limit. To reduce the number of MTS, use filters and multiple plots instead of the group-by option in the "
-"Sum analytics function."
-msgstr "例えば、アベイラビリティゾーンごとに利用可能なディスク容量の合計を表示したいとします。この場合、``df.complex.free`` をシグナルとして使用し、アベイラビリティゾーンごとにグループ化してSum分析関数を適用するかもしれません。ディスクの数が多い場合、このシグナルが返すMTSの数が制限を超える可能性があります。MTSの数を減らすには、Sum分析関数の「group-by」オプションの代わりに、フィルターと複数のプロットを使用します。"
+"For example, suppose you want to display the sum of available disk capacity per availability zone. You might use ``df.complex.free`` as your signal, then apply the Sum analytics function, grouped by availability zone. If you have a large number of disks, the number of MTS returned by this signal might exceed the limit. To "
+"reduce the number of MTS, use filters and multiple plots instead of the group-by option in the Sum analytics function."
+msgstr ""
+"例えば、アベイラビリティゾーンごとに利用可能なディスク容量の合計を表示したいとします。この場合、``df.complex.free`` をシグナルとして使用し、アベイラビリティゾーンごとにグループ化してSum分析関数を適用するかもしれません。ディスクの数が多い場合、このシグナルが返すMTSの数が制限を超える可能性があります。MTSの数を減らすには、Sum分"
+"析関数の「group-by」オプションの代わりに、フィルターと複数のプロットを使用します。"
+
+#: ../../_includes/chart-mts-count.rst:18
+msgid "Use filters and multiple plots on charts and detectors"
+msgstr "チャートとディテクターでフィルターと複数のプロットを使用する"
-#: ../../_includes/chart-mts-count.rst:21
+#: ../../_includes/chart-mts-count.rst:20
msgid "To use filters and multiple plots instead of the group-by option, follow these steps:"
msgstr "「group-by」オプションの代わりにフィルターと複数のプロットを使用するには、以下の手順に従います。"
-#: ../../_includes/chart-mts-count.rst:23
+#: ../../_includes/chart-mts-count.rst:22
msgid "Apply a filter for the plot that selects a single availability zone, then use the Sum analytic function without the group-by option."
msgstr "単一のアベイラビリティゾーンを選択するフィルターをプロットに適用し、「group-by」オプションを使用せずにSum分析関数を使用します。"
-#: ../../_includes/chart-mts-count.rst:24
+#: ../../_includes/chart-mts-count.rst:23
msgid "At the end of the plot row, select :guilabel:`Configure plot` to open :guilabel:`Visualization Options`, then select a color from :guilabel:`Plot Color`."
msgstr "プロット行の最後で、:guilabel:`Configure plot` を選択して :guilabel:`Visualization Options` を開き、:guilabel:`Plot Color` から色を選択します。"
-#: ../../_includes/chart-mts-count.rst:25
-msgid "Clone the plot. To do this, open the :guilabel:`plot actions` menu at the end of the plot row in the :guilabel:`Plot Editor`, then select :menuselection:`Clone`."
-msgstr "このプロットを複製します。これを行うには、:guilabel:`Plot Editor` のプロット行の最後にある :guilabel:`plot actions` メニューを開き、:menuselection:`Clone` を選択します。"
+#: ../../_includes/chart-mts-count.rst:24
+msgid "Clone the plot. To do this, open the :guilabel:`Plot actions` menu at the end of the plot row in the :guilabel:`Plot Editor`, then select :menuselection:`Clone`."
+msgstr "このプロットを複製します。これを行うには、:guilabel:`Plot Editor` のプロット行の最後にある :guilabel:`Plot actions` メニューを開き、:menuselection:`Clone` を選択します。"
-#: ../../_includes/chart-mts-count.rst:27
+#: ../../_includes/chart-mts-count.rst:26
msgid "In the cloned plot, change the availability zone filter to select another availability zone, and change the :guilabel:`Plot Color` to give the cloned plot a color that's different from the original plot."
msgstr "複製したプロット内で、アベイラビリティゾーンフィルターを変更して別のアベイラビリティゾーンを選択し、:guilabel:`Plot Color` を変更して、複製したプロットに元のプロットとは異なる色を付けます。"
-#: ../../_includes/chart-mts-count.rst:29
+#: ../../_includes/chart-mts-count.rst:28
msgid "Continue to clone plots, change the availability zone filter, and change the plot color until you have one plot for each availability zone."
msgstr "各アベイラビリティゾーンにつきプロットが1つずつ作成されるまで、プロットの複製、アベイラビリティゾーンフィルターの変更、プロットカラーの変更を繰り返します。"
-#: ../../_includes/chart-mts-count.rst:31
+#: ../../_includes/chart-mts-count.rst:30
msgid "The result is one chart with a separate plot line for each availability zone. Each plot line has a distinct color."
msgstr "この手順を完了すると、各アベイラビリティゾーンごとに異なるプロットラインを持つ1つのチャートが出来上がります。それぞれのプロットラインには、異なる色が付いています。"
-#: ../../_includes/chart-mts-count.rst:33
+#: ../../_includes/chart-mts-count.rst:32
msgid "For more information on filtering, see :ref:`filter-signal`."
msgstr "フィルタリングの詳細については、:ref:`filter-signal` を参照してください。"
+#: ../../_includes/chart-mts-count.rst:35
+msgid "Use filters on navigators"
+msgstr "ナビゲーターでフィルターを使用する"
+
+#: ../../_includes/chart-mts-count.rst:37
+msgid "To use filters on navigators, see :ref:`add-filter`."
+msgstr "ナビゲーターでフィルターを使用するには、:ref:`add-filter` を参照してください。"
+
#: ../../_includes/collector-components.rst:1
msgid "The Splunk Distribution of the OpenTelemetry Collector has the following components and services:"
msgstr "Splunk Distribution of the OpenTelemetry Collectorには、以下のコンポーネントとサービスがあります:"
@@ -789,7 +802,8 @@ msgstr "Splunk 固有の環境変数を以下の表に示します:"
msgid "Name"
msgstr "Name"
-#: ../../_includes/collector-env-vars.rst:9 ../../_includes/gdi/collector-available-connectors.rst:7 ../../_includes/gdi/collector-available-exporters.rst:7 ../../_includes/gdi/collector-available-extensions.rst:7 ../../_includes/gdi/collector-available-processors.rst:7 ../../_includes/gdi/lambda-configuration.rst:17 ../../_includes/gdi/otel-receivers-table.rst:7
+#: ../../_includes/collector-env-vars.rst:9 ../../_includes/gdi/collector-available-connectors.rst:7 ../../_includes/gdi/collector-available-exporters.rst:7 ../../_includes/gdi/collector-available-extensions.rst:7 ../../_includes/gdi/collector-available-processors.rst:7 ../../_includes/gdi/lambda-configuration.rst:17
+#: ../../_includes/gdi/otel-receivers-table.rst:7
msgid "Description"
msgstr "説明"
@@ -858,8 +872,12 @@ msgid "``SPLUNK_DEBUG_CONFIG_SERVER``"
msgstr "``SPLUNK_DEBUG_CONFIG_SERVER``"
#: ../../_includes/collector-env-vars.rst:33
-msgid "By default, the Collector provides a sensitive value-redacting, local config server listening at http://localhost:55554/debug/configz/effective, which is helpful in troubleshooting. To disable it, set ``SPLUNK_DEBUG_CONFIG_SERVER`` to any value other than ``true``. To set the desired port to listen to, use ``SPLUNK_DEBUG_CONFIG_SERVER_PORT``"
-msgstr "デフォルトでは、Collector は http://localhost:55554/debug/configz/effective でリッスンしている、センシティブな値を再編集するローカルコンフィグサーバーを提供し、トラブルシューティングに役立ちます。これを無効にするには、``SPLUNK_DEBUG_CONFIG_SERVER`` を ``true`` 以外の値に設定します。リッスンする希望のポートを設定するには ``SPLUNK_DEBUG_CONFIG_SERVER_PORT`` を使用します。"
+msgid ""
+"By default, the Collector provides a sensitive value-redacting, local config server listening at http://localhost:55554/debug/configz/effective, which is helpful in troubleshooting. To disable it, set ``SPLUNK_DEBUG_CONFIG_SERVER`` to any value other than ``true``. To set the desired port to listen to, use "
+"``SPLUNK_DEBUG_CONFIG_SERVER_PORT``"
+msgstr ""
+"デフォルトでは、Collector は http://localhost:55554/debug/configz/effective でリッスンしている、センシティブな値を再編集するローカルコンフィグサーバーを提供し、トラブルシューティングに役立ちます。これを無効にするには、``SPLUNK_DEBUG_CONFIG_SERVER`` を ``true`` 以外の値に設定します。リッスンする希望のポートを設定するには "
+"``SPLUNK_DEBUG_CONFIG_SERVER_PORT`` を使用します。"
#: ../../_includes/collector-env-vars.rst:35
msgid "``SPLUNK_HEC_TOKEN``"
@@ -973,23 +991,15 @@ msgstr "Splunk Distribution of OpenTelemetry Collectorを再起動します。"
msgid "Deploy the Splunk Distribution of OpenTelemetry Collector to your host:"
msgstr "Splunk Distribution of OpenTelemetry Collector をホストにデプロイします:"
-#: ../../_includes/collector-upgrade.rst:1
-msgid "The installer script uses one of the supported package managers to install the Collector."
-msgstr "インストーラスクリプトは、サポートされているパッケージマネージャーのいずれかを使用してCollectorをインストールします。"
-
-#: ../../_includes/collector-upgrade.rst:3
-msgid "When you update the Collector using the official packages, configuration files are never overridden. If you need to update the configuration after an update, edit them manually before backward compatibility is dropped."
-msgstr "公式パッケージを使用してCollectorをアップデートする場合、設定ファイルが上書きされることはありません。更新後に設定を更新する必要がある場合は、下位互換性が失われる前に手動で編集してください。"
-
-#: ../../_includes/collector-upgrade.rst:6
+#: ../../_includes/collector-upgrade.rst:2
msgid "General guidelines"
msgstr "一般的なガイドライン"
#: ../../_includes/collector-upgrade.rst:8
-msgid "Apply the following changes to the Collector configuration files for specific version upgrades."
-msgstr "特定のバージョンアップのために、Collector 構成ファイルに以下の変更を適用します。"
+msgid "Apply the following changes to the Collector configuration files for specific version upgrades. For more details refer to the :new-page:`Upgrade guidelines ` in GitHub."
+msgstr "特定のバージョンアップのために、Collector設定ファイルに以下の変更を適用します。詳細については、GitHubの :new-page:`アップグレードガイドライン` を参照してください。"
-#: ../../_includes/collector-upgrade.rst:15
+#: ../../_includes/collector-upgrade.rst:11
msgid "From 0.96.1 to 0.97.0"
msgstr "0.96.1から0.97.0"
@@ -1021,43 +1031,45 @@ msgstr "ガベージコレクションの頻度を減らすには、``GOMEMLIMIT
msgid "For more information, see :new-page:`Go environment variables `."
msgstr "詳細は :new-page:`Go 環境変数` を参照してください。"
-#: ../../_includes/collector-upgrade.rst:33
+#: ../../_includes/collector-upgrade.rst:24
msgid "From 0.68.0 to 0.69.0"
msgstr "0.68.0から0.69.0"
-#: ../../_includes/collector-upgrade.rst:35
+#: ../../_includes/collector-upgrade.rst:26
msgid "The ``gke`` and ``gce`` resource detectors in the ``resourcedetection`` processor have been replaced with the ``gcp`` resource detector. If you have ``gke`` and ``gce`` detectors configured in the ``resourcedetection`` processor, update your configuration accordingly."
-msgstr "``resourcedetection`` プロセッサーの ``gke`` および ``gce`` リソースディテクターは、``gcp`` リソースディテクターに置き換えられました。 ``resourcedetection`` プロセッサーに ``gke`` および ``gce`` ディテクターを設定している場合は、それに応じて設定を更新してください。"
+msgstr "``resourcedetection`` プロセッサーの ``gke`` および ``gce`` リソースディテクターは、``gcp`` リソースディテクターに置き換えられました。 ``resourcedetection`` プロセッサーに ``gke`` および ``gce`` ディテクターを設定している場合は、それに応じて設定を更新してください。"
-#: ../../_includes/collector-upgrade.rst:37
+#: ../../_includes/collector-upgrade.rst:28
msgid "For more information, see :ref:`resourcedetection-processor`."
msgstr "詳細は :ref:`resourcedetection-processor` を参照してください。"
-#: ../../_includes/collector-upgrade.rst:40
+#: ../../_includes/collector-upgrade.rst:31
msgid "From 0.41.0 to 0.42.0"
msgstr "0.41.0 から 0.42.0"
-#: ../../_includes/collector-upgrade.rst:42
-msgid "The Splunk Distribution of the OpenTelemetry Collector used to evaluate user configuration twice and this required escaping of each ``$`` symbol with ``$$`` to prevent unwanted environment variable expansion. The issue was fixed in the 0.42.0 version. Any occurrences of ``$$`` in your configuration need to be replaced with ``$``."
+#: ../../_includes/collector-upgrade.rst:33
+msgid ""
+"The Splunk Distribution of the OpenTelemetry Collector used to evaluate user configuration twice and this required escaping of each ``$`` symbol with ``$$`` to prevent unwanted environment variable expansion. The issue was fixed in the 0.42.0 version. Any occurrences of ``$$`` in your configuration need to be replaced with "
+"``$``."
msgstr "The Splunk Distribution of OpenTelemetry Collectorは、ユーザー設定を2回評価していため、不要な環境変数の展開を防ぐために各 ``$`` 記号を ``$$`` でエスケープする必要がありました。この問題は、0.42.0バージョンで修正されました。設定に ``$$`` が出現する場合は、 ``$`` に置き換える必要があります。"
-#: ../../_includes/collector-upgrade.rst:45
+#: ../../_includes/collector-upgrade.rst:36
msgid "From 0.35.0 to 0.36.0"
msgstr "0.35.0 から 0.36.0"
-#: ../../_includes/collector-upgrade.rst:47
+#: ../../_includes/collector-upgrade.rst:38
msgid "Move the config parameter ``exporters -> otlp -> insecure`` to ``exporters -> otlp -> tls -> insecure``."
msgstr "コンフィグパラメーター ``exporters -> otlp -> insecure`` を ``exporters -> otlp -> tls -> insecure`` に移動します。"
-#: ../../_includes/collector-upgrade.rst:49
+#: ../../_includes/collector-upgrade.rst:40
msgid "The ``otlp`` exporter configuration must look like this:"
msgstr "``otlp`` エクスポーターのコンフィギュレーションは次のようになっている必要があります:"
-#: ../../_includes/collector-upgrade.rst:61
+#: ../../_includes/collector-upgrade.rst:52
msgid "From 0.34.0 to 0.35.0"
msgstr "0.34.0 から 0.35.0"
-#: ../../_includes/collector-upgrade.rst:63
+#: ../../_includes/collector-upgrade.rst:54
msgid "Move the ``ballast_size_mib`` parameter from the ``memory_limiter`` processor to the ``memory_ballast`` extension, and rename it to ``size_mib``."
msgstr "``ballast_size_mib`` パラメータを ``memory_limiter`` プロセッサーから ``memory_ballast`` エクステンションに移動し、名前を ``size_mib`` に変更します。"
@@ -1067,19 +1079,19 @@ msgstr "OpenTelemetry Collectorは、テレメトリーデータを受信、処
#: ../../_includes/collector-works.rst:3
msgid ""
-"After you've installed the Collector in your platform, update your config file to define the different Collector components (receivers, processors, and exporters) you want to use. However, receivers and exporters are not enabled until they are in a pipeline, as explained in the next paragraph. You can also add extensions that provide the OpenTelemetry Collector with additional functionality, such as diagnostics and "
-"health checks. Find the available components at :ref:`otel-components`."
+"After you've installed the Collector in your platform, update your config file to define the different Collector components (receivers, processors, and exporters) you want to use. However, receivers and exporters are not enabled until they are in a pipeline, as explained in the next paragraph. You can also add extensions "
+"that provide the OpenTelemetry Collector with additional functionality, such as diagnostics and health checks. Find the available components at :ref:`otel-components`."
msgstr ""
-"プラットフォームにCollectorをインストールしたら、設定ファイルを更新して、使用するCollectorコンポーネント(レシーバー、プロセッサー、エクスポーター)を定義します。ただし、レシーバーとエクスポーターは、次の段落で説明するように、パイプラインに入るまで有効になりません。診断やヘルスチェックなど、OpenTelemetry Collector に追加機能を提供する拡張機能を追加することもできます。使用可能なコンポーネントは、:ref:`otel-"
-"components` を参照してください。"
+"プラットフォームにCollectorをインストールしたら、設定ファイルを更新して、使用するCollectorコンポーネント(レシーバー、プロセッサー、エクスポーター)を定義します。ただし、レシーバーとエクスポーターは、次の段落で説明するように、パイプラインに入るまで有効になりません。診断やヘルスチェックなど、OpenTelemetry Collector に追加機能"
+"を提供する拡張機能を追加することもできます。使用可能なコンポーネントは、:ref:`otel-components` を参照してください。"
#: ../../_includes/collector-works.rst:5
msgid ""
-"Next, you need to configure your service pipelines to determine how to process your data. In the pipelines section you tie together the receivers, processors and exporters, designing the path your data takes. Multiple pipelines can be defined, and a single receiver or exporter definition can be used in multiple pipelines. A single pipeline can also have multiple receivers or exporters within it. Learn more at :ref:"
-"`otel-data-processing`."
+"Next, you need to configure your service pipelines to determine how to process your data. In the pipelines section you tie together the receivers, processors and exporters, designing the path your data takes. Multiple pipelines can be defined, and a single receiver or exporter definition can be used in multiple pipelines. A "
+"single pipeline can also have multiple receivers or exporters within it. Learn more at :ref:`otel-data-processing`."
msgstr ""
-"次に、データの処理方法を決定するために、サービスパイプラインを設定する必要があります。パイプラインセクションでは、レシーバー、プロセッサー、エクスポーターを結びつけ、データが通る経路を設計します。パイプラインは複数定義することができ、1つのレシーバーまたはエクスポーターの定義を複数のパイプラインで使用することができます。また、1つのパイプラインに複数のレシーバーやエクスポーターを含めることもできます。詳しくは :ref:"
-"`otel-data-processing` を参照してください。"
+"次に、データの処理方法を決定するために、サービスパイプラインを設定する必要があります。パイプラインセクションでは、レシーバー、プロセッサー、エクスポーターを結びつけ、データが通る経路を設計します。パイプラインは複数定義することができ、1つのレシーバーまたはエクスポーターの定義を複数のパイプラインで使用することができます。また、"
+"1つのパイプラインに複数のレシーバーやエクスポーターを含めることもできます。詳しくは :ref:`otel-data-processing` を参照してください。"
#: ../../_includes/configuration.rst:1
msgid "To use this integration of a Smart Agent monitor with the Collector:"
@@ -1110,8 +1122,12 @@ msgid "Learn more about the Collector at :ref:`otel-understand-use`."
msgstr "Collectorの詳細は、:ref:`otel-understand-use` を参照してください。"
#: ../../_includes/event-sending-functionality.rst:1
-msgid "This monitor includes event-sending functionality to let you post your own custom events to Splunk Observability Cloud. For example, you can send your own custom event when you deploy a new version of your software or update other parts of your infrastructure. You can then view these events in the Splunk Observability Cloud user interface (UI)."
-msgstr "このモニターには、独自のカスタムイベントをSplunk Observability Cloudにポストすることを可能にするイベント送信機能が含まれます。たとえば、ソフトウェアの新しいバージョンのデプロイ時や、ご利用のインフラストラクチャの他の部分の更新時に、独自のカスタムイベントを送信できます。そして、Splunk Observability Cloudのユーザーインターフェイス(UI)でそれらのイベントを表示できます。"
+msgid ""
+"This monitor includes event-sending functionality to let you post your own custom events to Splunk Observability Cloud. For example, you can send your own custom event when you deploy a new version of your software or update other parts of your infrastructure. You can then view these events in the Splunk Observability Cloud "
+"user interface (UI)."
+msgstr ""
+"このモニターには、独自のカスタムイベントをSplunk Observability Cloudにポストすることを可能にするイベント送信機能が含まれます。たとえば、ソフトウェアの新しいバージョンのデプロイ時や、ご利用のインフラストラクチャの他の部分の更新時に、独自のカスタムイベントを送信できます。そして、Splunk Observability Cloudのユーザーインターフェ"
+"イス(UI)でそれらのイベントを表示できます。"
#: ../../_includes/event-sending-functionality.rst:7
msgid "Make monitors with event-sending functionality members of a logs pipeline that uses a SignalFx exporter to make the event submission requests. Use a Resource Detection processor to ensure that host identity and other useful information is made available as event dimensions."
@@ -1535,11 +1551,13 @@ msgstr "サードパーティサービス用のオートディスカバリーは
#: ../../_includes/gdi/auto-discovery-intro.rst:5
msgid ""
-"Via automatic discovery you can also enable zero-code instrumentation of back-end applications, which allows the Collector to retrieve data from application language runtimes without having to modify the source application code or adding any new installation or configuration steps. With this option you won't have to install and configure your instrumentation agents separately. Zero-code instrumentation using the "
-"Collector's automatic discovery feature is only available for the Java, Node.js, and .NET language runtimes. Alternatively you can deploy zero-code instrumentation independently from the Collector for 8 back-end languages, as described in :ref:`get-started-application`."
+"Via automatic discovery you can also enable zero-code instrumentation of back-end applications, which allows the Collector to retrieve data from application language runtimes without having to modify the source application code or adding any new installation or configuration steps. With this option you won't have to install "
+"and configure your instrumentation agents separately. Zero-code instrumentation using the Collector's automatic discovery feature is only available for the Java, Node.js, and .NET language runtimes. Alternatively you can deploy zero-code instrumentation independently from the Collector for 8 back-end languages, as described "
+"in :ref:`get-started-application`."
msgstr ""
-"オートディスカバリーを使用すると、バックエンドアプリケーションのゼロコードインストルメンテーションを有効にすることもできます。これにより、Collectorは、ソースアプリケーションコードを変更したり、新しいインストールや設定手順を追加したりすることなく、アプリケーションの言語ランタイムからデータを取得できます。このオプションを使用すると、インストルメンテーション・エージェントを個別にインストールおよび構成する必要がなくなり"
-"ます。Collectorのオートディスカバリー機能を使用したゼロコードインストルメンテーションは、Java、Node.js、および.NETの言語ランタイムでのみ使用できます。他の方法として、:ref:`get-started-application` で説明するように、8つのバックエンド言語に対して、Collectorからは独立してゼロコードインストルメンテーションをデプロイすることもできます。"
+"オートディスカバリーを使用すると、バックエンドアプリケーションのゼロコードインストルメンテーションを有効にすることもできます。これにより、Collectorは、ソースアプリケーションコードを変更したり、新しいインストールや設定手順を追加したりすることなく、アプリケーションの言語ランタイムからデータを取得できます。このオプションを使用す"
+"ると、インストルメンテーション・エージェントを個別にインストールおよび構成する必要がなくなります。Collectorのオートディスカバリー機能を使用したゼロコードインストルメンテーションは、Java、Node.js、および.NETの言語ランタイムでのみ使用できます。他の方法として、:ref:`get-started-application` で説明するように、8つのバックエンド言"
+"語に対して、Collectorからは独立してゼロコードインストルメンテーションをデプロイすることもできます。"
#: ../../_includes/gdi/available-aws.rst:1
msgid "For trace monitoring see :ref:`apm-gdi`."
@@ -1573,24 +1591,31 @@ msgstr "AWS/ACMPrivateCA"
msgid "ACM Private CA"
msgstr "ACMプライベートCA"
-#: ../../_includes/gdi/available-aws.rst:18 ../../_includes/gdi/available-aws.rst:23 ../../_includes/gdi/available-aws.rst:28 ../../_includes/gdi/available-aws.rst:29 ../../_includes/gdi/available-aws.rst:33 ../../_includes/gdi/available-aws.rst:34 ../../_includes/gdi/available-aws.rst:38 ../../_includes/gdi/available-aws.rst:43 ../../_includes/gdi/available-aws.rst:48 ../../_includes/gdi/available-aws.rst:49
-#: ../../_includes/gdi/available-aws.rst:53 ../../_includes/gdi/available-aws.rst:58 ../../_includes/gdi/available-aws.rst:63 ../../_includes/gdi/available-aws.rst:64 ../../_includes/gdi/available-aws.rst:68 ../../_includes/gdi/available-aws.rst:69 ../../_includes/gdi/available-aws.rst:73 ../../_includes/gdi/available-aws.rst:74 ../../_includes/gdi/available-aws.rst:78 ../../_includes/gdi/available-aws.rst:83
-#: ../../_includes/gdi/available-aws.rst:88 ../../_includes/gdi/available-aws.rst:93 ../../_includes/gdi/available-aws.rst:98 ../../_includes/gdi/available-aws.rst:103 ../../_includes/gdi/available-aws.rst:108 ../../_includes/gdi/available-aws.rst:113 ../../_includes/gdi/available-aws.rst:114 ../../_includes/gdi/available-aws.rst:118 ../../_includes/gdi/available-aws.rst:119 ../../_includes/gdi/available-aws.rst:123
-#: ../../_includes/gdi/available-aws.rst:124 ../../_includes/gdi/available-aws.rst:128 ../../_includes/gdi/available-aws.rst:129 ../../_includes/gdi/available-aws.rst:133 ../../_includes/gdi/available-aws.rst:134 ../../_includes/gdi/available-aws.rst:138 ../../_includes/gdi/available-aws.rst:143 ../../_includes/gdi/available-aws.rst:144 ../../_includes/gdi/available-aws.rst:148 ../../_includes/gdi/available-aws.rst:149
-#: ../../_includes/gdi/available-aws.rst:154 ../../_includes/gdi/available-aws.rst:158 ../../_includes/gdi/available-aws.rst:159 ../../_includes/gdi/available-aws.rst:163 ../../_includes/gdi/available-aws.rst:164 ../../_includes/gdi/available-aws.rst:168 ../../_includes/gdi/available-aws.rst:173 ../../_includes/gdi/available-aws.rst:174 ../../_includes/gdi/available-aws.rst:178 ../../_includes/gdi/available-aws.rst:183
-#: ../../_includes/gdi/available-aws.rst:184 ../../_includes/gdi/available-aws.rst:188 ../../_includes/gdi/available-aws.rst:189 ../../_includes/gdi/available-aws.rst:193 ../../_includes/gdi/available-aws.rst:198 ../../_includes/gdi/available-aws.rst:199 ../../_includes/gdi/available-aws.rst:203 ../../_includes/gdi/available-aws.rst:208 ../../_includes/gdi/available-aws.rst:213 ../../_includes/gdi/available-aws.rst:214
-#: ../../_includes/gdi/available-aws.rst:218 ../../_includes/gdi/available-aws.rst:219 ../../_includes/gdi/available-aws.rst:223 ../../_includes/gdi/available-aws.rst:228 ../../_includes/gdi/available-aws.rst:233 ../../_includes/gdi/available-aws.rst:238 ../../_includes/gdi/available-aws.rst:239 ../../_includes/gdi/available-aws.rst:243 ../../_includes/gdi/available-aws.rst:244 ../../_includes/gdi/available-aws.rst:248
-#: ../../_includes/gdi/available-aws.rst:249 ../../_includes/gdi/available-aws.rst:253 ../../_includes/gdi/available-aws.rst:258 ../../_includes/gdi/available-aws.rst:263 ../../_includes/gdi/available-aws.rst:264 ../../_includes/gdi/available-aws.rst:268 ../../_includes/gdi/available-aws.rst:273 ../../_includes/gdi/available-aws.rst:278 ../../_includes/gdi/available-aws.rst:283 ../../_includes/gdi/available-aws.rst:288
-#: ../../_includes/gdi/available-aws.rst:293 ../../_includes/gdi/available-aws.rst:298 ../../_includes/gdi/available-aws.rst:303 ../../_includes/gdi/available-aws.rst:304 ../../_includes/gdi/available-aws.rst:308 ../../_includes/gdi/available-aws.rst:309 ../../_includes/gdi/available-aws.rst:313 ../../_includes/gdi/available-aws.rst:314 ../../_includes/gdi/available-aws.rst:318 ../../_includes/gdi/available-aws.rst:319
-#: ../../_includes/gdi/available-aws.rst:323 ../../_includes/gdi/available-aws.rst:324 ../../_includes/gdi/available-aws.rst:328 ../../_includes/gdi/available-aws.rst:329 ../../_includes/gdi/available-aws.rst:333 ../../_includes/gdi/available-aws.rst:338 ../../_includes/gdi/available-aws.rst:343 ../../_includes/gdi/available-aws.rst:344 ../../_includes/gdi/available-aws.rst:348 ../../_includes/gdi/available-aws.rst:349
-#: ../../_includes/gdi/available-aws.rst:353 ../../_includes/gdi/available-aws.rst:358 ../../_includes/gdi/available-aws.rst:359 ../../_includes/gdi/available-aws.rst:363 ../../_includes/gdi/available-aws.rst:364 ../../_includes/gdi/available-aws.rst:368 ../../_includes/gdi/available-aws.rst:373 ../../_includes/gdi/available-aws.rst:378 ../../_includes/gdi/available-aws.rst:383 ../../_includes/gdi/available-aws.rst:388
-#: ../../_includes/gdi/available-aws.rst:393 ../../_includes/gdi/available-aws.rst:398 ../../_includes/gdi/available-aws.rst:403 ../../_includes/gdi/available-aws.rst:404 ../../_includes/gdi/available-aws.rst:408 ../../_includes/gdi/available-aws.rst:409 ../../_includes/gdi/available-aws.rst:413 ../../_includes/gdi/available-aws.rst:414 ../../_includes/gdi/available-aws.rst:418 ../../_includes/gdi/available-aws.rst:423
-#: ../../_includes/gdi/available-aws.rst:428 ../../_includes/gdi/available-aws.rst:433 ../../_includes/gdi/available-aws.rst:438 ../../_includes/gdi/available-aws.rst:443 ../../_includes/gdi/available-aws.rst:448 ../../_includes/gdi/available-aws.rst:449 ../../_includes/gdi/available-aws.rst:453 ../../_includes/gdi/available-aws.rst:458 ../../_includes/gdi/available-aws.rst:463 ../../_includes/gdi/available-aws.rst:464
-#: ../../_includes/gdi/available-aws.rst:468 ../../_includes/gdi/available-aws.rst:473 ../../_includes/gdi/available-aws.rst:478 ../../_includes/gdi/available-aws.rst:483 ../../_includes/gdi/available-aws.rst:488 ../../_includes/gdi/available-gcp.rst:15 ../../_includes/gdi/available-gcp.rst:20 ../../_includes/gdi/available-gcp.rst:25 ../../_includes/gdi/available-gcp.rst:30 ../../_includes/gdi/available-gcp.rst:31
-#: ../../_includes/gdi/available-gcp.rst:35 ../../_includes/gdi/available-gcp.rst:40 ../../_includes/gdi/available-gcp.rst:41 ../../_includes/gdi/available-gcp.rst:45 ../../_includes/gdi/available-gcp.rst:50 ../../_includes/gdi/available-gcp.rst:55 ../../_includes/gdi/available-gcp.rst:56 ../../_includes/gdi/available-gcp.rst:60 ../../_includes/gdi/available-gcp.rst:65 ../../_includes/gdi/available-gcp.rst:70
-#: ../../_includes/gdi/available-gcp.rst:75 ../../_includes/gdi/available-gcp.rst:80 ../../_includes/gdi/available-gcp.rst:85 ../../_includes/gdi/available-gcp.rst:90 ../../_includes/gdi/available-gcp.rst:95 ../../_includes/gdi/available-gcp.rst:100 ../../_includes/gdi/available-gcp.rst:105 ../../_includes/gdi/available-gcp.rst:106 ../../_includes/gdi/available-gcp.rst:110 ../../_includes/gdi/available-gcp.rst:115
-#: ../../_includes/gdi/available-gcp.rst:120 ../../_includes/gdi/available-gcp.rst:125 ../../_includes/gdi/available-gcp.rst:130 ../../_includes/gdi/available-gcp.rst:131 ../../_includes/gdi/available-gcp.rst:135 ../../_includes/gdi/available-gcp.rst:140 ../../_includes/gdi/available-gcp.rst:145 ../../_includes/gdi/available-gcp.rst:146 ../../_includes/gdi/available-gcp.rst:150 ../../_includes/gdi/available-gcp.rst:155
-#: ../../_includes/gdi/available-gcp.rst:156 ../../_includes/gdi/available-gcp.rst:160 ../../_includes/gdi/available-gcp.rst:161 ../../_includes/gdi/available-gcp.rst:165
+#: ../../_includes/gdi/available-aws.rst:18 ../../_includes/gdi/available-aws.rst:23 ../../_includes/gdi/available-aws.rst:28 ../../_includes/gdi/available-aws.rst:29 ../../_includes/gdi/available-aws.rst:33 ../../_includes/gdi/available-aws.rst:34 ../../_includes/gdi/available-aws.rst:38
+#: ../../_includes/gdi/available-aws.rst:43 ../../_includes/gdi/available-aws.rst:48 ../../_includes/gdi/available-aws.rst:49 ../../_includes/gdi/available-aws.rst:53 ../../_includes/gdi/available-aws.rst:58 ../../_includes/gdi/available-aws.rst:63 ../../_includes/gdi/available-aws.rst:64
+#: ../../_includes/gdi/available-aws.rst:68 ../../_includes/gdi/available-aws.rst:69 ../../_includes/gdi/available-aws.rst:73 ../../_includes/gdi/available-aws.rst:74 ../../_includes/gdi/available-aws.rst:78 ../../_includes/gdi/available-aws.rst:83 ../../_includes/gdi/available-aws.rst:88
+#: ../../_includes/gdi/available-aws.rst:93 ../../_includes/gdi/available-aws.rst:98 ../../_includes/gdi/available-aws.rst:103 ../../_includes/gdi/available-aws.rst:108 ../../_includes/gdi/available-aws.rst:113 ../../_includes/gdi/available-aws.rst:114 ../../_includes/gdi/available-aws.rst:118
+#: ../../_includes/gdi/available-aws.rst:119 ../../_includes/gdi/available-aws.rst:123 ../../_includes/gdi/available-aws.rst:124 ../../_includes/gdi/available-aws.rst:128 ../../_includes/gdi/available-aws.rst:129 ../../_includes/gdi/available-aws.rst:133 ../../_includes/gdi/available-aws.rst:134
+#: ../../_includes/gdi/available-aws.rst:138 ../../_includes/gdi/available-aws.rst:143 ../../_includes/gdi/available-aws.rst:144 ../../_includes/gdi/available-aws.rst:148 ../../_includes/gdi/available-aws.rst:149 ../../_includes/gdi/available-aws.rst:154 ../../_includes/gdi/available-aws.rst:158
+#: ../../_includes/gdi/available-aws.rst:159 ../../_includes/gdi/available-aws.rst:163 ../../_includes/gdi/available-aws.rst:164 ../../_includes/gdi/available-aws.rst:168 ../../_includes/gdi/available-aws.rst:173 ../../_includes/gdi/available-aws.rst:174 ../../_includes/gdi/available-aws.rst:178
+#: ../../_includes/gdi/available-aws.rst:183 ../../_includes/gdi/available-aws.rst:184 ../../_includes/gdi/available-aws.rst:188 ../../_includes/gdi/available-aws.rst:189 ../../_includes/gdi/available-aws.rst:193 ../../_includes/gdi/available-aws.rst:198 ../../_includes/gdi/available-aws.rst:199
+#: ../../_includes/gdi/available-aws.rst:203 ../../_includes/gdi/available-aws.rst:208 ../../_includes/gdi/available-aws.rst:213 ../../_includes/gdi/available-aws.rst:214 ../../_includes/gdi/available-aws.rst:218 ../../_includes/gdi/available-aws.rst:219 ../../_includes/gdi/available-aws.rst:223
+#: ../../_includes/gdi/available-aws.rst:228 ../../_includes/gdi/available-aws.rst:233 ../../_includes/gdi/available-aws.rst:238 ../../_includes/gdi/available-aws.rst:239 ../../_includes/gdi/available-aws.rst:243 ../../_includes/gdi/available-aws.rst:244 ../../_includes/gdi/available-aws.rst:248
+#: ../../_includes/gdi/available-aws.rst:249 ../../_includes/gdi/available-aws.rst:253 ../../_includes/gdi/available-aws.rst:258 ../../_includes/gdi/available-aws.rst:263 ../../_includes/gdi/available-aws.rst:264 ../../_includes/gdi/available-aws.rst:268 ../../_includes/gdi/available-aws.rst:273
+#: ../../_includes/gdi/available-aws.rst:278 ../../_includes/gdi/available-aws.rst:283 ../../_includes/gdi/available-aws.rst:288 ../../_includes/gdi/available-aws.rst:293 ../../_includes/gdi/available-aws.rst:298 ../../_includes/gdi/available-aws.rst:303 ../../_includes/gdi/available-aws.rst:304
+#: ../../_includes/gdi/available-aws.rst:308 ../../_includes/gdi/available-aws.rst:309 ../../_includes/gdi/available-aws.rst:313 ../../_includes/gdi/available-aws.rst:314 ../../_includes/gdi/available-aws.rst:318 ../../_includes/gdi/available-aws.rst:319 ../../_includes/gdi/available-aws.rst:323
+#: ../../_includes/gdi/available-aws.rst:324 ../../_includes/gdi/available-aws.rst:328 ../../_includes/gdi/available-aws.rst:329 ../../_includes/gdi/available-aws.rst:333 ../../_includes/gdi/available-aws.rst:338 ../../_includes/gdi/available-aws.rst:343 ../../_includes/gdi/available-aws.rst:344
+#: ../../_includes/gdi/available-aws.rst:348 ../../_includes/gdi/available-aws.rst:349 ../../_includes/gdi/available-aws.rst:353 ../../_includes/gdi/available-aws.rst:358 ../../_includes/gdi/available-aws.rst:359 ../../_includes/gdi/available-aws.rst:363 ../../_includes/gdi/available-aws.rst:364
+#: ../../_includes/gdi/available-aws.rst:368 ../../_includes/gdi/available-aws.rst:373 ../../_includes/gdi/available-aws.rst:378 ../../_includes/gdi/available-aws.rst:383 ../../_includes/gdi/available-aws.rst:388 ../../_includes/gdi/available-aws.rst:393 ../../_includes/gdi/available-aws.rst:398
+#: ../../_includes/gdi/available-aws.rst:403 ../../_includes/gdi/available-aws.rst:404 ../../_includes/gdi/available-aws.rst:408 ../../_includes/gdi/available-aws.rst:409 ../../_includes/gdi/available-aws.rst:413 ../../_includes/gdi/available-aws.rst:414 ../../_includes/gdi/available-aws.rst:418
+#: ../../_includes/gdi/available-aws.rst:423 ../../_includes/gdi/available-aws.rst:428 ../../_includes/gdi/available-aws.rst:433 ../../_includes/gdi/available-aws.rst:438 ../../_includes/gdi/available-aws.rst:443 ../../_includes/gdi/available-aws.rst:448 ../../_includes/gdi/available-aws.rst:449
+#: ../../_includes/gdi/available-aws.rst:453 ../../_includes/gdi/available-aws.rst:458 ../../_includes/gdi/available-aws.rst:463 ../../_includes/gdi/available-aws.rst:464 ../../_includes/gdi/available-aws.rst:468 ../../_includes/gdi/available-aws.rst:473 ../../_includes/gdi/available-aws.rst:478
+#: ../../_includes/gdi/available-aws.rst:483 ../../_includes/gdi/available-aws.rst:488 ../../_includes/gdi/available-gcp.rst:15 ../../_includes/gdi/available-gcp.rst:20 ../../_includes/gdi/available-gcp.rst:25 ../../_includes/gdi/available-gcp.rst:30 ../../_includes/gdi/available-gcp.rst:31
+#: ../../_includes/gdi/available-gcp.rst:35 ../../_includes/gdi/available-gcp.rst:40 ../../_includes/gdi/available-gcp.rst:41 ../../_includes/gdi/available-gcp.rst:45 ../../_includes/gdi/available-gcp.rst:50 ../../_includes/gdi/available-gcp.rst:55 ../../_includes/gdi/available-gcp.rst:56
+#: ../../_includes/gdi/available-gcp.rst:60 ../../_includes/gdi/available-gcp.rst:65 ../../_includes/gdi/available-gcp.rst:70 ../../_includes/gdi/available-gcp.rst:75 ../../_includes/gdi/available-gcp.rst:80 ../../_includes/gdi/available-gcp.rst:85 ../../_includes/gdi/available-gcp.rst:90
+#: ../../_includes/gdi/available-gcp.rst:95 ../../_includes/gdi/available-gcp.rst:100 ../../_includes/gdi/available-gcp.rst:105 ../../_includes/gdi/available-gcp.rst:106 ../../_includes/gdi/available-gcp.rst:110 ../../_includes/gdi/available-gcp.rst:115 ../../_includes/gdi/available-gcp.rst:120
+#: ../../_includes/gdi/available-gcp.rst:125 ../../_includes/gdi/available-gcp.rst:130 ../../_includes/gdi/available-gcp.rst:131 ../../_includes/gdi/available-gcp.rst:135 ../../_includes/gdi/available-gcp.rst:140 ../../_includes/gdi/available-gcp.rst:145 ../../_includes/gdi/available-gcp.rst:146
+#: ../../_includes/gdi/available-gcp.rst:150 ../../_includes/gdi/available-gcp.rst:155 ../../_includes/gdi/available-gcp.rst:156 ../../_includes/gdi/available-gcp.rst:160 ../../_includes/gdi/available-gcp.rst:161 ../../_includes/gdi/available-gcp.rst:165
msgid ":strong:`X`"
msgstr ":strong:`X`"
@@ -2971,8 +2996,12 @@ msgid "Add additional services"
msgstr "その他のサービスの追加"
#: ../../_includes/gdi/available-azure.rst:257
-msgid "If you want to collect data from other Azure services you need to add them as a custom service in the UI, or with the field ``additionalServices`` if you're using the API. Splunk Observability Cloud syncs resource types that you specify in services and custom services. If you add a resource type to both fields, Splunk Observability Cloud ignores the duplication."
-msgstr "他のAzureサービスからデータを収集したい場合は、UI でカスタムサービスとして追加するか、APIを使用する場合はフィールド ``additionalServices`` を使用して追加する必要があります。Splunk Observability Cloudは、サービスおよびカスタムサービスで指定したリソースタイプを同期します。両方のフィールドにリソースタイプを追加した場合、Splunk Observability Cloudは、重複を無視します。"
+msgid ""
+"If you want to collect data from other Azure services you need to add them as a custom service in the UI, or with the field ``additionalServices`` if you're using the API. Splunk Observability Cloud syncs resource types that you specify in services and custom services. If you add a resource type to both fields, Splunk "
+"Observability Cloud ignores the duplication."
+msgstr ""
+"他のAzureサービスからデータを収集したい場合は、UI でカスタムサービスとして追加するか、APIを使用する場合はフィールド ``additionalServices`` を使用して追加する必要があります。Splunk Observability Cloudは、サービスおよびカスタムサービスで指定したリソースタイプを同期します。両方のフィールドにリソースタイプを追加した場合、Splunk "
+"Observability Cloudは、重複を無視します。"
#: ../../_includes/gdi/available-azure.rst:259
msgid "Any resource type you specify as a custom service must meet the following criteria:"
@@ -3330,9 +3359,10 @@ msgstr ":ref:`awss3-exporter` ( ``awss3`` )"
msgid "This exporter targets to support proto/json format."
msgstr "このエクスポータは proto/json 形式をサポートすることを目標としています。"
-#: ../../_includes/gdi/collector-available-exporters.rst:11 ../../_includes/gdi/collector-available-exporters.rst:14 ../../_includes/gdi/collector-available-exporters.rst:17 ../../_includes/gdi/collector-available-exporters.rst:20 ../../_includes/gdi/collector-available-exporters.rst:23 ../../_includes/gdi/collector-available-exporters.rst:26 ../../_includes/gdi/collector-available-exporters.rst:29
-#: ../../_includes/gdi/collector-available-exporters.rst:41 ../../_includes/gdi/collector-available-processors.rst:14 ../../_includes/gdi/collector-available-processors.rst:23 ../../_includes/gdi/collector-available-processors.rst:26 ../../_includes/gdi/collector-available-processors.rst:29 ../../_includes/gdi/collector-available-processors.rst:41 ../../_includes/gdi/collector-available-processors.rst:44
-#: ../../_includes/gdi/collector-available-processors.rst:47 ../../_includes/gdi/collector-available-processors.rst:56 ../../_includes/gdi/otel-receivers-table.rst:65 ../../_includes/gdi/otel-receivers-table.rst:101 ../../_includes/gdi/otel-receivers-table.rst:143
+#: ../../_includes/gdi/collector-available-exporters.rst:11 ../../_includes/gdi/collector-available-exporters.rst:14 ../../_includes/gdi/collector-available-exporters.rst:17 ../../_includes/gdi/collector-available-exporters.rst:20 ../../_includes/gdi/collector-available-exporters.rst:23
+#: ../../_includes/gdi/collector-available-exporters.rst:26 ../../_includes/gdi/collector-available-exporters.rst:29 ../../_includes/gdi/collector-available-exporters.rst:41 ../../_includes/gdi/collector-available-processors.rst:14 ../../_includes/gdi/collector-available-processors.rst:23
+#: ../../_includes/gdi/collector-available-processors.rst:26 ../../_includes/gdi/collector-available-processors.rst:29 ../../_includes/gdi/collector-available-processors.rst:44 ../../_includes/gdi/collector-available-processors.rst:47 ../../_includes/gdi/collector-available-processors.rst:50
+#: ../../_includes/gdi/collector-available-processors.rst:59 ../../_includes/gdi/otel-receivers-table.rst:65 ../../_includes/gdi/otel-receivers-table.rst:101 ../../_includes/gdi/otel-receivers-table.rst:143
msgid "Metrics, logs, traces"
msgstr "メトリクス、ログ、トレース"
@@ -3416,7 +3446,8 @@ msgstr ":ref:`splunk-apm-exporter` ( ``sapm`` )"
msgid "Exports traces from multiple nodes or services in a single batch."
msgstr "複数のノードまたはサービスのトレースを一括してエクスポートします。"
-#: ../../_includes/gdi/collector-available-exporters.rst:38 ../../_includes/gdi/collector-available-processors.rst:38 ../../_includes/gdi/collector-available-processors.rst:50 ../../_includes/gdi/collector-available-processors.rst:53 ../../_includes/gdi/otel-receivers-table.rst:56 ../../_includes/gdi/otel-receivers-table.rst:125 ../../_includes/gdi/otel-receivers-table.rst:176
+#: ../../_includes/gdi/collector-available-exporters.rst:38 ../../_includes/gdi/collector-available-processors.rst:41 ../../_includes/gdi/collector-available-processors.rst:53 ../../_includes/gdi/collector-available-processors.rst:56 ../../_includes/gdi/otel-receivers-table.rst:56
+#: ../../_includes/gdi/otel-receivers-table.rst:125 ../../_includes/gdi/otel-receivers-table.rst:176
msgid "Traces"
msgstr "トレース"
@@ -3576,11 +3607,13 @@ msgstr ":ref:`cumulative-to-delta-processor` ( ``cumulativetodelta`` )"
msgid "Convert cumulative monotonic metrics to delta aggregation temporality. This enhances the usage of cumulative metrics in Splunk Observability Cloud."
msgstr "累積単調メトリクスをデルタ集計の一時性に変換します。これにより、Splunk Observability Cloudでの累積メトリクスの利用が向上します。"
-#: ../../_includes/gdi/collector-available-processors.rst:17 ../../_includes/gdi/collector-available-processors.rst:20 ../../_includes/gdi/collector-available-processors.rst:32 ../../_includes/gdi/otel-receivers-table.rst:11 ../../_includes/gdi/otel-receivers-table.rst:14 ../../_includes/gdi/otel-receivers-table.rst:17 ../../_includes/gdi/otel-receivers-table.rst:23 ../../_includes/gdi/otel-receivers-table.rst:26
-#: ../../_includes/gdi/otel-receivers-table.rst:29 ../../_includes/gdi/otel-receivers-table.rst:32 ../../_includes/gdi/otel-receivers-table.rst:38 ../../_includes/gdi/otel-receivers-table.rst:47 ../../_includes/gdi/otel-receivers-table.rst:50 ../../_includes/gdi/otel-receivers-table.rst:53 ../../_includes/gdi/otel-receivers-table.rst:59 ../../_includes/gdi/otel-receivers-table.rst:68
-#: ../../_includes/gdi/otel-receivers-table.rst:71 ../../_includes/gdi/otel-receivers-table.rst:80 ../../_includes/gdi/otel-receivers-table.rst:83 ../../_includes/gdi/otel-receivers-table.rst:86 ../../_includes/gdi/otel-receivers-table.rst:89 ../../_includes/gdi/otel-receivers-table.rst:92 ../../_includes/gdi/otel-receivers-table.rst:95 ../../_includes/gdi/otel-receivers-table.rst:98
-#: ../../_includes/gdi/otel-receivers-table.rst:104 ../../_includes/gdi/otel-receivers-table.rst:107 ../../_includes/gdi/otel-receivers-table.rst:110 ../../_includes/gdi/otel-receivers-table.rst:113 ../../_includes/gdi/otel-receivers-table.rst:116 ../../_includes/gdi/otel-receivers-table.rst:122 ../../_includes/gdi/otel-receivers-table.rst:128 ../../_includes/gdi/otel-receivers-table.rst:134
-#: ../../_includes/gdi/otel-receivers-table.rst:137 ../../_includes/gdi/otel-receivers-table.rst:140 ../../_includes/gdi/otel-receivers-table.rst:146 ../../_includes/gdi/otel-receivers-table.rst:149 ../../_includes/gdi/otel-receivers-table.rst:152 ../../_includes/gdi/otel-receivers-table.rst:164 ../../_includes/gdi/otel-receivers-table.rst:167 ../../_includes/gdi/otel-receivers-table.rst:173
+#: ../../_includes/gdi/collector-available-processors.rst:17 ../../_includes/gdi/collector-available-processors.rst:20 ../../_includes/gdi/collector-available-processors.rst:32 ../../_includes/gdi/collector-available-processors.rst:35 ../../_includes/gdi/otel-receivers-table.rst:11
+#: ../../_includes/gdi/otel-receivers-table.rst:14 ../../_includes/gdi/otel-receivers-table.rst:17 ../../_includes/gdi/otel-receivers-table.rst:23 ../../_includes/gdi/otel-receivers-table.rst:26 ../../_includes/gdi/otel-receivers-table.rst:29 ../../_includes/gdi/otel-receivers-table.rst:32
+#: ../../_includes/gdi/otel-receivers-table.rst:38 ../../_includes/gdi/otel-receivers-table.rst:47 ../../_includes/gdi/otel-receivers-table.rst:50 ../../_includes/gdi/otel-receivers-table.rst:53 ../../_includes/gdi/otel-receivers-table.rst:59 ../../_includes/gdi/otel-receivers-table.rst:68
+#: ../../_includes/gdi/otel-receivers-table.rst:71 ../../_includes/gdi/otel-receivers-table.rst:80 ../../_includes/gdi/otel-receivers-table.rst:83 ../../_includes/gdi/otel-receivers-table.rst:86 ../../_includes/gdi/otel-receivers-table.rst:89 ../../_includes/gdi/otel-receivers-table.rst:92
+#: ../../_includes/gdi/otel-receivers-table.rst:95 ../../_includes/gdi/otel-receivers-table.rst:98 ../../_includes/gdi/otel-receivers-table.rst:104 ../../_includes/gdi/otel-receivers-table.rst:107 ../../_includes/gdi/otel-receivers-table.rst:110 ../../_includes/gdi/otel-receivers-table.rst:113
+#: ../../_includes/gdi/otel-receivers-table.rst:116 ../../_includes/gdi/otel-receivers-table.rst:122 ../../_includes/gdi/otel-receivers-table.rst:128 ../../_includes/gdi/otel-receivers-table.rst:134 ../../_includes/gdi/otel-receivers-table.rst:137 ../../_includes/gdi/otel-receivers-table.rst:140
+#: ../../_includes/gdi/otel-receivers-table.rst:146 ../../_includes/gdi/otel-receivers-table.rst:149 ../../_includes/gdi/otel-receivers-table.rst:152 ../../_includes/gdi/otel-receivers-table.rst:164 ../../_includes/gdi/otel-receivers-table.rst:167 ../../_includes/gdi/otel-receivers-table.rst:173
msgid "Metrics"
msgstr "メトリクス"
@@ -3617,78 +3650,86 @@ msgid "Prevents out of memory situations on the Splunk Distribution of OpenTelem
msgstr "Splunk Distribution of OpenTelemetry Collector でのメモリ不足を防止します。"
#: ../../_includes/gdi/collector-available-processors.rst:30
+msgid ":ref:`metrics-generation-processor` (``metricsgeneration``)"
+msgstr ":ref:`metrics-generation-processor` ( ``metricsgeneration`` )"
+
+#: ../../_includes/gdi/collector-available-processors.rst:31
+msgid "Creates new metrics using existing metrics following a given rule."
+msgstr "特定のルールに続いて既存のメトリクスを使用して新しいメトリクスを作成します。"
+
+#: ../../_includes/gdi/collector-available-processors.rst:33
msgid ":ref:`metrics-transform-processor` (``metricstransform``)"
msgstr ":ref:`metrics-transform-processor` ( ``metricstransform`` )"
-#: ../../_includes/gdi/collector-available-processors.rst:31
+#: ../../_includes/gdi/collector-available-processors.rst:34
msgid "Renames metrics, and adds, renames, or deletes label keys and values."
msgstr "メトリクスの名前を変更し、ラベル・キーと値を追加、変更、または削除します。"
-#: ../../_includes/gdi/collector-available-processors.rst:33
+#: ../../_includes/gdi/collector-available-processors.rst:36
msgid ":ref:`probabilistic-sampler-processor` (``probabilisticsampler``)"
msgstr ":ref:`probabilistic-sampler-processor` ( ``probabilisticsampler`` )"
-#: ../../_includes/gdi/collector-available-processors.rst:34
+#: ../../_includes/gdi/collector-available-processors.rst:37
msgid "Supports several modes of sampling for spans and log records."
msgstr "スパンおよびログレコードのサンプリングに複数のモードをサポートします。"
-#: ../../_includes/gdi/collector-available-processors.rst:35
+#: ../../_includes/gdi/collector-available-processors.rst:38
msgid "Traces, logs"
msgstr "トレース、ログ"
-#: ../../_includes/gdi/collector-available-processors.rst:36
+#: ../../_includes/gdi/collector-available-processors.rst:39
msgid ":ref:`redaction-processor` (``redaction``)"
msgstr ":ref:`redaction-processor` ( ``redaction`` )"
-#: ../../_includes/gdi/collector-available-processors.rst:37
+#: ../../_includes/gdi/collector-available-processors.rst:40
msgid "Deletes span attributes that don't match a list of allowed attributes. It also masks span attribute values that match a blocked value list."
msgstr "許可された属性のリストと一致しないスパン属性を削除します。また、ブロックされた値リストと一致するスパン属性の値をマスクします。"
-#: ../../_includes/gdi/collector-available-processors.rst:39
+#: ../../_includes/gdi/collector-available-processors.rst:42
msgid ":ref:`resource-processor` (``resource``)"
msgstr ":ref:`resource-processor` ( ``resource`` )"
-#: ../../_includes/gdi/collector-available-processors.rst:40
+#: ../../_includes/gdi/collector-available-processors.rst:43
msgid "Applies changes to resource attributes. Attributes represent actions that can be applied on resources."
msgstr "リソース属性に変更を適用します。属性は、リソースに適用できるアクションを表します。"
-#: ../../_includes/gdi/collector-available-processors.rst:42
+#: ../../_includes/gdi/collector-available-processors.rst:45
msgid ":ref:`resourcedetection-processor` (``resourcedetection``)"
msgstr ":ref:`resourcedetection-processor` ( ``resourcedetection`` )"
-#: ../../_includes/gdi/collector-available-processors.rst:43
+#: ../../_includes/gdi/collector-available-processors.rst:46
msgid "Detects resource information from the host, in a format that conforms to the OpenTelemetry resource semantic conventions, and appends or overrides the resource value in telemetry data with this information."
msgstr "ホストからのリソース情報を、OpenTelemetry リソースの意味上の規約に準拠したフォーマットで検出し、テレメトリデータのリソース値をこの情報で追加または上書きします。"
-#: ../../_includes/gdi/collector-available-processors.rst:45
+#: ../../_includes/gdi/collector-available-processors.rst:48
msgid ":ref:`routing-processor` (``routing``)"
msgstr ":ref:`routing-processor` ( ``routing`` )"
-#: ../../_includes/gdi/collector-available-processors.rst:46
+#: ../../_includes/gdi/collector-available-processors.rst:49
msgid "Reads a header from the incoming HTTP request or reads a resource attribute, and then directs the trace information to specific exporters based on the value."
msgstr "受信 HTTP リクエストからヘッダーを読み取るか、リソース属性を読み取り、その値に基づいてトレース情報を特定のエクスポーターに向けます。"
-#: ../../_includes/gdi/collector-available-processors.rst:48
+#: ../../_includes/gdi/collector-available-processors.rst:51
msgid ":ref:`span-processor` (``span``)"
msgstr ":ref:`span-processor` ( ``span`` )"
-#: ../../_includes/gdi/collector-available-processors.rst:49
+#: ../../_includes/gdi/collector-available-processors.rst:52
msgid "Modifies either the span name or attributes of a span based on the span name."
msgstr "スパン名またはスパン名に基づくスパンの属性を変更します。"
-#: ../../_includes/gdi/collector-available-processors.rst:51
+#: ../../_includes/gdi/collector-available-processors.rst:54
msgid ":ref:`tail-sampling-processor` (``tail_sampling``)"
msgstr ":ref:`tail-sampling-processor` ( ``tail_sampling`` )"
-#: ../../_includes/gdi/collector-available-processors.rst:52
+#: ../../_includes/gdi/collector-available-processors.rst:55
msgid "Samples traces based on a set of defined policies. All spans for a given trace must be received by the same Collector instance for effective sampling decisions."
msgstr "定義されたポリシーのセットに基づいてトレースをサンプリングします。与えられたトレースのすべてのスパンは、効果的なサンプリング決定のために同じCollectorインスタンスによって受信される必要があります。"
-#: ../../_includes/gdi/collector-available-processors.rst:54
+#: ../../_includes/gdi/collector-available-processors.rst:57
msgid ":ref:`transform-processor` (``transform``)"
msgstr ":ref:`transform-processor` ( ``transform`` )"
-#: ../../_includes/gdi/collector-available-processors.rst:55
+#: ../../_includes/gdi/collector-available-processors.rst:58
msgid "Modifies telemetry based on OpenTelemetry Transformation Language functions."
msgstr "OpenTelemetry Transformation Language 関数に基づいてテレメトリを変更します。"
@@ -4220,8 +4261,8 @@ msgstr ":ref:`azureeventhub-receiver` ( ``azureeventhub`` )"
msgid "Pulls logs from an Azure event hub."
msgstr "Azure イベントハブからログをプルします。"
-#: ../../_includes/gdi/otel-receivers-table.rst:20 ../../_includes/gdi/otel-receivers-table.rst:35 ../../_includes/gdi/otel-receivers-table.rst:41 ../../_includes/gdi/otel-receivers-table.rst:44 ../../_includes/gdi/otel-receivers-table.rst:62 ../../_includes/gdi/otel-receivers-table.rst:74 ../../_includes/gdi/otel-receivers-table.rst:77 ../../_includes/gdi/otel-receivers-table.rst:155
-#: ../../_includes/gdi/otel-receivers-table.rst:158 ../../_includes/gdi/otel-receivers-table.rst:161 ../../_includes/gdi/otel-receivers-table.rst:170
+#: ../../_includes/gdi/otel-receivers-table.rst:20 ../../_includes/gdi/otel-receivers-table.rst:35 ../../_includes/gdi/otel-receivers-table.rst:41 ../../_includes/gdi/otel-receivers-table.rst:44 ../../_includes/gdi/otel-receivers-table.rst:62 ../../_includes/gdi/otel-receivers-table.rst:74
+#: ../../_includes/gdi/otel-receivers-table.rst:77 ../../_includes/gdi/otel-receivers-table.rst:155 ../../_includes/gdi/otel-receivers-table.rst:158 ../../_includes/gdi/otel-receivers-table.rst:161 ../../_includes/gdi/otel-receivers-table.rst:170
msgid "Logs"
msgstr "ログ"
@@ -4649,23 +4690,28 @@ msgstr ":ref:`zipkin-receiver` ( ``zipkin`` )"
msgid "Receives spans from Zipkin versions 1 and 2."
msgstr "Zipkin・バージョン1と2のスパンを受信します。"
-#: ../../_includes/gdi/processor-architecture-native.rst:9 ../../_includes/gdi/processor-architecture-native.rst:213 ../../_includes/gdi/processor-architecture-native.rst:287 ../../_includes/gdi/processor-architecture-subprocess.rst:9 ../../_includes/gdi/processor-architecture-subprocess.rst:73 ../../_includes/gdi/processor-architecture-subprocess.rst:117 ../../_includes/gdi/processor-architecture-subprocess.rst:201
+#: ../../_includes/gdi/processor-architecture-native.rst:9 ../../_includes/gdi/processor-architecture-native.rst:213 ../../_includes/gdi/processor-architecture-native.rst:287 ../../_includes/gdi/processor-architecture-subprocess.rst:9 ../../_includes/gdi/processor-architecture-subprocess.rst:73
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:117 ../../_includes/gdi/processor-architecture-subprocess.rst:201
msgid "Monitor"
msgstr "モニター"
-#: ../../_includes/gdi/processor-architecture-native.rst:10 ../../_includes/gdi/processor-architecture-native.rst:214 ../../_includes/gdi/processor-architecture-native.rst:288 ../../_includes/gdi/processor-architecture-subprocess.rst:10 ../../_includes/gdi/processor-architecture-subprocess.rst:74 ../../_includes/gdi/processor-architecture-subprocess.rst:118 ../../_includes/gdi/processor-architecture-subprocess.rst:202
+#: ../../_includes/gdi/processor-architecture-native.rst:10 ../../_includes/gdi/processor-architecture-native.rst:214 ../../_includes/gdi/processor-architecture-native.rst:288 ../../_includes/gdi/processor-architecture-subprocess.rst:10 ../../_includes/gdi/processor-architecture-subprocess.rst:74
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:118 ../../_includes/gdi/processor-architecture-subprocess.rst:202
msgid "Support for AMD64 Linux"
msgstr "AMD64 Linuxのサポート"
-#: ../../_includes/gdi/processor-architecture-native.rst:11 ../../_includes/gdi/processor-architecture-native.rst:215 ../../_includes/gdi/processor-architecture-native.rst:289 ../../_includes/gdi/processor-architecture-subprocess.rst:11 ../../_includes/gdi/processor-architecture-subprocess.rst:75 ../../_includes/gdi/processor-architecture-subprocess.rst:119 ../../_includes/gdi/processor-architecture-subprocess.rst:203
+#: ../../_includes/gdi/processor-architecture-native.rst:11 ../../_includes/gdi/processor-architecture-native.rst:215 ../../_includes/gdi/processor-architecture-native.rst:289 ../../_includes/gdi/processor-architecture-subprocess.rst:11 ../../_includes/gdi/processor-architecture-subprocess.rst:75
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:119 ../../_includes/gdi/processor-architecture-subprocess.rst:203
msgid "Support for AMD64 Windows"
msgstr "AMD64 Windowsのサポート"
-#: ../../_includes/gdi/processor-architecture-native.rst:12 ../../_includes/gdi/processor-architecture-native.rst:216 ../../_includes/gdi/processor-architecture-native.rst:290 ../../_includes/gdi/processor-architecture-subprocess.rst:12 ../../_includes/gdi/processor-architecture-subprocess.rst:76 ../../_includes/gdi/processor-architecture-subprocess.rst:120 ../../_includes/gdi/processor-architecture-subprocess.rst:204
+#: ../../_includes/gdi/processor-architecture-native.rst:12 ../../_includes/gdi/processor-architecture-native.rst:216 ../../_includes/gdi/processor-architecture-native.rst:290 ../../_includes/gdi/processor-architecture-subprocess.rst:12 ../../_includes/gdi/processor-architecture-subprocess.rst:76
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:120 ../../_includes/gdi/processor-architecture-subprocess.rst:204
msgid "Support for ARM64 Linux"
msgstr "ARM64 Linuxのサポート"
-#: ../../_includes/gdi/processor-architecture-native.rst:13 ../../_includes/gdi/processor-architecture-native.rst:217 ../../_includes/gdi/processor-architecture-native.rst:291 ../../_includes/gdi/processor-architecture-subprocess.rst:13 ../../_includes/gdi/processor-architecture-subprocess.rst:77 ../../_includes/gdi/processor-architecture-subprocess.rst:121 ../../_includes/gdi/processor-architecture-subprocess.rst:205
+#: ../../_includes/gdi/processor-architecture-native.rst:13 ../../_includes/gdi/processor-architecture-native.rst:217 ../../_includes/gdi/processor-architecture-native.rst:291 ../../_includes/gdi/processor-architecture-subprocess.rst:13 ../../_includes/gdi/processor-architecture-subprocess.rst:77
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:121 ../../_includes/gdi/processor-architecture-subprocess.rst:205
msgid "Support for ppc64le Linux"
msgstr "ppc64le Linuxのサポート"
@@ -4929,11 +4975,12 @@ msgstr "``telegraf/win_services``"
msgid "``collectd/apache``"
msgstr "``collectd/apache``"
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:17 ../../_includes/gdi/processor-architecture-subprocess.rst:22 ../../_includes/gdi/processor-architecture-subprocess.rst:27 ../../_includes/gdi/processor-architecture-subprocess.rst:32 ../../_includes/gdi/processor-architecture-subprocess.rst:37 ../../_includes/gdi/processor-architecture-subprocess.rst:42
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:47 ../../_includes/gdi/processor-architecture-subprocess.rst:52 ../../_includes/gdi/processor-architecture-subprocess.rst:57 ../../_includes/gdi/processor-architecture-subprocess.rst:62 ../../_includes/gdi/processor-architecture-subprocess.rst:81 ../../_includes/gdi/processor-architecture-subprocess.rst:86
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:91 ../../_includes/gdi/processor-architecture-subprocess.rst:96 ../../_includes/gdi/processor-architecture-subprocess.rst:101 ../../_includes/gdi/processor-architecture-subprocess.rst:106 ../../_includes/gdi/processor-architecture-subprocess.rst:125 ../../_includes/gdi/processor-architecture-subprocess.rst:130
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:135 ../../_includes/gdi/processor-architecture-subprocess.rst:140 ../../_includes/gdi/processor-architecture-subprocess.rst:145 ../../_includes/gdi/processor-architecture-subprocess.rst:150 ../../_includes/gdi/processor-architecture-subprocess.rst:155 ../../_includes/gdi/processor-architecture-subprocess.rst:160
-#: ../../_includes/gdi/processor-architecture-subprocess.rst:165 ../../_includes/gdi/processor-architecture-subprocess.rst:170 ../../_includes/gdi/processor-architecture-subprocess.rst:175 ../../_includes/gdi/processor-architecture-subprocess.rst:180 ../../_includes/gdi/processor-architecture-subprocess.rst:185 ../../_includes/gdi/processor-architecture-subprocess.rst:190
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:17 ../../_includes/gdi/processor-architecture-subprocess.rst:22 ../../_includes/gdi/processor-architecture-subprocess.rst:27 ../../_includes/gdi/processor-architecture-subprocess.rst:32 ../../_includes/gdi/processor-architecture-subprocess.rst:37
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:42 ../../_includes/gdi/processor-architecture-subprocess.rst:47 ../../_includes/gdi/processor-architecture-subprocess.rst:52 ../../_includes/gdi/processor-architecture-subprocess.rst:57 ../../_includes/gdi/processor-architecture-subprocess.rst:62
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:81 ../../_includes/gdi/processor-architecture-subprocess.rst:86 ../../_includes/gdi/processor-architecture-subprocess.rst:91 ../../_includes/gdi/processor-architecture-subprocess.rst:96 ../../_includes/gdi/processor-architecture-subprocess.rst:101
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:106 ../../_includes/gdi/processor-architecture-subprocess.rst:125 ../../_includes/gdi/processor-architecture-subprocess.rst:130 ../../_includes/gdi/processor-architecture-subprocess.rst:135 ../../_includes/gdi/processor-architecture-subprocess.rst:140
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:145 ../../_includes/gdi/processor-architecture-subprocess.rst:150 ../../_includes/gdi/processor-architecture-subprocess.rst:155 ../../_includes/gdi/processor-architecture-subprocess.rst:160 ../../_includes/gdi/processor-architecture-subprocess.rst:165
+#: ../../_includes/gdi/processor-architecture-subprocess.rst:170 ../../_includes/gdi/processor-architecture-subprocess.rst:175 ../../_includes/gdi/processor-architecture-subprocess.rst:180 ../../_includes/gdi/processor-architecture-subprocess.rst:185 ../../_includes/gdi/processor-architecture-subprocess.rst:190
#: ../../_includes/gdi/processor-architecture-subprocess.rst:209
msgid "Experimental"
msgstr "実験的"
@@ -5163,12 +5210,20 @@ msgid "Ensure that certificates are available for use. Use the following command
msgstr "証明書が使用可能であることを確認します。以下のコマンドを使用して、証明書を検索します:"
#: ../../_includes/log-observer-transition.rst:1
-msgid "Customers with a Splunk Log Observer entitlement in Splunk Observability Cloud must transition from Log Observer to Log Observer Connect by December 2023. With Log Observer Connect, you can ingest more logs from a wider variety of data sources, enjoy a more advanced logs pipeline, and expand into security logging. See :ref:`lo-transition` to learn how."
-msgstr "Splunk Observability Cloud の Splunk Log Observer エンタイトルメントをお持ちのお客様は、2023年12月までに Log Observer から Log Observer Connect に移行する必要があります。Log Observer Connect を使用すると、より多様なデータソースからより多くのログをインジェストし、より高度なログパイプラインを利用し、セキュリティロギングに拡張できます。その方法については、:ref:`lo-transition` を参照してください。"
+msgid ""
+"Customers with a Splunk Log Observer entitlement in Splunk Observability Cloud must transition from Log Observer to Log Observer Connect by December 2023. With Log Observer Connect, you can ingest more logs from a wider variety of data sources, enjoy a more advanced logs pipeline, and expand into security logging. "
+"See :ref:`lo-transition` to learn how."
+msgstr ""
+"Splunk Observability Cloud の Splunk Log Observer エンタイトルメントをお持ちのお客様は、2023年12月までに Log Observer から Log Observer Connect に移行する必要があります。Log Observer Connect を使用すると、より多様なデータソースからより多くのログをインジェストし、より高度なログパイプラインを利用し、セキュリティロギングに拡張で"
+"きます。その方法については、:ref:`lo-transition` を参照してください。"
#: ../../_includes/logs/loc-availability.rst:1
-msgid "Splunk Log Observer Connect is available in the AWS regions us0, us1, eu0, eu1, eu2, jp0, and au0, and in the GCP region us2. Splunk Log Observer Connect is compatible with Splunk Enterprise versions 9.0.1 and higher, and Splunk Cloud Platform versions 9.0.2209 and higher. Log Observer Connect is not available for Splunk Cloud Platform trials."
-msgstr "Splunk Log Observer Connectは、AWSリージョンのus0、us1、eu0、eu1、eu2、jp0、au0、およびGCPリージョンのus2で利用できます。Splunk Log Observer Connectは、Splunk Enterpriseのバージョン9.0.1以降、およびSplunk Cloud Platformのバージョン9.0.2209以降と互換性があります。Log Observer Connectは、Splunk Cloud Platformのトライアル版ではご利用いただけません。"
+msgid ""
+"Splunk Log Observer Connect is available in the AWS regions us0, us1, eu0, eu1, eu2, jp0, and au0, and in the GCP region us2. Splunk Log Observer Connect is compatible with Splunk Enterprise versions 9.0.1 and higher, and Splunk Cloud Platform versions 9.0.2209 and higher. Log Observer Connect is not available for Splunk "
+"Cloud Platform trials."
+msgstr ""
+"Splunk Log Observer Connectは、AWSリージョンのus0、us1、eu0、eu1、eu2、jp0、au0、およびGCPリージョンのus2で利用できます。Splunk Log Observer Connectは、Splunk Enterpriseのバージョン9.0.1以降、およびSplunk Cloud Platformのバージョン9.0.2209以降と互換性があります。Log Observer Connectは、Splunk Cloud Platformのトライアル版では"
+"ご利用いただけません。"
#: ../../_includes/logs/loc-availability.rst:3
msgid "You cannot access logs from a GovCloud environment through Log Observer Connect. However, you can use global data links to link from Log Observer Connect to your GovCloud environment where you can access your logs. For more information on global data links, see :ref:`link-metadata-to-content`."
@@ -5176,10 +5231,11 @@ msgstr "Log Observer Connectを通じてGovCloud環境のログにアクセス
#: ../../_includes/logs/query-logs.rst:1
msgid ""
-"Navigate to :guilabel:`Log Observer`. Upon opening, Log Observer runs an initial search of all indexes you have access to and returns the most recent 150,000 logs. The search then defaults to Pause in order to save Splunk Virtual Compute (SVC) resources. Control your SVC resources, which impact performance and cost, by leaving your search on Pause when you are not monitoring incoming logs, and select Play when you "
-"want to see more incoming logs."
+"Navigate to :guilabel:`Log Observer`. Upon opening, Log Observer runs an initial search of all indexes you have access to and returns the most recent 150,000 logs. The search then defaults to Pause in order to save Splunk Virtual Compute (SVC) resources. Control your SVC resources, which impact performance and cost, by "
+"leaving your search on Pause when you are not monitoring incoming logs, and select Play when you want to see more incoming logs."
msgstr ""
-":guilabel:`Log Observer` に移動します。開くと、Log Observerはアクセス可能なすべてのインデックスの初期検索を実行し、最新の150,000件のログを返します。その後、Splunk Virtual Compute (SVC)リソースを節約するために、検索はデフォルトで一時停止になります。受信ログを監視していないときは検索を一時停止のままにし、より多くの受信ログを見たいときは再生を選択することで、パフォーマンスとコストに影響するSVCリソースを制御します。"
+":guilabel:`Log Observer` に移動します。開くと、Log Observerはアクセス可能なすべてのインデックスの初期検索を実行し、最新の150,000件のログを返します。その後、Splunk Virtual Compute (SVC)リソースを節約するために、検索はデフォルトで一時停止になります。受信ログを監視していないときは検索を一時停止のままにし、より多くの受信ログを見"
+"たいときは再生を選択することで、パフォーマンスとコストに影響するSVCリソースを制御します。"
#: ../../_includes/logs/query-logs.rst
msgid "The Log Observer UI is displayed."
@@ -5190,24 +5246,35 @@ msgid "To increase performance and help control cost, search jobs originating fr
msgstr "パフォーマンスを向上させ、コストを制御するために、関連コンテンツに由来する検索ジョブは、非アクティブ状態が2分間になると実行を停止します。他のすべての検索ジョブは、15分後に実行を停止します。"
#: ../../_includes/logs/query-logs.rst:9
-msgid "In the content control bar, enter a time range in the time picker if you want to see logs from a specific historical period. To select a time range, you must select :guilabel:`Infinite` from the :guilabel:`Search Records` field in step 5 below. When you select :guilabel:`150,000`, Log Observer returns only the most recent 150,000 logs regardless of the time range you select."
-msgstr "コンテンツコントロールバーで、特定の過去の期間のログを見たい場合は、タイムピッカーに時間範囲を入力します。時間範囲を選択するには、下のステップ5で :guilabel:`Search Records` フィールドから :guilabel:`Infinite` を選択する必要があります。:guilabel:`150,000` を選択すると、Log Observerは、選択する時間範囲に関係なく、最新の150,000件のログのみを返します。"
+msgid ""
+"In the content control bar, enter a time range in the time picker if you want to see logs from a specific historical period. To select a time range, you must select :guilabel:`Unlimited` from the :guilabel:`Search Records` field in step 5 below. When you select :guilabel:`150,000`, Log Observer returns only the most recent "
+"150,000 logs regardless of the time range you select."
+msgstr ""
+"コンテンツコントロールバーで、特定の過去の期間のログを見たい場合は、タイムピッカーに時間範囲を入力します。時間範囲を選択するには、下のステップ5で :guilabel:`Search Records` フィールドから :guilabel:`Unlimited` を選択する必要があります。:guilabel:`150,000` を選択すると、Log Observerは、選択する時間範囲に関係なく、最新の150,000"
+"件のログのみを返します。"
#: ../../_includes/logs/query-logs.rst:11
msgid ""
-"Select :guilabel:`Index` next to :guilabel:`Saved Queries`, then select the indexes you want to query. When you do not select an index, Log Observer runs your query on all indexes to which you have access. If you want to search your Splunk platform (Splunk Cloud Platform or Splunk Enterprise) data, select the integration for the appropriate Splunk platform instance first, then select which index you want to query in "
-"Log Observer. You can query indexes from only one Splunk platform instance or Splunk Observability Cloud instance at a time. You can query Splunk platform indexes only if you have the appropriate role and permissions."
+"Select :guilabel:`Index` next to :guilabel:`Saved Queries`, then select the indexes you want to query. When you do not select an index, Log Observer runs your query on all indexes to which you have access. If you want to search your Splunk platform (Splunk Cloud Platform or Splunk Enterprise) data, select the integration for "
+"the appropriate Splunk platform instance first, then select which index you want to query in Log Observer. You can query indexes from only one Splunk platform instance or Splunk Observability Cloud instance at a time. You can query Splunk platform indexes only if you have the appropriate role and permissions."
msgstr ""
-":guilabel:`Saved Queries` の横にある :guilabel:`Index` を選択し、クエリするインデックスを選択します。インデックスを選択しない場合、Log Observerは、アクセス可能なすべてのインデックスに対してクエリを実行します。Splunkプラットフォーム(Splunk Cloud PlatformまたはSplunk Enterprise)のデータを検索する場合は、最初に適切なSplunkプラットフォームインスタンスのインテグレーションを選択し、次にLog Observerでクエリするインデック"
-"スを選択します。一度にクエリできるのは、1つのSplunkプラットフォームインスタンスまたはSplunk Observability Cloudインスタンスからのインデックスのみです。適切なロールおよび権限を持っている場合にのみ、Splunkプラットフォームのインデックスをクエリできます。"
+":guilabel:`Saved Queries` の横にある :guilabel:`Index` を選択し、クエリするインデックスを選択します。インデックスを選択しない場合、Log Observerは、アクセス可能なすべてのインデックスに対してクエリを実行します。Splunkプラットフォーム(Splunk Cloud PlatformまたはSplunk Enterprise)のデータを検索する場合は、最初に適切なSplunkプ"
+"ラットフォームインスタンスのインテグレーションを選択し、次にLog Observerでクエリするインデックスを選択します。一度にクエリできるのは、1つのSplunkプラットフォームインスタンスまたはSplunk Observability Cloudインスタンスからのインデックスのみです。適切なロールおよび権限を持っている場合にのみ、Splunkプラットフォームのインデックス"
+"をクエリできます。"
#: ../../_includes/logs/query-logs.rst:13
msgid "In the content control bar next to the index picker, select :guilabel:`Add Filter`. Select the :guilabel:`Keyword` tab to search on a keyword or phrase. Select the :guilabel:`Fields` tab to search on a field. Then press Enter. To continue adding keywords or fields to the search, select :guilabel:`Add Filter` again."
-msgstr "インデックスピッカーの隣にあるコンテンツコントロールバーで、 :guilabel:`Add Filter` を選択します。キーワードまたはフレーズで検索するには、:guilabel:`Keyword` タブを選択します。フィールドを検索するには、:guilabel:`Fields` タブを選択します。その後、Enterを押します。検索にキーワードやフィールドを続けて追加するには、再度 :guilabel:`Add Filter` を選択します。"
+msgstr ""
+"インデックスピッカーの隣にあるコンテンツコントロールバーで、 :guilabel:`Add Filter` を選択します。キーワードまたはフレーズで検索するには、:guilabel:`Keyword` タブを選択します。フィールドを検索するには、:guilabel:`Fields` タブを選択します。その後、Enterを押します。検索にキーワードやフィールドを続けて追加するには、再"
+"度 :guilabel:`Add Filter` を選択します。"
#: ../../_includes/logs/query-logs.rst:15
-msgid "Next, select :guilabel:`Unlimited` or :guilabel:`150,000` from the :guilabel:`Search Records` field to determine the number of logs you want to return on a single search. Select :guilabel:`150,000` to optimize your Splunk Virtual Compute (SVC) resources and control performance and cost. However, only the most recent 150,000 logs display. To see a specific time range, you must select :guilabel:`Infinite`."
-msgstr "次に、:guilabel:`Search Records` フィールドから :guilabel:`Unlimited` または :guilabel:`150,000` を選択し、1回の検索で返すログの数を決定します。 :guilabel:`150,000` を選択すると、Splunk Virtual Compute (SVC)リソースを最適化し、パフォーマンスとコストを制御できます。ただし、最新の150,000件のログのみが表示されます。特定の時間範囲を表示するには、:guilabel:`Infinite` を選択する必要があります。"
+msgid ""
+"Next, select :guilabel:`Unlimited` or :guilabel:`150,000` from the :guilabel:`Search Records` field to determine the number of logs you want to return on a single search. Select :guilabel:`150,000` to optimize your Splunk Virtual Compute (SVC) resources and control performance and cost. However, only the most recent 150,000 "
+"logs display. To see a specific time range, you must select :guilabel:`Infinite`."
+msgstr ""
+"次に、:guilabel:`Search Records` フィールドから :guilabel:`Unlimited` または :guilabel:`150,000` を選択し、1回の検索で返すログの数を決定します。 :guilabel:`150,000` を選択すると、Splunk Virtual Compute (SVC)リソースを最適化し、パフォーマンスとコストを制御できます。ただし、最新の150,000件のログのみが表示されます。特定の時間"
+"範囲を表示するには、:guilabel:`Infinite` を選択する必要があります。"
#: ../../_includes/logs/query-logs.rst:17
msgid "To narrow your search, use the :guilabel:`Group by` drop-down list to select the field or fields by which you want to group your results, then select :guilabel:`Apply`. To learn more about aggregations, see :ref:`logs-aggregations`."
@@ -5219,13 +5286,19 @@ msgstr ":guilabel:`Run search` を選択します。"
#: ../../_includes/logs/query-logs.rst:21
msgid ""
-"Review the top values for your query on the the :guilabel:`Fields` panel on right. This list includes the count of each value in the log records. To include log records with a particular value, select the field name, then select ``=``. To exclude log records with a particular value from your results, select the field name, then select ``!=``. To see the full list of values and distribution for this field, select :"
-"guilabel:`Explore all values`."
-msgstr "右側の :guilabel:`Fields` パネルで、クエリの上位の値を確認します。このリストには、ログレコード内の各値のカウントが含まれます。特定の値のログレコードを含めるには、フィールド名を選択し、``=`` を選択します。特定の値を持つログレコードを結果から除外するには、フィールド名を選択し、``!=`` を選択します。このフィールドの値と分布の完全なリストを表示するには、:guilabel:`Explore all values` を選択します。"
+"Review the top values for your query on the the :guilabel:`Fields` panel on right. This list includes the count of each value in the log records. To include log records with a particular value, select the field name, then select ``=``. To exclude log records with a particular value from your results, select the field name, "
+"then select ``!=``. To see the full list of values and distribution for this field, select :guilabel:`Explore all values`."
+msgstr ""
+"右側の :guilabel:`Fields` パネルで、クエリの上位の値を確認します。このリストには、ログレコード内の各値のカウントが含まれます。特定の値のログレコードを含めるには、フィールド名を選択し、``=`` を選択します。特定の値を持つログレコードを結果から除外するには、フィールド名を選択し、``!=`` を選択します。このフィールドの値と分布の完全"
+"なリストを表示するには、:guilabel:`Explore all values` を選択します。"
#: ../../_includes/logs/query-logs.rst:23
-msgid "Optionally, if you are viewing Splunk platform data, you can open your query results in the Splunk platform and use SPL to further query the resulting logs. You must have an account in Splunk platform. To open the log results in the Splunk platform, select the :guilabel:`Open in Splunk platform` icon at the top of the Logs table."
-msgstr "オプションとして、Splunkプラットフォームのデータを表示している場合は、Splunkプラットフォームでクエリ結果を開き、SPLを使用して結果ログをさらにクエリできます。Splunkプラットフォームのアカウントが必要です。Splunkプラットフォームでログ結果を開くには、「ログ」テーブルの上部にある :guilabel:`Open in Splunk platform` アイコンを選択します。"
+msgid ""
+"Optionally, if you are viewing Splunk platform data, you can open your query results in the Splunk platform and use SPL to further query the resulting logs. You must have an account in Splunk platform. To open the log results in the Splunk platform, select the :guilabel:`Open in Splunk platform` icon at the top of the Logs "
+"table."
+msgstr ""
+"オプションとして、Splunkプラットフォームのデータを表示している場合は、Splunkプラットフォームでクエリ結果を開き、SPLを使用して結果ログをさらにクエリできます。Splunkプラットフォームのアカウントが必要です。Splunkプラットフォームでログ結果を開くには、「ログ」テーブルの上部にある :guilabel:`Open in Splunk platform` アイコンを選択"
+"します。"
#: ../../_includes/logs/query-logs.rst
msgid "The Open in Splunk platform icon is at the top, right-hand side of the Logs table."
@@ -5317,7 +5390,9 @@ msgstr "Splunk Observability Cloudで利用可能なメトリクスタイプの
#: ../../_includes/metric-defs.rst:3
msgid "In host-based subscription plans, default metrics are those metrics included in host-based subscriptions in Splunk Observability Cloud, such as host, container, or bundled metrics. Custom metrics are not provided by default and might be subject to charges. See :ref:`metric-categories` for more information."
-msgstr "ホストベースのサブスクリプションプランでは、デフォルトのメトリクスは、ホスト、コンテナ、バンドルメトリクスなど、Splunk Observability Cloudのホストベースのサブスクリプションに含まれるメトリクスです。カスタムメトリクスはデフォルトでは提供されず、料金が発生する場合があります。詳細については、:ref:`metric-categories` を参照してください。"
+msgstr ""
+"ホストベースのサブスクリプションプランでは、デフォルトのメトリクスは、ホスト、コンテナ、バンドルメトリクスなど、Splunk Observability Cloudのホストベースのサブスクリプションに含まれるメトリクスです。カスタムメトリクスはデフォルトでは提供されず、料金が発生する場合があります。詳細については、:ref:`metric-categories` を参照してく"
+"ださい。"
#: ../../_includes/metric-defs.rst:8
msgid "In MTS-based subscription plans, all metrics are custom."
@@ -5336,8 +5411,12 @@ msgid "This error happens when a component (receiver, processor, or exporter) ha
msgstr "このエラーは、コンポーネント(レシーバー、プロセッサー、エクスポーター)が設定されているにもかかわらず、レシーバー パイプラインで使用されていない場合に発生します。たとえば、次のエラー メッセージは、``smartagent/http`` レシーバーが構成されていますが、どのパイプラインでも使用されていないことを示します:"
#: ../../_includes/missing_pipeline_configuration.rst:15
-msgid "Once configured, all components must be turned on by using pipelines in the service section. The service section is used to configure what components are activated based on the configuration found in the components sections of your configuration file. If a component is configured, but not defined within the service section, then it is not activated."
-msgstr "一度設定したら、サービスセクションのパイプラインを使用して、すべてのコンポーネントをオンにする必要があります。サービスセクションは、コンフィギュレーションファイルのコンポーネントセクションにあるコンフィギュレーションに基づいて、どのコンポーネントをアクティブにするかを設定するために使用されます。コンポーネントが設定されていても、サービスセクションで定義されていない場合、そのコンポーネントは有効になりません。"
+msgid ""
+"Once configured, all components must be turned on by using pipelines in the service section. The service section is used to configure what components are activated based on the configuration found in the components sections of your configuration file. If a component is configured, but not defined within the service section, "
+"then it is not activated."
+msgstr ""
+"一度設定したら、サービスセクションのパイプラインを使用して、すべてのコンポーネントをオンにする必要があります。サービスセクションは、コンフィギュレーションファイルのコンポーネントセクションにあるコンフィギュレーションに基づいて、どのコンポーネントをアクティブにするかを設定するために使用されます。コンポーネントが設定されていて"
+"も、サービスセクションで定義されていない場合、そのコンポーネントは有効になりません。"
#: ../../_includes/missing_pipeline_configuration.rst:22
msgid "Here is a sample configuration:"
@@ -5347,6 +5426,14 @@ msgstr "以下に設定例を示します:"
msgid "See :ref:`otel-data-processing` for more information."
msgstr "詳細は、:ref:`otel-data-processing` を参照してください。"
+#: ../../_includes/network-explorer-info.rst:3
+msgid "While Splunk Observability Cloud fully supports the Network Explorer navigator, the upstream OpenTelemetry eBPF Helm chart is not covered under official Splunk support. Any feature updates, security, or bug fixes to it are not bound by any SLAs."
+msgstr "Splunk Observability CloudはNetwork Explorerナビゲーターを完全にサポートしていますが、アップストリームのOpenTelemetry eBPF HelmチャートはSplunk公式サポートの対象外です。このチャートの機能アップデート、セキュリティ、バグフィックスは、いかなるSLAにも拘束されません。"
+
+#: ../../_includes/network-explorer-info.rst:5
+msgid "If you wish to continue using Network Explorer to see data in Splunk Observability Cloud, point the upstream eBPF Helm chart to the OpenTelemetry Collector running as a gateway."
+msgstr "Network Explorerを引き続き使用してSplunk Observability Cloudでデータを確認したい場合は、アップストリームのeBPF Helmチャートをゲートウェイとして実行されているOpenTelemetry Collectorに向けます。"
+
#: ../../_includes/out_of_memory_error.rst:1
msgid "**The Splunk Distribution of OpenTelemetry Collector is out of memory**"
msgstr "**Splunk Distribution of OpenTelemetry Collector がメモリ不足です。**"
@@ -5404,8 +5491,12 @@ msgid "Preview: Role-based access"
msgstr "プレビュー:ロールベースのアクセス"
#: ../../_includes/private-preview.rst:3
-msgid "Preview features are provided by Splunk to you “as is” without any warranties, maintenance and support, or service level commitments. Splunk makes this preview feature available in its sole discretion and may discontinue it at any time. Use of preview features is subject to the :new-page:`Splunk General Terms `."
-msgstr "プレビュー機能は、Splunkからお客様に「現状のまま」提供されるものであり、いかなる保証、メンテナンス、サポート、サービスレベルのコミットメントも行われるものではありません。Splunkはこのプレビュー機能を独自の判断で利用可能にし、また、いつでも中止することができます。プレビュー機能の使用は、:new-page:`Splunk一般規約` に従うものとします。"
+msgid ""
+"Preview features are provided by Splunk to you “as is” without any warranties, maintenance and support, or service level commitments. Splunk makes this preview feature available in its sole discretion and may discontinue it at any time. Use of preview features is subject to the :new-page:`Splunk General Terms `."
+msgstr ""
+"プレビュー機能は、Splunkからお客様に「現状のまま」提供されるものであり、いかなる保証、メンテナンス、サポート、サービスレベルのコミットメントも行われるものではありません。Splunkはこのプレビュー機能を独自の判断で利用可能にし、また、いつでも中止することができます。プレビュー機能の使用は、:new-page:`Splunk一般規約` に従うものとします。"
#: ../../_includes/private-preview.rst:5
msgid "Use these links to navigate to the topics for role-based access control (RBAC):"
@@ -5428,16 +5519,20 @@ msgid "About realms"
msgstr "レルムについて"
#: ../../_includes/realm-note.rst:3
-msgid "A realm is a self-contained deployment of Splunk Observability Cloud in which your organization is hosted. Different realms have different API endpoints. For example, the endpoint for sending data in the ``us1`` realm is ``https://ingest.us1.signalfx.com``, while the endpoint for sending data in the ``eu0`` realm is ``https://ingest.eu0.signalfx.com``."
-msgstr "レルムとは、あなたの組織がホストされているSplunk Observability Cloudの自己完結型のデプロイメントのことです。異なるレルムには異なるAPIエンドポイントがあります。例えば、``us1`` レルムでデータを送信するためのエンドポイントは ``https://ingest.us1.signalfx.com`` で、``eu0`` レルムでデータを送信するためのエンドポイントは ``https://ingest.eu0.signalfx.com``、というようになります。"
+msgid ""
+"A realm is a self-contained deployment of Splunk Observability Cloud in which your organization is hosted. Different realms have different API endpoints. For example, the endpoint for sending data in the ``us1`` realm is ``https://ingest.us1.signalfx.com``, while the endpoint for sending data in the ``eu0`` realm is "
+"``https://ingest.eu0.signalfx.com``."
+msgstr ""
+"レルムとは、あなたの組織がホストされているSplunk Observability Cloudの自己完結型のデプロイメントのことです。異なるレルムには異なるAPIエンドポイントがあります。例えば、``us1`` レルムでデータを送信するためのエンドポイントは ``https://ingest.us1.signalfx.com`` で、``eu0`` レルムでデータを送信するためのエンドポイントは ``https://"
+"ingest.eu0.signalfx.com``、というようになります。"
#: ../../_includes/realm-note.rst:5
msgid ""
-"When you see a placeholder realm name in the documentation, such as ````, replace it with your actual realm name. To find your realm name, open the navigation menu in Splunk Observability Cloud, select :menuselection:`Settings`, and select your username. Locate the realm name in the :guilabel:`Organizations` section If you don't include the realm name when specifying an endpoint, Splunk Observability "
-"Cloud defaults to the ``us0`` realm."
+"When you see a placeholder realm name in the documentation, such as ````, replace it with your actual realm name. To find your realm name, open the navigation menu in Splunk Observability Cloud, select :menuselection:`Settings`, and select your username. Locate the realm name in "
+"the :guilabel:`Organizations`section If you don't include the realm name when specifying an endpoint, Splunk Observability Cloud defaults to the ``us0`` realm."
msgstr ""
-" ```` のようなプレースホルダのレルム名がドキュメントに記載されている場合は、実際のレルム名に置き換えてください。自分のレルム名を見つけるには、Splunk Observability Cloudのナビゲーションメニューを開き、:menuselection:`Settings` を選択し、ユーザー名を選択します。レルム名は :guilabel:`Organizations` セクションにあります。エンドポイントを指定する際にレルム名を含めない場合は、Splunk Observability Cloudがデフォ"
-"ルトで ``us0`` レルムを設定します。"
+"```` のようなプレースホルダのレルム名がドキュメントに記載されている場合は、実際のレルム名に置き換えてください。自分のレルム名を見つけるには、Splunk Observability Cloudのナビゲーションメニューを開き、:menuselection:`Settings` を選択し、ユーザー名を選択します。レルム名は :guilabel:`Organizations` セクションにありま"
+"す。エンドポイントを指定する際にレルム名を含めない場合は、Splunk Observability Cloudがデフォルトで ``us0`` レルムを設定します。"
#: ../../_includes/report-issue.rst:2
msgid "Report an issue"
@@ -5476,8 +5571,8 @@ msgid "To get help, see :ref:`support`."
msgstr "サポートを受ける方法は、:ref:`support` を参照してください。"
#: ../../_includes/requirements/android.rst:1
-msgid "Splunk RUM for Mobile supports Java and Kotlin applications for Android API Level 21 and higher. API levels 21 to 25 require core library desugaring activated. See :ref:`enable-desugaring`."
-msgstr "Splunk RUM for Mobile は、Android API レベル21以上の Java および Kotlin アプリケーションをサポートしています。API レベル21~25では、コアライブラリの desugaring を有効にする必要があります。:ref:`enable-desugaring` を参照してください。"
+msgid "Splunk RUM for Mobile supports Java and Kotlin applications for Android API level 21 and higher. API levels 21 to 25 require core library desugaring activated. See :ref:`enable-desugaring`. Android 7.0 (also known as Nougat) corresponds to API level 24."
+msgstr "Splunk RUM for Mobileは、Android APIレベル21以上のJavaおよびKotlinアプリケーションをサポートしています。APIレベル21~25では、コアライブラリのdesugaringを有効にする必要があります。:ref:`enable-desugaring` を参照してください。Android 7.0 (別名Nougat) はAPIレベル24に対応します。"
#: ../../_includes/requirements/browser.rst:1
msgid "The Browser RUM agent instruments all front-end experiences that run in modern browsers, regardless of the JavaScript library or framework you use, with the following requirements:"
@@ -5624,12 +5719,12 @@ msgid "Instrumentation for traces and metrics:"
msgstr "トレースとメトリクスのためのインストルメンテーション:"
#: ../../_includes/requirements/dotnet.rst:5 ../../_includes/requirements/dotnet.rst:12
-msgid ".NET 8.0 (End of Support: November 10, 2026)"
-msgstr ".NET 8.0(サポート終了:2026年11月10日)"
+msgid ".NET 9.0 (End of Support: May 12, 2026)"
+msgstr ".NET 9.0(サポート終了:2026年5月12日)"
#: ../../_includes/requirements/dotnet.rst:6 ../../_includes/requirements/dotnet.rst:13
-msgid ".NET 6.0 (End of Support: November 12, 2024)"
-msgstr ".NET 6.0(サポート終了:2024年11月12日)"
+msgid ".NET 8.0 (End of Support: November 10, 2026)"
+msgstr ".NET 8.0(サポート終了:2026年11月10日)"
#: ../../_includes/requirements/dotnet.rst:7
msgid ".NET Framework 4.7 and higher"
@@ -5647,23 +5742,27 @@ msgstr "AlwaysOn Profiling:"
msgid ".NET Framework is not supported for AlwaysOn Profiling."
msgstr ".NET FrameworkはAlwaysOn Profilingに対応していません。"
-#: ../../_includes/requirements/dotnet.rst:17
-msgid ".NET 7 reached End of Life on May 14, 2024. Best effort support is provided for the last version only, 7.0.19, which was tested using Splunk Distribution of OpenTelemetry .NET version 1.5.0."
-msgstr ".NET 7 は2024年5月14日にサポート終了となりました。Splunk Distribution of OpenTelemetry .NETのバージョン1.5.0を使用してテストされた最後のバージョン7.0.19に対してのみ、ベストエフォートのサポートが提供されます。"
-
#: ../../_includes/requirements/dotnet.rst:19
+msgid ""
+"The Splunk Distribution of OpenTelemetry .NET version 1.9.0 is not compatible with .NET 6 or .NET 7 since both have reached End of Life. If you want to continue instrumenting .NET 6 or .NET 7 services use the Splunk Distribution of OpenTelemetry .NET version 1.8.0 or lower. Best effort support for Splunk Distribution of "
+"OpenTelemetry .NET is provided up to November 12, 2025 only for the last versions of .NET 6 (version 6.0.36) and .NET 7 (version 7.0.20)."
+msgstr ""
+"Splunk Distribution of OpenTelemetry .NETバージョン1.9.0は、.NET 6または.NET 7と互換性がありません。.NET 6または.NET 7サービスのインストルメンテーションを継続したい場合は、Splunk Distribution of OpenTelemetry .NET バージョン1.8.0以下を使用してください。Splunk Distribution of OpenTelemetry .NETのベストエフォートサポート"
+"は、.NET 6 (バージョン 6.0.36) と.NET 7 (バージョン7.0.20) の最終バージョンに対してのみ、2025年11月12日まで提供されます。"
+
+#: ../../_includes/requirements/dotnet.rst:22
msgid "The distribution supports the following architectures:"
msgstr "このディストリビューションは以下のアーキテクチャをサポートしています:"
-#: ../../_includes/requirements/dotnet.rst:21
+#: ../../_includes/requirements/dotnet.rst:24
msgid "x86"
msgstr "x86"
-#: ../../_includes/requirements/dotnet.rst:22
+#: ../../_includes/requirements/dotnet.rst:25
msgid "AMD64 (x86-64)"
msgstr "AMD64 (x86-64)"
-#: ../../_includes/requirements/dotnet.rst:24
+#: ../../_includes/requirements/dotnet.rst:27
msgid "ARM architectures are not supported."
msgstr "ARMアーキテクチャはサポートされていません。"
@@ -5676,8 +5775,8 @@ msgid "Splunk RUM for Mobile supports the following versions:"
msgstr "Splunk RUM for Mobile は以下のバージョンをサポートしています:"
#: ../../_includes/requirements/ios.rst:3
-msgid "iOS 11 and higher"
-msgstr "iOS 11以上"
+msgid "iOS 15 and higher"
+msgstr "iOS 15以上"
#: ../../_includes/requirements/ios.rst:4
msgid "iPadOS 13 and higher"
@@ -5796,8 +5895,8 @@ msgid "For more information, search for Lambda runtimes and other system require
msgstr "詳細については、AWSのドキュメントサイトでLambdaのランタイムやその他のシステム要件を検索してください。"
#: ../../_includes/requirements/nodejs.rst:1
-msgid "The Splunk Distribution of OpenTelemetry JS requires Node.js 14 and higher. To activate AlwaysOn Profiling, you need Node.js 16 or higher."
-msgstr "Splunk Distribution of OpenTelemetry JS には、Node.js 14 以上が必要です。AlwaysOn Profiling を有効にするには、Node.js 16 以上が必要です。"
+msgid "The Splunk Distribution of OpenTelemetry JS requires Node.js 18 and higher. To activate AlwaysOn Profiling, you need Node.js 18 or higher."
+msgstr "Splunk Distribution of OpenTelemetry JSには、Node.js 18以上が必要です。AlwaysOn Profilingを有効にするには、Node.js 18以上が必要です。"
#: ../../_includes/requirements/php.rst:1
msgid "The OpenTelemetry instrumentation for PHP supports PHP version 8.0 or higher."
@@ -5861,18 +5960,19 @@ msgstr "トレース"
#: ../../_includes/rum-data-model.rst:7
msgid ""
-"A set of events triggered as a result of a single logical operation, distributed across various components of an application. Traces contain events that cross process, network, and security boundaries. A RUM trace can, for example, initiate when someone taps on a button to start an action on a website. If you use RUM and APM together, traces represent calls made between the downstream services that handle the "
-"requests initiated by the user action."
+"A set of events triggered as a result of a single logical operation, distributed across various components of an application. Traces contain events that cross process, network, and security boundaries. A RUM trace can, for example, initiate when someone taps on a button to start an action on a website. If you use RUM and APM "
+"together, traces represent calls made between the downstream services that handle the requests initiated by the user action."
msgstr ""
-"アプリケーションの様々なコンポーネントに分散された、1つの論理操作の結果としてトリガーされるイベントのセット。トレースには、プロセス、ネットワーク、セキュリティの境界を越えるイベントが含まれます。RUM のトレースは、例えば、誰かがウェブサイト上でアクションを開始するためにボタンをタップしたときに開始することができます。RUMとAPMを併用する場合、トレースは、ユーザーアクションによって開始されたリクエストを処理するダウンスト"
-"リームサービス間のコールを表します。"
+"アプリケーションの様々なコンポーネントに分散された、1つの論理操作の結果としてトリガーされるイベントのセット。トレースには、プロセス、ネットワーク、セキュリティの境界を越えるイベントが含まれます。RUM のトレースは、例えば、誰かがウェブサイト上でアクションを開始するためにボタンをタップしたときに開始することができます。RUMとAPMを"
+"併用する場合、トレースは、ユーザーアクションによって開始されたリクエストを処理するダウンストリームサービス間のコールを表します。"
#: ../../_includes/rum-data-model.rst:8
msgid "Span"
msgstr "スパン"
#: ../../_includes/rum-data-model.rst:9
-msgid "An operation within a transaction. A single span includes the logical name, the start and end timestamp of the operation, and the events and attributes linked to the captured data. A span might have a reference to its parent span and zero or more causally-related spans. Spans have universal attributes and custom attributes."
+msgid ""
+"An operation within a transaction. A single span includes the logical name, the start and end timestamp of the operation, and the events and attributes linked to the captured data. A span might have a reference to its parent span and zero or more causally-related spans. Spans have universal attributes and custom attributes."
msgstr "トランザクション内の操作。1つのスパンには、論理名、操作の開始と終了のタイムスタンプ、取り込まれたデータにリンクされたイベントと属性が含まれます。スパンは、その親スパンへの参照と、0個以上の因果関係のあるスパンを持つことがあります。スパンには、ユニバーサル属性とカスタム属性があります。"
#: ../../_includes/rum-data-model.rst:10
@@ -5896,7 +5996,8 @@ msgid "User"
msgstr "ユーザー"
#: ../../_includes/rum-data-model.rst:15
-msgid "By default, Splunk RUM doesn't collect identity data. Mapping a trace to a specific user requires manual instrumentation. Users can be represented by their username, email addresses, or using a synthetic identifier. Synthetic representation is useful in situations where PII regulations do not allow users to be identified."
+msgid ""
+"By default, Splunk RUM doesn't collect identity data. Mapping a trace to a specific user requires manual instrumentation. Users can be represented by their username, email addresses, or using a synthetic identifier. Synthetic representation is useful in situations where PII regulations do not allow users to be identified."
msgstr "デフォルトでは、Splunk RUM は ID データを収集しません。トレースを特定のユーザーにマッピングするには、手作業によるインストルメンテーションが必要です。ユーザーは、ユーザー名、メールアドレス、または合成識別子で表すことができます。合成識別子は、PII の規制によりユーザーを特定できない場合に便利です。"
#: ../../_includes/synthetics/chrome-flags.rst:6
@@ -6017,11 +6118,11 @@ msgstr "スパンタグ"
#: ../../_includes/synthetics/metricset-def.rst:4
msgid ""
-"Use span tags or processes to break down services and inter-service calls along trace characteristics or attributes. To get additional value from a span tag or process, an administrator can run an action known as indexing, which activates additional analysis of the indexed span tag or process. One benefit of indexing is to get aggregated metrics, called MetricSets, across all spans that contain a specified indexed "
-"tag or process."
+"Use span tags or processes to break down services and inter-service calls along trace characteristics or attributes. To get additional value from a span tag or process, an administrator can run an action known as indexing, which activates additional analysis of the indexed span tag or process. One benefit of indexing is to "
+"get aggregated metrics, called MetricSets, across all spans that contain a specified indexed tag or process."
msgstr ""
-"スパンタグやプロセスを使用して、サービスやサービス間コールをトレースの特性や属性に沿って分解します。スパンタグまたはプロセスから付加価値を得るために、管理者は、インデックス化と呼ばれるアクションを実行することができます。これにより、インデックス化したスパンタグやプロセスの追加的分析が有効になります。インデックス化のメリットの1つは、指定したインデックス済みタグまたはプロセスを含むすべてのスパンを対象にして、MetricSets"
-"と呼ばれる集約メトリクスを取得できることです。"
+"スパンタグやプロセスを使用して、サービスやサービス間コールをトレースの特性や属性に沿って分解します。スパンタグまたはプロセスから付加価値を得るために、管理者は、インデックス化と呼ばれるアクションを実行することができます。これにより、インデックス化したスパンタグやプロセスの追加的分析が有効になります。インデックス化のメリットの1"
+"つは、指定したインデックス済みタグまたはプロセスを含むすべてのスパンを対象にして、MetricSetsと呼ばれる集約メトリクスを取得できることです。"
#: ../../_includes/synthetics/metricset-def.rst:8
msgid "MetricSets"
@@ -6077,14 +6178,16 @@ msgstr "アプリケーションのインストルメンテーション経由で
#: ../../_includes/tag-decision-support.rst:5
msgid ""
-"Adding span tags in a downstream OpenTelemetry Collector can save time, at the cost of granularity. If a tag is applicable to 100% of the data received by the OpenTelemetry Collector in which you are adding it, adding the tag in your OpenTelemetry Collector config file is fastest. But if you need to apply logic to differentiate the spans that receive a tag via the OpenTelemetry Collector, it is likely faster to add "
-"the tags at the application level via instrumentation."
+"Adding span tags in a downstream OpenTelemetry Collector can save time, at the cost of granularity. If a tag is applicable to 100% of the data received by the OpenTelemetry Collector in which you are adding it, adding the tag in your OpenTelemetry Collector config file is fastest. But if you need to apply logic to "
+"differentiate the spans that receive a tag via the OpenTelemetry Collector, it is likely faster to add the tags at the application level via instrumentation."
msgstr ""
-"ダウンストリームのOpenTelemetry Collectorでスパンタグを追加すると、粒度を犠牲にして時間を節約できます。タグを追加するOpenTelemetry Collectorが受信するデータの100%にタグが適用される場合は、OpenTelemetry Collectorの設定ファイルでタグを追加するのが最速です。ただし、OpenTelemetry Collector経由でタグを受信するスパンを区別するロジックを適用する必要がある場合は、インストルメンテーション経由でアプリケーションレベルでタグを追"
-"加する方が速いでしょう。"
+"ダウンストリームのOpenTelemetry Collectorでスパンタグを追加すると、粒度を犠牲にして時間を節約できます。タグを追加するOpenTelemetry Collectorが受信するデータの100%にタグが適用される場合は、OpenTelemetry Collectorの設定ファイルでタグを追加するのが最速です。ただし、OpenTelemetry Collector経由でタグを受信するスパンを区別するロ"
+"ジックを適用する必要がある場合は、インストルメンテーション経由でアプリケーションレベルでタグを追加する方が速いでしょう。"
#: ../../_includes/tag-decision-support.rst:7
-msgid "For instance, if multiple applications exist on the same host in a K8s deployment, but in different environments (for instance, ``production``, ``development``, and ``staging``), setting the ``deployment.environment`` tag using the instrumentation library allows you to differentiate environments among spans from the same host."
+msgid ""
+"For instance, if multiple applications exist on the same host in a K8s deployment, but in different environments (for instance, ``production``, ``development``, and ``staging``), setting the ``deployment.environment`` tag using the instrumentation library allows you to differentiate environments among spans from the same "
+"host."
msgstr "例えば、K8sのデプロイメントにおいて、複数のアプリケーションが同じホスト上に存在するが、異なる環境(例えば ``production``、``development``、``staging`` )にある場合、インストルメンテーションライブラリを使用して ``deployment.environment`` タグを設定することで、同じホストのスパン間で環境を区別することができます。"
#: ../../_includes/troubleshooting-components.rst:1
@@ -6112,8 +6215,12 @@ msgid "Ask a question and get answers through community support at :new-page:`Sp
msgstr ":new-page:`Splunk Answers` のコミュニティサポートで質問し、回答を得る"
#: ../../_includes/troubleshooting-components.rst:13
-msgid "Join the Splunk :new-page:`#observability ` user group Slack channel to communicate with customers, partners, and Splunk employees worldwide. To join, see :new-page:`Chat groups ` in the *Get Started with Splunk Community* manual."
-msgstr "Splunk :new-page:`#observability` ユーザーグループの Slack チャンネルに参加して、世界中の顧客、パートナー、Splunk 社員とのコミュニケーションを図る。参加するには、*Get Started with Splunk Community* マニュアルの :new-page:`チャットグループ` を参照してください。"
+msgid ""
+"Join the Splunk :new-page:`#observability ` user group Slack channel to communicate with customers, partners, and Splunk employees worldwide. To join, see :new-page:`Chat groups ` in the *Get "
+"Started with Splunk Community* manual."
+msgstr ""
+"Splunk :new-page:`#observability` ユーザーグループの Slack チャンネルに参加して、世界中の顧客、パートナー、Splunk 社員とのコミュニケーションを図る。参加するには、*Get Started with Splunk Community* マニュアルの :new-page:`チャットグループ` を参照してください。"
#: ../../_includes/zero-code-info.rst:1
msgid "Due to changes in the upstream OpenTelemetry documentation, \"automatic instrumentation\" has been changed to \"zero-code instrumentation\". For more information, see :ref:`zero-code-overview`."
@@ -6143,7 +6250,9 @@ msgstr "アップストリームのOpenTelemetryのドキュメントに変更
#~ msgid "See [How the OpenTelemetry Collector uses pipelines to process data](https://docs.splunk.com/observability/gdi/opentelemetry/data-processing.html#common-processing-scenarios) for more information."
#~ msgstr "詳細は[How OpenTelemetry Collector uses pipelines to process data](https://docs.splunk.com/observability/gdi/opentelemetry/data-processing.html#common-processing-scenarios) を参照。"
-#~ msgid "Try to reproduce the error and collect a heap dump close to the point where the memory kill occurs: a. Add the `pprof` extension to the component configuration that is failing. Make sure you enable this extension in a pipeline in the services section. b. Capture the output of the following commands against the problematic pod:"
+#~ msgid ""
+#~ "Try to reproduce the error and collect a heap dump close to the point where the memory kill occurs: a. Add the `pprof` extension to the component configuration that is failing. Make sure you enable this extension in a pipeline in the services section. b. Capture the output of the following commands against the "
+#~ "problematic pod:"
#~ msgstr "a. 失敗しているコンポーネント構成に`pprof` 拡張を追加する。b. 問題のあるポッドに対して、以下のコマンドの出力をキャプチャする:"
#~ msgid "Gather additional [support information](https://docs.splunk.com/Observability/gdi/opentelemetry/support-checklist.html#nav-Gather-information-to-open-a-support-request), including your end-to-end architecture information."
@@ -6209,10 +6318,12 @@ msgstr "アップストリームのOpenTelemetryのドキュメントに変更
#~ msgid "Preview: Splunk Zero Config Auto Instrumentation"
#~ msgstr "プレビュー:Splunk Zero Config自動インストルメンテーション"
-#~ msgid "Preview features described in this document are provided by Splunk to you \"as is\" without any warranties, maintenance and support, or service-level commitments. Splunk makes this preview feature available in its sole discretion and may discontinue it at any time. Use of preview features is subject to the :new-page:`Splunk General Terms `."
+#~ msgid ""
+#~ "Preview features described in this document are provided by Splunk to you \"as is\" without any warranties, maintenance and support, or service-level commitments. Splunk makes this preview feature available in its sole discretion and may discontinue it at any time. Use of preview features is subject to the :new-"
+#~ "page:`Splunk General Terms `."
#~ msgstr ""
-#~ "本ドキュメントで説明するプレビュー機能は、Splunkからお客様に「現状のまま」提供されるものであり、いかなる保証、メンテナンス、サポート、サービスレベルのコミットメントも行われるものではありません。Splunkはこのプレビュー機能を独自の判断で利用可能にし、また、いつでも中止することができます。プレビュー機能の使用は、:new-page:`Splunk一般規約` に従うものとしま"
-#~ "す。"
+#~ "本ドキュメントで説明するプレビュー機能は、Splunkからお客様に「現状のまま」提供されるものであり、いかなる保証、メンテナンス、サポート、サービスレベルのコミットメントも行われるものではありません。Splunkはこのプレビュー機能を独自の判断で利用可能にし、また、いつでも中止することができます。プレビュー機能の使用は、:new-"
+#~ "page:`Splunk一般規約` に従うものとします。"
#~ msgid "Chrome and Chrome Android 51 and higher"
#~ msgstr "ChromeおよびChrome Android 51以上"
@@ -6494,7 +6605,9 @@ msgstr "アップストリームのOpenTelemetryのドキュメントに変更
#~ msgstr "``collectd/etcd``"
#~ msgid "Automatic instrumentation is only available for applications using supported Java libraries. See :ref:`supported-java-libraries`. If your application isn't supported, manually instrument your service to generate trace data. See :ref:`java-manual-instrumentation` ."
-#~ msgstr "自動インストルメンテーションは、サポートされているJavaライブラリを使用するアプリケーションでのみ利用可能です。:ref:`supported-java-libraries` を参照してください。アプリケーションがサポートされていない場合は、手動でサービスをインストルメンテーションしてトレース・データを生成してください。:ref:`java-manual-instrumentation` を参照してください。"
+#~ msgstr ""
+#~ "自動インストルメンテーションは、サポートされているJavaライブラリを使用するアプリケーションでのみ利用可能です。:ref:`supported-java-libraries` を参照してください。アプリケーションがサポートされていない場合は、手動でサービスをインストルメンテーションしてトレース・データを生成してください。:ref:`java-manual-instrumentation`を"
+#~ "参照してください。"
#~ msgid ":ref:`java-requirements`."
#~ msgstr ":ref:`java-requirements`。"
@@ -6523,8 +6636,12 @@ msgstr "アップストリームのOpenTelemetryのドキュメントに変更
#~ msgid "Preview: Metrics pipeline management/Archived Metrics"
#~ msgstr "プレビュー:メトリクスパイプライン管理/アーカイブされたメトリクス"
-#~ msgid "Preview features are provided by Splunk to you \"as is\" without any warranties, maintenance and support, or service level commitments. Splunk makes this preview feature available in its sole discretion and may discontinue it at any time. Use of preview features is subject to the :new-page:`Splunk General Terms `."
-#~ msgstr "プレビュー機能は、いかなる保証、メンテナンス、サポート、サービスレベルの約束もなく、Splunk からお客様に「現状のまま」提供されます。Splunk は独自の判断でこのプレビュー機能を提供し、いつでも中止することができます。プレビュー機能の使用は、:new-page:`Splunk 一般規約` に従うものとします。"
+#~ msgid ""
+#~ "Preview features are provided by Splunk to you \"as is\" without any warranties, maintenance and support, or service level commitments. Splunk makes this preview feature available in its sole discretion and may discontinue it at any time. Use of preview features is subject to the :new-page:`Splunk General Terms `."
+#~ msgstr ""
+#~ "プレビュー機能は、いかなる保証、メンテナンス、サポート、サービスレベルの約束もなく、Splunk からお客様に「現状のまま」提供されます。Splunk は独自の判断でこのプレビュー機能を提供し、いつでも中止することができます。プレビュー機能の使用は、:new-page:`Splunk 一般規約` に従うものとします。"
#~ msgid "See :ref:`mpm-arm-preview-sitemap` for the complete list of topics, or use these links to navigate to the high-level topics for metrics pipeline management with archived metrics:"
#~ msgstr "トピックの全リストは :ref:`mpm-arm-preview-sitemap` を参照するか、以下のリンクを使用して、アーカイブされたメトリクスを使用したメトリクスパイプライン管理に関する大まかなトピックに移動します:"
@@ -6696,3 +6813,42 @@ msgstr "アップストリームのOpenTelemetryのドキュメントに変更
#~ msgid ":ref:`oracledb-receiver`"
#~ msgstr ":ref:`oracledb-receiver`"
+
+#~ msgid ":strong:`Live Tail`"
+#~ msgstr ":strong:`Live Tail`"
+
+#~ msgid ":strong:`Create and manage log processing rules`"
+#~ msgstr ":strong:`ログ処理ルールを作成および管理する`"
+
+#~ msgid ":strong:`Apply processing rules across historical data`"
+#~ msgstr ":strong:`過去のデータに処理ルールを適用する`"
+
+#~ msgid ":strong:`Transform data with log processing rules`"
+#~ msgstr ":strong:`ログ処理ルールでデータを変換する`"
+
+#~ msgid ":strong:`Create and manage log metricization rules`"
+#~ msgstr ":strong:`ログのメトリクス化ルールを作成および管理する`"
+
+#~ msgid ":strong:`Create new S3 connection to allow infinite logging rules`"
+#~ msgstr ":strong:`無限のロギングルールを可能にする新しい S3 接続を作成する`"
+
+#~ msgid ":strong:`Create and manage infinite logging rules`"
+#~ msgstr ":strong:`無限のロギングルールを作成および管理する`"
+
+#~ msgid "Yes - after admin creates S3 connection"
+#~ msgstr "権限あり - 管理者がS3接続を作成した後"
+
+#~ msgid "The installer script uses one of the supported package managers to install the Collector."
+#~ msgstr "インストーラスクリプトは、サポートされているパッケージマネージャーのいずれかを使用してCollectorをインストールします。"
+
+#~ msgid "When you update the Collector using the official packages, configuration files are never overridden. If you need to update the configuration after an update, edit them manually before backward compatibility is dropped."
+#~ msgstr "公式パッケージを使用してCollectorをアップデートする場合、設定ファイルが上書きされることはありません。更新後に設定を更新する必要がある場合は、下位互換性が失われる前に手動で編集してください。"
+
+#~ msgid "Apply the following changes to the Collector configuration files for specific version upgrades."
+#~ msgstr "特定のバージョンアップのために、Collector 構成ファイルに以下の変更を適用します。"
+
+#~ msgid ".NET 6.0 (End of Support: November 12, 2024)"
+#~ msgstr ".NET 6.0(サポート終了:2024年11月12日)"
+
+#~ msgid ".NET 7 reached End of Life on May 14, 2024. Best effort support is provided for the last version only, 7.0.19, which was tested using Splunk Distribution of OpenTelemetry .NET version 1.5.0."
+#~ msgstr ".NET 7 は2024年5月14日にサポート終了となりました。Splunk Distribution of OpenTelemetry .NETのバージョン1.5.0を使用してテストされた最後のバージョン7.0.19に対してのみ、ベストエフォートのサポートが提供されます。"
diff --git a/locales/ja_JA/LC_MESSAGES/admin.mo b/locales/ja_JA/LC_MESSAGES/admin.mo
index e831e6b0d..2d73a5257 100644
Binary files a/locales/ja_JA/LC_MESSAGES/admin.mo and b/locales/ja_JA/LC_MESSAGES/admin.mo differ
diff --git a/locales/ja_JA/LC_MESSAGES/admin.po b/locales/ja_JA/LC_MESSAGES/admin.po
index aaa796c32..77e224289 100644
--- a/locales/ja_JA/LC_MESSAGES/admin.po
+++ b/locales/ja_JA/LC_MESSAGES/admin.po
@@ -1,4 +1,3 @@
-# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023 Splunk, Inc
# This file is distributed under the same license as the Splunk package.
# FIRST AUTHOR , 2023.
@@ -7,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Splunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-01-29 18:45+0000\n"
-"PO-Revision-Date: 2025-02-27 12:03+0000\n"
+"POT-Creation-Date: 2025-03-13 09:38+0000\n"
+"PO-Revision-Date: 2025-04-10 14:10+0100\n"
"Last-Translator: \n"
"Language-Team: ja_JA \n"
"Language: ja_JA\n"
@@ -16,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
-"X-Generator: Poedit 3.5\n"
+"X-Generator: Poedit 3.6\n"
#: ../../admin/admin.rst:-1
msgid "Overview of the Splunk Observability Cloud organization admin tasks and links to the documentation."
@@ -223,12 +222,20 @@ msgid "About realms"
msgstr "レルムについて"
#: ../../_includes/realm-note.rst:3
-msgid "A realm is a self-contained deployment of Splunk Observability Cloud in which your organization is hosted. Different realms have different API endpoints. For example, the endpoint for sending data in the ``us1`` realm is ``https://ingest.us1.signalfx.com``, while the endpoint for sending data in the ``eu0`` realm is ``https://ingest.eu0.signalfx.com``."
-msgstr "レルムとは、あなたの組織がホストされているSplunk Observability Cloudの自己完結型のデプロイメントのことです。異なるレルムには異なるAPIエンドポイントがあります。例えば、``us1`` レルムでデータを送信するためのエンドポイントは ``https://ingest.us1.signalfx.com`` で、``eu0`` レルムでデータを送信するためのエンドポイントは ``https://ingest.eu0.signalfx.com``、というようになります。"
+msgid ""
+"A realm is a self-contained deployment of Splunk Observability Cloud in which your organization is hosted. Different realms have different API endpoints. For example, the endpoint for sending data in the ``us1`` realm is ``https://ingest.us1.signalfx.com``, while the endpoint for sending data in the ``eu0`` realm is ``https://"
+"ingest.eu0.signalfx.com``."
+msgstr ""
+"レルムとは、あなたの組織がホストされているSplunk Observability Cloudの自己完結型のデプロイメントのことです。異なるレルムには異なるAPIエンドポイントがあります。例えば、``us1`` レルムでデータを送信するためのエンドポイントは ``https://ingest.us1.signalfx.com`` で、``eu0`` レルムでデータを送信するためのエンドポイントは ``https://"
+"ingest.eu0.signalfx.com``、というようになります。"
#: ../../_includes/realm-note.rst:5
-msgid "When you see a placeholder realm name in the documentation, such as ````, replace it with your actual realm name. To find your realm name, open the navigation menu in Splunk Observability Cloud, select :menuselection:`Settings`, and select your username. Locate the realm name in the :guilabel:`Organizations` section If you don't include the realm name when specifying an endpoint, Splunk Observability Cloud defaults to the ``us0`` realm."
-msgstr "```` のようなプレースホルダのレルム名がドキュメントに記載されている場合は、実際のレルム名に置き換えてください。自分のレルム名を見つけるには、Splunk Observability Cloudのナビゲーションメニューを開き、:menuselection:`Settings` を選択し、ユーザー名を選択します。レルム名は :guilabel:`Organizations` セクションにあります。エンドポイントを指定する際にレルム名を含めない場合は、Splunk Observability Cloudがデフォルトで ``us0`` レルムを設定します。"
+msgid ""
+"When you see a placeholder realm name in the documentation, such as ````, replace it with your actual realm name. To find your realm name, open the navigation menu in Splunk Observability Cloud, select :menuselection:`Settings`, and select your username. Locate the realm name in the :guilabel:`Organizations` section If "
+"you don't include the realm name when specifying an endpoint, Splunk Observability Cloud defaults to the ``us0`` realm."
+msgstr ""
+"```` のようなプレースホルダのレルム名がドキュメントに記載されている場合は、実際のレルム名に置き換えてください。自分のレルム名を見つけるには、Splunk Observability Cloudのナビゲーションメニューを開き、:menuselection:`Settings` を選択し、ユーザー名を選択します。レルム名は :guilabel:`Organizations` セクションにあります。エン"
+"ドポイントを指定する際にレルム名を含めない場合は、Splunk Observability Cloudがデフォルトで ``us0`` レルムを設定します。"
#: ../../admin/authentication/SSO/sso.rst:55
msgid "A custom URL is required to allow users to log in to Splunk Observability Cloud from your organization's login page. If no custom URL is provided, users can still log in through the identity provider to access Splunk Observability Cloud."
@@ -259,8 +266,12 @@ msgid "Give your login service integration a name that your users recognize. On
msgstr "ログインサービスのインテグレーションに、ユーザーが認識できる名前を付けます。カスタムログインページでは、この名前はユーザーがサインインするために選択するボタンに表示されます。例えば、Oktaログインサービスのインテグレーションに「Oktaでログイン」という名前を使用します。"
#: ../../admin/authentication/SSO/sso.rst:86
-msgid "When you integrate a login service with Splunk Observability Cloud, you need to provide information about the integration to the login service. Infrastructure Monitoring gives you an entity identifier (entity ID) that you provide when you configure the login service itself. The service uses the entity ID and other information to connect with Splunk Observability Cloud."
-msgstr "ログインサービスをSplunk Observability Cloudと統合する場合、インテグレーションに関する情報をそのログインサービスに提供する必要があります。Infrastructure Monitoringは、そのログインサービス自体を構成する際に指定するエンティティの識別子(エンティティID)を提供します。当該のログインサービスは、このエンティティIDとその他の情報を使用してSplunk Observability Cloudと接続します。"
+msgid ""
+"When you integrate a login service with Splunk Observability Cloud, you need to provide information about the integration to the login service. Infrastructure Monitoring gives you an entity identifier (entity ID) that you provide when you configure the login service itself. The service uses the entity ID and other information to "
+"connect with Splunk Observability Cloud."
+msgstr ""
+"ログインサービスをSplunk Observability Cloudと統合する場合、インテグレーションに関する情報をそのログインサービスに提供する必要があります。Infrastructure Monitoringは、そのログインサービス自体を構成する際に指定するエンティティの識別子(エンティティID)を提供します。当該のログインサービスは、このエンティティIDとその他の情報を使用して"
+"Splunk Observability Cloudと接続します。"
#: ../../admin/authentication/SSO/sso.rst:92
msgid "For multiple organizations, the login service needs an entity ID and other information for each organization. Splunk Observability Cloud can provide you with an integration-specific entity ID for the integration in each organization."
@@ -286,25 +297,29 @@ msgstr "インテグレーション固有のエンティティIDの一般的な
msgid "To get an integration-specific entity ID for an integration, do the following when you create the integration:"
msgstr "インテグレーションに際してインテグレーション固有のエンティティIDを取得するには、インテグレーションの作成時に以下の手順を実行します:"
-#: ../../admin/authentication/SSO/sso-ADSF.rst:50 ../../admin/authentication/SSO/sso-GeneralSAML.rst:103 ../../admin/authentication/SSO/sso-Google.rst:25 ../../admin/authentication/SSO/sso-Google.rst:45 ../../admin/authentication/SSO/sso-Okta.rst:25 ../../admin/authentication/SSO/sso-OneLogin.rst:32 ../../admin/authentication/SSO/sso.rst:116 ../../admin/notif-services/amazoneventbridge.rst:37 ../../admin/notif-services/bigpanda.rst:51 ../../admin/notif-services/jira.rst:46
-#: ../../admin/notif-services/microsoftteams.rst:65 ../../admin/notif-services/opsgenie.rst:56 ../../admin/notif-services/pagerduty.rst:44 ../../admin/notif-services/servicenow.rst:95 ../../admin/notif-services/slack.rst:31 ../../admin/notif-services/splunkoncall.rst:66 ../../admin/notif-services/splunkplatform.rst:28 ../../admin/notif-services/webhook.rst:57 ../../admin/notif-services/xmatters.rst:42 ../../admin/user-management/teams/configure-page.rst:30
-#: ../../admin/user-management/teams/configure-page.rst:40 ../../admin/user-management/teams/enhanced-team-security.rst:36 ../../admin/user-management/teams/manage-membership.rst:22 ../../admin/user-management/teams/manage-membership.rst:48 ../../admin/user-management/teams/manage-membership.rst:70 ../../admin/user-management/teams/manage-membership.rst:94 ../../admin/user-management/teams/manage-membership.rst:117 ../../admin/user-management/teams/manage-membership.rst:137
-#: ../../admin/user-management/teams/team-notifications.rst:21
+#: ../../admin/authentication/SSO/sso-ADSF.rst:50 ../../admin/authentication/SSO/sso-GeneralSAML.rst:103 ../../admin/authentication/SSO/sso-Google.rst:25 ../../admin/authentication/SSO/sso-Google.rst:45 ../../admin/authentication/SSO/sso-Okta.rst:25 ../../admin/authentication/SSO/sso-OneLogin.rst:32
+#: ../../admin/authentication/SSO/sso.rst:116 ../../admin/notif-services/amazoneventbridge.rst:37 ../../admin/notif-services/bigpanda.rst:51 ../../admin/notif-services/jira.rst:46 ../../admin/notif-services/microsoftteams.rst:65 ../../admin/notif-services/opsgenie.rst:56 ../../admin/notif-services/pagerduty.rst:44
+#: ../../admin/notif-services/servicenow.rst:95 ../../admin/notif-services/slack.rst:31 ../../admin/notif-services/splunkoncall.rst:66 ../../admin/notif-services/splunkplatform.rst:28 ../../admin/notif-services/webhook.rst:57 ../../admin/notif-services/xmatters.rst:42 ../../admin/user-management/teams/configure-page.rst:30
+#: ../../admin/user-management/teams/configure-page.rst:40 ../../admin/user-management/teams/enhanced-team-security.rst:36 ../../admin/user-management/teams/manage-membership.rst:22 ../../admin/user-management/teams/manage-membership.rst:48 ../../admin/user-management/teams/manage-membership.rst:70
+#: ../../admin/user-management/teams/manage-membership.rst:94 ../../admin/user-management/teams/manage-membership.rst:117 ../../admin/user-management/teams/manage-membership.rst:137 ../../admin/user-management/teams/team-notifications.rst:21
msgid "Log in to Splunk Observability Cloud."
msgstr "Splunk Observability Cloudにログインします。"
-#: ../../admin/authentication/SSO/sso-ADSF.rst:53 ../../admin/authentication/SSO/sso-GeneralSAML.rst:106 ../../admin/authentication/SSO/sso-Google.rst:26 ../../admin/authentication/SSO/sso-Google.rst:46 ../../admin/authentication/SSO/sso-Okta.rst:28 ../../admin/authentication/SSO/sso-OneLogin.rst:35 ../../admin/authentication/SSO/sso.rst:117 ../../admin/notif-services/amazoneventbridge.rst:40 ../../admin/notif-services/bigpanda.rst:54 ../../admin/notif-services/jira.rst:49
-#: ../../admin/notif-services/microsoftteams.rst:68 ../../admin/notif-services/opsgenie.rst:59 ../../admin/notif-services/pagerduty.rst:47 ../../admin/notif-services/servicenow.rst:98 ../../admin/notif-services/slack.rst:34 ../../admin/notif-services/splunkoncall.rst:69 ../../admin/notif-services/xmatters.rst:45
+#: ../../admin/authentication/SSO/sso-ADSF.rst:53 ../../admin/authentication/SSO/sso-GeneralSAML.rst:106 ../../admin/authentication/SSO/sso-Google.rst:26 ../../admin/authentication/SSO/sso-Google.rst:46 ../../admin/authentication/SSO/sso-Okta.rst:28 ../../admin/authentication/SSO/sso-OneLogin.rst:35
+#: ../../admin/authentication/SSO/sso.rst:117 ../../admin/notif-services/amazoneventbridge.rst:40 ../../admin/notif-services/bigpanda.rst:54 ../../admin/notif-services/jira.rst:49 ../../admin/notif-services/microsoftteams.rst:68 ../../admin/notif-services/opsgenie.rst:59 ../../admin/notif-services/pagerduty.rst:47
+#: ../../admin/notif-services/servicenow.rst:98 ../../admin/notif-services/slack.rst:34 ../../admin/notif-services/splunkoncall.rst:69 ../../admin/notif-services/xmatters.rst:45
msgid "In the left navigation menu, select :menuselection:`Data Management`."
msgstr "左のナビゲーションメニューで、:menuselection:`Data Management` を選択します。"
-#: ../../admin/authentication/SSO/sso-ADSF.rst:55 ../../admin/authentication/SSO/sso-Google.rst:27 ../../admin/authentication/SSO/sso-Google.rst:47 ../../admin/authentication/SSO/sso-Okta.rst:30 ../../admin/authentication/SSO/sso-OneLogin.rst:37 ../../admin/authentication/SSO/sso.rst:118 ../../admin/notif-services/amazoneventbridge.rst:42 ../../admin/notif-services/bigpanda.rst:56 ../../admin/notif-services/jira.rst:51 ../../admin/notif-services/microsoftteams.rst:70
-#: ../../admin/notif-services/opsgenie.rst:61 ../../admin/notif-services/pagerduty.rst:49 ../../admin/notif-services/servicenow.rst:100 ../../admin/notif-services/slack.rst:36 ../../admin/notif-services/splunkoncall.rst:71 ../../admin/notif-services/splunkplatform.rst:32 ../../admin/notif-services/webhook.rst:61 ../../admin/notif-services/xmatters.rst:47
+#: ../../admin/authentication/SSO/sso-ADSF.rst:55 ../../admin/authentication/SSO/sso-Google.rst:27 ../../admin/authentication/SSO/sso-Google.rst:47 ../../admin/authentication/SSO/sso-Okta.rst:30 ../../admin/authentication/SSO/sso-OneLogin.rst:37 ../../admin/authentication/SSO/sso.rst:118
+#: ../../admin/notif-services/amazoneventbridge.rst:42 ../../admin/notif-services/bigpanda.rst:56 ../../admin/notif-services/jira.rst:51 ../../admin/notif-services/microsoftteams.rst:70 ../../admin/notif-services/opsgenie.rst:61 ../../admin/notif-services/pagerduty.rst:49 ../../admin/notif-services/servicenow.rst:100
+#: ../../admin/notif-services/slack.rst:36 ../../admin/notif-services/splunkoncall.rst:71 ../../admin/notif-services/splunkplatform.rst:32 ../../admin/notif-services/webhook.rst:61 ../../admin/notif-services/xmatters.rst:47
msgid "Go to the :guilabel:`Available integrations` tab, or select :guilabel:`Add Integration` in the :guilabel:`Deployed integrations` tab."
msgstr ":guilabel:`Available integrations` タブに移動するか、:guilabel:`Add Integration` タブで :guilabel:`Deployed integrations` を選択します。"
-#: ../../admin/authentication/SSO/sso-ADSF.rst:57 ../../admin/authentication/SSO/sso-GeneralSAML.rst:110 ../../admin/authentication/SSO/sso-Google.rst:28 ../../admin/authentication/SSO/sso-Google.rst:48 ../../admin/authentication/SSO/sso-Okta.rst:32 ../../admin/authentication/SSO/sso-OneLogin.rst:39 ../../admin/authentication/SSO/sso.rst:119 ../../admin/notif-services/amazoneventbridge.rst:44 ../../admin/notif-services/bigpanda.rst:58
-#: ../../admin/notif-services/microsoftteams.rst:72 ../../admin/notif-services/opsgenie.rst:63 ../../admin/notif-services/pagerduty.rst:51 ../../admin/notif-services/servicenow.rst:102 ../../admin/notif-services/slack.rst:38 ../../admin/notif-services/splunkoncall.rst:73 ../../admin/notif-services/splunkplatform.rst:33 ../../admin/notif-services/webhook.rst:62 ../../admin/notif-services/xmatters.rst:49
+#: ../../admin/authentication/SSO/sso-ADSF.rst:57 ../../admin/authentication/SSO/sso-GeneralSAML.rst:110 ../../admin/authentication/SSO/sso-Google.rst:28 ../../admin/authentication/SSO/sso-Google.rst:48 ../../admin/authentication/SSO/sso-Okta.rst:32 ../../admin/authentication/SSO/sso-OneLogin.rst:39
+#: ../../admin/authentication/SSO/sso.rst:119 ../../admin/notif-services/amazoneventbridge.rst:44 ../../admin/notif-services/bigpanda.rst:58 ../../admin/notif-services/microsoftteams.rst:72 ../../admin/notif-services/opsgenie.rst:63 ../../admin/notif-services/pagerduty.rst:51 ../../admin/notif-services/servicenow.rst:102
+#: ../../admin/notif-services/slack.rst:38 ../../admin/notif-services/splunkoncall.rst:73 ../../admin/notif-services/splunkplatform.rst:33 ../../admin/notif-services/webhook.rst:62 ../../admin/notif-services/xmatters.rst:49
msgid "In the integration filter menu, select :guilabel:`All`."
msgstr "インテグレーションのフィルターメニューで、:guilabel:`All` を選択します。"
@@ -757,8 +772,11 @@ msgid "Select :guilabel:`Save`."
msgstr ":guilabel:`Save` を選択します。"
#: ../../admin/authentication/SSO/sso-ADSF.rst:209
-msgid "The ADFS SSO integration is now available to users in your ADFS organization. When users log in to Splunk Observability Cloud from ADFS for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. Subsequent login attempts don't require validation."
-msgstr "これで、お客様のADFS組織内のユーザーがADFS SSOインテグレーションを利用できるようになりました。ユーザーが初めてADFSからSplunk Observability Cloudにログインする際に、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに検証は必要ありません。"
+msgid ""
+"The ADFS SSO integration is now available to users in your ADFS organization. When users log in to Splunk Observability Cloud from ADFS for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. Subsequent login attempts don't require "
+"validation."
+msgstr ""
+"これで、お客様のADFS組織内のユーザーがADFS SSOインテグレーションを利用できるようになりました。ユーザーが初めてADFSからSplunk Observability Cloudにログインする際に、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに検証は必要ありません。"
#: ../../admin/authentication/SSO/sso-ADSF.rst:215 ../../admin/authentication/SSO/sso-AzureAD.rst:45 ../../admin/authentication/SSO/sso-Google.rst:77 ../../admin/authentication/SSO/sso-GoogleCloudIDP.rst:28
msgid "If you want to turn off the email authentication feature, contact :ref:`support`."
@@ -793,8 +811,12 @@ msgid "Ask a question and get answers through community support at :new-page:`Sp
msgstr ":new-page:`Splunk Answers` のコミュニティサポートで質問し、回答を得る"
#: ../../_includes/troubleshooting-components.rst:13
-msgid "Join the Splunk :new-page:`#observability ` user group Slack channel to communicate with customers, partners, and Splunk employees worldwide. To join, see :new-page:`Chat groups ` in the *Get Started with Splunk Community* manual."
-msgstr "Splunk :new-page:`#observability` ユーザーグループの Slack チャンネルに参加して、世界中の顧客、パートナー、Splunk 社員とのコミュニケーションを図る。参加するには、*Get Started with Splunk Community* マニュアルの :new-page:`チャットグループ` を参照してください。"
+msgid ""
+"Join the Splunk :new-page:`#observability ` user group Slack channel to communicate with customers, partners, and Splunk employees worldwide. To join, see :new-page:`Chat groups ` in the *Get Started with "
+"Splunk Community* manual."
+msgstr ""
+"Splunk :new-page:`#observability` ユーザーグループの Slack チャンネルに参加して、世界中の顧客、パートナー、Splunk 社員とのコミュニケーションを図る。参加するには、*Get Started with Splunk Community* マニュアルの :new-page:`チャットグループ` を参照してください。"
#: ../../admin/authentication/SSO/sso-AzureAD.rst:-1
msgid "Configure the Microsoft Entra ID (formerly Azure Active Directory) integration to let users log in to Splunk Observability Cloud using their Entra ID account."
@@ -857,8 +879,12 @@ msgid "Proceed with the rest of the instructions."
msgstr "残りの指示に従って進めます。"
#: ../../admin/authentication/SSO/sso-AzureAD.rst:39
-msgid "After you complete these steps, the Microsoft Entra ID SSO integration is available to users in your Microsoft Entra ID organization. When users sign in to Splunk Observability Cloud from Microsoft Entra ID for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. Subsequent login attempts don't require validation."
-msgstr "これらの手順を完了すると、お客様のMicrosoft Entra ID組織のユーザーがMicrosoft Entra ID SSOインテグレーションを利用できるようになります。ユーザーが初めてMicrosoft Entra IDからSplunk Observability Cloudにサインインすると、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに認証は必要ありません。"
+msgid ""
+"After you complete these steps, the Microsoft Entra ID SSO integration is available to users in your Microsoft Entra ID organization. When users sign in to Splunk Observability Cloud from Microsoft Entra ID for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the "
+"first time the user signs in. Subsequent login attempts don't require validation."
+msgstr ""
+"これらの手順を完了すると、お客様のMicrosoft Entra ID組織のユーザーがMicrosoft Entra ID SSOインテグレーションを利用できるようになります。ユーザーが初めてMicrosoft Entra IDからSplunk Observability Cloudにサインインすると、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ"
+"発生します。それ以降のログインに認証は必要ありません。"
#: ../../admin/authentication/SSO/sso-AzureAD.rst:47
msgid "Once you have a custom URL configured, your users can continue to log in using their existing username/password pair, or they can use their Microsoft Entra ID credentials instead. Microsoft Entra ID SSO authentication and Splunk Observability Cloud username/password authentication are independent."
@@ -874,10 +900,11 @@ msgstr "汎用SAML SSOインテグレーションを使ってSSOを構成する"
#: ../../admin/authentication/SSO/sso-GeneralSAML.rst:10
msgid ""
-"This integration can send credential information to unverified destinations. Although you can use generic SAML SSO integrations to authenticate users, Splunk Observability Cloud doesn't support these integrations as your primary authentication mechanism. The Splunk Observability Cloud support team can't help you diagnose or repair problems you encounter while trying to authenticate users using generic SSO integrations, aside from ensuring that the integration itself is "
-"working."
+"This integration can send credential information to unverified destinations. Although you can use generic SAML SSO integrations to authenticate users, Splunk Observability Cloud doesn't support these integrations as your primary authentication mechanism. The Splunk Observability Cloud support team can't help you diagnose or repair "
+"problems you encounter while trying to authenticate users using generic SSO integrations, aside from ensuring that the integration itself is working."
msgstr ""
-"このインテグレーションは、未検証の宛先に認証情報を送信する場合があります。ユーザーの認証に汎用SAML SSOインテグレーションをご利用いただくことはできますが、Splunk Observability Cloudでは、メインの認証メカニズムとしてこれらのインテグレーションをサポートしていません。Splunk Observability Cloudのサポートチームは、インテグレーション自体が動作していることの確認を除き、汎用SSOインテグレーションを使用したユーザー認証の試行時にお客様が遭遇する問題の診断や修復のサポートはできません。"
+"このインテグレーションは、未検証の宛先に認証情報を送信する場合があります。ユーザーの認証に汎用SAML SSOインテグレーションをご利用いただくことはできますが、Splunk Observability Cloudでは、メインの認証メカニズムとしてこれらのインテグレーションをサポートしていません。Splunk Observability Cloudのサポートチームは、インテグレーション自体が"
+"動作していることの確認を除き、汎用SSOインテグレーションを使用したユーザー認証の試行時にお客様が遭遇する問題の診断や修復のサポートはできません。"
#: ../../admin/authentication/SSO/sso-GeneralSAML.rst:12
msgid "If you use an SSO login service other than the ones listed in :ref:`sso-label`, you can create a generic SAML SSO integration for your organization."
@@ -900,20 +927,24 @@ msgid "Generic SAML SSO integrations"
msgstr "汎用SAML SSOインテグレーション"
#: ../../admin/authentication/SSO/sso-GeneralSAML.rst:25
-msgid "Splunk Observability Cloud provides integrations for specific SAML SSO providers. If your provider isn't in the list of supported integrations, your organization administrator can request a generic integration from Splunk Observability Cloud. You can use this integration to test and develop a SAML SSO provider. Using this integration, administrators can direct Splunk Observability Cloud to use any publicly-available SSO endpoint to authenticate users."
+msgid ""
+"Splunk Observability Cloud provides integrations for specific SAML SSO providers. If your provider isn't in the list of supported integrations, your organization administrator can request a generic integration from Splunk Observability Cloud. You can use this integration to test and develop a SAML SSO provider. Using this "
+"integration, administrators can direct Splunk Observability Cloud to use any publicly-available SSO endpoint to authenticate users."
msgstr ""
-"Splunk Observability Cloudは、特定のSAML SSOプロバイダー用のインテグレーションを提供します。ご利用のプロバイダーが、サポート対象のインテグレーションのリストにない場合は、組織の管理者がSplunk Observability Cloudから汎用的なインテグレーションをリクエストできます。このインテグレーションを使用して、SAML SSOプロバイダーをテストおよび開発できます。このインテグレーションを使用して、管理者は、一般に利用可能な任意のSSOエンドポイントを使用してユーザーを認証するように"
-"SplunkObservability Cloudに指示できます。"
+"Splunk Observability Cloudは、特定のSAML SSOプロバイダー用のインテグレーションを提供します。ご利用のプロバイダーが、サポート対象のインテグレーションのリストにない場合は、組織の管理者がSplunk Observability Cloudから汎用的なインテグレーションをリクエストできます。このインテグレーションを使用して、SAML SSOプロバイダーをテストおよび開発"
+"できます。このインテグレーションを使用して、管理者は、一般に利用可能な任意のSSOエンドポイントを使用してユーザーを認証するようにSplunkObservability Cloudに指示できます。"
#: ../../admin/authentication/SSO/sso-GeneralSAML.rst:28
msgid "Be prepared to provide the domain for the ID/email address that your users provide when they log in. The domain is the part of the user ID/email address string that follows the ``@`` sign."
msgstr "ユーザーがログイン時に入力するID/メールアドレス用のドメインを提供する準備をしてください。ドメインは、ユーザーID/メールアドレスの文字列のうち、``@`` 記号の後に続く部分です。"
#: ../../admin/authentication/SSO/sso-GeneralSAML.rst:30
-msgid "You can only use one type of ``PersonImmutableID`` for each generic SAML integration you create. If you create a second generic SAML integration using the same ``PersonImmutableID``, you must deactivate the first one and delete its users. Until you do so, users will not be able to use the same type of ID to log in to the organization. For example, if the first integration uses the ``emailId`` as the PersonImmutableID, you can't use ``emailId`` in a second integration."
+msgid ""
+"You can only use one type of ``PersonImmutableID`` for each generic SAML integration you create. If you create a second generic SAML integration using the same ``PersonImmutableID``, you must deactivate the first one and delete its users. Until you do so, users will not be able to use the same type of ID to log in to the "
+"organization. For example, if the first integration uses the ``emailId`` as the PersonImmutableID, you can't use ``emailId`` in a second integration."
msgstr ""
-"作成する汎用SAMLインテグレーション1つにつき、使用できる ``PersonImmutableID`` のタイプは1つのみです。同じ ``PersonImmutableID`` を使用して2つ目の汎用SAMLインテグレーションを作成する場合は、1つ目のインテグレーションを非アクティブにし、そのユーザーを削除する必要があります。これを実行するまで、ユーザーは同じタイプのIDを使用して組織にログインすることはできません。例えば、1つ目のインテグレーションがPersonImmutableIDとして ``emailId`` を使用している場合、2つ目のインテグレー"
-"ションで ``emailId`` を使用することはできません。"
+"作成する汎用SAMLインテグレーション1つにつき、使用できる ``PersonImmutableID`` のタイプは1つのみです。同じ ``PersonImmutableID`` を使用して2つ目の汎用SAMLインテグレーションを作成する場合は、1つ目のインテグレーションを非アクティブにし、そのユーザーを削除する必要があります。これを実行するまで、ユーザーは同じタイプのIDを使用して組織"
+"にログインすることはできません。例えば、1つ目のインテグレーションがPersonImmutableIDとして ``emailId`` を使用している場合、2つ目のインテグレーションで ``emailId`` を使用することはできません。"
#: ../../admin/authentication/SSO/sso-GeneralSAML.rst:32
msgid "For details on how to use the API to delete users, see :new-page:`Delete/organization/member `."
@@ -1017,11 +1048,11 @@ msgstr ":strong:`RelayState`"
#: ../../admin/authentication/SSO/sso-GeneralSAML.rst:72
msgid ""
-"Splunk Observability Cloud sends a dynamic RelayState, so the SSO provider must accept and pass back the dynamic RelayState. RelayState is part of SAML specifications. In the Splunk Observability Cloud system it is part of message context in the AuthN request that is sent to the identity provider. The message context also contains a token that can be verified on the service provider side later. The Relay State is set by the Splunk Observability Cloud system and sent with "
-"the request to the IDP. The IDP is expected to send the relay state back to the service provider with the same value that was received after a successful authentication on the IDP side."
+"Splunk Observability Cloud sends a dynamic RelayState, so the SSO provider must accept and pass back the dynamic RelayState. RelayState is part of SAML specifications. In the Splunk Observability Cloud system it is part of message context in the AuthN request that is sent to the identity provider. The message context also contains a "
+"token that can be verified on the service provider side later. The Relay State is set by the Splunk Observability Cloud system and sent with the request to the IDP. The IDP is expected to send the relay state back to the service provider with the same value that was received after a successful authentication on the IDP side."
msgstr ""
-"Splunk Observability Cloudは動的なRelayStateを送信するため、SSOプロバイダーはこの動的なRelayStateを受け入れ、返送する必要があります。RelayStateはSAML仕様の一部です。Splunk Observability Cloudシステムにおいては、IDプロバイダーに送信されるAuthNリクエストのメッセージコンテキストの一部です。このメッセージコンテキストには、後にサービスプロバイダー側で検証できるトークンも含まれています。RelayStateはSplunk Observability Cloudシステムによって設定され、リクエストとともにIdPに送信され"
-"ます。IdPは、IdP側で認証に成功した後に受信したのと同じ値でリレー状態をサービスプロバイダーに送り返すことが期待されます。"
+"Splunk Observability Cloudは動的なRelayStateを送信するため、SSOプロバイダーはこの動的なRelayStateを受け入れ、返送する必要があります。RelayStateはSAML仕様の一部です。Splunk Observability Cloudシステムにおいては、IDプロバイダーに送信されるAuthNリクエストのメッセージコンテキストの一部です。このメッセージコンテキストには、後にサービスプ"
+"ロバイダー側で検証できるトークンも含まれています。RelayStateはSplunk Observability Cloudシステムによって設定され、リクエストとともにIdPに送信されます。IdPは、IdP側で認証に成功した後に受信したのと同じ値でリレー状態をサービスプロバイダーに送り返すことが期待されます。"
#: ../../admin/authentication/SSO/sso-GeneralSAML.rst:77
msgid "Install a generic SAML SSO integration"
@@ -1113,7 +1144,8 @@ msgstr "カスタムURLを設定すると、ユーザーは、既存のユーザ
#: ../../admin/authentication/SSO/sso-GeneralSAML.rst:125
msgid "Splunk Observability Cloud generates a password for users you create in generic SAML SSO. If the generic SAML login portal is unavailable, Splunk Observability Cloud users can use the reset password link on the Splunk Observability Cloud login page to get native Splunk Observability Cloud credentials."
-msgstr "Splunk Observability Cloudは、汎用SAML SSOで作成するユーザー用に、パスワードを生成します。汎用SAMLログインポータルが利用できない場合、Splunk Observability Cloudユーザーは、Splunk Observability Cloudのログインページの「パスワードのリセット」リンクを使用して、Splunk Observability Cloudのネイティブの認証情報を取得することができます。"
+msgstr ""
+"Splunk Observability Cloudは、汎用SAML SSOで作成するユーザー用に、パスワードを生成します。汎用SAMLログインポータルが利用できない場合、Splunk Observability Cloudユーザーは、Splunk Observability Cloudのログインページの「パスワードのリセット」リンクを使用して、Splunk Observability Cloudのネイティブの認証情報を取得することができます。"
#: ../../admin/authentication/SSO/sso-Google.rst:-1
msgid "Configure the Google SSO integration to allow users in your Google domain to log in to the application using their Google credentials."
@@ -1192,8 +1224,12 @@ msgid "The :new-page:`G Suite Administrator Help document ` のトピックに、インテグレーションの設定方法が記載されています。"
#: ../../admin/authentication/SSO/sso-Google.rst:71
-msgid "After you complete these steps, the GCI SSO integration is available to users in your GCI organization. When users log in to Splunk Observability Cloud from GCI for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. Subsequent login attempts don't require validation."
-msgstr "これらの手順を完了すると、お客様のGCI組織内のユーザーがGCI SSOインテグレーションを利用できるようになります。ユーザーが初めてGCIからSplunk Observability Cloudにログインする際に、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに検証は必要ありません。"
+msgid ""
+"After you complete these steps, the GCI SSO integration is available to users in your GCI organization. When users log in to Splunk Observability Cloud from GCI for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. Subsequent login "
+"attempts don't require validation."
+msgstr ""
+"これらの手順を完了すると、お客様のGCI組織内のユーザーがGCI SSOインテグレーションを利用できるようになります。ユーザーが初めてGCIからSplunk Observability Cloudにログインする際に、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに検証は必要あ"
+"りません。"
#: ../../admin/authentication/SSO/sso-Google.rst:79 ../../admin/authentication/SSO/sso-GoogleCloudIDP.rst:30
msgid "Once you have a custom URL configured, your users can continue to log in using their existing username/password pair, or they can use their GCI credentials instead. GCI SSO authentication and Splunk Observability Cloud username/password authentication are independent."
@@ -1208,8 +1244,12 @@ msgid "Before you begin to configure the Google Cloud Identity integration, ensu
msgstr "Google Cloud Identityインテグレーションの構成を開始する前に、:new-page-ref:`sso-label` の手順が完了していることを確認してください。これには、:ref:`SSOインテグレーションの命名` セクションも参照してインテグレーションの命名について理解することも含みます。"
#: ../../admin/authentication/SSO/sso-GoogleCloudIDP.rst:22
-msgid "After you complete these steps, the GCI SSO integration is available to users in your GCI organization. When users sign in to Splunk Observability Cloud from GCI for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. Subsequent login attempts don't require validation."
-msgstr "これらの手順を完了すると、お客様のGCI組織内のユーザーがGCI SSOインテグレーションを利用できるようになります。ユーザーが初めてGCIからSplunk Observability Cloudにサインインする際に、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに検証は必要ありません。"
+msgid ""
+"After you complete these steps, the GCI SSO integration is available to users in your GCI organization. When users sign in to Splunk Observability Cloud from GCI for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. Subsequent "
+"login attempts don't require validation."
+msgstr ""
+"これらの手順を完了すると、お客様のGCI組織内のユーザーがGCI SSOインテグレーションを利用できるようになります。ユーザーが初めてGCIからSplunk Observability Cloudにサインインする際に、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに検証は必要"
+"ありません。"
#: ../../admin/authentication/SSO/sso-Okta.rst:-1
msgid "Splunk Observability Cloud provides the capability for your users to log in using various SSO providers. The Okta SSO integration lets you log into Splunk Observability Cloud using Okta."
@@ -1332,8 +1372,11 @@ msgid "If you get an error, check the values that you copied and pasted."
msgstr "エラーが発生した場合は、コピー&ペーストした値を確認してください。"
#: ../../admin/authentication/SSO/sso-Okta.rst:58
-msgid "The Okta SSO integration is now available to users in your Okta organization. When users log in to Splunk Observability Cloud from Okta for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. Subsequent login attempts don't require validation."
-msgstr "これで、お客様のOkta組織のユーザーがOkta SSOインテグレーションを利用できるようになりました。ユーザーが初めてOktaからSplunk Observability Cloudにログインする際に、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに検証は必要ありません。"
+msgid ""
+"The Okta SSO integration is now available to users in your Okta organization. When users log in to Splunk Observability Cloud from Okta for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. Subsequent login attempts don't require "
+"validation."
+msgstr ""
+"これで、お客様のOkta組織のユーザーがOkta SSOインテグレーションを利用できるようになりました。ユーザーが初めてOktaからSplunk Observability Cloudにログインする際に、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに検証は必要ありません。"
#: ../../admin/authentication/SSO/sso-Okta.rst:62
msgid "Once you have a custom URL configured, your users can continue to log in using their existing username/password pair, or they can use their Okta credentials instead. Okta SSO authentication and Splunk Observability Cloud username/password authentication are independent."
@@ -1465,7 +1508,8 @@ msgstr "カスタムURLを設定すると、ユーザーは既存のユーザー
#: ../../admin/authentication/SSO/sso-OneLogin.rst:62
msgid "Splunk Observability Cloud generates a password for users you create in OneLogin SSO. If the OneLogin portal is unavailable, Splunk Observability Cloud users can use the reset password link on the Splunk Observability Cloud login page to get native Splunk Observability Cloud credentials."
-msgstr "Splunk Observability Cloudは、OneLogin SSOで作成したユーザー用に、パスワードを生成します。OneLoginログインポータルが利用できない場合、Splunk Observability Cloudユーザーは、Splunk Observability Cloudのログインページの「パスワードのリセット」リンクを使用して、Splunk Observability Cloudのネイティブの認証情報を取得することができます。"
+msgstr ""
+"Splunk Observability Cloudは、OneLogin SSOで作成したユーザー用に、パスワードを生成します。OneLoginログインポータルが利用できない場合、Splunk Observability Cloudユーザーは、Splunk Observability Cloudのログインページの「パスワードのリセット」リンクを使用して、Splunk Observability Cloudのネイティブの認証情報を取得することができます。"
#: ../../admin/authentication/SSO/sso-PingOne.rst:-1
msgid "Splunk Observability Cloud provides the capability for your users to log in using various SSO providers. The PingOne SSO integration allows you to log into Splunk Observability Cloud using PingOne."
@@ -1677,11 +1721,13 @@ msgstr "Splunk Observability CloudのSSOインテグレーションについて"
#: ../../admin/authentication/SSO/sso-about.rst:25
msgid ""
-"Single-sign on (SSO) integrations implement SAML 2.0, which is a standard for exchanging authentication and authorization information between an identity provider (IdP) such as Ping, Okta, Microsoft Entra ID (formerly Azure Active Directory), or OneLogin and a service provider (SP) such as Splunk Observability Cloud. When you set up a new SSO integration in Splunk Observability Cloud, you authorize Splunk Observability Cloud to trust information from a particular IdP and "
-"use it for logging in users in an organization. After that trust is set up, users can log in from the IdP in an IdP-initiated flow, which starts with a portal or an app page within the IdP, or using an SP-initiated flow from a Splunk Observability Cloud login page (only available if your org has a custom domain configured)."
+"Single-sign on (SSO) integrations implement SAML 2.0, which is a standard for exchanging authentication and authorization information between an identity provider (IdP) such as Ping, Okta, Microsoft Entra ID (formerly Azure Active Directory), or OneLogin and a service provider (SP) such as Splunk Observability Cloud. When you set up "
+"a new SSO integration in Splunk Observability Cloud, you authorize Splunk Observability Cloud to trust information from a particular IdP and use it for logging in users in an organization. After that trust is set up, users can log in from the IdP in an IdP-initiated flow, which starts with a portal or an app page within the IdP, or "
+"using an SP-initiated flow from a Splunk Observability Cloud login page (only available if your org has a custom domain configured)."
msgstr ""
-"シングルサインオン(SSO)のインテグレーションは、SAML 2.0を実装します。これは、Ping、Okta、Microsoft Entra ID(旧Azure Active Directory)、OneLogin などのIDプロバイダ(IdP)とSplunk Observability Cloudなどのサービスプロバイダ(SP)の間で認証と承認の情報を交換するための規格です。Splunk Observability Cloudで新しいSSOインテグレーションをセットアップすると、特定のIdPからの情報を信頼して組織内のユーザーのログインのために使用することを、Splunk Observability Cloudに許可することにな"
-"ります。この信頼が確立されると、ユーザーは、IdP内のポータルやアプリページから始まるIdP主導のフローによって、または、Splunk Observability CloudのログインページからSP主導のフローを使用して(組織でカスタムドメインを設定している場合のみ利用可能)、IdPからログインできます。"
+"シングルサインオン(SSO)のインテグレーションは、SAML 2.0を実装します。これは、Ping、Okta、Microsoft Entra ID(旧Azure Active Directory)、OneLogin などのIDプロバイダ(IdP)とSplunk Observability Cloudなどのサービスプロバイダ(SP)の間で認証と承認の情報を交換するための規格です。Splunk Observability Cloudで新しいSSOインテグレーション"
+"をセットアップすると、特定のIdPからの情報を信頼して組織内のユーザーのログインのために使用することを、Splunk Observability Cloudに許可することになります。この信頼が確立されると、ユーザーは、IdP内のポータルやアプリページから始まるIdP主導のフローによって、または、Splunk Observability CloudのログインページからSP主導のフローを使用して(組"
+"織でカスタムドメインを設定している場合のみ利用可能)、IdPからログインできます。"
#: ../../admin/authentication/SSO/sso-about.rst:28
msgid "You can see the general SSO SAML flow in the following image:"
@@ -1808,8 +1854,12 @@ msgid "Check whether :guilabel:`Integration-specific Entity ID`, if used, and :g
msgstr ":guilabel:`Integration-specific Entity ID` (使用されている場合)および :guilabel:`ACS URL` に正しいインテグレーションIDが含まれているかどうかを確認します。"
#: ../../admin/authentication/SSO/sso-troubleshoot.rst:16
-msgid "See whether :guilabel:`Entity ID`, also called :guilabel:`Metadata URL` or :guilabel:`SAML audience`, is the same in the IdP and Splunk Observability Cloud. The :guilabel:`Entity ID` can contain the integration ID or not. Whether it is included is controlled by a checkbox in the Splunk Observability Cloud integration setup page. Make sure that the same Entity ID is configured in the IdP."
-msgstr ":guilabel:`Entity ID` ( :guilabel:`Metadata URL` または :guilabel:`SAML audience` )が、IdPとSplunk Observability Cloudで同じかどうかを確認します。 :guilabel:`Entity ID` にはインテグレーションIDが含まれている場合とそうでない場合があります。含まれるかどうかは、Splunk Observability Cloudのインテグレーション設定ページのチェックボックスで制御します。IdPで同じエンティティIDが設定されていることを確認してください。"
+msgid ""
+"See whether :guilabel:`Entity ID`, also called :guilabel:`Metadata URL` or :guilabel:`SAML audience`, is the same in the IdP and Splunk Observability Cloud. The :guilabel:`Entity ID` can contain the integration ID or not. Whether it is included is controlled by a checkbox in the Splunk Observability Cloud integration setup page. "
+"Make sure that the same Entity ID is configured in the IdP."
+msgstr ""
+":guilabel:`Entity ID` ( :guilabel:`Metadata URL` または :guilabel:`SAML audience` )が、IdPとSplunk Observability Cloudで同じかどうかを確認します。 :guilabel:`Entity ID` にはインテグレーションIDが含まれている場合とそうでない場合があります。含まれるかどうかは、Splunk Observability Cloudのインテグレーション設定ページのチェック"
+"ボックスで制御します。IdPで同じエンティティIDが設定されていることを確認してください。"
#: ../../admin/authentication/SSO/sso-troubleshoot.rst:17
msgid "Check that claims are configured correctly. Claims are case sensitive. :code:`Email` doesn't work, so you must use :code:`User.email`."
@@ -1916,8 +1966,12 @@ msgid "A 401 error message stating \"Authentication required\"."
msgstr "「認証が必要です」という401エラーメッセージ。"
#: ../../admin/authentication/SSO/sso-troubleshoot.rst:96
-msgid "The :code:`Subject` attribute in the assertion has a format other than :code:`Persistent`. The :code:`Subject` attribute identifies the subject of a SAML assertion, which is typically the user who is being authenticated. A :code:`Persistent` subject means that IdP guarantees that this attribute always stays the same for a given user. Splunk Observability Cloud requires the subject to be in Persistent format."
-msgstr "アサーションの :code:`Subject` 属性は、 :code:`Persistent` 以外の形式を持ちます。 :code:`Subject` 属性は、SAMLアサーションのサブジェクトを識別するもので、これは通常は認証対象のユーザーです。サブジェクトが :code:`Persistent` であれば、この属性が特定のユーザーについて常に同じであることをIdPが保証するということを意味します。Splunk Observability Cloudは、サブジェクトがPersistent形式であることを要求します。"
+msgid ""
+"The :code:`Subject` attribute in the assertion has a format other than :code:`Persistent`. The :code:`Subject` attribute identifies the subject of a SAML assertion, which is typically the user who is being authenticated. A :code:`Persistent` subject means that IdP guarantees that this attribute always stays the same for a given "
+"user. Splunk Observability Cloud requires the subject to be in Persistent format."
+msgstr ""
+"アサーションの :code:`Subject` 属性は、 :code:`Persistent` 以外の形式を持ちます。 :code:`Subject` 属性は、SAMLアサーションのサブジェクトを識別するもので、これは通常は認証対象のユーザーです。サブジェクトが :code:`Persistent` であれば、この属性が特定のユーザーについて常に同じであることをIdPが保証するということを意味します。Splunk "
+"Observability Cloudは、サブジェクトがPersistent形式であることを要求します。"
#: ../../admin/authentication/SSO/sso-troubleshoot.rst:101
msgid "Change the subject format to Persistent in the IdP settings."
@@ -1988,8 +2042,12 @@ msgid "Use the Splunk Distribution of the OpenTelemetry Collector"
msgstr "Splunk Distribution of OpenTelemetry Collectorの使用"
#: ../../admin/authentication/allow-services.rst:31
-msgid "Use the :new-page:`Splunk Distribution of OpenTelemetry Collector ` in data forwarding (gateway) mode. You can forward metrics locally to the Splunk Distribution of OpenTelemetry Collector, which serves as your local store-and-forward service for telemetry."
-msgstr ":new-page:`Splunk Distribution of OpenTelemetry Collector` をデータ転送(ゲートウェイ)モードで使用します。メトリクスをローカルでSplunk Distribution of OpenTelemetry Collectorに転送することができ、テレメトリのローカルストアアンドフォワードサービスとして機能します。"
+msgid ""
+"The :new-page:`Splunk Distribution of OpenTelemetry Collector ` supports proxies. You can configure proxies on each collector, or more typically, you would configure a collector in data forwarding (gateway) mode. In the gateway mode, you only need to "
+"configure the gateway collectors with the proxy settings; all other collectors can simply send data to the gateway collector."
+msgstr ""
+":new-page:`Splunk Distribution of OpenTelemetry Collector` はプロキシをサポートしています。各コレクターにプロキシを設定することができますが、通常はデータ転送 (ゲートウェイ) モードでコレクターを設定します。ゲートウェイモードでは、プロキシ設定でゲートウェイ"
+"コレクターを構成する必要があるだけで、他のすべてのコレクターはゲートウェイコレクターにデータを送信できます。"
#: ../../admin/authentication/allow-services.rst:33
msgid "Ensure that you give the Splunk Distribution of OpenTelemetry Collector the ability to resolve the network names and make outbound HTTPS network connections to the URLs listed in :ref:`allow-urls` or the domains listed in :ref:`allow-domains`. Verify also the list of :ref:`exposed ports and endpoints `."
@@ -2097,9 +2155,11 @@ msgstr "Splunk Observability Cloud環境の設定において、セキュリテ
#: ../../admin/authentication/authentication-intro.rst:21
msgid ""
-"Single-sign on (SSO) integrations implement SAML 2.0 for exchanging authentication and authorization information between an identity provider (IdP) such as Ping, Okta, Microsoft Entra ID (formerly Azure Active Directory), or OneLogin and a service provider (SP) such as Splunk Observability Cloud. When you set up a new SSO integration in Splunk Observability Cloud, you authorize Splunk Observability Cloud to trust information from a particular IdP and use it for logging in "
-"users in an organization."
-msgstr "シングルサインオン(SSO)のインテグレーションでは、Ping、Okta、Microsoft Entra ID(旧Azure Active Directory)、OneLogin などのIDプロバイダ(IdP)とSplunk Observability Cloudなどのサービスプロバイダ(SP)の間で認証と承認の情報を交換するためにSAML 2.0を実装します。Splunk Observability Cloudで新しいSSOインテグレーションをセットアップすると、特定のIdPからの情報を信頼して組織内のユーザーのログインのために使用することを、Splunk Observability Cloudに許可することになります。"
+"Single-sign on (SSO) integrations implement SAML 2.0 for exchanging authentication and authorization information between an identity provider (IdP) such as Ping, Okta, Microsoft Entra ID (formerly Azure Active Directory), or OneLogin and a service provider (SP) such as Splunk Observability Cloud. When you set up a new SSO "
+"integration in Splunk Observability Cloud, you authorize Splunk Observability Cloud to trust information from a particular IdP and use it for logging in users in an organization."
+msgstr ""
+"シングルサインオン(SSO)のインテグレーションでは、Ping、Okta、Microsoft Entra ID(旧Azure Active Directory)、OneLogin などのIDプロバイダ(IdP)とSplunk Observability Cloudなどのサービスプロバイダ(SP)の間で認証と承認の情報を交換するためにSAML 2.0を実装します。Splunk Observability Cloudで新しいSSOインテグレーションをセットアップす"
+"ると、特定のIdPからの情報を信頼して組織内のユーザーのログインのために使用することを、Splunk Observability Cloudに許可することになります。"
#: ../../admin/authentication/authentication-intro.rst:23
msgid "Manage network and user access with the following topics:"
@@ -2318,8 +2378,12 @@ msgid "You can manage costs by setting cost-related resource limits in an access
msgstr "アクセストークンにコスト関連のリソース制限を設定することで、コストを管理できます。各制限は、使用するリソースの最大量です。例えば、ホスト制限は、Infrastructure Monitoringにデータを送信するAPIリクエストでトークンを使用できるホストの最大数を設定します。"
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:25
-msgid "When a host uses the token to send data, Infrastructure Monitoring compares the token limits to all hosts' cumulative resource usage that use the token. When cumulative resource usage exceeds the limit, Infrastructure Monitoring issues an alert and stops ingesting data sent by hosts using the token."
-msgstr "あるホストがデータを送信するトークンを使用すると、Infrastructure Monitoringはトークンの制限と、トークンを使用するすべてのホストの累積リソース使用量を比較します。累積リソース使用量が制限を超えると、Infrastructure Monitoringがアラートを発し、そのトークンを使用してホストから送信されたデータの取り込みを停止します。"
+msgid ""
+"When a host uses the token to send data, Infrastructure Monitoring compares the token limits to all hosts' cumulative resource usage that use the token. When cumulative resource usage exceeds the limit, Infrastructure Monitoring issues an alert but continues ingesting data for some time. If this continued ingestion causes a system "
+"overage, contact Support. See :ref:`support`."
+msgstr ""
+"ホストがトークンを使用してデータを送信すると、Infrastructure Monitoringはトークンの制限値と、トークンを使用するすべてのホストの累積リソース使用量を比較します。累積リソース使用量が制限を超えると、Infrastructure Monitoringはアラートを発行しますが、しばらくの間データの取り込みを継続します。この継続的な取り込みによってシステムの超過が発"
+"生する場合は、サポートに連絡してください。:ref:`support` を参照してください。"
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:30
msgid "Because the limits for one access token don't affect limits for other access tokens, you can set different limits for different types of hosts. For example, set high limits for an access token used in production and low limits for an access token used in testing."
@@ -2330,8 +2394,12 @@ msgid "Cost-related token limits example"
msgstr "コスト関連のトークン制限の例"
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:38
-msgid "For example, suppose your pricing plan lets you send up to 5,000 custom metrics in a time period. If you have hosts that you use for testing, you don't want data sent from them to count towards your limit. In this case, you can create a testing token with a limit of 100 custom metrics and use it to send data from your test hosts. When you use a separate token for production, your production hosts always have at least 4,900 custom metrics available."
-msgstr "例えば、ご利用の料金プランでは、ある期間に最大5,000個のカスタムメトリクスを送信できるとします。テスト用に使用しているホストがある場合、そのホストから送信されるデータは、この制限のカウントに入れたくありません。この場合、カスタム メトリクス100個を上限とするテスト用トークンを作成して、これをテスト用ホストからのデータ送信に使用できます。本番環境用に別のトークンを使用する場合、本番環境のホストでは常に、少なくとも4,900個のカスタム メトリクスを使用できます。"
+msgid ""
+"For example, suppose your pricing plan lets you send up to 5,000 custom metrics in a time period. If you have hosts that you use for testing, you don't want data sent from them to count towards your limit. In this case, you can create a testing token with a limit of 100 custom metrics and use it to send data from your test hosts. "
+"When you use a separate token for production, your production hosts always have at least 4,900 custom metrics available."
+msgstr ""
+"例えば、ご利用の料金プランでは、ある期間に最大5,000個のカスタムメトリクスを送信できるとします。テスト用に使用しているホストがある場合、そのホストから送信されるデータは、この制限のカウントに入れたくありません。この場合、カスタム メトリクス100個を上限とするテスト用トークンを作成して、これをテスト用ホストからのデータ送信に使用できます。"
+"本番環境用に別のトークンを使用する場合、本番環境のホストでは常に、少なくとも4,900個のカスタム メトリクスを使用できます。"
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:46
msgid "Threshold option example"
@@ -2394,7 +2462,9 @@ msgid "Notifications for cost-related limits"
msgstr "コスト関連の制限に関する通知"
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:83
-msgid "Infrastructure Monitoring can optionally send you notifications when resource usage for a token exceeds 90% of the limit for more than 5 minutes. If you use this option, you also get a notification when the usage is within 70% of exceeding the limit. You can receive notifications in one or more of the following ways, according to choices you configure:"
+msgid ""
+"Infrastructure Monitoring can optionally send you notifications when resource usage for a token exceeds 90% of the limit for more than 5 minutes. If you use this option, you also get a notification when the usage is within 70% of exceeding the limit. You can receive notifications in one or more of the following ways, according to "
+"choices you configure:"
msgstr "Infrastructure Monitoringでは、あるトークンのリソース使用量が制限の90%を5分以上にわたって超えた場合に、オプションで通知を送信することができます。このオプションを使用すると、使用量が制限の70%以内の場合にも通知が送信されます。設定した選択肢に従って、以下の1つまたは複数の方法で通知を受け取ることができます:"
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:89
@@ -2423,7 +2493,8 @@ msgstr "アクセストークンを使用するAPIリクエストが特定のト
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:99
msgid "For example, suppose you're on the host-based pricing plan. You set the custom metrics limit for your access token to 10. You use the token to send data from ``host1``, including seven custom metrics. Infrastructure Monitoring ingests the data because sending custom metrics using the token hasn't exceeded the token limit."
-msgstr "たとえば、ホストベースの料金プランを利用しているとします。アクセストークンのカスタムメトリクス数の上限を10に設定します。トークンを使用して、``host1`` から7つのカスタムメトリクスを含むデータを送信します。Infrastructure Monitoringは、このトークンを使用してカスタムメトリクスを送信してもトークン制限を超えないため、データを取り込みます。"
+msgstr ""
+"たとえば、ホストベースの料金プランを利用しているとします。アクセストークンのカスタムメトリクス数の上限を10に設定します。トークンを使用して、``host1`` から7つのカスタムメトリクスを含むデータを送信します。Infrastructure Monitoringは、このトークンを使用してカスタムメトリクスを送信してもトークン制限を超えないため、データを取り込みます。"
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:104
msgid "At some point, you use the token to send data from ``host2``, including five different custom metrics. Infrastructure Monitoring rejects the request because it exceeds the custom metrics limit in the token. Infrastructure Monitoring continues to ingest data from ``host1``."
@@ -2530,8 +2601,8 @@ msgid "If you chose a team as a notification recipient and you want to have aler
msgstr "通知の受信者としてチームを選択していて、チームの「ダッシュボード」ページにアラートを表示したい場合は、前のステップで作成したディテクターをチームにリンクする必要があります。これを行うには、以下の手順にしたがってください:"
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:169
-msgid "Access the left navigation panel and select :menuselection:`Alerts & Detectors`."
-msgstr "左のナビゲーションパネルにアクセスし、:menuselection:`Alerts & Detectors` を選択します。"
+msgid "Access the left navigation panel and select :menuselection:`Detectors & SLOs`."
+msgstr "左のナビゲーションパネルにアクセスし、:menuselection:`Detectors & SLOs` を選択します。"
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:170
msgid "Select the :guilabel:`Detectors` tab."
@@ -2631,7 +2702,9 @@ msgstr "トークンは、「上限を超過」、「上限に接近」、「上
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:213
msgid "The usage status is the status of the usage that's closest to its limit. For example, suppose you have set limits for both Hosts and Custom Metrics for a token. The tokens page displays the usage for the token as Above Limit if the Hosts usage is over its limit, even if the Custom Metrics value is below its limit."
-msgstr "使用状況のステータスは、制限に最も接近している使用状況のステータスです。たとえば、トークンに「ホスト数」と「カスタムメトリクス数」の両方の制限を設定しているとします。この場合、トークンのページでは、「ホスト数」の使用量が制限を超えていれば、「カスタムメトリクス数」の値が制限を下回っていたとしても、トークンの使用量は「制限を超過」として表示されます。"
+msgstr ""
+"使用状況のステータスは、制限に最も接近している使用状況のステータスです。たとえば、トークンに「ホスト数」と「カスタムメトリクス数」の両方の制限を設定しているとします。この場合、トークンのページでは、「ホスト数」の使用量が制限を超えていれば、「カスタムメトリクス数」の値が制限を下回っていたとしても、トークンの使用量は「制限を超過」とし"
+"て表示されます。"
#: ../../admin/authentication/authentication-tokens/manage-usage.rst:218
msgid "To view usage values for a token, hover over its usage status. To display more detailed information for the token, select the token name."
@@ -2686,8 +2759,12 @@ msgid "Token expiry"
msgstr "トークンの有効期限"
#: ../../admin/authentication/authentication-tokens/org-tokens.rst:25
-msgid "You can view the expiration dates of your tokens through the access token page. To view this page, select :guilabel:`Settings` and select :guilabel:`Access tokens`. By default, access tokens expire 30 days after the creation date. You can rotate a token before it expires, or you can change the default expiration date during token creation. For details, see :ref:`access-token-rotate` and :ref:`create-access-token-date`."
-msgstr "トークンの有効期限は、アクセストークンページで確認できます。このページを表示するには、:guilabel:`Settings` を選択し、:guilabel:`Access tokens` を選択します。デフォルトでは、アクセストークンの有効期限は作成日から30日です。トークンの有効期限が切れる前にトークンをローテーションすることも、トークン作成時に有効期限のデフォルトを変更することもできます。詳細については、:ref:`access-token-rotate` および :ref:`create-access-token-date` を参照してください。"
+msgid ""
+"You can view the expiration dates of your tokens through the access token page. To view this page, select :guilabel:`Settings` and select :guilabel:`Access tokens`. By default, access tokens expire 30 days after the creation date. You can rotate a token before it expires, or you can change the default expiration date during token "
+"creation. For details, see :ref:`access-token-rotate` and :ref:`create-access-token-date`."
+msgstr ""
+"トークンの有効期限は、アクセストークンページで確認できます。このページを表示するには、:guilabel:`Settings` を選択し、:guilabel:`Access tokens` を選択します。デフォルトでは、アクセストークンの有効期限は作成日から30日です。トークンの有効期限が切れる前にトークンをローテーションすることも、トークン作成時に有効期限のデフォルトを変更するこ"
+"ともできます。詳細については、:ref:`access-token-rotate` および :ref:`create-access-token-date` を参照してください。"
#: ../../admin/authentication/authentication-tokens/org-tokens.rst:27
msgid "By default, every organization admin receives an email 30 days before a token in their org expires. The email includes a link to Splunk Observability Cloud that displays a list of expiring tokens. To change the expiration reminder date, see :ref:`create-access-token-date`."
@@ -3566,8 +3643,12 @@ msgid "About naming your integrations"
msgstr "インテグレーションの命名について"
#: ../../admin/notif-services/admin-notifs-index.rst:93
-msgid "When a user adds an alert recipient to a detector, they can choose from the notification service integration names you create when configuring these integrations. For this reason, provide descriptive and unique names for the integrations you create. This helps ensure that users get enough information from an integration name to be able to select the correct recipient for the alert notifications."
-msgstr "ユーザーがディテクターにアラート受信者を追加する際、これらのインテグレーションを構成する際に作成した通知サービスのインテグレーション名から選択できます。このため、作成するインテグレーションには、説明的で一意の名前を付けるようにします。これにより、ユーザーがインテグレーション名から十分な情報を得て、アラート通知にふさわしい受信者を選択できるようになります。"
+msgid ""
+"When a user adds an alert recipient to a detector, they can choose from the notification service integration names you create when configuring these integrations. For this reason, provide descriptive and unique names for the integrations you create. This helps ensure that users get enough information from an integration name to be "
+"able to select the correct recipient for the alert notifications."
+msgstr ""
+"ユーザーがディテクターにアラート受信者を追加する際、これらのインテグレーションを構成する際に作成した通知サービスのインテグレーション名から選択できます。このため、作成するインテグレーションには、説明的で一意の名前を付けるようにします。これにより、ユーザーがインテグレーション名から十分な情報を得て、アラート通知にふさわしい受信者を選択"
+"できるようになります。"
#: ../../admin/notif-services/admin-notifs-index.rst:99
msgid "The following table contains a list of the IP addresses that you can use to allow incoming traffic (such as alert webhook requests) from SignalFx realms. Use these IP addresses as sources on an allow list."
@@ -3737,8 +3818,8 @@ msgstr "Splunk Observability Cloudのアラート通知をAmazon EventBridgeに
msgid ":ref:`amazoneventbridge1`"
msgstr ":ref:`amazoneventbridge1`"
-#: ../../admin/notif-services/amazoneventbridge.rst:16 ../../admin/notif-services/bigpanda.rst:20 ../../admin/notif-services/bigpanda.rst:47 ../../admin/notif-services/microsoftteams.rst:61 ../../admin/notif-services/opsgenie.rst:52 ../../admin/notif-services/pagerduty.rst:20 ../../admin/notif-services/servicenow.rst:22 ../../admin/notif-services/servicenow.rst:91 ../../admin/notif-services/splunkoncall.rst:62 ../../admin/notif-services/webhook.rst:55
-#: ../../admin/notif-services/xmatters.rst:20
+#: ../../admin/notif-services/amazoneventbridge.rst:16 ../../admin/notif-services/bigpanda.rst:20 ../../admin/notif-services/bigpanda.rst:47 ../../admin/notif-services/microsoftteams.rst:61 ../../admin/notif-services/opsgenie.rst:52 ../../admin/notif-services/pagerduty.rst:20 ../../admin/notif-services/servicenow.rst:22
+#: ../../admin/notif-services/servicenow.rst:91 ../../admin/notif-services/splunkoncall.rst:62 ../../admin/notif-services/webhook.rst:55 ../../admin/notif-services/xmatters.rst:20
msgid "You must be a Splunk Observability Cloud administrator to complete this task."
msgstr "このタスクを完了するには、Splunk Observability Cloudの管理者である必要があります。"
@@ -3778,7 +3859,8 @@ msgstr ":new-page:`Amazon EventBridgeガイド付きセットアップ`. In the \"Supported SaaS partner integrations\" section, select :strong:`SignalFx`."
-msgstr "Amazon EventBridgeでパートナーイベントソースとしてSplunk Observability Cloudを許可する方法については、:new-page:`Amazon EventBridgeでのSaaSパートナーからのイベントの受信` を参照してください。「サポートされるSaaSパートナー統合」のセクションで、:strong:`SignalFx` を選択します。"
+msgid ""
+"For information about how to accept Splunk Observability Cloud as a partner event source in Amazon EventBridge, see :new-page:`Receive events from a SaaS partner with Amazon EventBridge `. In the \"Supported SaaS partner integrations\" section, "
+"select :strong:`SignalFx`."
+msgstr ""
+"Amazon EventBridgeでパートナーイベントソースとしてSplunk Observability Cloudを許可する方法については、:new-page:`Amazon EventBridgeでのSaaSパートナーからのイベントの受信` を参照してください。「サポートされるSaaSパートナー統合」のセクション"
+"で、:strong:`SignalFx` を選択します。"
#: ../../admin/notif-services/amazoneventbridge.rst:73
msgid "Step 3: Add an Amazon EventBridge integration as a detector alert recipient in Splunk Observability Cloud"
@@ -3826,13 +3912,13 @@ msgstr "Splunk Observability Cloudのディテクターのアラート受信者
msgid "Create or edit a detector that you want to configure to send alert notifications using your Amazon EventBridge integration."
msgstr "Amazon EventBridgeインテグレーションを使用してアラート通知を送信するように設定するディテクターを作成または編集します。"
-#: ../../admin/notif-services/amazoneventbridge.rst:82 ../../admin/notif-services/bigpanda.rst:83 ../../admin/notif-services/jira.rst:106 ../../admin/notif-services/microsoftteams.rst:96 ../../admin/notif-services/opsgenie.rst:88 ../../admin/notif-services/pagerduty.rst:75 ../../admin/notif-services/servicenow.rst:131 ../../admin/notif-services/slack.rst:61 ../../admin/notif-services/splunkoncall.rst:97 ../../admin/notif-services/splunkplatform.rst:72
-#: ../../admin/notif-services/webhook.rst:109 ../../admin/notif-services/xmatters.rst:72
+#: ../../admin/notif-services/amazoneventbridge.rst:82 ../../admin/notif-services/bigpanda.rst:83 ../../admin/notif-services/jira.rst:106 ../../admin/notif-services/microsoftteams.rst:96 ../../admin/notif-services/opsgenie.rst:88 ../../admin/notif-services/pagerduty.rst:75 ../../admin/notif-services/servicenow.rst:131
+#: ../../admin/notif-services/slack.rst:61 ../../admin/notif-services/splunkoncall.rst:97 ../../admin/notif-services/splunkplatform.rst:72 ../../admin/notif-services/webhook.rst:109 ../../admin/notif-services/xmatters.rst:72
msgid "For more information about working with detectors, see :ref:`create-detectors` and :ref:`subscribe`."
msgstr "ディテクターに関する作業の詳細は、:ref:`create-detectors` および :ref:`subscribe` を参照してください。"
-#: ../../admin/notif-services/amazoneventbridge.rst:84 ../../admin/notif-services/bigpanda.rst:85 ../../admin/notif-services/jira.rst:108 ../../admin/notif-services/microsoftteams.rst:98 ../../admin/notif-services/opsgenie.rst:90 ../../admin/notif-services/pagerduty.rst:77 ../../admin/notif-services/servicenow.rst:133 ../../admin/notif-services/slack.rst:63 ../../admin/notif-services/splunkoncall.rst:99 ../../admin/notif-services/splunkplatform.rst:74
-#: ../../admin/notif-services/webhook.rst:111 ../../admin/notif-services/xmatters.rst:74
+#: ../../admin/notif-services/amazoneventbridge.rst:84 ../../admin/notif-services/bigpanda.rst:85 ../../admin/notif-services/jira.rst:108 ../../admin/notif-services/microsoftteams.rst:98 ../../admin/notif-services/opsgenie.rst:90 ../../admin/notif-services/pagerduty.rst:77 ../../admin/notif-services/servicenow.rst:133
+#: ../../admin/notif-services/slack.rst:63 ../../admin/notif-services/splunkoncall.rst:99 ../../admin/notif-services/splunkplatform.rst:74 ../../admin/notif-services/webhook.rst:111 ../../admin/notif-services/xmatters.rst:74
msgid "In the :strong:`Alert recipients` step, select :strong:`Add Recipient`."
msgstr ":strong:`アラート受信者` のステップで、:strong:`受信者の追加` を選択します。"
@@ -3840,8 +3926,8 @@ msgstr ":strong:`アラート受信者` のステップで、:strong:`受信者
msgid "Select :strong:`Amazon EventBridge` and then select the name of the Amazon EventBridge integration you want to use to send alert notifications. This is the integration name you created in :ref:`amazoneventbridge1`."
msgstr ":strong:`Amazon EventBridge` を選択し、アラート通知の送信に使用するAmazon EventBridgeインテグレーション名を選択します。これは、:ref:`amazoneventbridge1` で作成したインテグレーション名です。"
-#: ../../admin/notif-services/amazoneventbridge.rst:88 ../../admin/notif-services/bigpanda.rst:89 ../../admin/notif-services/jira.rst:116 ../../admin/notif-services/microsoftteams.rst:102 ../../admin/notif-services/opsgenie.rst:102 ../../admin/notif-services/pagerduty.rst:81 ../../admin/notif-services/servicenow.rst:137 ../../admin/notif-services/slack.rst:78 ../../admin/notif-services/splunkoncall.rst:105 ../../admin/notif-services/splunkplatform.rst:76
-#: ../../admin/notif-services/webhook.rst:113 ../../admin/notif-services/xmatters.rst:78
+#: ../../admin/notif-services/amazoneventbridge.rst:88 ../../admin/notif-services/bigpanda.rst:89 ../../admin/notif-services/jira.rst:116 ../../admin/notif-services/microsoftteams.rst:102 ../../admin/notif-services/opsgenie.rst:102 ../../admin/notif-services/pagerduty.rst:81 ../../admin/notif-services/servicenow.rst:137
+#: ../../admin/notif-services/slack.rst:78 ../../admin/notif-services/splunkoncall.rst:105 ../../admin/notif-services/splunkplatform.rst:76 ../../admin/notif-services/webhook.rst:113 ../../admin/notif-services/xmatters.rst:78
msgid "Activate and save the detector."
msgstr "ディテクターをアクティブ化し、保存します。"
@@ -4038,8 +4124,12 @@ msgid "Custom properties, each named ``sfx_``: Value of the dime
msgstr "カスタムプロパティ(それぞれの名前は ``sfx_`` となる):そのディメンジョンの値"
#: ../../admin/notif-services/bigpanda.rst:122
-msgid "If there are any name collisions between Splunk Observability Cloud dimensions and BigPanda ``status`` or ``check`` properties, Splunk Observability Cloud creates a new custom property in BigPanda. For example, if there is a Splunk Observability Cloud dimension named ``status``, Splunk Observability Cloud creates a custom property named ``sfx_status`` and stores the value of the ``status`` dimension there."
-msgstr "Splunk Observability CloudのディメンションとBigPandaの ``status`` または ``check`` のプロパティの間に名前衝突がある場合、Splunk Observability Cloudは、BigPandaに新しいカスタムプロパティを作成します。例えば、 ``status`` という名前のSplunk Observability Cloudのディメンションがある場合、Splunk Observability Cloudは、``sfx_status`` という名前のカスタムプロパティを作成し、そこに ``status`` ディメンションの値を格納します。"
+msgid ""
+"If there are any name collisions between Splunk Observability Cloud dimensions and BigPanda ``status`` or ``check`` properties, Splunk Observability Cloud creates a new custom property in BigPanda. For example, if there is a Splunk Observability Cloud dimension named ``status``, Splunk Observability Cloud creates a custom property "
+"named ``sfx_status`` and stores the value of the ``status`` dimension there."
+msgstr ""
+"Splunk Observability CloudのディメンションとBigPandaの ``status`` または ``check`` のプロパティの間に名前衝突がある場合、Splunk Observability Cloudは、BigPandaに新しいカスタムプロパティを作成します。例えば、 ``status`` という名前のSplunk Observability Cloudのディメンションがある場合、Splunk Observability Cloudは、"
+"``sfx_status`` という名前のカスタムプロパティを作成し、そこに ``status`` ディメンションの値を格納します。"
#: ../../admin/notif-services/jira.rst:-1
msgid "Configure Splunk Observability Cloud to send alerts to Jira when a detector alert condition is met and when the condition clears."
@@ -4130,8 +4220,12 @@ msgid "In the :strong:`Jira Base URL` field, enter the Jira server base URL. For
msgstr ":strong:`JiraベースURL` フィールドに、Jira ServerのベースURLを入力します。たとえば、次のような値を入力します: ``https://YOUR-DOMAIN.atlassian.net`` または ``http://YOUR-HOSTNAME:PORT``"
#: ../../admin/notif-services/jira.rst:63
-msgid "If you want to create an integration with Jira Cloud, select :guilabel:`Jira Cloud` and enter a Jira user email address and API token. For information about how to create an Atlassian API token, see :new-page:`Manage API tokens for your Atlassian account `."
-msgstr "Jira Cloudとのインテグレーションを作成する場合は、:guilabel:`Jira Cloud` を選択し、JiraユーザーのメールアドレスとAPIトークンを入力します。AtlassianのAPIトークンの作成方法については、:new-page:`AtlassianアカウントのAPIトークンを管理する` を参照してください。"
+msgid ""
+"If you want to create an integration with Jira Cloud, select :guilabel:`Jira Cloud` and enter a Jira user email address and API token. For information about how to create an Atlassian API token, see :new-page:`Manage API tokens for your Atlassian account `."
+msgstr ""
+"Jira Cloudとのインテグレーションを作成する場合は、:guilabel:`Jira Cloud` を選択し、JiraユーザーのメールアドレスとAPIトークンを入力します。AtlassianのAPIトークンの作成方法については、:new-page:`AtlassianアカウントのAPIトークンを管理する` を参照してください。"
#: ../../admin/notif-services/jira.rst:66
msgid "If you want to create an integration with Jira server, select :guilabel:`Jira Server` and enter a Jira username and password."
@@ -4671,7 +4765,9 @@ msgstr "イベント"
#: ../../admin/notif-services/servicenow.rst:47
msgid "``evt_mgmt_integration``, only if :guilabel:`Requires ACL authorization` is selected for :strong:`Inbound Event Default Bulk Endpoint` in :strong:`Scripted Rest APIs`. To learn more, see the :new-page:`ServiceNow support article on events `."
-msgstr "``evt_mgmt_integration``。 :strong:`スクリプト済みREST API ` の :strong:` インバウンドイベントのデフォルト一括エンドポイント` で :guilabel:`Requires ACL authorization` が選択されている場合のみ。詳細については、:new-page:`ServiceNowのイベントに関するサポート記事` を参照してください。"
+msgstr ""
+"``evt_mgmt_integration``。 :strong:`スクリプト済みREST API ` の :strong:` インバウンドイベントのデフォルト一括エンドポイント` で :guilabel:`Requires ACL authorization` が選択されている場合のみ。詳細については、:new-page:`ServiceNowのイベントに関するサポート記事` を参照してください。"
#: ../../admin/notif-services/servicenow.rst:48
msgid "``/api/global/em/jsonv2``"
@@ -4715,7 +4811,7 @@ msgstr ":strong:`新規` を選択します。"
#: ../../admin/notif-services/servicenow.rst:71
msgid "Enter :strong:`User ID`, :strong:`First name`, and :strong:`Last name` values that clearly communicate that the user is associated with Splunk Observability Cloud notifications. Make note of the :strong:`User ID` value for use in subsequent steps."
-msgstr ":strong:`ユーザーID` 、:strong:`名`、および :strong:`姓` の値に、このユーザーがSplunk Observability Cloudの通知に関連付けられることを明確に伝える値を入力します。 :strong:`ユーザーID` の値は、以降の手順で使用するためメモしておきます。"
+msgstr ":strong:`ユーザーID` 、:strong:`名`、および :strong:`姓` の値に、このユーザーがSplunk Observability Cloudの通知に関連付けられることを明確に伝える値を入力します。 :strong:`ユーザーID` の値は、以降の手順で使用するためメモしておきます。"
#: ../../admin/notif-services/servicenow.rst:73
msgid "Enter a :strong:`Password` value. Make note of this value for use in :ref:`servicenow3`."
@@ -4779,7 +4875,9 @@ msgstr "ブラインドSSRF(サーバーサイドリクエストフォージ
#: ../../admin/notif-services/servicenow.rst:115
msgid "Select :strong:`Incident`, :strong:`Problem`, or :strong:`Event` to indicate the issue type you want the integration to create in ServiceNow. If necessary, you can create a second integration using another issue type. This lets you create an incident issue for one detector rule and a problem issue for another detector rule."
-msgstr ":strong:`インシデント`、:strong:`問題`、または :strong:`イベント` を選択して、このインテグレーションによってServiceNowで作成する課題タイプを示します。必要に応じて、別の課題タイプを使用して2つ目のインテグレーションを作成できます。これを行うと、1つのディテクタールールに対して「インシデント」課題を1つ、別のディテクタールールに対して「問題」課題を1つ作成することができます。"
+msgstr ""
+":strong:`インシデント`、:strong:`問題`、または :strong:`イベント` を選択して、このインテグレーションによってServiceNowで作成する課題タイプを示します。必要に応じて、別の課題タイプを使用して2つ目のインテグレーションを作成できます。これを行うと、1つのディテクタールールに対して「インシデント」課題を1つ、別のディテクタールールに対して「問"
+"題」課題を1つ作成することができます。"
#: ../../admin/notif-services/servicenow.rst:117
msgid "Select :strong:`Save`."
@@ -4810,8 +4908,12 @@ msgid "Splunk Observability Cloud sends an alert notification to create an incid
msgstr "Splunk Observability Cloudは、ディテクターがアラートをトリガーすると、ServiceNowにインシデントを作成するアラート通知を送信します。アラートが解除されると、インシデントの状態を :strong:`解決済み` に設定する通知を送信します。"
#: ../../admin/notif-services/servicenow.rst:141
-msgid "For :strong:`Incident` and :strong:`Problem` issues, the ServiceNow integration sets the :strong:`Impact` and :strong:`Urgency` fields on the ServiceNow issue based on the Splunk Observability Cloud alert severity (see :ref:`severity`). When you clear alerts for :strong:`Problem` and :strong:`Incident` issues, Splunk Observability Cloud marks them as :strong:`Resolved`."
-msgstr ":strong:`インシデント` および :strong:`問題` の課題の場合、ServiceNowインテグレーションは、Splunk Observability Cloudのアラート重大度に基づいて、ServiceNow課題の :strong:`影響度` および :strong:`緊急度` フィールドを設定します( :ref:`severity` を参照してください)。 :strong:`問題` および :strong:`インシデント` の課題に対するアラートを解除すると、Splunk Observability Cloudは、それらを :strong:`解決済み` としてマークします。"
+msgid ""
+"For :strong:`Incident` and :strong:`Problem` issues, the ServiceNow integration sets the :strong:`Impact` and :strong:`Urgency` fields on the ServiceNow issue based on the Splunk Observability Cloud alert severity (see :ref:`severity`). When you clear alerts for :strong:`Problem` and :strong:`Incident` issues, Splunk Observability "
+"Cloud marks them as :strong:`Resolved`."
+msgstr ""
+":strong:`インシデント` および :strong:`問題` の課題の場合、ServiceNowインテグレーションは、Splunk Observability Cloudのアラート重大度に基づいて、ServiceNow課題の :strong:`影響度` および :strong:`緊急度` フィールドを設定します( :ref:`severity` を参照してください)。 :strong:`問題` および :strong:`インシデント` の課題に対するア"
+"ラートを解除すると、Splunk Observability Cloudは、それらを :strong:`解決済み` としてマークします。"
#: ../../admin/notif-services/servicenow.rst:143
msgid "The following table shows the Splunk Observability Cloud severity for :strong:`Incident` and :strong:`Problem` issues:"
@@ -4851,7 +4953,7 @@ msgstr "3"
#: ../../admin/notif-services/servicenow.rst:161
msgid "For :strong:`Event` issues, the ServiceNow integration sets the :strong:`Severity` of the issue based on the Splunk Observability Cloud alert severity (see :ref:`severity`). The :strong:`Event` integration also creates an event whenever an alert is sent or cleared."
-msgstr ":strong:`イベント` の課題の場合、ServiceNowインテグレーションは、Splunk Observability Cloudのアラート重大度に基づいて、課題の :strong:`重大度` を設定します( :ref:`severity` を参照してください)。また :strong:`イベント` のインテグレーションは、アラートが送信または解除されると常にイベントを作成します。"
+msgstr ":strong:`イベント` の課題の場合、ServiceNowインテグレーションは、Splunk Observability Cloudのアラート重大度に基づいて、課題の :strong:`重大度` を設定します( :ref:`severity` を参照してください)。また :strong:`イベント` のインテグレーションは、アラートが送信または解除されると常にイベントを作成します。"
#: ../../admin/notif-services/servicenow.rst:163
msgid "The following table shows the Splunk Observability Cloud severity for :strong:`Event` issues:"
@@ -4930,10 +5032,12 @@ msgid "You must be a Splunk Observability Cloud administrator, Slack administrat
msgstr "このタスクを完了するには、Splunk Observability Cloudの管理者かつSlackの管理者である必要があり、Slackにアプリを追加する権限を持っている必要があります。"
#: ../../admin/notif-services/slack.rst:27
-msgid "This method of integrating with Slack replaces a prior design. Slack integrations created using the prior design display an option to upgrade in the Splunk Observability Cloud UI. While the prior design continues to work, upgrade your integrations to use the newer integration design. You must upgrade your integration if you want image previews to display when pasting a chart URL into Slack. To learn more, see :ref:`pasting-chart-url-into-slack`."
+msgid ""
+"This method of integrating with Slack replaces a prior design. Slack integrations created using the prior design display an option to upgrade in the Splunk Observability Cloud UI. While the prior design continues to work, upgrade your integrations to use the newer integration design. You must upgrade your integration if you want "
+"image previews to display when pasting a chart URL into Slack. To learn more, see :ref:`pasting-chart-url-into-slack`."
msgstr ""
-"このSlackとの統合方法は、以前の設計を置き換えるものです。以前の設計を使用して作成されたSlackインテグレーションには、Splunk Observability CloudのUI内でアップグレードオプションが表示されます。以前の設計も引き続き機能しますが、インテグレーションをアップグレードして新しい設計のインテグレーションを使用するようにしてください。チャートのURLをSlackに貼り付けた際に画像プレビューを表示したい場合は、インテグレーションをアップグレードする必要があります。詳細は、:ref:`pasting-chart-url-"
-"into-slack` を参照してください。"
+"このSlackとの統合方法は、以前の設計を置き換えるものです。以前の設計を使用して作成されたSlackインテグレーションには、Splunk Observability CloudのUI内でアップグレードオプションが表示されます。以前の設計も引き続き機能しますが、インテグレーションをアップグレードして新しい設計のインテグレーションを使用するようにしてください。チャートのURL"
+"をSlackに貼り付けた際に画像プレビューを表示したい場合は、インテグレーションをアップグレードする必要があります。詳細は、:ref:`pasting-chart-url-into-slack` を参照してください。"
#: ../../admin/notif-services/slack.rst:29
msgid "To create a Slack integration in Splunk Observability Cloud:"
@@ -5151,8 +5255,9 @@ msgstr "以下は、Splunk On-Callに送信されるSplunk Observability Cloud
msgid ":strong:`Field`"
msgstr ":strong:`フィールド`"
-#: ../../admin/notif-services/splunkoncall.rst:120 ../../admin/notif-services/splunkplatform.rst:45 ../../admin/notif-services/splunkplatform.rst:97 ../../admin/notif-services/splunkplatform.rst:207 ../../admin/notif-services/splunkplatform.rst:231 ../../admin/notif-services/webhook.rst:74 ../../admin/references/per-product-limits.rst:74 ../../admin/references/system-limits/sys-limits-apm.rst:117 ../../admin/subscription-usage/apm-billing-usage-index.rst:236
-#: ../../admin/subscription-usage/apm-billing-usage-index.rst:267 ../../admin/subscription-usage/monitor-imm-billing-usage.rst:47 ../../admin/subscription-usage/monitor-imm-billing-usage.rst:111 ../../admin/subscription-usage/monitor-imm-billing-usage.rst:153 ../../admin/subscription-usage/monitor-imm-billing-usage.rst:212 ../../admin/subscription-usage/rum-subscription-usage.rst:27 ../../admin/subscription-usage/synthetics-usage.rst:21
+#: ../../admin/notif-services/splunkoncall.rst:120 ../../admin/notif-services/splunkplatform.rst:45 ../../admin/notif-services/splunkplatform.rst:97 ../../admin/notif-services/splunkplatform.rst:207 ../../admin/notif-services/splunkplatform.rst:231 ../../admin/notif-services/webhook.rst:74
+#: ../../admin/references/per-product-limits.rst:74 ../../admin/references/system-limits/sys-limits-apm.rst:117 ../../admin/subscription-usage/apm-billing-usage-index.rst:236 ../../admin/subscription-usage/apm-billing-usage-index.rst:267 ../../admin/subscription-usage/monitor-imm-billing-usage.rst:47
+#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:111 ../../admin/subscription-usage/monitor-imm-billing-usage.rst:153 ../../admin/subscription-usage/monitor-imm-billing-usage.rst:212 ../../admin/subscription-usage/rum-subscription-usage.rst:27 ../../admin/subscription-usage/synthetics-usage.rst:21
#: ../../admin/user-management/roles/roles-and-capabilities-about.rst:44
msgid ":strong:`Description`"
msgstr ":strong:`説明`"
@@ -5303,11 +5408,11 @@ msgstr "URL"
#: ../../admin/notif-services/splunkplatform.rst:51
msgid ""
-"Enter the HTTP Event Collector (HEC) URI for your Splunk platform instance. Don't include any part of the URI after the port number. For example, enter the HEC URI as follows: ``://http-inputs-.splunkcloud.com:``. To learn more, see the :new-page:`Send data to HTTP Event Collector ` section in the *Documentation for Splunk Cloud "
-"Platform*."
+"Enter the HTTP Event Collector (HEC) URI for your Splunk platform instance. Don't include any part of the URI after the port number. For example, enter the HEC URI as follows: ``://http-inputs-.splunkcloud.com:``. To learn more, see the :new-page:`Send data to HTTP Event Collector ` section in the *Documentation for Splunk Cloud Platform*."
msgstr ""
-"SplunkプラットフォームインスタンスのHTTP Event Collector(HEC)のURI を入力します。URIのポート番号より後の部分は含めないでください。例えば、``://http-inputs-.splunkcloud.com:`` のようなHEC URIを入力します。詳細については、*Splunk Cloud Platformのドキュメント* の「 :new-page:`HTTP Event Collectorへのデータ送信 ` 」セクションを参照し"
-"てください。"
+"SplunkプラットフォームインスタンスのHTTP Event Collector(HEC)のURI を入力します。URIのポート番号より後の部分は含めないでください。例えば、``://http-inputs-.splunkcloud.com:`` のようなHEC URIを入力します。詳細については、*Splunk Cloud Platformのドキュメント* の「 :new-page:`HTTP Event Collectorへのデータ送信 "
+"` 」セクションを参照してください。"
#: ../../admin/notif-services/splunkplatform.rst:53
msgid "HEC token"
@@ -5887,11 +5992,11 @@ msgstr "ウェブフックは安全な(HTTPSの)接続を使用し、トラ
#: ../../admin/notif-services/webhook.rst:36
msgid ""
-"To help secure your webhook, establish a shared secret string. When you create the webhook notification integration, you enter this string in one of the input fields. Splunk Observability Cloud uses the string as part of a cryptographic algorithm that generates a unique message code for your notification. Splunk Observability Cloud then inserts the code in the header of the outgoing webhook notification request. When your code receives the request, use the same algorithm, "
-"including the shared secret string, to generate a code. If the codes are identical, the the request to your webhook is secure and valid."
+"To help secure your webhook, establish a shared secret string. When you create the webhook notification integration, you enter this string in one of the input fields. Splunk Observability Cloud uses the string as part of a cryptographic algorithm that generates a unique message code for your notification. Splunk Observability Cloud "
+"then inserts the code in the header of the outgoing webhook notification request. When your code receives the request, use the same algorithm, including the shared secret string, to generate a code. If the codes are identical, the the request to your webhook is secure and valid."
msgstr ""
-"ウェブフックのセキュリティを確保するために、共有シークレット文字列を設定します。ウェブフックの通知インテグレーションを作成するときに、入力フィールドの1つにこの文字列を入力します。Splunk Observability Cloudは、通知用の一意のメッセージコードを生成する暗号化アルゴリズムの一部としてこの文字列を使用します。次に、Splunk Observability Cloudは、発信するウェブフック通知リクエストのヘッダーにこのコードを挿入します。あなたのコードがリクエストを受信する際に、共有シークレット文字列を含む"
-"同じアルゴリズムを使用してコードを生成します。コードが同一であれば、ウェブフックへのリクエストは安全で有効です。"
+"ウェブフックのセキュリティを確保するために、共有シークレット文字列を設定します。ウェブフックの通知インテグレーションを作成するときに、入力フィールドの1つにこの文字列を入力します。Splunk Observability Cloudは、通知用の一意のメッセージコードを生成する暗号化アルゴリズムの一部としてこの文字列を使用します。次に、Splunk Observability Cloud"
+"は、発信するウェブフック通知リクエストのヘッダーにこのコードを挿入します。あなたのコードがリクエストを受信する際に、共有シークレット文字列を含む同じアルゴリズムを使用してコードを生成します。コードが同一であれば、ウェブフックへのリクエストは安全で有効です。"
#: ../../admin/notif-services/webhook.rst:43
msgid "To learn more about the shared secret string, the cryptographic algorithm, and the message code, see the :new-page:`Shared secret ` section in the :emphasis:`Splunk Observability Cloud Developers Guide` docs."
@@ -6194,24 +6299,32 @@ msgid "These metrics track limits that Infrastructure Monitoring enforces for yo
msgstr "これらのメトリクスは、Infrastructure Monitoringが組織に課す制限を追跡します。これらの制限を超えると、データが除外されることがあります。"
#: ../../admin/org-metrics.rst:115
-msgid "``sf.org.limit.activeTimeSeries`` (gauge): Maximum number of active MTS, within a moving window of the past 25 hours, that your organization can have. If you exceed this limit, Infrastructure Monitoring stops accepting data points for new MTS, but continues to accept data points for existing MTS. To monitor your usage against the limit, use the metric ``sf.org.numActiveTimeSeries``."
-msgstr "``sf.org.limit.activeTimeSeries`` (ゲージ):過去25時間の移動窓内で、組織が持つことができるアクティブなMTSの最大数。この制限を超えると、Infrastructure Monitoringは新しいMTSのデータポイントの受け入れを停止しますが、既存のMTSのデータポイントの受け入れは継続します。この制限に対する使用状況を監視するには、``sf.org.numActiveTimeSeries`` のメトリクスを使用します。"
+msgid ""
+"``sf.org.limit.activeTimeSeries`` (gauge): Maximum number of active MTS, within a moving window of the past 25 hours, that your organization can have. If you exceed this limit, Infrastructure Monitoring stops accepting data points for new MTS, but continues to accept data points for existing MTS. To monitor your usage against the "
+"limit, use the metric ``sf.org.numActiveTimeSeries``."
+msgstr ""
+"``sf.org.limit.activeTimeSeries`` (ゲージ):過去25時間の移動窓内で、組織が持つことができるアクティブなMTSの最大数。この制限を超えると、Infrastructure Monitoringは新しいMTSのデータポイントの受け入れを停止しますが、既存のMTSのデータポイントの受け入れは継続します。この制限に対する使用状況を監視するには、``sf.org.numActiveTimeSeries`` "
+"のメトリクスを使用します。"
#: ../../admin/org-metrics.rst:122
msgid ""
-"``sf.org.limit.containers`` (gauge): Maximum number of containers that can send data to your organization. This limit is higher than your contractual limit to allow for burst and overage usage. If you exceed this limit, Infrastructure Monitoring drops data points from new containers but keeps accepting data points for existing containers. To monitor your usage against the limit, use the metric ``sf.org.numResourcesMonitored`` and filter for the dimension ``resourceType:"
-"containers``."
+"``sf.org.limit.containers`` (gauge): Maximum number of containers that can send data to your organization. This limit is higher than your contractual limit to allow for burst and overage usage. If you exceed this limit, Infrastructure Monitoring drops data points from new containers but keeps accepting data points for existing "
+"containers. To monitor your usage against the limit, use the metric ``sf.org.numResourcesMonitored`` and filter for the dimension ``resourceType:containers``."
msgstr ""
-" ``sf.org.limit.containers`` (ゲージ):組織にデータを送信できるコンテナの最大数。この制限は、バーストおよび超過使用を許容できるようにするため、契約上の上限よりも高く設定されています。この制限を超えると、Infrastructure Monitoringは新しいコンテナからのデータポイントを除外しますが、既存のコンテナのデータポイントの受け入れは継続します。この制限に対する使用状況を監視するには、``sf.org.numResourcesMonitored`` メトリクスと ``resourceType:containers`` ディメンションのフィルターを"
-"使用します。"
+"``sf.org.limit.containers`` (ゲージ):組織にデータを送信できるコンテナの最大数。この制限は、バーストおよび超過使用を許容できるようにするため、契約上の上限よりも高く設定されています。この制限を超えると、Infrastructure Monitoringは新しいコンテナからのデータポイントを除外しますが、既存のコンテナのデータポイントの受け入れは継続します。"
+"この制限に対する使用状況を監視するには、``sf.org.numResourcesMonitored`` メトリクスと ``resourceType:containers`` ディメンションのフィルターを使用します。"
#: ../../admin/org-metrics.rst:131
msgid "``sf.org.limit.computationsPerMinute`` (gauge): Maximum number of SignalFlow computations per minute."
msgstr "``sf.org.limit.computationsPerMinute`` (ゲージ):1分あたりのSignalFlowの最大計算回数。"
#: ../../admin/org-metrics.rst:134
-msgid "``sf.org.limit.customMetricMaxLimit`` (gauge): Maximum number of active custom MTS, within a moving window of the previous 60 minutes, that can send data to your organization. **If you exceed this limit, Infrastructure Monitoring drops data points** for the custom MTS that exceeded the limit, but it continues to accept data points for custom MTS that already existed. See the custom metrics you've defined with ``sf.org.numCustomMetrics``."
-msgstr "``sf.org.limit.customMetricMaxLimit`` (ゲージ):過去60分間の移動窓内で、組織にデータを送信できるアクティブなカスタムMTSの最大数。**この制限を超えると、Infrastructure Monitoringは、制限を超えたカスタムMTSのデータポイント** を除外しますが、すでに存在していたカスタムMTSのデータポイントの受け入れは継続します。``sf.org.numCustomMetrics`` で定義したカスタムメトリクスを参照してください。"
+msgid ""
+"``sf.org.limit.customMetricMaxLimit`` (gauge): Maximum number of active custom MTS, within a moving window of the previous 60 minutes, that can send data to your organization. **If you exceed this limit, Infrastructure Monitoring drops data points** for the custom MTS that exceeded the limit, but it continues to accept data points "
+"for custom MTS that already existed. See the custom metrics you've defined with ``sf.org.numCustomMetrics``."
+msgstr ""
+"``sf.org.limit.customMetricMaxLimit`` (ゲージ):過去60分間の移動窓内で、組織にデータを送信できるアクティブなカスタムMTSの最大数。**この制限を超えると、Infrastructure Monitoringは、制限を超えたカスタムMTSのデータポイント** を除外しますが、すでに存在していたカスタムMTSのデータポイントの受け入れは継続します。"
+"``sf.org.numCustomMetrics`` で定義したカスタムメトリクスを参照してください。"
#: ../../admin/org-metrics.rst:142
msgid "To learn more about custom MTS, see :ref:`About custom and bundled metrics `"
@@ -6230,12 +6343,20 @@ msgid "``sf.org.limit.eventsPerMinute`` (gauge): Maximum number of incoming even
msgstr "``sf.org.limit.eventsPerMinute`` (ゲージ):1分あたりの受信イベントの最大数。"
#: ../../admin/org-metrics.rst:156
-msgid "``sf.org.limit.hosts`` (gauge): Maximum number of hosts that can send data to your organization. The limit is higher than your contractual limit to allow for burst and overage usage. If you exceed this limit, Infrastructure Monitoring drops data points from new hosts but keeps accepting data points for existing hosts. To monitor your usage against the limit, use the metric ``sf.org.numResourcesMonitored`` and filter for the dimension ``resourceType:hosts``."
-msgstr "``sf.org.limit.hosts`` (ゲージ):組織にデータを送信できるホストの最大数。この制限は、バーストおよび超過使用を許容するために、契約上の上限よりも高く設定されています。この制限を超えると、Infrastructure Monitoringは新しいホストからのデータポイントを除外しますが、既存のホストのデータポイントの受け入れは継続します。この制限に対する使用状況を監視するには、``sf.org.numResourcesMonitored`` メトリクスと ``resourceType:hosts`` ディメンションのフィルターを使用します。"
+msgid ""
+"``sf.org.limit.hosts`` (gauge): Maximum number of hosts that can send data to your organization. The limit is higher than your contractual limit to allow for burst and overage usage. If you exceed this limit, Infrastructure Monitoring drops data points from new hosts but keeps accepting data points for existing hosts. To monitor "
+"your usage against the limit, use the metric ``sf.org.numResourcesMonitored`` and filter for the dimension ``resourceType:hosts``."
+msgstr ""
+"``sf.org.limit.hosts`` (ゲージ):組織にデータを送信できるホストの最大数。この制限は、バーストおよび超過使用を許容するために、契約上の上限よりも高く設定されています。この制限を超えると、Infrastructure Monitoringは新しいホストからのデータポイントを除外しますが、既存のホストのデータポイントの受け入れは継続します。この制限に対する使用"
+"状況を監視するには、``sf.org.numResourcesMonitored`` メトリクスと ``resourceType:hosts`` ディメンションのフィルターを使用します。"
#: ../../admin/org-metrics.rst:164
-msgid "``sf.org.limit.metricTimeSeriesCreatedPerMinute`` (gauge): Maximum rate at which you can create new MTS in your organization, measured in MTS per minute. If you exceed this rate, Infrastructure Monitoring stops accepting data points for new MTS, but continues to accept data points for existing MTS. To monitor the number of metrics you've created overall, use the metric ``sf.org.numMetricTimeSeriesCreated``."
-msgstr "``sf.org.limit.metricTimeSeriesCreatedPerMinute`` (ゲージ):組織での新規MTS作成の最大レート。1分あたりのMTSで測定されます。このレートを超えると、Infrastructure Monitoringは新しいMTSのデータポイントの受け入れを停止しますが、既存のMTSのデータポイントの受け入れは継続します。作成したメトリクスの総数を監視するには、``sf.org.numMetricTimeSeriesCreated`` のメトリクスを使用します。"
+msgid ""
+"``sf.org.limit.metricTimeSeriesCreatedPerMinute`` (gauge): Maximum rate at which you can create new MTS in your organization, measured in MTS per minute. If you exceed this rate, Infrastructure Monitoring stops accepting data points for new MTS, but continues to accept data points for existing MTS. To monitor the number of metrics "
+"you've created overall, use the metric ``sf.org.numMetricTimeSeriesCreated``."
+msgstr ""
+"``sf.org.limit.metricTimeSeriesCreatedPerMinute`` (ゲージ):組織での新規MTS作成の最大レート。1分あたりのMTSで測定されます。このレートを超えると、Infrastructure Monitoringは新しいMTSのデータポイントの受け入れを停止しますが、既存のMTSのデータポイントの受け入れは継続します。作成したメトリクスの総数を監視するには、"
+"``sf.org.numMetricTimeSeriesCreated`` のメトリクスを使用します。"
#: ../../admin/org-metrics.rst:175
msgid "Metrics that track data throttling"
@@ -6271,11 +6392,11 @@ msgstr "これに類似したメトリクス、``sf.org.numAddDatapointCallsByTo
#: ../../admin/org-metrics.rst:204
msgid ""
-"The sum of all the by token metric values for a measurement might be less than the total value metric value. For example, the sum, of all ``sf.org.numAddDatapointCallsByToken`` values might be less than the value of ``sf.org.numAddDatapointCalls``. The sums differ because Infrastructure Monitoring doesn't use a token to retrieve data from cloud services you've integrated. Infrastructure Monitoring counts the data point calls for the integrated services, but it doesn't have "
-"a way to count the calls for any specific token."
+"The sum of all the by token metric values for a measurement might be less than the total value metric value. For example, the sum, of all ``sf.org.numAddDatapointCallsByToken`` values might be less than the value of ``sf.org.numAddDatapointCalls``. The sums differ because Infrastructure Monitoring doesn't use a token to retrieve "
+"data from cloud services you've integrated. Infrastructure Monitoring counts the data point calls for the integrated services, but it doesn't have a way to count the calls for any specific token."
msgstr ""
-"測定において、すべてのトークン別メトリクス値の合計が、合計値メトリクスの値より小さくなる場合があります。たとえば、すべての ``sf.org.numAddDatapointCallsByToken`` 値の合計が、``sf.org.numAddDatapointCalls`` の値より小さくなる場合があります。この合計に差が生じるのは、Infrastructure Monitoringが、統合されたクラウドサービスからのデータの取得にトークンを使用しないためです。Infrastructure Monitoringは、統合されたサービスのデータポイントのコール数をカウントしますが、特定のトークン"
-"のコール数をカウントする方法は持っていません。"
+"測定において、すべてのトークン別メトリクス値の合計が、合計値メトリクスの値より小さくなる場合があります。たとえば、すべての ``sf.org.numAddDatapointCallsByToken`` 値の合計が、``sf.org.numAddDatapointCalls`` の値より小さくなる場合があります。この合計に差が生じるのは、Infrastructure Monitoringが、統合されたクラウドサービスからのデータの"
+"取得にトークンを使用しないためです。Infrastructure Monitoringは、統合されたサービスのデータポイントのコール数をカウントしますが、特定のトークンのコール数をカウントする方法は持っていません。"
#: ../../admin/org-metrics.rst:213
msgid "This difference in values applies to AWS CloudWatch, GCP StackDriver, and AppDynamics."
@@ -6286,8 +6407,12 @@ msgid "Metrics with values for each metric type"
msgstr "各メトリクスタイプに対して値を持つメトリクス"
#: ../../admin/org-metrics.rst:219
-msgid "Some metrics have a value for each metric type (counter, cumulative counter, or gauge), so you have three MTS per metric. Each MTS has a dimension named ``category`` with a value of ``COUNTER``, ``CUMULATIVE_COUNTER``, or ``GAUGE``. Because you can have multiple MTS for these metrics, you need to use the ``sum()`` SignalFlow function to see the total value."
-msgstr "一部のメトリクスは、メトリクスのタイプ(カウンター、累積カウンター、ゲージ)ごとに値を持つため、メトリクスごとに3つのMTSがあります。各MTSには、``COUNTER``、``CUMULATIVE_COUNTER``、または ``GAUGE`` の値を持つ ``category`` というディメンションがあります。これらのメトリクスは複数のMTSを持つ可能性があるため、``sum()`` のSignalFlow関数を使用して合計値を確認する必要があります。"
+msgid ""
+"Some metrics have a value for each metric type (counter, cumulative counter, or gauge), so you have three MTS per metric. Each MTS has a dimension named ``category`` with a value of ``COUNTER``, ``CUMULATIVE_COUNTER``, or ``GAUGE``. Because you can have multiple MTS for these metrics, you need to use the ``sum()`` SignalFlow "
+"function to see the total value."
+msgstr ""
+"一部のメトリクスは、メトリクスのタイプ(カウンター、累積カウンター、ゲージ)ごとに値を持つため、メトリクスごとに3つのMTSがあります。各MTSには、``COUNTER``、``CUMULATIVE_COUNTER``、または ``GAUGE`` の値を持つ ``category`` というディメンションがあります。これらのメトリクスは複数のMTSを持つ可能性があるため、``sum()`` のSignalFlow関数を"
+"使用して合計値を確認する必要があります。"
#: ../../admin/org-metrics.rst:226
msgid "For example, you might receive three MTS for ``sf.org.numMetricTimeSeriesCreated``, one for the number of MTS that are counters, another for the number of MTS that are cumulative counters, and a third for the number of MTS that are gauges."
@@ -6302,8 +6427,12 @@ msgid "A metric that counts stopped detectors"
msgstr "停止したディテクターをカウントするメトリクス"
#: ../../admin/org-metrics.rst:237
-msgid "The metric ``sf.org.numDetectorsAborted`` monitors the number of detectors that Infrastructure Monitoring stopped because the detector reached a resource limit. In most cases, the detector exceeds the limit of 250K MTS. This condition also generates the event ``sf.org.abortedDetectors``, which records details including the detector ID, the reason it stopped, and the value or limit of MTS or data points, whichever caused the detector to stop."
-msgstr "``sf.org.numDetectorsAborted`` のメトリクスは、ディテクターがリソース制限に達したためにInfrastructure Monitoringが停止させたディテクターの数を監視します。大部分は、ディテクターが250K MTSの制限を超えた場合です。この条件はまた、ディテクターID、停止の理由、およびMTSまたはデータポイントの値または制限(ディテクターが停止した原因となったいずれか)の詳細を記録するイベント ``sf.org.abortedDetectors`` も生成します。"
+msgid ""
+"The metric ``sf.org.numDetectorsAborted`` monitors the number of detectors that Infrastructure Monitoring stopped because the detector reached a resource limit. In most cases, the detector exceeds the limit of 250K MTS. This condition also generates the event ``sf.org.abortedDetectors``, which records details including the detector "
+"ID, the reason it stopped, and the value or limit of MTS or data points, whichever caused the detector to stop."
+msgstr ""
+"``sf.org.numDetectorsAborted`` のメトリクスは、ディテクターがリソース制限に達したためにInfrastructure Monitoringが停止させたディテクターの数を監視します。大部分は、ディテクターが250K MTSの制限を超えた場合です。この条件はまた、ディテクターID、停止の理由、およびMTSまたはデータポイントの値または制限(ディテクターが停止した原因となったい"
+"ずれか)の詳細を記録するイベント ``sf.org.abortedDetectors`` も生成します。"
#: ../../admin/org-metrics.rst:245
msgid "To learn more, see :ref:`Add context to metrics using events `"
@@ -6570,8 +6699,12 @@ msgid "Select your user name at the top of the :strong:`Settings` menu."
msgstr ":strong:`設定` メニューの上部にある自分のユーザー名を選択します。"
#: ../../admin/references/organizations.rst:16
-msgid "On the :strong:`Organizations` tab, you can view or copy your realm, API endpoints, organizations, organization IDs, and API access token for your current organization. You can also see if you are an administrator of an organization and switch to another organization if you are a member. To view or copy your API access token, select :strong:`Show API Access Token`."
-msgstr ":strong:`組織` タブでは、現在の組織のレルム、APIエンドポイント、組織、組織ID、APIアクセストークンを表示またはコピーできます。また、自分が組織の管理者であるかどうかを確認したり、(メンバーである場合には)別の組織に切り替えたりすることもできます。APIアクセストークンを表示またはコピーするには、:strong:`APIアクセストークンの表示` を選択します。"
+msgid ""
+"On the :strong:`Organizations` tab, you can view or copy your realm, API endpoints, organizations, organization IDs, and API access token for your current organization. You can also see if you are an administrator of an organization and switch to another organization if you are a member. To view or copy your API access token, "
+"select :strong:`Show API Access Token`."
+msgstr ""
+":strong:`組織` タブでは、現在の組織のレルム、APIエンドポイント、組織、組織ID、APIアクセストークンを表示またはコピーできます。また、自分が組織の管理者であるかどうかを確認したり、(メンバーである場合には)別の組織に切り替えたりすることもできます。APIアクセストークンを表示またはコピーするには、:strong:`APIアクセストークンの表示` を選択"
+"します。"
#: ../../admin/references/organizations.rst:19
msgid "About Splunk Observability Cloud realms"
@@ -6614,7 +6747,9 @@ msgid "Per product system limits in Splunk Observability Cloud"
msgstr "Splunk Observability Cloudの製品別のシステム制限"
#: ../../admin/references/per-product-limits.rst:18
-msgid "Each Splunk Observability Cloud product has a maximum number of MTS you can create per minute. For example, if you create 5,500 MTS in the first minute in Infrastructure Monitoring, you'll have to wait until the next minute to create more MTS. However, in the first minute you can also create another 6,000 more MTS for any other product you use."
+msgid ""
+"Each Splunk Observability Cloud product has a maximum number of MTS you can create per minute. For example, if you create 5,500 MTS in the first minute in Infrastructure Monitoring, you'll have to wait until the next minute to create more MTS. However, in the first minute you can also create another 6,000 more MTS for any other "
+"product you use."
msgstr "Splunk Observability Cloudの各製品には、1分間に作成できるMTSの最大数があります。たとえば、Infrastructure Monitoringで最初の1分間に5,500 MTSを作成すると、さらにMTSを作成するには次の1分まで待つ必要があります。ただし、その最初の1分間に、ご利用の他製品でさらに6,000 MTSを作成することもできます。"
#: ../../admin/references/per-product-limits.rst:20
@@ -6865,17 +7000,20 @@ msgstr "サブスクリプションにはEnterpriseとStandardの2つのタイ
msgid "Span and trace limits"
msgstr "スパンとトレースに関する制限"
-#: ../../admin/references/system-limits/sys-limits-apm.rst:31 ../../admin/references/system-limits/sys-limits-apm.rst:67 ../../admin/references/system-limits/sys-limits-apm.rst:85 ../../admin/references/system-limits/sys-limits-infra.rst:50 ../../admin/references/system-limits/sys-limits-infra.rst:85 ../../admin/references/system-limits/sys-limits-infra.rst:170 ../../admin/references/system-limits/sys-limits-infra.rst:200
-#: ../../admin/references/system-limits/sys-limits-infra.rst:228 ../../admin/references/system-limits/sys-limits-infra.rst:275 ../../admin/references/system-limits/sys-limits-infra.rst:291 ../../admin/references/system-limits/sys-limits-rum.rst:20 ../../admin/references/system-limits/sys-limits-rum.rst:42
+#: ../../admin/references/system-limits/sys-limits-apm.rst:31 ../../admin/references/system-limits/sys-limits-apm.rst:67 ../../admin/references/system-limits/sys-limits-apm.rst:85 ../../admin/references/system-limits/sys-limits-infra.rst:50 ../../admin/references/system-limits/sys-limits-infra.rst:85
+#: ../../admin/references/system-limits/sys-limits-infra.rst:170 ../../admin/references/system-limits/sys-limits-infra.rst:200 ../../admin/references/system-limits/sys-limits-infra.rst:228 ../../admin/references/system-limits/sys-limits-infra.rst:275 ../../admin/references/system-limits/sys-limits-infra.rst:291
+#: ../../admin/references/system-limits/sys-limits-rum.rst:20 ../../admin/references/system-limits/sys-limits-rum.rst:42
msgid ":strong:`Limit name`"
msgstr ":strong:`制限名`"
-#: ../../admin/references/system-limits/sys-limits-apm.rst:32 ../../admin/references/system-limits/sys-limits-apm.rst:68 ../../admin/references/system-limits/sys-limits-apm.rst:86 ../../admin/references/system-limits/sys-limits-infra.rst:51 ../../admin/references/system-limits/sys-limits-infra.rst:86 ../../admin/references/system-limits/sys-limits-infra.rst:171 ../../admin/references/system-limits/sys-limits-infra.rst:201
-#: ../../admin/references/system-limits/sys-limits-infra.rst:229 ../../admin/references/system-limits/sys-limits-infra.rst:276 ../../admin/references/system-limits/sys-limits-infra.rst:292 ../../admin/references/system-limits/sys-limits-rum.rst:21 ../../admin/references/system-limits/sys-limits-rum.rst:43
+#: ../../admin/references/system-limits/sys-limits-apm.rst:32 ../../admin/references/system-limits/sys-limits-apm.rst:68 ../../admin/references/system-limits/sys-limits-apm.rst:86 ../../admin/references/system-limits/sys-limits-infra.rst:51 ../../admin/references/system-limits/sys-limits-infra.rst:86
+#: ../../admin/references/system-limits/sys-limits-infra.rst:171 ../../admin/references/system-limits/sys-limits-infra.rst:201 ../../admin/references/system-limits/sys-limits-infra.rst:229 ../../admin/references/system-limits/sys-limits-infra.rst:276 ../../admin/references/system-limits/sys-limits-infra.rst:292
+#: ../../admin/references/system-limits/sys-limits-rum.rst:21 ../../admin/references/system-limits/sys-limits-rum.rst:43
msgid ":strong:`Default limit value`"
msgstr ":strong:`制限のデフォルト値`"
-#: ../../admin/references/system-limits/sys-limits-apm.rst:33 ../../admin/references/system-limits/sys-limits-apm.rst:69 ../../admin/references/system-limits/sys-limits-rum.rst:22 ../../admin/references/system-limits/sys-limits-rum.rst:60 ../../admin/references/system-limits/sys-limits-rum.rst:89 ../../admin/references/system-limits/sys-limits-rum.rst:110 ../../admin/references/system-limits/sys-limits-rum.rst:129
+#: ../../admin/references/system-limits/sys-limits-apm.rst:33 ../../admin/references/system-limits/sys-limits-apm.rst:69 ../../admin/references/system-limits/sys-limits-rum.rst:22 ../../admin/references/system-limits/sys-limits-rum.rst:60 ../../admin/references/system-limits/sys-limits-rum.rst:89
+#: ../../admin/references/system-limits/sys-limits-rum.rst:110 ../../admin/references/system-limits/sys-limits-rum.rst:129
msgid ":strong:`Notes`"
msgstr ":strong:`メモ`"
@@ -7104,8 +7242,12 @@ msgid "Splunk Infrastructure Monitoring has system limits that help ensure good
msgstr "Splunk Infrastructure Monitoringには、優れたパフォーマンス、安定性、信頼性の確保を支えるためのシステム制限があります。これらの制限は、Infrastructure Monitoringのマルチテナント環境も保護します。これらの制限を超えると、Infrastructure Monitoringのエクスペリエンスが低下する可能性があります。"
#: ../../admin/references/system-limits/sys-limits-infra.rst:13
-msgid "To help you avoid problems when you use Infrastructure Monitoring, consider the system limit information presented in this document. Besides, there are several out-of-the-box charts in Splunk Observability Cloud for the metrics described below. Admins can view these charts by navigating to :guilabel:`Settings > Organization Overview`."
-msgstr "Infrastructure Monitoringを使用する際の問題を回避するため、このドキュメント内で説明するシステム制限の情報について検討してください。加えて、Splunk Observability Cloudには、以下に説明するメトリクスについて、すぐに使えるチャートがいくつか用意されています。管理者は、:guilabel:`Settings > Organization Overview` に移動してこれらのチャートを確認できます。"
+msgid ""
+"To help you avoid problems when you use Infrastructure Monitoring, consider the system limit information presented in this document. Besides, there are several out-of-the-box charts in Splunk Observability Cloud for the metrics described below. Admins can view these charts by navigating to :guilabel:`Settings > Organization "
+"Overview`."
+msgstr ""
+"Infrastructure Monitoringを使用する際の問題を回避するため、このドキュメント内で説明するシステム制限の情報について検討してください。加えて、Splunk Observability Cloudには、以下に説明するメトリクスについて、すぐに使えるチャートがいくつか用意されています。管理者は、:guilabel:`Settings > Organization Overview` に移動してこれらのチャート"
+"を確認できます。"
#: ../../admin/references/system-limits/sys-limits-infra.rst:16
msgid "This documentation uses the following abbreviations:"
@@ -7187,7 +7329,8 @@ msgstr "メインシステムの制限"
msgid ":ref:`amts-limit`"
msgstr ":ref:`amts-limit`"
-#: ../../admin/references/system-limits/sys-limits-infra.rst:54 ../../admin/references/system-limits/sys-limits-infra.rst:176 ../../admin/references/system-limits/sys-limits-infra.rst:232 ../../admin/references/system-limits/sys-limits-infra.rst:238 ../../admin/references/system-limits/sys-limits-infra.rst:262 ../../admin/references/system-limits/sys-limits-rum.rst:45 ../../admin/references/system-limits/sys-limits-rum.rst:47
+#: ../../admin/references/system-limits/sys-limits-infra.rst:54 ../../admin/references/system-limits/sys-limits-infra.rst:176 ../../admin/references/system-limits/sys-limits-infra.rst:232 ../../admin/references/system-limits/sys-limits-infra.rst:238 ../../admin/references/system-limits/sys-limits-infra.rst:262
+#: ../../admin/references/system-limits/sys-limits-rum.rst:45 ../../admin/references/system-limits/sys-limits-rum.rst:47
msgid "Determined by your subscription"
msgstr "サブスクリプションにより決定"
@@ -7203,11 +7346,13 @@ msgstr "1,000"
msgid ":ref:`maximum-number-of-mts-allowed-per-chart-data-function`"
msgstr ":ref:`maximum-number-of-mts-allowed-per-chart-data-function`"
-#: ../../admin/references/system-limits/sys-limits-infra-details.rst:65 ../../admin/references/system-limits/sys-limits-infra-details.rst:83 ../../admin/references/system-limits/sys-limits-infra.rst:61 ../../admin/references/system-limits/sys-limits-infra.rst:66 ../../admin/references/system-limits/sys-limits-infra.rst:121 ../../admin/references/system-limits/sys-limits-infra.rst:130
+#: ../../admin/references/system-limits/sys-limits-infra-details.rst:65 ../../admin/references/system-limits/sys-limits-infra-details.rst:83 ../../admin/references/system-limits/sys-limits-infra.rst:61 ../../admin/references/system-limits/sys-limits-infra.rst:66 ../../admin/references/system-limits/sys-limits-infra.rst:121
+#: ../../admin/references/system-limits/sys-limits-infra.rst:130
msgid "10,000 for standard subscriptions"
msgstr "Standardサブスクリプションの場合、10,000"
-#: ../../admin/references/system-limits/sys-limits-infra-details.rst:66 ../../admin/references/system-limits/sys-limits-infra-details.rst:84 ../../admin/references/system-limits/sys-limits-infra.rst:62 ../../admin/references/system-limits/sys-limits-infra.rst:67 ../../admin/references/system-limits/sys-limits-infra.rst:122 ../../admin/references/system-limits/sys-limits-infra.rst:131
+#: ../../admin/references/system-limits/sys-limits-infra-details.rst:66 ../../admin/references/system-limits/sys-limits-infra-details.rst:84 ../../admin/references/system-limits/sys-limits-infra.rst:62 ../../admin/references/system-limits/sys-limits-infra.rst:67 ../../admin/references/system-limits/sys-limits-infra.rst:122
+#: ../../admin/references/system-limits/sys-limits-infra.rst:131
msgid "30,000 for enterprise subscriptions"
msgstr "Enterpriseサブスクリプションの場合、30,000"
@@ -7612,10 +7757,12 @@ msgid ":strong:`Notes`: Maximum number of input MTS per job. When you use the sa
msgstr ":strong:`注意`:ジョブあたりの入力MTSの最大数です。1つのジョブで同じMTSを複数回使用する場合、使用のたびに上限に対してカウントされます。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:47
-msgid ":strong:`Customer impact`: If the job is for a chart, the chart doesn't load and you receive an error message. If the job is for a detector, the system aborts the job. You can monitor aborted detector SignalFlow programs using a built-in metric. Your organization also receives an event with information about the detector that aborted. Your job might reach this limit after it starts. A chart might initially load, but fail when its SignalFlow job aborts."
+msgid ""
+":strong:`Customer impact`: If the job is for a chart, the chart doesn't load and you receive an error message. If the job is for a detector, the system aborts the job. You can monitor aborted detector SignalFlow programs using a built-in metric. Your organization also receives an event with information about the detector that "
+"aborted. Your job might reach this limit after it starts. A chart might initially load, but fail when its SignalFlow job aborts."
msgstr ""
-":strong:`お客様への影響`:ジョブの対象がチャートの場合、チャートが読み込まれず、エラーメッセージが表示されます。ジョブの対象がディテクターの場合、システムはジョブを停止します。停止したディテクターのSignalFlowプログラムは、組み込みのメトリックを使用して監視できます。また組織は、停止したディテクターに関する情報を含むイベントも受信します。ジョブは、開始後にこの制限に達する可能性があります。チャートは最初にロードされる可能性がありますが、SignalFlowジョブが停止した場合は失敗しま"
-"す。"
+":strong:`お客様への影響`:ジョブの対象がチャートの場合、チャートが読み込まれず、エラーメッセージが表示されます。ジョブの対象がディテクターの場合、システムはジョブを停止します。停止したディテクターのSignalFlowプログラムは、組み込みのメトリックを使用して監視できます。また組織は、停止したディテクターに関する情報を含むイベントも受信しま"
+"す。ジョブは、開始後にこの制限に達する可能性があります。チャートは最初にロードされる可能性がありますが、SignalFlowジョブが停止した場合は失敗します。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:52
msgid "Maximum number of derived MTS per SignalFlow program"
@@ -7627,17 +7774,19 @@ msgstr ":strong:`デフォルトの制限値`:500,000"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:55
msgid ""
-":strong:`Notes`: Maximum number of derived MTS per SignalFlow program, where derived MTS are temporary MTS that a SignalFlow function or method has to maintain in memory. For example, if there are 20,000 MTS for the metric ``jvm.load``, and each MTS comes from a unique host, then ``\"data('jvm.load').sum(by=['host']).publish()\"`` tracks 40,000 derived MTS. The ``data()`` SignalFlow function or method uses 20,000, and the ``sum()`` uses another 20,000. The number of input "
-"MTS is still 20,000."
-msgstr ":strong:`注意`:派生MTSが一時的なMTSでSignalFlow関数またはメソッドによってメモリに保持される必要がある場合の、SignalFlowプログラムあたりの派生MTSの最大数です。例えば、メトリクス ``jvm.load`` のMTSが20,000個あり、各MTSが一意のホストに由来する場合、``\"data('jvm.load').sum(by=['host']).publish()\"`` は40,000個の派生MTSを追跡します。``data()`` SignalFlow関数またはメソッドは20,000個を使用し、``sum()`` はさらに20,000個を使用します。入力MTSの数は20,000のままです。"
+":strong:`Notes`: Maximum number of derived MTS per SignalFlow program, where derived MTS are temporary MTS that a SignalFlow function or method has to maintain in memory. For example, if there are 20,000 MTS for the metric ``jvm.load``, and each MTS comes from a unique host, then ``\"data('jvm.load').sum(by=['host']).publish()"
+"\"``tracks 40,000 derived MTS. The ``data()`` SignalFlow function or method uses 20,000, and the ``sum()`` uses another 20,000. The number of input MTS is still 20,000."
+msgstr ""
+":strong:`注意`:派生MTSが一時的なMTSでSignalFlow関数またはメソッドによってメモリに保持される必要がある場合の、SignalFlowプログラムあたりの派生MTSの最大数です。例えば、メトリクス ``jvm.load`` のMTSが20,000個あり、各MTSが一意のホストに由来する場合、``\"data('jvm.load').sum(by=['host']).publish()\"`` は40,000個の派生MTSを追跡します。"
+"``data()`` SignalFlow関数またはメソッドは20,000個を使用し、``sum()`` はさらに20,000個を使用します。入力MTSの数は20,000のままです。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:56
msgid ""
-":strong:`Customer impact`: If the SignalFlow program is for a chart, the chart doesn't load and you receive an error message. If the SignalFlow program is for a detector, the system aborts the program. You can monitor aborted detector SignalFlow programs using a built-in metric. Your organization also receives an event with information about the detector that aborted. Your SignalFlow program might reach this limit after it starts. A chart might initially load, but fail when "
-"its SignalFlow program aborts."
+":strong:`Customer impact`: If the SignalFlow program is for a chart, the chart doesn't load and you receive an error message. If the SignalFlow program is for a detector, the system aborts the program. You can monitor aborted detector SignalFlow programs using a built-in metric. Your organization also receives an event with "
+"information about the detector that aborted. Your SignalFlow program might reach this limit after it starts. A chart might initially load, but fail when its SignalFlow program aborts."
msgstr ""
-":strong:`お客様への影響`:SignalFlowプログラムの対象がチャートの場合、チャートが読み込まれず、エラーメッセージが表示されます。SignalFlowプログラムの対象がディテクターの場合、システムはプログラムを停止します。停止したディテクターのSignalFlowプログラムは、ビルトインメトリクスを使用して監視できます。また組織は、停止したディテクターに関する情報を含むイベントも受信します。SignalFlowプログラムは、開始後にこの制限に達する可能性があります。チャートは、最初はロードされる可能性があり"
-"ますが、SignalFlowプログラムが停止すると失敗します。"
+":strong:`お客様への影響`:SignalFlowプログラムの対象がチャートの場合、チャートが読み込まれず、エラーメッセージが表示されます。SignalFlowプログラムの対象がディテクターの場合、システムはプログラムを停止します。停止したディテクターのSignalFlowプログラムは、ビルトインメトリクスを使用して監視できます。また組織は、停止したディテクターに関"
+"する情報を含むイベントも受信します。SignalFlowプログラムは、開始後にこの制限に達する可能性があります。チャートは、最初はロードされる可能性がありますが、SignalFlowプログラムが停止すると失敗します。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:61
msgid "Maximum number of MTS allowed per chart data() function"
@@ -7697,11 +7846,17 @@ msgstr ":strong:`注意`:ディテクターごとに設定可能なアクテ
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:101
msgid ":strong:`Customer impact`: Once you reach this limit, Splunk Infrastructure Monitoring aborts the detector and deletes all active alerts. To avoid hitting this limit, configure autoclear on your detectors to clear active alerts based on defined thresholds. To learn more, see :ref:`auto-clearing-alerts`."
-msgstr ":strong:`お客様への影響`:この制限に達すると、Splunk Infrastructure Monitoringはディテクターを停止し、すべてのアクティブなアラートを削除します。この制限に達することを回避するには、ディテクターに自動消去を設定して、定義した閾値に基づいてアクティブなアラートを消去するようにします。詳細は、:ref:`auto-clearing-alerts` を参照してください。"
+msgstr ""
+":strong:`お客様への影響`:この制限に達すると、Splunk Infrastructure Monitoringはディテクターを停止し、すべてのアクティブなアラートを削除します。この制限に達することを回避するには、ディテクターに自動消去を設定して、定義した閾値に基づいてアクティブなアラートを消去するようにします。詳細は、:ref:`auto-clearing-alerts` を参照してくださ"
+"い。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:103
-msgid "When you update or delete a detector, Splunk Observability Cloud stops the SignalFlow program associated with the detector and sends a stop notification to all the recipients currently configured for the detector. If the detector has a large number of recipients or a large number of alerts, sending the notification causes a flood of notifications. Your first reaction might be to delete the detector, but that might cause additional problems."
-msgstr "ディテクターを更新または削除すると、Splunk Observability Cloudはそのディテクターに関連付けられたSignalFlowプログラムを停止し、そのディテクターに現在設定されているすべての受信者に停止通知を送信します。ディテクターに多数の受信者または多数のアラートが設定されている場合に通知を送信すると、通知の殺到につながります。お客様は最初の対応としてディテクターを削除するかもしれませんが、そうすると、さらなる問題を引き起こす可能性があります。"
+msgid ""
+"When you update or delete a detector, Splunk Observability Cloud stops the SignalFlow program associated with the detector and sends a stop notification to all the recipients currently configured for the detector. If the detector has a large number of recipients or a large number of alerts, sending the notification causes a flood of "
+"notifications. Your first reaction might be to delete the detector, but that might cause additional problems."
+msgstr ""
+"ディテクターを更新または削除すると、Splunk Observability Cloudはそのディテクターに関連付けられたSignalFlowプログラムを停止し、そのディテクターに現在設定されているすべての受信者に停止通知を送信します。ディテクターに多数の受信者または多数のアラートが設定されている場合に通知を送信すると、通知の殺到につながります。お客様は最初の対応とし"
+"てディテクターを削除するかもしれませんが、そうすると、さらなる問題を引き起こす可能性があります。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:105
msgid "If your detector has a large number of recipients or a large number of alerts, do the following:"
@@ -7748,16 +7903,20 @@ msgid ":strong:`Default limit value`: 60,000,000"
msgstr ":strong:`デフォルトの制限値`:60,000,000"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:130
-msgid ":strong:`Notes`: Total number of data points a SignalFlow program must buffer to satisfy time window transformations. This is at least the number of input MTS, but if the SignalFlow has a time window calculation, the actual value might be much more. For example, a sum over 1m at 1s resolution requires 60 data points per MTS. If the SignalFlow has 10,000 MTS and only one window transform, the SignalFlow needs 10,000*60=600,000 data points."
-msgstr ":strong:`注意`:SignalFlowプログラムが時間窓の変換を満たすためにバッファリングしなければならないデータポイントの総数。これは少なくとも入力MTSの数になりますが、SignalFlowに時間窓計算が設定されている場合、実際の値はもっと多くなる可能性があります。例えば、1秒の解像度で1分以上の和を求めるには、MTSあたり60個のデータポイントが必要です。SignalFlowに10,000個のMTSがあり、窓変換が1つしかない場合、SignalFlowは10,000*60=600,000のデータポイントを必要とします。"
+msgid ""
+":strong:`Notes`: Total number of data points a SignalFlow program must buffer to satisfy time window transformations. This is at least the number of input MTS, but if the SignalFlow has a time window calculation, the actual value might be much more. For example, a sum over 1m at 1s resolution requires 60 data points per MTS. If the "
+"SignalFlow has 10,000 MTS and only one window transform, the SignalFlow needs 10,000*60=600,000 data points."
+msgstr ""
+":strong:`注意`:SignalFlowプログラムが時間窓の変換を満たすためにバッファリングしなければならないデータポイントの総数。これは少なくとも入力MTSの数になりますが、SignalFlowに時間窓計算が設定されている場合、実際の値はもっと多くなる可能性があります。例えば、1秒の解像度で1分以上の和を求めるには、MTSあたり60個のデータポイントが必要です。"
+"SignalFlowに10,000個のMTSがあり、窓変換が1つしかない場合、SignalFlowは10,000*60=600,000のデータポイントを必要とします。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:131
msgid ""
-":strong:`Customer impact`: If the SignalFlow program is for a chart, the chart doesn't load and you receive an error message. If the SignalFlow program is for a detector, the system aborts the SignalFlow program. You can monitor aborted detector SignalFlow programs using a built-in metric. Your organization also receives an event with information about the detector that aborted. Your SignalFlow program might reach this limit after it starts. A chart might initially load, "
-"but fail when its SignalFlow exceeds reaches the limit."
+":strong:`Customer impact`: If the SignalFlow program is for a chart, the chart doesn't load and you receive an error message. If the SignalFlow program is for a detector, the system aborts the SignalFlow program. You can monitor aborted detector SignalFlow programs using a built-in metric. Your organization also receives an event "
+"with information about the detector that aborted. Your SignalFlow program might reach this limit after it starts. A chart might initially load, but fail when its SignalFlow exceeds reaches the limit."
msgstr ""
-":strong:`お客様への影響`:SignalFlowプログラムの対象がチャートの場合、チャートが読み込まれず、エラーメッセージが表示されます。SignalFlowプログラムの対象がディテクターの場合、システムはSignalFlowプログラムを停止します。停止したディテクターのSignalFlowプログラムは、ビルトインメトリクスを使用して監視できます。また組織は、停止したディテクターに関する情報を含むイベントも受信します。SignalFlowプログラムは、開始後にこの制限に達する可能性があります。チャートは、最初はロードされる可"
-"能性がありますが、SignalFlowが上限に達すると失敗します。"
+":strong:`お客様への影響`:SignalFlowプログラムの対象がチャートの場合、チャートが読み込まれず、エラーメッセージが表示されます。SignalFlowプログラムの対象がディテクターの場合、システムはSignalFlowプログラムを停止します。停止したディテクターのSignalFlowプログラムは、ビルトインメトリクスを使用して監視できます。また組織は、停止したディテ"
+"クターに関する情報を含むイベントも受信します。SignalFlowプログラムは、開始後にこの制限に達する可能性があります。チャートは、最初はロードされる可能性がありますが、SignalFlowが上限に達すると失敗します。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:136
msgid "Maximum number of functions and methods per SignalFlow program"
@@ -7771,7 +7930,8 @@ msgstr ":strong:`デフォルトの制限値`:1,000"
msgid ":strong:`Notes`: The SignalFlow program ``\"A = data().sum(by=\"az\").sum().publish()\"`` has 4 functions and methods (data, sum, sum, publish)."
msgstr ":strong:`注意`:SignalFlowプログラム ``\"A = data().sum(by=\"az\").sum().publish()\"`` には4つの関数とメソッドがあります(data、sum、sum、publish)。"
-#: ../../admin/references/system-limits/sys-limits-infra-details.rst:140 ../../admin/references/system-limits/sys-limits-infra-details.rst:182 ../../admin/references/system-limits/sys-limits-infra-details.rst:191 ../../admin/references/system-limits/sys-limits-infra-details.rst:200 ../../admin/references/system-limits/sys-limits-infra-details.rst:209 ../../admin/references/system-limits/sys-limits-infra-details.rst:240
+#: ../../admin/references/system-limits/sys-limits-infra-details.rst:140 ../../admin/references/system-limits/sys-limits-infra-details.rst:182 ../../admin/references/system-limits/sys-limits-infra-details.rst:191 ../../admin/references/system-limits/sys-limits-infra-details.rst:200
+#: ../../admin/references/system-limits/sys-limits-infra-details.rst:209 ../../admin/references/system-limits/sys-limits-infra-details.rst:240
msgid ":strong:`Customer impact`: SignalFlow programs which are violating the limit can't start. You immediately get an error message."
msgstr ":strong:`お客様への影響`:制限に違反しているSignalFlowプログラムは開始できません。すぐにエラーメッセージが表示されます。"
@@ -7784,8 +7944,12 @@ msgid ":strong:`Default limit value`: 200"
msgstr ":strong:`デフォルトの制限値`:200"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:148
-msgid ":strong:`Notes`: Maximum number of queries you can have in a SignalFlow program used in a chart or detector. Queries that count toward this limit include ``data()``, ``graphite()``, ``events()``, and ``alerts()``. Using a ``timeshift()`` function on a stream causes all the queries for that stream to run again and increases the total number of queries in the program. For example, in the following program, queries A and B run again to retrieve data for D."
-msgstr ":strong:`注意`:チャートまたはディテクターで使用する SignalFlowプログラムで使用できるクエリの最大数です。この制限に対してカウントされるクエリには、``data()``、``graphite()``、``events()``、``alerts()`` があります。ストリームで ``timeshift()`` 関数を使用すると、そのストリームのすべてのクエリが再実行され、プログラム内のクエリ総数が増加します。例えば、以下のプログラムでは、Dのデータを取得するためにクエリAとBが再度実行されます。"
+msgid ""
+":strong:`Notes`: Maximum number of queries you can have in a SignalFlow program used in a chart or detector. Queries that count toward this limit include ``data()``, ``graphite()``, ``events()``, and ``alerts()``. Using a ``timeshift()`` function on a stream causes all the queries for that stream to run again and increases the total "
+"number of queries in the program. For example, in the following program, queries A and B run again to retrieve data for D."
+msgstr ""
+":strong:`注意`:チャートまたはディテクターで使用する SignalFlowプログラムで使用できるクエリの最大数です。この制限に対してカウントされるクエリには、``data()``、``graphite()``、``events()``、``alerts()`` があります。ストリームで ``timeshift()`` 関数を使用すると、そのストリームのすべてのクエリが再実行され、プログラム内のクエリ総数が増加"
+"します。例えば、以下のプログラムでは、Dのデータを取得するためにクエリAとBが再度実行されます。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:157
msgid ":strong:`Customer impact`: SignalFlow programs which violate the limit can't start. You immediately get an error message. This limit puts limit on how many ``detect()`` calls you can use if you use different ``data()`` or ``graphite()`` calls in the ``detect()``."
@@ -7813,19 +7977,19 @@ msgstr ":strong:`デフォルトの制限値`:10,000,000AMTSまたはAMTS総
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:172
msgid ""
-":strong:`Notes`: Maximum number of MTS that can concurrently use SignalFlow programs in your organization, including detector chart SignalFlow. For example, suppose you open 10 charts and keep them open. If each chart uses on average 5,000 MTS, you're using 50,000 MTS, even if each chart looks at the same 5,000 MTS. If you close the charts, your usage goes to zero. Detector SignalFlow programs are always running, so they always use a portion of your MTS usage limit. This "
-"limit only applies to streaming SignalFlow programs, not ones that look at historical data."
+":strong:`Notes`: Maximum number of MTS that can concurrently use SignalFlow programs in your organization, including detector chart SignalFlow. For example, suppose you open 10 charts and keep them open. If each chart uses on average 5,000 MTS, you're using 50,000 MTS, even if each chart looks at the same 5,000 MTS. If you close the "
+"charts, your usage goes to zero. Detector SignalFlow programs are always running, so they always use a portion of your MTS usage limit. This limit only applies to streaming SignalFlow programs, not ones that look at historical data."
msgstr ""
-":strong:`注意`:ディテクターチャートSignalFlowを含め、組織内でSignalFlowプログラムを同時に使用できるMTSの最大数です。例えば、10個のチャートを開いて、それを開いたままにしておくとします。各チャートが平均5,000MTSを使用している場合、各チャートが同じ5,000個のMTSを見ていたとしても、50,000MTSを使用していることになります。チャートを閉じれば、使用量はゼロになります。ディテクターのSignalFlowプログラムは常に実行されているため、常にMTS使用制限の一部を使用しています。この制限は、ストリー"
-"ミングのSignalFlowプログラムにのみ適用され、履歴データを参照するプログラムには適用されません。"
+":strong:`注意`:ディテクターチャートSignalFlowを含め、組織内でSignalFlowプログラムを同時に使用できるMTSの最大数です。例えば、10個のチャートを開いて、それを開いたままにしておくとします。各チャートが平均5,000MTSを使用している場合、各チャートが同じ5,000個のMTSを見ていたとしても、50,000MTSを使用していることになります。チャートを閉じれ"
+"ば、使用量はゼロになります。ディテクターのSignalFlowプログラムは常に実行されているため、常にMTS使用制限の一部を使用しています。この制限は、ストリーミングのSignalFlowプログラムにのみ適用され、履歴データを参照するプログラムには適用されません。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:173
msgid ""
-":strong:`Customer impact`: If the SignalFlow program is for a chart, the chart doesn't load and you receive an error message. If the SignalFlow program is for a detector, the system aborts the program. You can monitor aborted detector SignalFlow programs using a built-in metric. Your organization also receives an event with information about the detector that aborted. Your SignalFlow program might reach this limit after it starts. A chart might initially load, but fail when "
-"the program reaches the limit."
+":strong:`Customer impact`: If the SignalFlow program is for a chart, the chart doesn't load and you receive an error message. If the SignalFlow program is for a detector, the system aborts the program. You can monitor aborted detector SignalFlow programs using a built-in metric. Your organization also receives an event with "
+"information about the detector that aborted. Your SignalFlow program might reach this limit after it starts. A chart might initially load, but fail when the program reaches the limit."
msgstr ""
-":strong:`お客様への影響`:SignalFlowプログラムの対象がチャートの場合、チャートが読み込まれず、エラーメッセージが表示されます。SignalFlowプログラムの対象がディテクターの場合、システムはプログラムを停止します。停止したディテクターのSignalFlowプログラムは、ビルトインメトリクスを使用して監視できます。また組織は、停止したディテクターに関する情報を含むイベントも受信します。SignalFlowプログラムは、開始後にこの制限に達する可能性があります。チャートは、最初はロードされる可能性があり"
-"ますが、プログラムが上限に達すると失敗します。"
+":strong:`お客様への影響`:SignalFlowプログラムの対象がチャートの場合、チャートが読み込まれず、エラーメッセージが表示されます。SignalFlowプログラムの対象がディテクターの場合、システムはプログラムを停止します。停止したディテクターのSignalFlowプログラムは、ビルトインメトリクスを使用して監視できます。また組織は、停止したディテクターに関"
+"する情報を含むイベントも受信します。SignalFlowプログラムは、開始後にこの制限に達する可能性があります。チャートは、最初はロードされる可能性がありますが、プログラムが上限に達すると失敗します。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:178
msgid "Maximum max delay setting for SignalFlow programs"
@@ -7919,8 +8083,9 @@ msgstr "**アラート** のUIページに表示されたリストからアラ
msgid "You don't get a notification when Splunk Observability Cloud starts a SignalFlow program for an alert dialog box, but the program counts against your SignalFlow programs per minute limit."
msgstr "Splunk Observability CloudがアラートダイアログボックスのSignalFlowプログラムを開始しても通知は届きませんが、このプログラムは1分あたりのSignalFlowプログラム数の制限に対してカウントされます。"
-#: ../../admin/references/system-limits/sys-limits-infra-details.rst:236 ../../admin/references/system-limits/sys-limits-infra-details.rst:258 ../../admin/references/system-limits/sys-limits-infra-details.rst:271 ../../admin/references/system-limits/sys-limits-infra-details.rst:300 ../../admin/references/system-limits/sys-limits-infra-details.rst:322 ../../admin/references/system-limits/sys-limits-infra-details.rst:435
-#: ../../admin/references/system-limits/sys-limits-infra-details.rst:461 ../../admin/references/system-limits/sys-limits-infra-details.rst:486 ../../admin/references/system-limits/sys-limits-infra-details.rst:518
+#: ../../admin/references/system-limits/sys-limits-infra-details.rst:236 ../../admin/references/system-limits/sys-limits-infra-details.rst:258 ../../admin/references/system-limits/sys-limits-infra-details.rst:271 ../../admin/references/system-limits/sys-limits-infra-details.rst:300
+#: ../../admin/references/system-limits/sys-limits-infra-details.rst:322 ../../admin/references/system-limits/sys-limits-infra-details.rst:435 ../../admin/references/system-limits/sys-limits-infra-details.rst:461 ../../admin/references/system-limits/sys-limits-infra-details.rst:486
+#: ../../admin/references/system-limits/sys-limits-infra-details.rst:518
msgid ":strong:`Related metrics`:"
msgstr ":strong:`関連するメトリクス`:"
@@ -7946,9 +8111,11 @@ msgstr ":strong:`注意`:SignalFlowフィルターのクエリ引数の上限
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:249
msgid ""
-":strong:`Customer impact`: Maximum number of derived MTS per SignalFlow program, where derived MTS are temporary MTS that a SignalFlow function or method has to maintain in memory. For example, if there are 20,000 MTS for the metric ``jvm.load``, and each MTS comes from a unique host , then ``\"data('jvm.load').sum(by=['host']).publish()\"`` tracks 40,000 derived MTS. The ``data()`` function uses 20,000, and the ``sum()`` uses another 20,000. The number of input MTS is "
-"still 20,000."
-msgstr ":strong:`お客様への影響`:派生MTSが一時的なMTSでSignalFlow関数またはメソッドによってメモリに保持される必要がある場合の、SignalFlowプログラムあたりの派生MTSの最大数です。例えば、メトリクス ``jvm.load`` のMTSが20,000個あり、各MTSが一意のホストに由来する場合、``\"data('jvm.load').sum(by=['host']).publish()\"`` は40,000個の派生MTSを追跡します。``data()`` 関数は20,000個を使用し、``sum()`` はさらに20,000個を使用します。入力MTSの数は20,000のままです。"
+":strong:`Customer impact`: Maximum number of derived MTS per SignalFlow program, where derived MTS are temporary MTS that a SignalFlow function or method has to maintain in memory. For example, if there are 20,000 MTS for the metric ``jvm.load``, and each MTS comes from a unique host , then "
+"``\"data('jvm.load').sum(by=['host']).publish()\"`` tracks 40,000 derived MTS. The ``data()`` function uses 20,000, and the ``sum()`` uses another 20,000. The number of input MTS is still 20,000."
+msgstr ""
+":strong:`お客様への影響`:派生MTSが一時的なMTSでSignalFlow関数またはメソッドによってメモリに保持される必要がある場合の、SignalFlowプログラムあたりの派生MTSの最大数です。例えば、メトリクス ``jvm.load`` のMTSが20,000個あり、各MTSが一意のホストに由来する場合、``\"data('jvm.load').sum(by=['host']).publish()\"`` は40,000個の派生MTSを追跡"
+"します。``data()`` 関数は20,000個を使用し、``sum()`` はさらに20,000個を使用します。入力MTSの数は20,000のままです。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:254
msgid "Maximum number of detectors per organization"
@@ -8027,7 +8194,8 @@ msgid ":strong:`Default limit value`: 40 per week"
msgstr ":strong:`デフォルトの制限値`:1週間あたり40"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:299
-msgid ":strong:`Notes`: The maximum number of new custom fields (property or dimension keys) you can create, per organization per week. This limit applies to MTS and ETS. For example, `host: 1` and `host: 2` have the same key, which is `host`. `hostname: host1` and `hosttype: QA` have different keys, which are `hostname` and `hosttype`."
+msgid ""
+":strong:`Notes`: The maximum number of new custom fields (property or dimension keys) you can create, per organization per week. This limit applies to MTS and ETS. For example, `host: 1` and `host: 2` have the same key, which is `host`. `hostname: host1` and `hosttype: QA` have different keys, which are `hostname` and `hosttype`."
msgstr ":strong:`注意`:1組織あたりの1週間に作成可能な新規カスタムフィールド(プロパティキーまたはディメンションキー)の最大数です。この制限は、MTSおよびETSに適用されます。たとえば、`host: 1` と `host: 2` は、`host` という同じキーを持ちます。`hostname: host1` と `hosttype:QA` は、`hostname` と `hosttype` という異なるキーを持ちます。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:302
@@ -8100,7 +8268,8 @@ msgstr ":strong:`デフォルトの制限値`:1分あたりのMTS制限の10
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:343
msgid ":strong:`Notes`: Splunk Observability Cloud allows bursting for metric time series (MTS) creation to better support bursty or spiky patterns in MTS creation traffic. This limit is the maximum bursting capacity for MTS creations. Bursting is not guaranteed and is available only when there is enough additional capacity."
-msgstr ":strong:`注意`:Splunk Observability Cloudでは、メトリック時系列(MTS)作成のバースティングを許可することで、MTS作成トラフィックにおけるバースト性パターンやスパイク性パターンをより適切にサポートします。この制限は、MTS作成の最大バースト容量です。バースティングは保証されているものではなく、十分な追加容量がある場合にのみ利用可能です。"
+msgstr ""
+":strong:`注意`:Splunk Observability Cloudでは、メトリック時系列(MTS)作成のバースティングを許可することで、MTS作成トラフィックにおけるバースト性パターンやスパイク性パターンをより適切にサポートします。この制限は、MTS作成の最大バースト容量です。バースティングは保証されているものではなく、十分な追加容量がある場合にのみ利用可能です。"
#: ../../admin/references/system-limits/sys-limits-infra-details.rst:345
msgid ":strong:`Customer impact`: The default MTS creations per minute limit is enforced once you have used up the 20 minutes maximum bursting capacity per hour."
@@ -8739,8 +8908,12 @@ msgid "The subscription limits for your subscription plan. Select a panel to acc
msgstr "サブスクリプションプランのサブスクリプション制限。パネルを選択すると、サブスクリプション制限に関する情報にアクセスできます。"
#: ../../admin/subscription-usage/apm-billing-usage-index.rst:92
-msgid "The APM subscription usage page displays a panel for Monitoring MetricSets (MMS), but the metric that powers the chart is not available on the subscription usage page. Select :guilabel:`View Detailed Usage Reports` to view your current histogram MMS data. For more information about detailed usage reports, see :ref:`download-apm-usage-reports`."
-msgstr "APMのサブスクリプション使用状況ページには、Monitoring MetricSets(MMS)のパネルが表示されますが、サブスクリプションの使用状況ページでは、チャートの動力となるメトリクスは使用できません。:guilabel:`View Detailed Usage Reports` を選択すると、現在のヒストグラムMMSデータが表示されます。詳細な使用状況レポートに関する詳しい情報は、:ref:`download-apm-usage-reports` を参照してください。"
+msgid ""
+"The APM subscription usage page displays a panel for Monitoring MetricSets (MMS), but the metric that powers the chart is not available on the subscription usage page. Select :guilabel:`View Detailed Usage Reports` to view your current histogram MMS data. For more information about detailed usage reports, see :ref:`download-apm-"
+"usage-reports`."
+msgstr ""
+"APMのサブスクリプション使用状況ページには、Monitoring MetricSets(MMS)のパネルが表示されますが、サブスクリプションの使用状況ページでは、チャートの動力となるメトリクスは使用できません。:guilabel:`View Detailed Usage Reports` を選択すると、現在のヒストグラムMMSデータが表示されます。詳細な使用状況レポートに関する詳しい情報"
+"は、:ref:`download-apm-usage-reports` を参照してください。"
#: ../../admin/subscription-usage/apm-billing-usage-index.rst:94
msgid "For questions about subscription usage, contact tech support or your sales representative."
@@ -8851,8 +9024,12 @@ msgid "Download a host and container diagnostic report"
msgstr "ホストとコンテナの診断レポートをダウンロードする"
#: ../../admin/subscription-usage/apm-billing-usage-index.rst:156
-msgid "For host subscription plans, you can download reports that show which hosts and containers are sending APM data over a specific minute. Use this report to identify which hosts and containers are contributing to your subscription usage. You can generate and download reports within the retention period for traces. See :ref:`apm-data-retention` for more information."
-msgstr "ホストサブスクリプションプランでは、特定の1分間においてどのホストとコンテナがAPMデータを送信しているかを示すレポートをダウンロードできます。このレポートを使用して、どのホストとコンテナがサブスクリプションの使用量に寄与しているかを特定します。レポートは、トレースの保存期間内に生成およびダウンロードが可能です。詳細については、:ref:`apm-data-retention` を参照してください。"
+msgid ""
+"For host subscription plans, you can download reports that show which hosts and containers are sending APM data over a specific minute. Use this report to identify which hosts and containers are contributing to your subscription usage. You can generate and download reports within the retention period for traces. See :ref:`apm-data-"
+"retention` for more information."
+msgstr ""
+"ホストサブスクリプションプランでは、特定の1分間においてどのホストとコンテナがAPMデータを送信しているかを示すレポートをダウンロードできます。このレポートを使用して、どのホストとコンテナがサブスクリプションの使用量に寄与しているかを特定します。レポートは、トレースの保存期間内に生成およびダウンロードが可能です。詳細について"
+"は、:ref:`apm-data-retention` を参照してください。"
#: ../../admin/subscription-usage/apm-billing-usage-index.rst:158
msgid "To download a subscription usage report, do the following steps:"
@@ -8891,7 +9068,8 @@ msgid "Animated image that shows Selecting a minute within the hosts chart to do
msgstr "ホスト数チャート内のある1分間を選択して診断レポートをダウンロードする方法を示す、アニメーション画像。"
#: ../../admin/subscription-usage/apm-billing-usage-index.rst:173
-msgid "For each selected minute, the report shows the attributes or tags associated with the hosts and containers that sent data to Splunk APM. You might see different tags, like ``AWSUniqueId``, ``container_id``, ``gcp_id``, and so on, depending on the source of the host or container observed and the version of your instrumentation agent."
+msgid ""
+"For each selected minute, the report shows the attributes or tags associated with the hosts and containers that sent data to Splunk APM. You might see different tags, like ``AWSUniqueId``, ``container_id``, ``gcp_id``, and so on, depending on the source of the host or container observed and the version of your instrumentation agent."
msgstr "選択した1分間ごとに、Splunk APMにデータを送信したホストやコンテナに関連する属性やタグがレポートに表示されます。観察するホストやコンテナのソースとインストルメンテーションのエージェントのバージョンによって、``AWSUniqueId``、``container_id``、``gcp_id`` のように、異なるタグが表示される場合があります。"
#: ../../admin/subscription-usage/apm-billing-usage-index.rst:175
@@ -8907,8 +9085,12 @@ msgid "Use :guilabel:`Usage Analyzer` at the bottom of the page to understand in
msgstr "ページ下部の :guilabel:`Usage Analyzer` を使用して 、使用状況データ内の増加を把握することができます。特に、使用量アナライザーは、最も費用のかかるサービス、最も多く使用されているタグ値、最も多く取り込まれたトレースの特定に役立ちます。"
#: ../../admin/subscription-usage/apm-billing-usage-index.rst:184
-msgid "The :guilabel:`Spans per minute` and :guilabel:`Trace volume` charts show span and trace volume ingested at 2-hour intervals for the last 8 days. Select a 2-hour bar within either chart to see data tables for :guilabel:`Services by span count`, :guilabel:`Tags by total size`, and :guilabel:`Traces with most spans` for the midpoint minute within the 2-hour interval."
-msgstr ":guilabel:`Spans per minute` と :guilabel:`Trace volume` のチャートは、過去8日間の2時間間隔のスパンとトレースの取り込み量を示します。いずれかのチャートで2時間のバーを選択すると、2時間の間隔内の中間点の1分について、:guilabel:`Services by span count`、:guilabel:`Tags by total size`、:guilabel:`Traces with most spans` のデータテーブルが表示されます。"
+msgid ""
+"The :guilabel:`Spans per minute` and :guilabel:`Trace volume` charts show span and trace volume ingested at 2-hour intervals for the last 8 days. Select a 2-hour bar within either chart to see data tables for :guilabel:`Services by span count`, :guilabel:`Tags by total size`, and :guilabel:`Traces with most spans` for the midpoint "
+"minute within the 2-hour interval."
+msgstr ""
+":guilabel:`Spans per minute` と :guilabel:`Trace volume` のチャートは、過去8日間の2時間間隔のスパンとトレースの取り込み量を示します。いずれかのチャートで2時間のバーを選択すると、2時間の間隔内の中間点の1分について、:guilabel:`Services by span count`、:guilabel:`Tags by total size`、:guilabel:`Traces with most spans` のデータテーブルが"
+"表示されます。"
#: ../../admin/subscription-usage/apm-billing-usage-index.rst:186
msgid "Use this data to troubleshoot and create a plan to mitigate sudden increases in your APM usage data."
@@ -8947,8 +9129,11 @@ msgid "How APM calculates usage"
msgstr "APMによる使用状況の計算方法"
#: ../../admin/subscription-usage/apm-billing-usage-index.rst:215
-msgid "APM uses Splunk Observability Cloud metrics to calculate usage for traces-analyzed-per-minute (TAPM) and host subscription plans. Limits for host subscription plans are based on the number of hosts and containers sending data to APM. Limits for TAPM subscription plans are based on the number of traces you send to APM per minute."
-msgstr "APMは、Splunk Observability Cloudのメトリクスを使用して、TAPM(1分あたりの解析トレース数)サブスクリプションプランおよびホストサブスクリプションプランの使用状況を計算します。ホストサブスクリプションプランの制限は、APMにデータを送信するホストとコンテナの数に基づきます。TAPMサブスクリプションプランの制限は、1分間にAPMに送信するトレースの数に基づきます。"
+msgid ""
+"APM uses Splunk Observability Cloud metrics to calculate usage for traces-analyzed-per-minute (TAPM) and host subscription plans. Limits for host subscription plans are based on the number of hosts and containers sending data to APM. Limits for TAPM subscription plans are based on the number of traces you send to APM per minute."
+msgstr ""
+"APMは、Splunk Observability Cloudのメトリクスを使用して、TAPM(1分あたりの解析トレース数)サブスクリプションプランおよびホストサブスクリプションプランの使用状況を計算します。ホストサブスクリプションプランの制限は、APMにデータを送信するホストとコンテナの数に基づきます。TAPMサブスクリプションプランの制限は、1分間にAPMに送信するトレース"
+"の数に基づきます。"
#: ../../admin/subscription-usage/apm-billing-usage-index.rst:217
msgid "APM provides a value for each usage metric the system collects for each subscription usage period. Use the charts on the APM Subscription Usage page that plot these metrics so you can monitor the billed value for each metric."
@@ -9079,8 +9264,12 @@ msgid "In DPM subscription plans all metrics are categorized as custom, regardle
msgstr "DPMのサブスクリプションプランでは、すべてのメトリクスは、その起源に関係なく、カスタムとして分類されます。"
#: ../../admin/subscription-usage/dpm-usage.rst:24
-msgid "Go to :menuselection:`Settings > Subscription Usage > Infrastructure Monitoring` to see a usage chart that shows average and maximum DPM for the current usage period. Hovering over different points in the chart shows actual values below the chart. To see average and maximum usage for a previous period, select the desired period from the dropdown menu."
-msgstr ":menuselection:`Settings > Subscription Usage > Infrastructure Monitoring` に移動すると、現在の使用期間の平均DPMと最大DPMを示す使用量チャートが表示されます。チャートのさまざまなポイントにカーソルを合わせると、チャートの下に実際の値が表示されます。以前の期間の平均および最大の使用量を表示するには、ドロップダウンメニューから指定したい期間を選択します。"
+msgid ""
+"Go to :menuselection:`Settings > Subscription Usage > Infrastructure Monitoring` to see a usage chart that shows average and maximum DPM for the current usage period. Hovering over different points in the chart shows actual values below the chart. To see average and maximum usage for a previous period, select the desired period from "
+"the dropdown menu."
+msgstr ""
+":menuselection:`Settings > Subscription Usage > Infrastructure Monitoring` に移動すると、現在の使用期間の平均DPMと最大DPMを示す使用量チャートが表示されます。チャートのさまざまなポイントにカーソルを合わせると、チャートの下に実際の値が表示されます。以前の期間の平均および最大の使用量を表示するには、ドロップダウンメニューから指定したい期"
+"間を選択します。"
#: ../../admin/subscription-usage/dpm-usage.rst:20
msgid "Maximum usage chart for the usage period from Nov 1 - Dec 1"
@@ -9108,9 +9297,11 @@ msgstr ":ref:`aggregate-datapoints-per-minute-detail-report`。上記のレポ
#: ../../admin/subscription-usage/dpm-usage.rst:44
msgid ""
-":ref:`datapoints-per-dimension-report`. Shows on a daily basis the number of data points and time series for a given dimension value, as well as its average reporting frequency (resolution). It is useful for understanding the nature of the data your organization is sending so you can tune it accordingly. For example, you might notice that there are some metrics which you do not want to send at all, and conversely, you might see that there are some metrics that you want to "
-"send at a higher resolution."
-msgstr ":ref:`datapoints-per-dimension-report`。特定のディメンション値のデータポイント数と時系列数、および平均レポート頻度(解像度)を日単位で表示します。これは、組織が送信しているデータの性質の把握に役立ち、これに応じて調整を加えることができます。例えば、まったく送信する必要のないメトリクスがあることに気付くかもしれませんし、反対に、より高い解像度で送信する必要のあるメトリクスがあることに気付くかもしれません。"
+":ref:`datapoints-per-dimension-report`. Shows on a daily basis the number of data points and time series for a given dimension value, as well as its average reporting frequency (resolution). It is useful for understanding the nature of the data your organization is sending so you can tune it accordingly. For example, you might "
+"notice that there are some metrics which you do not want to send at all, and conversely, you might see that there are some metrics that you want to send at a higher resolution."
+msgstr ""
+":ref:`datapoints-per-dimension-report`。特定のディメンション値のデータポイント数と時系列数、および平均レポート頻度(解像度)を日単位で表示します。これは、組織が送信しているデータの性質の把握に役立ち、これに応じて調整を加えることができます。例えば、まったく送信する必要のないメトリクスがあることに気付くかもしれませんし、反対に、より高"
+"い解像度で送信する必要のあるメトリクスがあることに気付くかもしれません。"
#: ../../admin/subscription-usage/dpm-usage.rst:46
msgid "All reports are tab-separated text files that you can import into a spreadsheet application, such as Microsoft Excel, Google Sheets, and Apple Numbers."
@@ -9125,8 +9316,12 @@ msgid "Data points per minute detail report"
msgstr "1分あたりのデータポイント数(DPM)の詳細レポート"
#: ../../admin/subscription-usage/dpm-usage.rst:55
-msgid "This report, available on the Usage tab, shows the total number of data points sent for each minute of a month (or month to date, for the current month). It follows your usage period, and uses the month in which a usage period starts as the label in the report link. For example, if your usage period starts on the 10th of the month, then a link for 'March 2023' will cover the period of March 10 through April 9, 2023."
-msgstr "このレポートは「使用状況」タブで利用可能で、ある1か月間(今月については、月初めから現在までの期間) の毎分に送信されたデータポイントの合計数を表示します。使用期間に従って表示され、使用期間の始まりの月をレポートリンクのラベルとして使用します。たとえば、使用期間がその月の10日から始まる場合、「2023年3月」のリンクは、3月10日から2023年4月9日までの期間をカバーします。"
+msgid ""
+"This report, available on the Usage tab, shows the total number of data points sent for each minute of a month (or month to date, for the current month). It follows your usage period, and uses the month in which a usage period starts as the label in the report link. For example, if your usage period starts on the 10th of the month, "
+"then a link for 'March 2023' will cover the period of March 10 through April 9, 2023."
+msgstr ""
+"このレポートは「使用状況」タブで利用可能で、ある1か月間(今月については、月初めから現在までの期間) の毎分に送信されたデータポイントの合計数を表示します。使用期間に従って表示され、使用期間の始まりの月をレポートリンクのラベルとして使用します。たとえば、使用期間がその月の10日から始まる場合、「2023年3月」のリンクは、3月10日から2023年4月9"
+"日までの期間をカバーします。"
#: ../../admin/subscription-usage/dpm-usage.rst:58 ../../admin/subscription-usage/dpm-usage.rst:113
msgid "Report contents"
@@ -9221,8 +9416,12 @@ msgid "Use the report"
msgstr "レポートの使用"
#: ../../admin/subscription-usage/dpm-usage.rst:92
-msgid "The report shows you the detail of how many data points Splunk Infrastructure Monitoring is receiving from your organization on a per-minute basis. In general, this is useful if you want to determine whether your usage is in line with your subscription plan. Using the data, it is easy for you to calculate your average usage, how many minutes in the month you are over or under your plan, and by how much."
-msgstr "レポートには、Splunk Infrastructure Monitoringが組織から受信しているデータポイント数の詳細を1分単位で表示します。これは一般的に、使用状況がサブスクリプションプランに沿っているかどうかを判断したい場合に役立ちます。このデータを使用すると、平均使用量や、プランと比較した超過および不足が1か月に何分間あるか、またその量はどのくらいかを簡単に計算できます。"
+msgid ""
+"The report shows you the detail of how many data points Splunk Infrastructure Monitoring is receiving from your organization on a per-minute basis. In general, this is useful if you want to determine whether your usage is in line with your subscription plan. Using the data, it is easy for you to calculate your average usage, how "
+"many minutes in the month you are over or under your plan, and by how much."
+msgstr ""
+"レポートには、Splunk Infrastructure Monitoringが組織から受信しているデータポイント数の詳細を1分単位で表示します。これは一般的に、使用状況がサブスクリプションプランに沿っているかどうかを判断したい場合に役立ちます。このデータを使用すると、平均使用量や、プランと比較した超過および不足が1か月に何分間あるか、またその量はどのくらいかを簡単"
+"に計算できます。"
#: ../../admin/subscription-usage/dpm-usage.rst:97
msgid "Aggregate data points per minute detail report"
@@ -9269,8 +9468,12 @@ msgid "Total Datapoints Received per Day: The total number of data points receiv
msgstr "1日あたりの受信データポイント総数:レポートの日付で表される24時間の間にSplunk Infrastructure Monitoringが受信したデータポイントの総数で、これもディメンション名と値に関連付けられます。"
#: ../../admin/subscription-usage/dpm-usage.rst:125
-msgid "Note that if you sum up the Total Datapoints Received per Day column, it is possible that your total is larger than what is reported in the Datapoints per Minute detailed usage report. This scenario occurs if any of your metrics report more than one dimension, in which case that data point is counted multiple times in this report (once for each dimension)."
-msgstr "1日あたりの受信データポイント総数を合計すると、1分あたりのデータポイント数の詳細な使用状況レポートで報告される値よりも大きくなる可能性があることに注意してください。このケースは、メトリクスが複数のディメンションをレポートする場合に発生します。この場合、そのデータポイントは当レポートにおいて複数回(各ディメンションで1回ずつ)カウントされています。"
+msgid ""
+"Note that if you sum up the Total Datapoints Received per Day column, it is possible that your total is larger than what is reported in the Datapoints per Minute detailed usage report. This scenario occurs if any of your metrics report more than one dimension, in which case that data point is counted multiple times in this report "
+"(once for each dimension)."
+msgstr ""
+"1日あたりの受信データポイント総数を合計すると、1分あたりのデータポイント数の詳細な使用状況レポートで報告される値よりも大きくなる可能性があることに注意してください。このケースは、メトリクスが複数のディメンションをレポートする場合に発生します。この場合、そのデータポイントは当レポートにおいて複数回(各ディメンションで1回ずつ)カウントさ"
+"れています。"
#: ../../admin/subscription-usage/dpm-usage.rst:127
msgid "Average DPM: The data points per minute, averaged across the number of time series associated with the dimension name and value, and over the course of the 24 hour period represented by the date of the report."
@@ -9278,17 +9481,19 @@ msgstr "平均DPM:ディメンション名と値に関連付けられた時系
#: ../../admin/subscription-usage/dpm-usage.rst:129
msgid ""
-"Average Reporting Frequency for the Day: The time (in seconds) between successive data points, averaged across the number of time series associated with the dimension name and value, and over the course of the 24 hour period represented by the date of the report. For example: - a value of 10 means the data is sent every 10 seconds. It has a 10s frequency; - a value of 60 means that the data is sent every minute. It has a 1m frequency; - a value of 300 means that the data is "
-"sent every 5 minutes. It has a 5m frequency, as is the case with standard AWS CloudWatch metrics."
-msgstr "1日あたりの平均レポート頻度:連続するデータポイント間の時間(秒単位)で、ディメンション名と値に関連付けられた時系列数を、レポートの日付で表される24時間の期間にわたって平均したもの。例:値が10の場合は、データが10秒ごとに送信されていることを意味します。値が60の場合は、データが1分ごとに送信されていることを意味します。値が300の場合は、5分ごとにデータが送信されていることを意味します。標準的なAWS CloudWatchメトリクスの場合と同様に、頻度は5分です。"
+"Average Reporting Frequency for the Day: The time (in seconds) between successive data points, averaged across the number of time series associated with the dimension name and value, and over the course of the 24 hour period represented by the date of the report. For example: - a value of 10 means the data is sent every 10 seconds. "
+"It has a 10s frequency; - a value of 60 means that the data is sent every minute. It has a 1m frequency; - a value of 300 means that the data is sent every 5 minutes. It has a 5m frequency, as is the case with standard AWS CloudWatch metrics."
+msgstr ""
+"1日あたりの平均レポート頻度:連続するデータポイント間の時間(秒単位)で、ディメンション名と値に関連付けられた時系列数を、レポートの日付で表される24時間の期間にわたって平均したもの。例:値が10の場合は、データが10秒ごとに送信されていることを意味します。値が60の場合は、データが1分ごとに送信されていることを意味します。値が300の場合は、5"
+"分ごとにデータが送信されていることを意味します。標準的なAWS CloudWatchメトリクスの場合と同様に、頻度は5分です。"
#: ../../admin/subscription-usage/dpm-usage.rst:134
msgid ""
-"Frequency is calculated as an average across all of the time series associated with the relevant dimension value, rather than measured for each individual time series. As a result, it might contain outliers (for example, a time series that is reporting more slowly or with greater jitter or lag) that skew the average. For example, for data sent every 5 minutes (300 seconds), you might see a value of 280, or a value of 315. Treat frequency as an approximate value that guides "
-"what you do with your metrics, rather than a way of auditing the precise timing of them."
+"Frequency is calculated as an average across all of the time series associated with the relevant dimension value, rather than measured for each individual time series. As a result, it might contain outliers (for example, a time series that is reporting more slowly or with greater jitter or lag) that skew the average. For example, "
+"for data sent every 5 minutes (300 seconds), you might see a value of 280, or a value of 315. Treat frequency as an approximate value that guides what you do with your metrics, rather than a way of auditing the precise timing of them."
msgstr ""
-"頻度は、個々の時系列ごとに測定するのではなく、関連するディメンション値に関連付けられたすべての時系列の平均として計算されます。この結果、平均を歪めるような外れ値(例えば、レポートが遅かったりジッターやラグが大きかったりする時系列)が含まれることがあります。たとえば、5分(300秒)ごとに送信されるデータの場合、280という値が表示されることもあれば、315という値が表示されることもあります。頻度は、メトリクスの正確なタイミングを監査する方法としてではなく、メトリクスで何を行うかの指針"
-"とするためのおおよその値として扱います。"
+"頻度は、個々の時系列ごとに測定するのではなく、関連するディメンション値に関連付けられたすべての時系列の平均として計算されます。この結果、平均を歪めるような外れ値(例えば、レポートが遅かったりジッターやラグが大きかったりする時系列)が含まれることがあります。たとえば、5分(300秒)ごとに送信されるデータの場合、280という値が表示されること"
+"もあれば、315という値が表示されることもあります。頻度は、メトリクスの正確なタイミングを監査する方法としてではなく、メトリクスで何を行うかの指針とするためのおおよその値として扱います。"
#: ../../admin/subscription-usage/dpm-usage.rst:136
msgid "Number of Contributing Metric Time Series Which Were Created Today: The number of metric time series associated with the dimension name and value that are created over the course of the 24 hour period represented by the date of the report."
@@ -9299,16 +9504,24 @@ msgid "Using the report"
msgstr "レポートの使用"
#: ../../admin/subscription-usage/dpm-usage.rst:141
-msgid "Metric names: A good starting point for using the report is the ``sf_metric`` dimension. The dimension values are the names of the metrics being sent in, and you can see how much data is sent in for each metric and at what resolution. Armed with this information, you can decide whether you want to send in that metric to Splunk Infrastructure Monitoring, and if so, how often."
-msgstr "メトリクス名:レポートを使用するための良い出発点は、``sf_metric`` ディメンションです。このディメンション値は、送信されるメトリクスの名前であり、各メトリクスについて送信されるデータの量と解像度を確認できます。この情報をもとに、そのメトリクスをSplunk Infrastructure Monitoringに送信する必要があるかどうか、また、送信する場合はどのくらいの頻度で送信するかを決定できます。"
+msgid ""
+"Metric names: A good starting point for using the report is the ``sf_metric`` dimension. The dimension values are the names of the metrics being sent in, and you can see how much data is sent in for each metric and at what resolution. Armed with this information, you can decide whether you want to send in that metric to Splunk "
+"Infrastructure Monitoring, and if so, how often."
+msgstr ""
+"メトリクス名:レポートを使用するための良い出発点は、``sf_metric`` ディメンションです。このディメンション値は、送信されるメトリクスの名前であり、各メトリクスについて送信されるデータの量と解像度を確認できます。この情報をもとに、そのメトリクスをSplunk Infrastructure Monitoringに送信する必要があるかどうか、また、送信する場合はどのくらい"
+"の頻度で送信するかを決定できます。"
#: ../../admin/subscription-usage/dpm-usage.rst:143
msgid "Amazon Web Services: If you are using the Amazon Web Services integration, you should also look at the namespace dimension. The AWS integration lets you select the services for which you want data, such as AWS Cloudwatch, and the namespace values tell you how much data is sent in for each AWS service that is on."
msgstr "Amazon Web Services:Amazon Web Servicesのインテグレーションを使用している場合は、namespaceディメンションにも注目する必要があります。AWSインテグレーションでは、AWS Cloudwatchなど、データを必要とするサービスを選択でき、namespaceの値によって、有効になっているAWSサービスごとに、どれだけのデータが送信されているかがわかります。"
#: ../../admin/subscription-usage/dpm-usage.rst:145
-msgid "Hosts and instances: Finally, many people find the host, instanceId or similar dimensions worthwhile, as hosts or instances are often associated with different stages or environments. For example, you might decide that you want to have fewer metrics coming in from your test environment, and more from production. Knowing which hosts map to which stage or environment gives you insight into this question, and lets you manage your data submission accordingly."
-msgstr "ホストとインスタンス:最後に、ホストやインスタンスはさまざまなステージや環境に関連することが多いため、多くの人がホスト、インスタンスID、その他の類似したディメンションに価値を見出します。例えば、テスト環境から入ってくるメトリクスを減らし、本番環境から入ってくるメトリクスを増やしたいと考える人がいるかもしれません。どのホストがどのステージまたは環境にマッピングされるかを知ることで、この問題に対するインサイトが得られ、それに応じてデータ送信を管理できます。"
+msgid ""
+"Hosts and instances: Finally, many people find the host, instanceId or similar dimensions worthwhile, as hosts or instances are often associated with different stages or environments. For example, you might decide that you want to have fewer metrics coming in from your test environment, and more from production. Knowing which hosts "
+"map to which stage or environment gives you insight into this question, and lets you manage your data submission accordingly."
+msgstr ""
+"ホストとインスタンス:最後に、ホストやインスタンスはさまざまなステージや環境に関連することが多いため、多くの人がホスト、インスタンスID、その他の類似したディメンションに価値を見出します。例えば、テスト環境から入ってくるメトリクスを減らし、本番環境から入ってくるメトリクスを増やしたいと考える人がいるかもしれません。どのホストがどのス"
+"テージまたは環境にマッピングされるかを知ることで、この問題に対するインサイトが得られ、それに応じてデータ送信を管理できます。"
#: ../../admin/subscription-usage/dpm-usage.rst:150
msgid "On demand reports"
@@ -9335,8 +9548,12 @@ msgid "This pricing model is based on the rate at which you send datapoints to S
msgstr "この料金モデルは、Splunk Observability Cloudにデータポイントを送信するレートをベースとしており、1分あたりのデータポイント数(DPM)で測定されます。たとえば、10秒に1回ホストのCPU使用率を測定している場合、そのホスト/メトリクスの1つの組み合わせは6DPM分のレートとしてカウントされます。"
#: ../../admin/subscription-usage/dpm-usage.rst:166
-msgid "If your environment grows significantly after your initial sizing, then your DPM rate will grow as well. For example, if your subscription is sized for a 1,000 host environment but grows to 1,300 hosts, then your DPM rate will grow in proportion (all things being equal). Alternatively, if you send more metrics from the same set of sources, or if you send metric values more frequently, then DPM can also grow."
-msgstr "最初のサイジング後に環境が大幅に拡大した場合、DPMレートも同様に増加します。たとえば、サブスクリプションのサイズが1,000ホストの環境用に設定されている場合、ホスト数が1,300に増加すると、DPMレートもそれに比例して増加します(すべての条件が同じ場合)。あるいは、同じソースセットからより多くのメトリクスを送信した場合、またはメトリクス値をより頻繁に送信した場合にも、DPMが増加します。"
+msgid ""
+"If your environment grows significantly after your initial sizing, then your DPM rate will grow as well. For example, if your subscription is sized for a 1,000 host environment but grows to 1,300 hosts, then your DPM rate will grow in proportion (all things being equal). Alternatively, if you send more metrics from the same set of "
+"sources, or if you send metric values more frequently, then DPM can also grow."
+msgstr ""
+"最初のサイジング後に環境が大幅に拡大した場合、DPMレートも同様に増加します。たとえば、サブスクリプションのサイズが1,000ホストの環境用に設定されている場合、ホスト数が1,300に増加すると、DPMレートもそれに比例して増加します(すべての条件が同じ場合)。あるいは、同じソースセットからより多くのメトリクスを送信した場合、またはメトリクス値をよ"
+"り頻繁に送信した場合にも、DPMが増加します。"
#: ../../admin/subscription-usage/dpm-usage.rst:169
msgid "What is the user-visible impact when an account is limited?"
@@ -9407,8 +9624,11 @@ msgid "To calculate monthly usage for hosts and containers, Splunk Observability
msgstr "ホスト数とコンテナ数の月間使用量の計算について、Splunk Observability Cloudは、その月の各1時間にメトリクスを送信した一意のホストとコンテナの数をカウントします。次に、これらのカウントの平均を計算して、月間使用量を決定します。"
#: ../../admin/subscription-usage/imm-billing.rst:28
-msgid "To calculate monthly usage for custom and high-resolution metrics, Splunk Observability Cloud counts the number of metric time series (MTS) sent during each hour in the month. It then calculates the average of these counts to determine monthly usage. For details on the difference between metrics and Metric Time Series, see :ref:`get-started-metrics`."
-msgstr "カスタムメトリクスおよび高解像度メトリクスの月間使用量の計算について、Splunk Observability Cloudは、その月の各1時間に送信されたメトリック時系列(MTS)の数をカウントします。次に、これらのカウントの平均を計算して、月間使用量を決定します。メトリクスとメトリック時系列の違いについての詳細は、:ref:`get-started-metrics` を参照してください。"
+msgid ""
+"To calculate monthly usage for custom and high-resolution metrics, Splunk Observability Cloud counts the number of metric time series (MTS) sent during each hour in the month. It then calculates the average of these counts to determine monthly usage. For details on the difference between metrics and Metric Time Series, see :ref:`get-"
+"started-metrics`."
+msgstr ""
+"カスタムメトリクスおよび高解像度メトリクスの月間使用量の計算について、Splunk Observability Cloudは、その月の各1時間に送信されたメトリック時系列(MTS)の数をカウントします。次に、これらのカウントの平均を計算して、月間使用量を決定します。メトリクスとメトリック時系列の違いについての詳細は、:ref:`get-started-metrics` を参照してください。"
#: ../../admin/subscription-usage/imm-billing.rst:30
msgid "Overage fees apply to each type of object individually."
@@ -9695,7 +9915,9 @@ msgid "In :guilabel:`View detailed usage reports`, select the :guilabel:`Usage`
msgstr ":guilabel:`View detailed usage reports` で、:guilabel:`Usage` または :guilabel:`Usage Breakdown` タブを選択すると、利用可能なレポートをタブ区切りのテキストファイルとしてダウンロードできます。ブラウザによっては、レポートを右クリックして保存する必要があります。"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:92
-msgid "If you have switched from a DPM-based subscription plan to a plan based on the number of hosts or metrics you monitor with Infrastructure Monitoring, older reports on the :guilabel:`Usage` tab indicate that they represent DPM-based data. Reports on the :guilabel:`Usage Breakdown` tab are not available for dates before changing your subscription."
+msgid ""
+"If you have switched from a DPM-based subscription plan to a plan based on the number of hosts or metrics you monitor with Infrastructure Monitoring, older reports on the :guilabel:`Usage` tab indicate that they represent DPM-based data. Reports on the :guilabel:`Usage Breakdown` tab are not available for dates before changing your "
+"subscription."
msgstr "DPMベースのサブスクリプションプランから、Infrastructure Monitoringで監視するホスト数またはメトリクス数に基づくプランに切り替えた場合、:guilabel:`Usage` タブの古いレポートには、DPMベースのデータを表していることが示されます。:guilabel:`Usage Breakdown` タブのレポートは、サブスクリプションを変更する前の日付では利用できません。"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:97
@@ -9704,11 +9926,11 @@ msgstr "月間使用量レポート"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:99
msgid ""
-"This report is available on the :guilabel:`Usage` tab. For each hour within the month (or month to date, for the current month), this report shows the number of hosts and containers monitored and the number of custom metrics sent to Infrastructure Monitoring. This report follows your usage period and uses the month when a usage period starts as the label in the report link. For example, if your usage period begins on the 10th of the month, then a link for 'March 2022' "
-"covers from March 10 through April 9, 2022."
+"This report is available on the :guilabel:`Usage` tab. For each hour within the month (or month to date, for the current month), this report shows the number of hosts and containers monitored and the number of custom metrics sent to Infrastructure Monitoring. This report follows your usage period and uses the month when a usage "
+"period starts as the label in the report link. For example, if your usage period begins on the 10th of the month, then a link for 'March 2022' covers from March 10 through April 9, 2022."
msgstr ""
-"このレポートは、:guilabel:`Usage` タブで利用できます。このレポートには、その月内(今月については、月初めから現在の日付までの期間)の各時間について、監視対象のホストとコンテナの数、およびInfrastructure Monitoringに送信されたカスタムメトリクスの数が表示されます。このレポートは使用期間に従って表示され、使用期間の始まりの月をレポートリンクのラベルとして使用します。たとえば、使用期間がその月の10日から始まる場合、「2022年3月」のリンクは、2022年3月10日から4月9日までの期間をカバーし"
-"ます。"
+"このレポートは、:guilabel:`Usage` タブで利用できます。このレポートには、その月内(今月については、月初めから現在の日付までの期間)の各時間について、監視対象のホストとコンテナの数、およびInfrastructure Monitoringに送信されたカスタムメトリクスの数が表示されます。このレポートは使用期間に従って表示され、使用期間の始まりの月をレポートリン"
+"クのラベルとして使用します。たとえば、使用期間がその月の10日から始まる場合、「2022年3月」のリンクは、2022年3月10日から4月9日までの期間をカバーします。"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:101
msgid "You can use the monthly usage report to determine whether your usage is in line with your subscription plan. You can use the data to calculate your average usage, how many hours in the month you are over or under your plan, and by how much."
@@ -9752,7 +9974,9 @@ msgstr "カスタムメトリクス数"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:126
msgid "The number of metric time series (MTS) that Splunk Infrastructure Monitoring monitored during the specified hour. This includes archived metrics and histogram metrics. For billing purposes, 10 archived custom metrics count as 1 real-time custom metric, and 1 histogram custom metric counts as 8 real-time custom metrics."
-msgstr "指定した1時間にSplunk Infrastructure Monitoringが監視したメトリック時系列(MTS)の数。これにはアーカイブ済みメトリクスとヒストグラムメトリクスが含まれます。請求の目的で、アーカイブ済みカスタムメトリクス10個をリアルタイムカスタムメトリクス1個としてカウントし、ヒストグラムカスタムメトリクス1個をリアルタイムカスタムメトリクス8個としてカウントします。"
+msgstr ""
+"指定した1時間にSplunk Infrastructure Monitoringが監視したメトリック時系列(MTS)の数。これにはアーカイブ済みメトリクスとヒストグラムメトリクスが含まれます。請求の目的で、アーカイブ済みカスタムメトリクス10個をリアルタイムカスタムメトリクス1個としてカウントし、ヒストグラムカスタムメトリクス1個をリアルタイムカスタムメトリクス8個としてカ"
+"ウントします。"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:128
msgid "# Archived custom metrics"
@@ -9767,8 +9991,12 @@ msgid "Monthly usage report (multiple organizations)"
msgstr "月間使用量レポート(複数組織)"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:136
-msgid "If you have multiple organizations associated with your Infrastructure Monitoring subscription, an option for a summary report that includes information on multiple organizations is also available. Similar to the :ref:`summary-by-month`, this report shows hourly information for hosts, containers, and custom metrics. However, this report also includes this data for each organization associated with your subscription."
-msgstr "Infrastructure Monitoringサブスクリプションに複数の組織が関連付けられている場合は、複数の組織の情報を含むサマリーレポートのオプションも利用できます。このレポートには、:ref:`summary-by-month` と同様に、ホスト、コンテナ、カスタムメトリクスに関する時間ごとの情報が表示されます。ただし、このレポートには、サブスクリプションに関連付けられている各組織についてのこのデータも含まれます。"
+msgid ""
+"If you have multiple organizations associated with your Infrastructure Monitoring subscription, an option for a summary report that includes information on multiple organizations is also available. Similar to the :ref:`summary-by-month`, this report shows hourly information for hosts, containers, and custom metrics. However, this "
+"report also includes this data for each organization associated with your subscription."
+msgstr ""
+"Infrastructure Monitoringサブスクリプションに複数の組織が関連付けられている場合は、複数の組織の情報を含むサマリーレポートのオプションも利用できます。このレポートには、:ref:`summary-by-month` と同様に、ホスト、コンテナ、カスタムメトリクスに関する時間ごとの情報が表示されます。ただし、このレポートには、サブスクリプションに関連付けられて"
+"いる各組織についてのこのデータも含まれます。"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:141
msgid "Hourly usage detail report"
@@ -9967,8 +10195,12 @@ msgid "Older report format"
msgstr "旧レポート形式"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:240
-msgid "The :ref:`dimension-report` is a revised format of the report formerly called the Metrics by Dimension report. If you select a date for the Dimension report earlier than the new format's release, the report you download is formatted like the older Metrics by Dimension report. The old report format provides an aggregate view of the data; that is, it doesn't show different values for different usage metrics (host, container, and so on)."
-msgstr ":ref:`dimension-report` は、以前は「ディメンション別メトリクス」レポートと呼ばれていたレポートの改訂フォーマットです。ディメンションレポートの日付としてこの改訂フォーマットのリリース日より前の日付を選択した場合、ダウンロードするレポートは、古い「ディメンション別メトリクス」レポートのようなフォーマットになります。旧レポートフォーマットでは、データの集計ビューが提供されます。つまり、異なる使用量メトリクス(ホスト、コンテナなど)に対して異なる値は表示されません。"
+msgid ""
+"The :ref:`dimension-report` is a revised format of the report formerly called the Metrics by Dimension report. If you select a date for the Dimension report earlier than the new format's release, the report you download is formatted like the older Metrics by Dimension report. The old report format provides an aggregate view of the "
+"data; that is, it doesn't show different values for different usage metrics (host, container, and so on)."
+msgstr ""
+":ref:`dimension-report` は、以前は「ディメンション別メトリクス」レポートと呼ばれていたレポートの改訂フォーマットです。ディメンションレポートの日付としてこの改訂フォーマットのリリース日より前の日付を選択した場合、ダウンロードするレポートは、古い「ディメンション別メトリクス」レポートのようなフォーマットになります。旧レポートフォーマッ"
+"トでは、データの集計ビューが提供されます。つまり、異なる使用量メトリクス(ホスト、コンテナなど)に対して異なる値は表示されません。"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:246
msgid "Custom metric report"
@@ -9976,19 +10208,19 @@ msgstr "カスタムメトリクスレポート"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:248
msgid ""
-"Available on the :guilabel:`Usage Breakdown` tab, custom metric report shows the information on MTS associated with data points sent from hosts or containers, as well as information related to custom and bundled MTS, for a specified date. The content of most columns in this report represents the same kinds of values as the :ref:`dimension-report`, except that the information is broken down by metric name instead of by dimension name and value. Therefore, you can see how "
-"Infrastructure Monitoring is categorizing data associated with each metric."
+"Available on the :guilabel:`Usage Breakdown` tab, custom metric report shows the information on MTS associated with data points sent from hosts or containers, as well as information related to custom and bundled MTS, for a specified date. The content of most columns in this report represents the same kinds of values as "
+"the :ref:`dimension-report`, except that the information is broken down by metric name instead of by dimension name and value. Therefore, you can see how Infrastructure Monitoring is categorizing data associated with each metric."
msgstr ""
-"カスタムメトリクスレポートは、:guilabel:`Usage Breakdown` タブで使用でき、指定した日付の、ホストまたはコンテナから送信されたデータポイントに関連付けられたMTSに関する情報、およびカスタムMTSとバンドルMTSに関連する情報を表示します。このレポートの大部分の列の内容は、:ref:`dimension-report` と同じ種類の値を表しますが、情報の内訳がディメンション名と値ごとではなく、メトリクス名ごとになっている点が異なります。したがって、Infrastructure Monitoringが各メトリクスに関連するデータをどの"
-"ように分類しているかを確認できます。"
+"カスタムメトリクスレポートは、:guilabel:`Usage Breakdown` タブで使用でき、指定した日付の、ホストまたはコンテナから送信されたデータポイントに関連付けられたMTSに関する情報、およびカスタムMTSとバンドルMTSに関連する情報を表示します。このレポートの大部分の列の内容は、:ref:`dimension-report` と同じ種類の値を表しますが、情報の内訳がディメン"
+"ション名と値ごとではなく、メトリクス名ごとになっている点が異なります。したがって、Infrastructure Monitoringが各メトリクスに関連するデータをどのように分類しているかを確認できます。"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:250
msgid ""
-"A significant difference about this report is how you can use the No. |nbsp| Custom |nbsp| MTS column. For example, there is a nonzero value in this column. In that case, the metric is designated as a custom metric, and all MTS for this metric count towards the quota associated with your Infrastructure Monitoring plan. Knowing how many custom MTS your organization is sending can help you tune your usage accordingly. For example, you might notice some custom metrics that you "
-"no longer want to report to Infrastructure Monitoring. Conversely, you might decide to increase the number of custom metrics in your plan, so that you can avoid overage charges."
+"A significant difference about this report is how you can use the No. |nbsp| Custom |nbsp| MTS column. For example, there is a nonzero value in this column. In that case, the metric is designated as a custom metric, and all MTS for this metric count towards the quota associated with your Infrastructure Monitoring plan. Knowing how "
+"many custom MTS your organization is sending can help you tune your usage accordingly. For example, you might notice some custom metrics that you no longer want to report to Infrastructure Monitoring. Conversely, you might decide to increase the number of custom metrics in your plan, so that you can avoid overage charges."
msgstr ""
-"このレポートが他と大きく異なる点は、「 |nbsp| カスタム |nbsp| MTS数」列の利用方法です。たとえば、この列に非ゼロ値があるとします。この場合、メトリクスはカスタムメトリクスとして指定され、このメトリクスのすべてのMTSはご利用のInfrastructure Monitoringプランに関連付けられた割り当て量にカウントされます。組織が送信しているカスタムMTSの数を把握していれば、それに応じて使用量を調整するのに役立ちます。たとえば、Infrastructure Monitoringに今後レポートする必要のないカスタムメトリクスがあ"
-"ることに気づくかもしれません。逆に、超過料金を回避できるように、プランのカスタムメトリクスの数を増やすことを決定する場合もあるでしょう。"
+"このレポートが他と大きく異なる点は、「 |nbsp| カスタム |nbsp| MTS数」列の利用方法です。たとえば、この列に非ゼロ値があるとします。この場合、メトリクスはカスタムメトリクスとして指定され、このメトリクスのすべてのMTSはご利用のInfrastructure Monitoringプランに関連付けられた割り当て量にカウントされます。組織が送信しているカスタムMTSの数を"
+"把握していれば、それに応じて使用量を調整するのに役立ちます。たとえば、Infrastructure Monitoringに今後レポートする必要のないカスタムメトリクスがあることに気づくかもしれません。逆に、超過料金を回避できるように、プランのカスタムメトリクスの数を増やすことを決定する場合もあるでしょう。"
#: ../../admin/subscription-usage/monitor-imm-billing-usage.rst:255
msgid "On demand MTS usage reports"
@@ -10120,7 +10352,8 @@ msgstr "サブスクリプションの使用状況を表示する"
#: ../../admin/subscription-usage/rum-subscription-usage.rst:15
msgid "Splunk RUM offers three metrics you can use to track your subscription usage. You can use these metrics to create charts, dashboards, and set alerts. Usage data is based on a monthly cadence. To see how your usage compares to limits, see :ref:`rum-limits`."
-msgstr "Splunk RUMには、サブスクリプションの使用状況を追跡するために使用できる3つのメトリクスが用意されています。これらのメトリクスを使用して、チャートやダッシュボードを作成したり、アラートを設定したりできます。使用状況データは月次ケイデンスに基づきます。使用状況を制限と照らし合わせて確認する方法は、:ref:`rum-limits` を参照してください。"
+msgstr ""
+"Splunk RUMには、サブスクリプションの使用状況を追跡するために使用できる3つのメトリクスが用意されています。これらのメトリクスを使用して、チャートやダッシュボードを作成したり、アラートを設定したりできます。使用状況データは月次ケイデンスに基づきます。使用状況を制限と照らし合わせて確認する方法は、:ref:`rum-limits` を参照してください。"
#: ../../admin/subscription-usage/rum-subscription-usage.rst:17
msgid "Each metric has two dimensions:"
@@ -10372,14 +10605,19 @@ msgstr ":strong:`Enterprise Editionで利用できる機能です`"
#: ../../admin/user-management/roles/roles-and-capabilities-about.rst:25
msgid ""
-"Splunk Observability Clouds lets you restrict access to certain features to specific groups of users using role-based access control (RBAC). You assign roles to users. A role contains a set of capabilities. These capabilities define what actions are available to roles. For example, capabilities determine whether someone with a particular role has the capabilities to create detectors or dashboards. For details about each role and the associated capabilities, see :ref:`roles-"
-"table-phase`."
+"Splunk Observability Clouds lets you restrict access to certain features to specific groups of users using role-based access control (RBAC). You assign roles to users. A role contains a set of capabilities. These capabilities define what actions are available to roles. For example, capabilities determine whether someone with a "
+"particular role has the capabilities to create detectors or dashboards. For details about each role and the associated capabilities, see :ref:`roles-table-phase`."
msgstr ""
-"Splunk Observability Cloudでは、ロールベースのアクセス制御(RBAC)を使用して、特定の機能に対するアクセスを特定のユーザーグループに制限できます。ユーザーにロールを割り当てます。ロールには、権限のセットが含まれます。これらの権限は、ロールが利用できるアクションを定義します。たとえば、権限によって、特定のロールを持つ人がディテクターやダッシュボードを作成する能力を持つかどうかが決まります。各ロールと関連付けられた権限の詳細については、:ref:`roles-table-phase` を参照してください。"
+"Splunk Observability Cloudでは、ロールベースのアクセス制御(RBAC)を使用して、特定の機能に対するアクセスを特定のユーザーグループに制限できます。ユーザーにロールを割り当てます。ロールには、権限のセットが含まれます。これらの権限は、ロールが利用できるアクションを定義します。たとえば、権限によって、特定のロールを持つ人がディテクターや"
+"ダッシュボードを作成する能力を持つかどうかが決まります。各ロールと関連付けられた権限の詳細については、:ref:`roles-table-phase` を参照してください。"
#: ../../admin/user-management/roles/roles-and-capabilities-about.rst:27
-msgid "Roles provide restricted access. This supports scenarios where additional teams, such as external vendors or teams that might belong to other business units, only need read-only access. Use role-based access control to restrict users to the least-required capabilities, to meet compliance, business, or architectural requirements. By assigning the least required capabilities, you can help prevent users from making unwanted changes."
-msgstr "ロールは、制限付きのアクセスを提供します。これは、外部ベンダーや他のビジネスユニットに属する可能性のあるチームといった追加的チームが読み取り専用アクセスのみを必要とするシナリオをサポートします。ロールベースのアクセス制御を使用して、ユーザーを必要最小限の機能に制限し、コンプライアンス、ビジネス、またはアーキテクチャ上の要件を満たすことができます。必要最小限の機能を割り当てることで、ユーザーが不要な変更を加えてしまうことを防止できます。"
+msgid ""
+"Roles provide restricted access. This supports scenarios where additional teams, such as external vendors or teams that might belong to other business units, only need read-only access. Use role-based access control to restrict users to the least-required capabilities, to meet compliance, business, or architectural requirements. By "
+"assigning the least required capabilities, you can help prevent users from making unwanted changes."
+msgstr ""
+"ロールは、制限付きのアクセスを提供します。これは、外部ベンダーや他のビジネスユニットに属する可能性のあるチームといった追加的チームが読み取り専用アクセスのみを必要とするシナリオをサポートします。ロールベースのアクセス制御を使用して、ユーザーを必要最小限の機能に制限し、コンプライアンス、ビジネス、またはアーキテクチャ上の要件を満たすこ"
+"とができます。必要最小限の機能を割り当てることで、ユーザーが不要な変更を加えてしまうことを防止できます。"
#: ../../admin/user-management/roles/roles-and-capabilities-about.rst:29
msgid "Splunk Observability Cloud role-based access control aligns with roles available in Splunk Cloud Platform, providing a consistent user- and capability-based experience across Splunk Cloud Platform and Splunk Observability Cloud."
@@ -10422,8 +10660,12 @@ msgid "This role can access all pages and objects that a power user can, but can
msgstr "このロールは、power ユーザーがアクセスできるすべてのページとオブジェクトにアクセスできますが、オブジェクトの作成、編集、削除はできません。設定ページへのアクセスは制限されています。"
#: ../../admin/user-management/roles/roles-and-capabilities-about.rst:56
-msgid "Splunk Observability Cloud tokens also honor the role-based access control framework. Since tokens can now be assigned to roles, APIs inherit capabilities from their token. For example, an API using a token which is created with read-only role will inherit read-only permissions. This can be used to take system backups with a reduced risk of introducing changes."
-msgstr "Splunk Observability Cloudのトークンは、ロールベースのアクセス制御フレームワークにも対応しています。トークンをロールに割り当てることができるようになったため、APIはトークンから権限を継承します。例えば、読み取り専用のロールで作成されたトークンを使用するAPIは、読み取り専用の権限を継承します。これは、変更が加えられるリスクを低減しながらシステムのバックアップを取るために使用できます。"
+msgid ""
+"Splunk Observability Cloud tokens also honor the role-based access control framework. Since tokens can now be assigned to roles, APIs inherit capabilities from their token. For example, an API using a token which is created with read-only role will inherit read-only permissions. This can be used to take system backups with a reduced "
+"risk of introducing changes."
+msgstr ""
+"Splunk Observability Cloudのトークンは、ロールベースのアクセス制御フレームワークにも対応しています。トークンをロールに割り当てることができるようになったため、APIはトークンから権限を継承します。例えば、読み取り専用のロールで作成されたトークンを使用するAPIは、読み取り専用の権限を継承します。これは、変更が加えられるリスクを低減しながら"
+"システムのバックアップを取るために使用できます。"
#: ../../admin/user-management/roles/roles-and-capabilities-about.rst:65
msgid "Session token APIs inherit the user's role capabilities."
@@ -10446,7 +10688,9 @@ msgid "APIs using Session Token - Session Tokens inherit individual user's role
msgstr "セッショントークンを使用するAPI - セッショントークンは、個々のユーザーのロールの機能を継承します。"
#: ../../admin/user-management/roles/roles-and-capabilities-about.rst:72
-msgid "APIs using Org Tokens - Similar to users and teams, even org tokens can be assigned a predefined role and inherit those capabilities. For example, if you are taking system backups on a regular basis, you can use read-only org token APIs to take those backups without worrying about accidental changes with APIs that have full capabilities."
+msgid ""
+"APIs using Org Tokens - Similar to users and teams, even org tokens can be assigned a predefined role and inherit those capabilities. For example, if you are taking system backups on a regular basis, you can use read-only org token APIs to take those backups without worrying about accidental changes with APIs that have full "
+"capabilities."
msgstr "組織トークンを使用する API - ユーザーやチームと同様に、組織トークンにも事前に定義されたロールを割り当てることができ、その機能を継承することができます。例えば、定期的にシステムのバックアップを取る場合、読み取り専用の組織トークン API を使ってバックアップを取れば、全機能を持つAPIで誤って変更を加えてしまう心配がなくなります。"
#: ../../admin/user-management/roles/roles-and-capabilities-about.rst:86
@@ -10513,28 +10757,28 @@ msgstr "Splunk Observability Cloudでは、ロールベースのアクセス制
msgid "Metrics pipeline management"
msgstr "メトリクスパイプライン管理"
-#: ../../_includes/admin/roles_alerts_detectors.rst:7 ../../_includes/admin/roles_apm.rst:5 ../../_includes/admin/roles_dashbds_only.rst:6 ../../_includes/admin/roles_data_configuration.rst:5 ../../_includes/admin/roles_help_support.rst:6 ../../_includes/admin/roles_log_observer.rst:7 ../../_includes/admin/roles_mpm.rst:7 ../../_includes/admin/roles_navigation.rst:7 ../../_includes/admin/roles_navs_dashbds.rst:6 ../../_includes/admin/rum-roles-caps.rst:5
-#: ../../_includes/admin/synth-roles-caps.rst:5 ../../admin/user-management/teams/enhanced-team-security.rst:58
+#: ../../_includes/admin/roles_alerts_detectors.rst:7 ../../_includes/admin/roles_apm.rst:5 ../../_includes/admin/roles_dashbds_only.rst:6 ../../_includes/admin/roles_data_configuration.rst:5 ../../_includes/admin/roles_help_support.rst:6 ../../_includes/admin/roles_log_observer.rst:7 ../../_includes/admin/roles_mpm.rst:7
+#: ../../_includes/admin/roles_navigation.rst:7 ../../_includes/admin/roles_navs_dashbds.rst:6 ../../_includes/admin/rum-roles-caps.rst:5 ../../_includes/admin/synth-roles-caps.rst:5 ../../admin/user-management/teams/enhanced-team-security.rst:58
msgid ":strong:`Permission`"
msgstr ":strong:`アクセス許可`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:8 ../../_includes/admin/roles_apm.rst:6 ../../_includes/admin/roles_dashbds_only.rst:7 ../../_includes/admin/roles_data_configuration.rst:6 ../../_includes/admin/roles_help_support.rst:7 ../../_includes/admin/roles_log_observer.rst:8 ../../_includes/admin/roles_mpm.rst:8 ../../_includes/admin/roles_navigation.rst:8 ../../_includes/admin/roles_navs_dashbds.rst:7 ../../_includes/admin/rum-roles-caps.rst:6
-#: ../../_includes/admin/synth-roles-caps.rst:6
+#: ../../_includes/admin/roles_alerts_detectors.rst:8 ../../_includes/admin/roles_apm.rst:6 ../../_includes/admin/roles_dashbds_only.rst:7 ../../_includes/admin/roles_data_configuration.rst:6 ../../_includes/admin/roles_help_support.rst:7 ../../_includes/admin/roles_log_observer.rst:8 ../../_includes/admin/roles_mpm.rst:8
+#: ../../_includes/admin/roles_navigation.rst:8 ../../_includes/admin/roles_navs_dashbds.rst:7 ../../_includes/admin/rum-roles-caps.rst:6 ../../_includes/admin/synth-roles-caps.rst:6
msgid ":strong:`admin`"
msgstr ":strong:`admin`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:9 ../../_includes/admin/roles_apm.rst:7 ../../_includes/admin/roles_dashbds_only.rst:8 ../../_includes/admin/roles_data_configuration.rst:7 ../../_includes/admin/roles_help_support.rst:8 ../../_includes/admin/roles_log_observer.rst:9 ../../_includes/admin/roles_mpm.rst:9 ../../_includes/admin/roles_navigation.rst:9 ../../_includes/admin/roles_navs_dashbds.rst:8 ../../_includes/admin/rum-roles-caps.rst:7
-#: ../../_includes/admin/synth-roles-caps.rst:7
+#: ../../_includes/admin/roles_alerts_detectors.rst:9 ../../_includes/admin/roles_apm.rst:7 ../../_includes/admin/roles_dashbds_only.rst:8 ../../_includes/admin/roles_data_configuration.rst:7 ../../_includes/admin/roles_help_support.rst:8 ../../_includes/admin/roles_log_observer.rst:9 ../../_includes/admin/roles_mpm.rst:9
+#: ../../_includes/admin/roles_navigation.rst:9 ../../_includes/admin/roles_navs_dashbds.rst:8 ../../_includes/admin/rum-roles-caps.rst:7 ../../_includes/admin/synth-roles-caps.rst:7
msgid ":strong:`power`"
msgstr ":strong:`power`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:10 ../../_includes/admin/roles_apm.rst:8 ../../_includes/admin/roles_dashbds_only.rst:9 ../../_includes/admin/roles_data_configuration.rst:8 ../../_includes/admin/roles_help_support.rst:9 ../../_includes/admin/roles_log_observer.rst:10 ../../_includes/admin/roles_mpm.rst:10 ../../_includes/admin/roles_navigation.rst:10 ../../_includes/admin/roles_navs_dashbds.rst:9 ../../_includes/admin/rum-roles-caps.rst:8
-#: ../../_includes/admin/synth-roles-caps.rst:8
+#: ../../_includes/admin/roles_alerts_detectors.rst:10 ../../_includes/admin/roles_apm.rst:8 ../../_includes/admin/roles_dashbds_only.rst:9 ../../_includes/admin/roles_data_configuration.rst:8 ../../_includes/admin/roles_help_support.rst:9 ../../_includes/admin/roles_log_observer.rst:10 ../../_includes/admin/roles_mpm.rst:10
+#: ../../_includes/admin/roles_navigation.rst:10 ../../_includes/admin/roles_navs_dashbds.rst:9 ../../_includes/admin/rum-roles-caps.rst:8 ../../_includes/admin/synth-roles-caps.rst:8
msgid ":strong:`usage`"
msgstr ":strong:`usage`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:11 ../../_includes/admin/roles_apm.rst:9 ../../_includes/admin/roles_dashbds_only.rst:10 ../../_includes/admin/roles_data_configuration.rst:9 ../../_includes/admin/roles_help_support.rst:10 ../../_includes/admin/roles_log_observer.rst:11 ../../_includes/admin/roles_mpm.rst:11 ../../_includes/admin/roles_navigation.rst:11 ../../_includes/admin/roles_navs_dashbds.rst:10 ../../_includes/admin/rum-roles-caps.rst:9
-#: ../../_includes/admin/synth-roles-caps.rst:9
+#: ../../_includes/admin/roles_alerts_detectors.rst:11 ../../_includes/admin/roles_apm.rst:9 ../../_includes/admin/roles_dashbds_only.rst:10 ../../_includes/admin/roles_data_configuration.rst:9 ../../_includes/admin/roles_help_support.rst:10 ../../_includes/admin/roles_log_observer.rst:11 ../../_includes/admin/roles_mpm.rst:11
+#: ../../_includes/admin/roles_navigation.rst:11 ../../_includes/admin/roles_navs_dashbds.rst:10 ../../_includes/admin/rum-roles-caps.rst:9 ../../_includes/admin/synth-roles-caps.rst:9
msgid ":strong:`read_only`"
msgstr ":strong:`read_only`"
@@ -10542,31 +10786,41 @@ msgstr ":strong:`read_only`"
msgid ":strong:`View metrics pipeline management metric summary (no ruleset)`"
msgstr ":strong:`メトリクスパイプライン管理メトリクスサマリーを表示する(ルールセットなし)`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:15 ../../_includes/admin/roles_alerts_detectors.rst:16 ../../_includes/admin/roles_alerts_detectors.rst:17 ../../_includes/admin/roles_alerts_detectors.rst:18 ../../_includes/admin/roles_alerts_detectors.rst:22 ../../_includes/admin/roles_alerts_detectors.rst:23 ../../_includes/admin/roles_alerts_detectors.rst:28 ../../_includes/admin/roles_alerts_detectors.rst:29 ../../_includes/admin/roles_alerts_detectors.rst:34
-#: ../../_includes/admin/roles_alerts_detectors.rst:35 ../../_includes/admin/roles_alerts_detectors.rst:40 ../../_includes/admin/roles_alerts_detectors.rst:41 ../../_includes/admin/roles_alerts_detectors.rst:42 ../../_includes/admin/roles_alerts_detectors.rst:43 ../../_includes/admin/roles_alerts_detectors.rst:46 ../../_includes/admin/roles_alerts_detectors.rst:47 ../../_includes/admin/roles_alerts_detectors.rst:52 ../../_includes/admin/roles_alerts_detectors.rst:53
-#: ../../_includes/admin/roles_alerts_detectors.rst:58 ../../_includes/admin/roles_alerts_detectors.rst:59 ../../_includes/admin/roles_alerts_detectors.rst:64 ../../_includes/admin/roles_alerts_detectors.rst:65 ../../_includes/admin/roles_alerts_detectors.rst:70 ../../_includes/admin/roles_alerts_detectors.rst:71 ../../_includes/admin/roles_alerts_detectors.rst:76 ../../_includes/admin/roles_alerts_detectors.rst:77 ../../_includes/admin/roles_alerts_detectors.rst:78
-#: ../../_includes/admin/roles_alerts_detectors.rst:79 ../../_includes/admin/roles_alerts_detectors.rst:82 ../../_includes/admin/roles_alerts_detectors.rst:83 ../../_includes/admin/roles_alerts_detectors.rst:88 ../../_includes/admin/roles_alerts_detectors.rst:89 ../../_includes/admin/roles_alerts_detectors.rst:94 ../../_includes/admin/roles_alerts_detectors.rst:95 ../../_includes/admin/roles_alerts_detectors.rst:96 ../../_includes/admin/roles_alerts_detectors.rst:97
-#: ../../_includes/admin/roles_apm.rst:12 ../../_includes/admin/roles_apm.rst:13 ../../_includes/admin/roles_apm.rst:14 ../../_includes/admin/roles_apm.rst:15 ../../_includes/admin/roles_apm.rst:18 ../../_includes/admin/roles_apm.rst:24 ../../_includes/admin/roles_apm.rst:25 ../../_includes/admin/roles_apm.rst:26 ../../_includes/admin/roles_apm.rst:27 ../../_includes/admin/roles_apm.rst:30 ../../_includes/admin/roles_apm.rst:36 ../../_includes/admin/roles_apm.rst:37
-#: ../../_includes/admin/roles_apm.rst:38 ../../_includes/admin/roles_apm.rst:39 ../../_includes/admin/roles_apm.rst:42 ../../_includes/admin/roles_dashbds_only.rst:13 ../../_includes/admin/roles_dashbds_only.rst:14 ../../_includes/admin/roles_dashbds_only.rst:15 ../../_includes/admin/roles_dashbds_only.rst:16 ../../_includes/admin/roles_dashbds_only.rst:19 ../../_includes/admin/roles_dashbds_only.rst:20 ../../_includes/admin/roles_dashbds_only.rst:25
-#: ../../_includes/admin/roles_dashbds_only.rst:26 ../../_includes/admin/roles_data_configuration.rst:12 ../../_includes/admin/roles_data_configuration.rst:13 ../../_includes/admin/roles_data_configuration.rst:14 ../../_includes/admin/roles_data_configuration.rst:15 ../../_includes/admin/roles_data_configuration.rst:18 ../../_includes/admin/roles_data_configuration.rst:25 ../../_includes/admin/roles_data_configuration.rst:26
-#: ../../_includes/admin/roles_data_configuration.rst:27 ../../_includes/admin/roles_data_configuration.rst:28 ../../_includes/admin/roles_help_support.rst:13 ../../_includes/admin/roles_help_support.rst:14 ../../_includes/admin/roles_help_support.rst:15 ../../_includes/admin/roles_help_support.rst:16 ../../_includes/admin/roles_help_support.rst:19 ../../_includes/admin/roles_help_support.rst:20 ../../_includes/admin/roles_help_support.rst:21
-#: ../../_includes/admin/roles_help_support.rst:22 ../../_includes/admin/roles_log_observer.rst:15 ../../_includes/admin/roles_log_observer.rst:16 ../../_includes/admin/roles_log_observer.rst:17 ../../_includes/admin/roles_log_observer.rst:18 ../../_includes/admin/roles_log_observer.rst:22 ../../_includes/admin/roles_log_observer.rst:23 ../../_includes/admin/roles_log_observer.rst:24 ../../_includes/admin/roles_log_observer.rst:25
-#: ../../_includes/admin/roles_log_observer.rst:28 ../../_includes/admin/roles_log_observer.rst:29 ../../_includes/admin/roles_log_observer.rst:30 ../../_includes/admin/roles_log_observer.rst:31 ../../_includes/admin/roles_log_observer.rst:34 ../../_includes/admin/roles_log_observer.rst:35 ../../_includes/admin/roles_log_observer.rst:36 ../../_includes/admin/roles_log_observer.rst:37 ../../_includes/admin/roles_log_observer.rst:40
-#: ../../_includes/admin/roles_log_observer.rst:41 ../../_includes/admin/roles_log_observer.rst:46 ../../_includes/admin/roles_log_observer.rst:47 ../../_includes/admin/roles_log_observer.rst:48 ../../_includes/admin/roles_log_observer.rst:49 ../../_includes/admin/roles_log_observer.rst:52 ../../_includes/admin/roles_log_observer.rst:53 ../../_includes/admin/roles_log_observer.rst:58 ../../_includes/admin/roles_log_observer.rst:59
-#: ../../_includes/admin/roles_log_observer.rst:64 ../../_includes/admin/roles_log_observer.rst:65 ../../_includes/admin/roles_log_observer.rst:70 ../../_includes/admin/roles_log_observer.rst:71 ../../_includes/admin/roles_log_observer.rst:72 ../../_includes/admin/roles_log_observer.rst:76 ../../_includes/admin/roles_log_observer.rst:77 ../../_includes/admin/roles_log_observer.rst:82 ../../_includes/admin/roles_log_observer.rst:83
-#: ../../_includes/admin/roles_log_observer.rst:88 ../../_includes/admin/roles_log_observer.rst:94 ../../_includes/admin/roles_log_observer.rst:100 ../../_includes/admin/roles_log_observer.rst:102 ../../_includes/admin/roles_log_observer.rst:106 ../../_includes/admin/roles_mpm.rst:15 ../../_includes/admin/roles_mpm.rst:16 ../../_includes/admin/roles_mpm.rst:17 ../../_includes/admin/roles_mpm.rst:18 ../../_includes/admin/roles_mpm.rst:22 ../../_includes/admin/roles_mpm.rst:23
-#: ../../_includes/admin/roles_mpm.rst:24 ../../_includes/admin/roles_mpm.rst:25 ../../_includes/admin/roles_mpm.rst:28 ../../_includes/admin/roles_mpm.rst:34 ../../_includes/admin/roles_mpm.rst:35 ../../_includes/admin/roles_mpm.rst:40 ../../_includes/admin/roles_mpm.rst:41 ../../_includes/admin/roles_mpm.rst:46 ../../_includes/admin/roles_mpm.rst:47 ../../_includes/admin/roles_mpm.rst:52 ../../_includes/admin/roles_mpm.rst:53 ../../_includes/admin/roles_mpm.rst:58
-#: ../../_includes/admin/roles_mpm.rst:59 ../../_includes/admin/roles_mpm.rst:64 ../../_includes/admin/roles_mpm.rst:65 ../../_includes/admin/roles_mpm.rst:70 ../../_includes/admin/roles_navigation.rst:14 ../../_includes/admin/roles_navigation.rst:20 ../../_includes/admin/roles_navigation.rst:26 ../../_includes/admin/roles_navigation.rst:27 ../../_includes/admin/roles_navigation.rst:28 ../../_includes/admin/roles_navigation.rst:29 ../../_includes/admin/roles_navigation.rst:32
-#: ../../_includes/admin/roles_navigation.rst:38 ../../_includes/admin/roles_navigation.rst:40 ../../_includes/admin/roles_navigation.rst:44 ../../_includes/admin/roles_navigation.rst:45 ../../_includes/admin/roles_navigation.rst:46 ../../_includes/admin/roles_navigation.rst:47 ../../_includes/admin/roles_navigation.rst:50 ../../_includes/admin/roles_navigation.rst:56 ../../_includes/admin/roles_navigation.rst:57 ../../_includes/admin/roles_navigation.rst:58
-#: ../../_includes/admin/roles_navigation.rst:59 ../../_includes/admin/roles_navigation.rst:62 ../../_includes/admin/roles_navigation.rst:68 ../../_includes/admin/roles_navigation.rst:69 ../../_includes/admin/roles_navigation.rst:74 ../../_includes/admin/roles_navigation.rst:81 ../../_includes/admin/roles_navigation.rst:87 ../../_includes/admin/roles_navs_dashbds.rst:13 ../../_includes/admin/roles_navs_dashbds.rst:14 ../../_includes/admin/roles_navs_dashbds.rst:15
-#: ../../_includes/admin/roles_navs_dashbds.rst:16 ../../_includes/admin/roles_navs_dashbds.rst:19 ../../_includes/admin/roles_navs_dashbds.rst:20 ../../_includes/admin/roles_navs_dashbds.rst:25 ../../_includes/admin/rum-roles-caps.rst:12 ../../_includes/admin/rum-roles-caps.rst:13 ../../_includes/admin/rum-roles-caps.rst:14 ../../_includes/admin/rum-roles-caps.rst:15 ../../_includes/admin/rum-roles-caps.rst:18 ../../_includes/admin/rum-roles-caps.rst:19
-#: ../../_includes/admin/rum-roles-caps.rst:24 ../../_includes/admin/rum-roles-caps.rst:25 ../../_includes/admin/rum-roles-caps.rst:26 ../../_includes/admin/rum-roles-caps.rst:27 ../../_includes/admin/rum-roles-caps.rst:30 ../../_includes/admin/rum-roles-caps.rst:31 ../../_includes/admin/rum-roles-caps.rst:32 ../../_includes/admin/rum-roles-caps.rst:33 ../../_includes/admin/rum-roles-caps.rst:36 ../../_includes/admin/rum-roles-caps.rst:37
-#: ../../_includes/admin/rum-roles-caps.rst:38 ../../_includes/admin/rum-roles-caps.rst:39 ../../_includes/admin/rum-roles-caps.rst:42 ../../_includes/admin/rum-roles-caps.rst:43 ../../_includes/admin/rum-roles-caps.rst:44 ../../_includes/admin/rum-roles-caps.rst:45 ../../_includes/admin/rum-roles-caps.rst:48 ../../_includes/admin/rum-roles-caps.rst:49 ../../_includes/admin/rum-roles-caps.rst:50 ../../_includes/admin/rum-roles-caps.rst:51
-#: ../../_includes/admin/rum-roles-caps.rst:54 ../../_includes/admin/rum-roles-caps.rst:55 ../../_includes/admin/rum-roles-caps.rst:60 ../../_includes/admin/rum-roles-caps.rst:61 ../../_includes/admin/synth-roles-caps.rst:12 ../../_includes/admin/synth-roles-caps.rst:13 ../../_includes/admin/synth-roles-caps.rst:18 ../../_includes/admin/synth-roles-caps.rst:19 ../../_includes/admin/synth-roles-caps.rst:20 ../../_includes/admin/synth-roles-caps.rst:21
-#: ../../_includes/admin/synth-roles-caps.rst:25 ../../_includes/admin/synth-roles-caps.rst:31 ../../_includes/admin/synth-roles-caps.rst:32 ../../_includes/admin/synth-roles-caps.rst:33 ../../_includes/admin/synth-roles-caps.rst:34 ../../_includes/admin/synth-roles-caps.rst:37 ../../_includes/admin/synth-roles-caps.rst:43 ../../_includes/admin/synth-roles-caps.rst:49 ../../_includes/admin/synth-roles-caps.rst:54 ../../_includes/admin/synth-roles-caps.rst:55
-#: ../../_includes/admin/synth-roles-caps.rst:56 ../../_includes/admin/synth-roles-caps.rst:57 ../../admin/user-management/teams/enhanced-team-security.rst:65 ../../admin/user-management/teams/enhanced-team-security.rst:71 ../../admin/user-management/teams/enhanced-team-security.rst:77 ../../admin/user-management/teams/enhanced-team-security.rst:78 ../../admin/user-management/teams/enhanced-team-security.rst:79 ../../admin/user-management/teams/enhanced-team-security.rst:80
-#: ../../admin/user-management/teams/enhanced-team-security.rst:83 ../../admin/user-management/teams/enhanced-team-security.rst:84 ../../admin/user-management/teams/enhanced-team-security.rst:90 ../../admin/user-management/teams/enhanced-team-security.rst:97 ../../admin/user-management/teams/enhanced-team-security.rst:98 ../../admin/user-management/teams/enhanced-team-security.rst:105 ../../admin/user-management/teams/enhanced-team-security.rst:112
-#: ../../admin/user-management/teams/enhanced-team-security.rst:113 ../../admin/user-management/teams/enhanced-team-security.rst:118 ../../admin/user-management/teams/enhanced-team-security.rst:119 ../../admin/user-management/teams/enhanced-team-security.rst:120 ../../admin/user-management/teams/enhanced-team-security.rst:126 ../../admin/user-management/teams/enhanced-team-security.rst:127
+#: ../../_includes/admin/roles_alerts_detectors.rst:15 ../../_includes/admin/roles_alerts_detectors.rst:16 ../../_includes/admin/roles_alerts_detectors.rst:17 ../../_includes/admin/roles_alerts_detectors.rst:18 ../../_includes/admin/roles_alerts_detectors.rst:22 ../../_includes/admin/roles_alerts_detectors.rst:23
+#: ../../_includes/admin/roles_alerts_detectors.rst:28 ../../_includes/admin/roles_alerts_detectors.rst:29 ../../_includes/admin/roles_alerts_detectors.rst:34 ../../_includes/admin/roles_alerts_detectors.rst:35 ../../_includes/admin/roles_alerts_detectors.rst:40 ../../_includes/admin/roles_alerts_detectors.rst:41
+#: ../../_includes/admin/roles_alerts_detectors.rst:42 ../../_includes/admin/roles_alerts_detectors.rst:43 ../../_includes/admin/roles_alerts_detectors.rst:46 ../../_includes/admin/roles_alerts_detectors.rst:47 ../../_includes/admin/roles_alerts_detectors.rst:52 ../../_includes/admin/roles_alerts_detectors.rst:53
+#: ../../_includes/admin/roles_alerts_detectors.rst:58 ../../_includes/admin/roles_alerts_detectors.rst:59 ../../_includes/admin/roles_alerts_detectors.rst:64 ../../_includes/admin/roles_alerts_detectors.rst:65 ../../_includes/admin/roles_alerts_detectors.rst:70 ../../_includes/admin/roles_alerts_detectors.rst:71
+#: ../../_includes/admin/roles_alerts_detectors.rst:76 ../../_includes/admin/roles_alerts_detectors.rst:77 ../../_includes/admin/roles_alerts_detectors.rst:78 ../../_includes/admin/roles_alerts_detectors.rst:79 ../../_includes/admin/roles_alerts_detectors.rst:82 ../../_includes/admin/roles_alerts_detectors.rst:83
+#: ../../_includes/admin/roles_alerts_detectors.rst:88 ../../_includes/admin/roles_alerts_detectors.rst:89 ../../_includes/admin/roles_alerts_detectors.rst:94 ../../_includes/admin/roles_alerts_detectors.rst:95 ../../_includes/admin/roles_alerts_detectors.rst:96 ../../_includes/admin/roles_alerts_detectors.rst:97
+#: ../../_includes/admin/roles_apm.rst:12 ../../_includes/admin/roles_apm.rst:13 ../../_includes/admin/roles_apm.rst:14 ../../_includes/admin/roles_apm.rst:15 ../../_includes/admin/roles_apm.rst:18 ../../_includes/admin/roles_apm.rst:24 ../../_includes/admin/roles_apm.rst:25 ../../_includes/admin/roles_apm.rst:26
+#: ../../_includes/admin/roles_apm.rst:27 ../../_includes/admin/roles_apm.rst:30 ../../_includes/admin/roles_apm.rst:36 ../../_includes/admin/roles_apm.rst:37 ../../_includes/admin/roles_apm.rst:38 ../../_includes/admin/roles_apm.rst:39 ../../_includes/admin/roles_apm.rst:42 ../../_includes/admin/roles_dashbds_only.rst:13
+#: ../../_includes/admin/roles_dashbds_only.rst:14 ../../_includes/admin/roles_dashbds_only.rst:15 ../../_includes/admin/roles_dashbds_only.rst:16 ../../_includes/admin/roles_dashbds_only.rst:19 ../../_includes/admin/roles_dashbds_only.rst:20 ../../_includes/admin/roles_dashbds_only.rst:25
+#: ../../_includes/admin/roles_dashbds_only.rst:26 ../../_includes/admin/roles_data_configuration.rst:12 ../../_includes/admin/roles_data_configuration.rst:13 ../../_includes/admin/roles_data_configuration.rst:14 ../../_includes/admin/roles_data_configuration.rst:15 ../../_includes/admin/roles_data_configuration.rst:18
+#: ../../_includes/admin/roles_data_configuration.rst:25 ../../_includes/admin/roles_data_configuration.rst:26 ../../_includes/admin/roles_data_configuration.rst:27 ../../_includes/admin/roles_data_configuration.rst:28 ../../_includes/admin/roles_help_support.rst:13 ../../_includes/admin/roles_help_support.rst:14
+#: ../../_includes/admin/roles_help_support.rst:15 ../../_includes/admin/roles_help_support.rst:16 ../../_includes/admin/roles_help_support.rst:19 ../../_includes/admin/roles_help_support.rst:20 ../../_includes/admin/roles_help_support.rst:21 ../../_includes/admin/roles_help_support.rst:22
+#: ../../_includes/admin/roles_log_observer.rst:15 ../../_includes/admin/roles_log_observer.rst:16 ../../_includes/admin/roles_log_observer.rst:17 ../../_includes/admin/roles_log_observer.rst:18 ../../_includes/admin/roles_log_observer.rst:21 ../../_includes/admin/roles_log_observer.rst:22
+#: ../../_includes/admin/roles_log_observer.rst:23 ../../_includes/admin/roles_log_observer.rst:24 ../../_includes/admin/roles_log_observer.rst:27 ../../_includes/admin/roles_log_observer.rst:28 ../../_includes/admin/roles_log_observer.rst:29 ../../_includes/admin/roles_log_observer.rst:30
+#: ../../_includes/admin/roles_log_observer.rst:33 ../../_includes/admin/roles_log_observer.rst:34 ../../_includes/admin/roles_log_observer.rst:39 ../../_includes/admin/roles_log_observer.rst:40 ../../_includes/admin/roles_log_observer.rst:41 ../../_includes/admin/roles_log_observer.rst:42
+#: ../../_includes/admin/roles_log_observer.rst:45 ../../_includes/admin/roles_log_observer.rst:46 ../../_includes/admin/roles_log_observer.rst:47 ../../_includes/admin/roles_log_observer.rst:48 ../../_includes/admin/roles_log_observer.rst:51 ../../_includes/admin/roles_log_observer.rst:52
+#: ../../_includes/admin/roles_log_observer.rst:57 ../../_includes/admin/roles_log_observer.rst:58 ../../_includes/admin/roles_log_observer.rst:59 ../../_includes/admin/roles_log_observer.rst:63 ../../_includes/admin/roles_log_observer.rst:65 ../../_includes/admin/roles_log_observer.rst:69 ../../_includes/admin/roles_mpm.rst:15
+#: ../../_includes/admin/roles_mpm.rst:16 ../../_includes/admin/roles_mpm.rst:17 ../../_includes/admin/roles_mpm.rst:18 ../../_includes/admin/roles_mpm.rst:22 ../../_includes/admin/roles_mpm.rst:23 ../../_includes/admin/roles_mpm.rst:24 ../../_includes/admin/roles_mpm.rst:25 ../../_includes/admin/roles_mpm.rst:28
+#: ../../_includes/admin/roles_mpm.rst:34 ../../_includes/admin/roles_mpm.rst:35 ../../_includes/admin/roles_mpm.rst:40 ../../_includes/admin/roles_mpm.rst:41 ../../_includes/admin/roles_mpm.rst:46 ../../_includes/admin/roles_mpm.rst:47 ../../_includes/admin/roles_mpm.rst:52 ../../_includes/admin/roles_mpm.rst:53
+#: ../../_includes/admin/roles_mpm.rst:58 ../../_includes/admin/roles_mpm.rst:59 ../../_includes/admin/roles_mpm.rst:64 ../../_includes/admin/roles_mpm.rst:65 ../../_includes/admin/roles_mpm.rst:70 ../../_includes/admin/roles_navigation.rst:14 ../../_includes/admin/roles_navigation.rst:20 ../../_includes/admin/roles_navigation.rst:26
+#: ../../_includes/admin/roles_navigation.rst:27 ../../_includes/admin/roles_navigation.rst:28 ../../_includes/admin/roles_navigation.rst:29 ../../_includes/admin/roles_navigation.rst:32 ../../_includes/admin/roles_navigation.rst:38 ../../_includes/admin/roles_navigation.rst:40 ../../_includes/admin/roles_navigation.rst:44
+#: ../../_includes/admin/roles_navigation.rst:45 ../../_includes/admin/roles_navigation.rst:46 ../../_includes/admin/roles_navigation.rst:47 ../../_includes/admin/roles_navigation.rst:50 ../../_includes/admin/roles_navigation.rst:56 ../../_includes/admin/roles_navigation.rst:57 ../../_includes/admin/roles_navigation.rst:58
+#: ../../_includes/admin/roles_navigation.rst:59 ../../_includes/admin/roles_navigation.rst:62 ../../_includes/admin/roles_navigation.rst:68 ../../_includes/admin/roles_navigation.rst:69 ../../_includes/admin/roles_navigation.rst:74 ../../_includes/admin/roles_navigation.rst:81 ../../_includes/admin/roles_navigation.rst:87
+#: ../../_includes/admin/roles_navs_dashbds.rst:13 ../../_includes/admin/roles_navs_dashbds.rst:14 ../../_includes/admin/roles_navs_dashbds.rst:15 ../../_includes/admin/roles_navs_dashbds.rst:16 ../../_includes/admin/roles_navs_dashbds.rst:19 ../../_includes/admin/roles_navs_dashbds.rst:20
+#: ../../_includes/admin/roles_navs_dashbds.rst:25 ../../_includes/admin/rum-roles-caps.rst:12 ../../_includes/admin/rum-roles-caps.rst:13 ../../_includes/admin/rum-roles-caps.rst:14 ../../_includes/admin/rum-roles-caps.rst:15 ../../_includes/admin/rum-roles-caps.rst:18 ../../_includes/admin/rum-roles-caps.rst:19
+#: ../../_includes/admin/rum-roles-caps.rst:24 ../../_includes/admin/rum-roles-caps.rst:25 ../../_includes/admin/rum-roles-caps.rst:26 ../../_includes/admin/rum-roles-caps.rst:27 ../../_includes/admin/rum-roles-caps.rst:30 ../../_includes/admin/rum-roles-caps.rst:31 ../../_includes/admin/rum-roles-caps.rst:32
+#: ../../_includes/admin/rum-roles-caps.rst:33 ../../_includes/admin/rum-roles-caps.rst:36 ../../_includes/admin/rum-roles-caps.rst:37 ../../_includes/admin/rum-roles-caps.rst:38 ../../_includes/admin/rum-roles-caps.rst:39 ../../_includes/admin/rum-roles-caps.rst:42 ../../_includes/admin/rum-roles-caps.rst:43
+#: ../../_includes/admin/rum-roles-caps.rst:44 ../../_includes/admin/rum-roles-caps.rst:45 ../../_includes/admin/rum-roles-caps.rst:48 ../../_includes/admin/rum-roles-caps.rst:49 ../../_includes/admin/rum-roles-caps.rst:50 ../../_includes/admin/rum-roles-caps.rst:51 ../../_includes/admin/rum-roles-caps.rst:54
+#: ../../_includes/admin/rum-roles-caps.rst:55 ../../_includes/admin/rum-roles-caps.rst:60 ../../_includes/admin/rum-roles-caps.rst:61 ../../_includes/admin/synth-roles-caps.rst:12 ../../_includes/admin/synth-roles-caps.rst:13 ../../_includes/admin/synth-roles-caps.rst:18 ../../_includes/admin/synth-roles-caps.rst:19
+#: ../../_includes/admin/synth-roles-caps.rst:20 ../../_includes/admin/synth-roles-caps.rst:21 ../../_includes/admin/synth-roles-caps.rst:25 ../../_includes/admin/synth-roles-caps.rst:31 ../../_includes/admin/synth-roles-caps.rst:32 ../../_includes/admin/synth-roles-caps.rst:33 ../../_includes/admin/synth-roles-caps.rst:34
+#: ../../_includes/admin/synth-roles-caps.rst:37 ../../_includes/admin/synth-roles-caps.rst:43 ../../_includes/admin/synth-roles-caps.rst:49 ../../_includes/admin/synth-roles-caps.rst:54 ../../_includes/admin/synth-roles-caps.rst:55 ../../_includes/admin/synth-roles-caps.rst:56 ../../_includes/admin/synth-roles-caps.rst:57
+#: ../../admin/user-management/teams/enhanced-team-security.rst:65 ../../admin/user-management/teams/enhanced-team-security.rst:71 ../../admin/user-management/teams/enhanced-team-security.rst:77 ../../admin/user-management/teams/enhanced-team-security.rst:78 ../../admin/user-management/teams/enhanced-team-security.rst:79
+#: ../../admin/user-management/teams/enhanced-team-security.rst:80 ../../admin/user-management/teams/enhanced-team-security.rst:83 ../../admin/user-management/teams/enhanced-team-security.rst:84 ../../admin/user-management/teams/enhanced-team-security.rst:90 ../../admin/user-management/teams/enhanced-team-security.rst:97
+#: ../../admin/user-management/teams/enhanced-team-security.rst:98 ../../admin/user-management/teams/enhanced-team-security.rst:105 ../../admin/user-management/teams/enhanced-team-security.rst:112 ../../admin/user-management/teams/enhanced-team-security.rst:113 ../../admin/user-management/teams/enhanced-team-security.rst:119
+#: ../../admin/user-management/teams/enhanced-team-security.rst:120 ../../admin/user-management/teams/enhanced-team-security.rst:126 ../../admin/user-management/teams/enhanced-team-security.rst:127
msgid "Yes"
msgstr "あり"
@@ -10578,21 +10832,26 @@ msgstr ":strong:`メトリクスパイプライン管理メトリクスサマリ
msgid ":strong:`Edit default data routing`"
msgstr ":strong:`デフォルトデータルーティングを編集する`"
-#: ../../_includes/admin/roles_alerts_detectors.rst:24 ../../_includes/admin/roles_alerts_detectors.rst:25 ../../_includes/admin/roles_alerts_detectors.rst:30 ../../_includes/admin/roles_alerts_detectors.rst:31 ../../_includes/admin/roles_alerts_detectors.rst:36 ../../_includes/admin/roles_alerts_detectors.rst:37 ../../_includes/admin/roles_alerts_detectors.rst:48 ../../_includes/admin/roles_alerts_detectors.rst:49 ../../_includes/admin/roles_alerts_detectors.rst:54
-#: ../../_includes/admin/roles_alerts_detectors.rst:55 ../../_includes/admin/roles_alerts_detectors.rst:60 ../../_includes/admin/roles_alerts_detectors.rst:61 ../../_includes/admin/roles_alerts_detectors.rst:66 ../../_includes/admin/roles_alerts_detectors.rst:67 ../../_includes/admin/roles_alerts_detectors.rst:72 ../../_includes/admin/roles_alerts_detectors.rst:73 ../../_includes/admin/roles_alerts_detectors.rst:84 ../../_includes/admin/roles_alerts_detectors.rst:85
-#: ../../_includes/admin/roles_alerts_detectors.rst:90 ../../_includes/admin/roles_alerts_detectors.rst:91 ../../_includes/admin/roles_apm.rst:19 ../../_includes/admin/roles_apm.rst:20 ../../_includes/admin/roles_apm.rst:21 ../../_includes/admin/roles_apm.rst:31 ../../_includes/admin/roles_apm.rst:32 ../../_includes/admin/roles_apm.rst:33 ../../_includes/admin/roles_apm.rst:43 ../../_includes/admin/roles_apm.rst:44 ../../_includes/admin/roles_apm.rst:45
-#: ../../_includes/admin/roles_dashbds_only.rst:21 ../../_includes/admin/roles_dashbds_only.rst:22 ../../_includes/admin/roles_dashbds_only.rst:27 ../../_includes/admin/roles_dashbds_only.rst:28 ../../_includes/admin/roles_data_configuration.rst:19 ../../_includes/admin/roles_data_configuration.rst:20 ../../_includes/admin/roles_data_configuration.rst:21 ../../_includes/admin/roles_log_observer.rst:42 ../../_includes/admin/roles_log_observer.rst:43
-#: ../../_includes/admin/roles_log_observer.rst:54 ../../_includes/admin/roles_log_observer.rst:55 ../../_includes/admin/roles_log_observer.rst:60 ../../_includes/admin/roles_log_observer.rst:61 ../../_includes/admin/roles_log_observer.rst:66 ../../_includes/admin/roles_log_observer.rst:67 ../../_includes/admin/roles_log_observer.rst:73 ../../_includes/admin/roles_log_observer.rst:78 ../../_includes/admin/roles_log_observer.rst:79
-#: ../../_includes/admin/roles_log_observer.rst:84 ../../_includes/admin/roles_log_observer.rst:85 ../../_includes/admin/roles_log_observer.rst:89 ../../_includes/admin/roles_log_observer.rst:90 ../../_includes/admin/roles_log_observer.rst:91 ../../_includes/admin/roles_log_observer.rst:96 ../../_includes/admin/roles_log_observer.rst:97 ../../_includes/admin/roles_log_observer.rst:101 ../../_includes/admin/roles_log_observer.rst:103
-#: ../../_includes/admin/roles_log_observer.rst:107 ../../_includes/admin/roles_log_observer.rst:108 ../../_includes/admin/roles_log_observer.rst:109 ../../_includes/admin/roles_mpm.rst:29 ../../_includes/admin/roles_mpm.rst:30 ../../_includes/admin/roles_mpm.rst:31 ../../_includes/admin/roles_mpm.rst:36 ../../_includes/admin/roles_mpm.rst:37 ../../_includes/admin/roles_mpm.rst:42 ../../_includes/admin/roles_mpm.rst:43 ../../_includes/admin/roles_mpm.rst:48
-#: ../../_includes/admin/roles_mpm.rst:49 ../../_includes/admin/roles_mpm.rst:54 ../../_includes/admin/roles_mpm.rst:55 ../../_includes/admin/roles_mpm.rst:60 ../../_includes/admin/roles_mpm.rst:61 ../../_includes/admin/roles_mpm.rst:66 ../../_includes/admin/roles_mpm.rst:67 ../../_includes/admin/roles_mpm.rst:74 ../../_includes/admin/roles_mpm.rst:75 ../../_includes/admin/roles_navigation.rst:15 ../../_includes/admin/roles_navigation.rst:16
-#: ../../_includes/admin/roles_navigation.rst:17 ../../_includes/admin/roles_navigation.rst:21 ../../_includes/admin/roles_navigation.rst:22 ../../_includes/admin/roles_navigation.rst:23 ../../_includes/admin/roles_navigation.rst:33 ../../_includes/admin/roles_navigation.rst:34 ../../_includes/admin/roles_navigation.rst:35 ../../_includes/admin/roles_navigation.rst:39 ../../_includes/admin/roles_navigation.rst:41 ../../_includes/admin/roles_navigation.rst:51
-#: ../../_includes/admin/roles_navigation.rst:52 ../../_includes/admin/roles_navigation.rst:53 ../../_includes/admin/roles_navigation.rst:63 ../../_includes/admin/roles_navigation.rst:64 ../../_includes/admin/roles_navigation.rst:65 ../../_includes/admin/roles_navigation.rst:70 ../../_includes/admin/roles_navigation.rst:71 ../../_includes/admin/roles_navigation.rst:77 ../../_includes/admin/roles_navigation.rst:78 ../../_includes/admin/roles_navigation.rst:83
-#: ../../_includes/admin/roles_navigation.rst:84 ../../_includes/admin/roles_navigation.rst:88 ../../_includes/admin/roles_navigation.rst:89 ../../_includes/admin/roles_navigation.rst:90 ../../_includes/admin/roles_navs_dashbds.rst:21 ../../_includes/admin/roles_navs_dashbds.rst:22 ../../_includes/admin/roles_navs_dashbds.rst:26 ../../_includes/admin/roles_navs_dashbds.rst:27 ../../_includes/admin/roles_navs_dashbds.rst:28 ../../_includes/admin/rum-roles-caps.rst:20
-#: ../../_includes/admin/rum-roles-caps.rst:21 ../../_includes/admin/rum-roles-caps.rst:56 ../../_includes/admin/rum-roles-caps.rst:57 ../../_includes/admin/rum-roles-caps.rst:62 ../../_includes/admin/rum-roles-caps.rst:63 ../../_includes/admin/synth-roles-caps.rst:14 ../../_includes/admin/synth-roles-caps.rst:15 ../../_includes/admin/synth-roles-caps.rst:26 ../../_includes/admin/synth-roles-caps.rst:27 ../../_includes/admin/synth-roles-caps.rst:28
-#: ../../_includes/admin/synth-roles-caps.rst:38 ../../_includes/admin/synth-roles-caps.rst:39 ../../_includes/admin/synth-roles-caps.rst:40 ../../_includes/admin/synth-roles-caps.rst:44 ../../_includes/admin/synth-roles-caps.rst:45 ../../_includes/admin/synth-roles-caps.rst:46 ../../_includes/admin/synth-roles-caps.rst:50 ../../_includes/admin/synth-roles-caps.rst:51 ../../_includes/admin/synth-roles-caps.rst:52 ../../admin/user-management/teams/enhanced-team-security.rst:66
-#: ../../admin/user-management/teams/enhanced-team-security.rst:67 ../../admin/user-management/teams/enhanced-team-security.rst:68 ../../admin/user-management/teams/enhanced-team-security.rst:72 ../../admin/user-management/teams/enhanced-team-security.rst:73 ../../admin/user-management/teams/enhanced-team-security.rst:74 ../../admin/user-management/teams/enhanced-team-security.rst:87 ../../admin/user-management/teams/enhanced-team-security.rst:99
-#: ../../admin/user-management/teams/enhanced-team-security.rst:100 ../../admin/user-management/teams/enhanced-team-security.rst:114 ../../admin/user-management/teams/enhanced-team-security.rst:115 ../../admin/user-management/teams/enhanced-team-security.rst:121
+#: ../../_includes/admin/roles_alerts_detectors.rst:24 ../../_includes/admin/roles_alerts_detectors.rst:25 ../../_includes/admin/roles_alerts_detectors.rst:30 ../../_includes/admin/roles_alerts_detectors.rst:31 ../../_includes/admin/roles_alerts_detectors.rst:36 ../../_includes/admin/roles_alerts_detectors.rst:37
+#: ../../_includes/admin/roles_alerts_detectors.rst:48 ../../_includes/admin/roles_alerts_detectors.rst:49 ../../_includes/admin/roles_alerts_detectors.rst:54 ../../_includes/admin/roles_alerts_detectors.rst:55 ../../_includes/admin/roles_alerts_detectors.rst:60 ../../_includes/admin/roles_alerts_detectors.rst:61
+#: ../../_includes/admin/roles_alerts_detectors.rst:66 ../../_includes/admin/roles_alerts_detectors.rst:67 ../../_includes/admin/roles_alerts_detectors.rst:72 ../../_includes/admin/roles_alerts_detectors.rst:73 ../../_includes/admin/roles_alerts_detectors.rst:84 ../../_includes/admin/roles_alerts_detectors.rst:85
+#: ../../_includes/admin/roles_alerts_detectors.rst:90 ../../_includes/admin/roles_alerts_detectors.rst:91 ../../_includes/admin/roles_apm.rst:19 ../../_includes/admin/roles_apm.rst:20 ../../_includes/admin/roles_apm.rst:21 ../../_includes/admin/roles_apm.rst:31 ../../_includes/admin/roles_apm.rst:32
+#: ../../_includes/admin/roles_apm.rst:33 ../../_includes/admin/roles_apm.rst:43 ../../_includes/admin/roles_apm.rst:44 ../../_includes/admin/roles_apm.rst:45 ../../_includes/admin/roles_dashbds_only.rst:21 ../../_includes/admin/roles_dashbds_only.rst:22 ../../_includes/admin/roles_dashbds_only.rst:27
+#: ../../_includes/admin/roles_dashbds_only.rst:28 ../../_includes/admin/roles_data_configuration.rst:19 ../../_includes/admin/roles_data_configuration.rst:20 ../../_includes/admin/roles_data_configuration.rst:21 ../../_includes/admin/roles_log_observer.rst:35 ../../_includes/admin/roles_log_observer.rst:36
+#: ../../_includes/admin/roles_log_observer.rst:53 ../../_includes/admin/roles_log_observer.rst:54 ../../_includes/admin/roles_log_observer.rst:60 ../../_includes/admin/roles_log_observer.rst:64 ../../_includes/admin/roles_log_observer.rst:66 ../../_includes/admin/roles_log_observer.rst:70
+#: ../../_includes/admin/roles_log_observer.rst:71 ../../_includes/admin/roles_log_observer.rst:72 ../../_includes/admin/roles_mpm.rst:29 ../../_includes/admin/roles_mpm.rst:30 ../../_includes/admin/roles_mpm.rst:31 ../../_includes/admin/roles_mpm.rst:36 ../../_includes/admin/roles_mpm.rst:37 ../../_includes/admin/roles_mpm.rst:42
+#: ../../_includes/admin/roles_mpm.rst:43 ../../_includes/admin/roles_mpm.rst:48 ../../_includes/admin/roles_mpm.rst:49 ../../_includes/admin/roles_mpm.rst:54 ../../_includes/admin/roles_mpm.rst:55 ../../_includes/admin/roles_mpm.rst:60 ../../_includes/admin/roles_mpm.rst:61 ../../_includes/admin/roles_mpm.rst:66
+#: ../../_includes/admin/roles_mpm.rst:67 ../../_includes/admin/roles_mpm.rst:74 ../../_includes/admin/roles_mpm.rst:75 ../../_includes/admin/roles_navigation.rst:15 ../../_includes/admin/roles_navigation.rst:16 ../../_includes/admin/roles_navigation.rst:17 ../../_includes/admin/roles_navigation.rst:21
+#: ../../_includes/admin/roles_navigation.rst:22 ../../_includes/admin/roles_navigation.rst:23 ../../_includes/admin/roles_navigation.rst:33 ../../_includes/admin/roles_navigation.rst:34 ../../_includes/admin/roles_navigation.rst:35 ../../_includes/admin/roles_navigation.rst:39 ../../_includes/admin/roles_navigation.rst:41
+#: ../../_includes/admin/roles_navigation.rst:51 ../../_includes/admin/roles_navigation.rst:52 ../../_includes/admin/roles_navigation.rst:53 ../../_includes/admin/roles_navigation.rst:63 ../../_includes/admin/roles_navigation.rst:64 ../../_includes/admin/roles_navigation.rst:65 ../../_includes/admin/roles_navigation.rst:70
+#: ../../_includes/admin/roles_navigation.rst:71 ../../_includes/admin/roles_navigation.rst:77 ../../_includes/admin/roles_navigation.rst:78 ../../_includes/admin/roles_navigation.rst:83 ../../_includes/admin/roles_navigation.rst:84 ../../_includes/admin/roles_navigation.rst:88 ../../_includes/admin/roles_navigation.rst:89
+#: ../../_includes/admin/roles_navigation.rst:90 ../../_includes/admin/roles_navs_dashbds.rst:21 ../../_includes/admin/roles_navs_dashbds.rst:22 ../../_includes/admin/roles_navs_dashbds.rst:26 ../../_includes/admin/roles_navs_dashbds.rst:27 ../../_includes/admin/roles_navs_dashbds.rst:28 ../../_includes/admin/rum-roles-caps.rst:20
+#: ../../_includes/admin/rum-roles-caps.rst:21 ../../_includes/admin/rum-roles-caps.rst:56 ../../_includes/admin/rum-roles-caps.rst:57 ../../_includes/admin/rum-roles-caps.rst:62 ../../_includes/admin/rum-roles-caps.rst:63 ../../_includes/admin/synth-roles-caps.rst:14 ../../_includes/admin/synth-roles-caps.rst:15
+#: ../../_includes/admin/synth-roles-caps.rst:26 ../../_includes/admin/synth-roles-caps.rst:27 ../../_includes/admin/synth-roles-caps.rst:28 ../../_includes/admin/synth-roles-caps.rst:38 ../../_includes/admin/synth-roles-caps.rst:39 ../../_includes/admin/synth-roles-caps.rst:40 ../../_includes/admin/synth-roles-caps.rst:44
+#: ../../_includes/admin/synth-roles-caps.rst:45 ../../_includes/admin/synth-roles-caps.rst:46 ../../_includes/admin/synth-roles-caps.rst:50 ../../_includes/admin/synth-roles-caps.rst:51 ../../_includes/admin/synth-roles-caps.rst:52 ../../admin/user-management/teams/enhanced-team-security.rst:66
+#: ../../admin/user-management/teams/enhanced-team-security.rst:67 ../../admin/user-management/teams/enhanced-team-security.rst:68 ../../admin/user-management/teams/enhanced-team-security.rst:72 ../../admin/user-management/teams/enhanced-team-security.rst:73 ../../admin/user-management/teams/enhanced-team-security.rst:74
+#: ../../admin/user-management/teams/enhanced-team-security.rst:87 ../../admin/user-management/teams/enhanced-team-security.rst:99 ../../admin/user-management/teams/enhanced-team-security.rst:100 ../../admin/user-management/teams/enhanced-team-security.rst:114 ../../admin/user-management/teams/enhanced-team-security.rst:115
+#: ../../admin/user-management/teams/enhanced-team-security.rst:121
msgid "No"
msgstr "なし"
@@ -10626,77 +10885,51 @@ msgstr ":strong:`メトリクスパイプライン管理ルールセット全体
#: ../../_includes/admin/roles_mpm.rst:71
msgid "Yes, if default routing is real-time storage and the user deletes all aggregation rules. No, if default routing is Drop Data and the user deletes all aggregation rules. Metrics pipeline management doesn't delete the ruleset. An Admin needs to change the routing to real-time storage and delete the ruleset."
-msgstr "デフォルトのルーティングがリアルタイムストレージで、ユーザーがすべての集計ルールを削除する場合は、権限あり。デフォルトのルーティングが[Drop Data]で、ユーザーがすべての集計ルールを削除する場合は、権限なし。メトリクスパイプライン管理は、ルールセットの削除はしません。管理者がルーティングをリアルタイムストレージに変更して、ルールセットを削除する必要があります。"
+msgstr ""
+"デフォルトのルーティングがリアルタイムストレージで、ユーザーがすべての集計ルールを削除する場合は、権限あり。デフォルトのルーティングが[Drop Data]で、ユーザーがすべての集計ルールを削除する場合は、権限なし。メトリクスパイプライン管理は、ルールセットの削除はしません。管理者がルーティングをリアルタイムストレージに変更して、ルールセット"
+"を削除する必要があります。"
#: ../../admin/user-management/roles/roles-and-capabilities-table.rst:36
-msgid "Log Observer and Log Observer Connect"
-msgstr "Log ObserverとLog Observer Connect"
+msgid "Log Observer Connect"
+msgstr "Log Observer Connect"
#: ../../_includes/admin/roles_log_observer.rst:14
msgid ":strong:`View Timeline`"
msgstr ":strong:`Timelineの表示`"
-#: ../../_includes/admin/roles_log_observer.rst:21
-msgid ":strong:`Live Tail`"
-msgstr ":strong:`Live Tail`"
-
-#: ../../_includes/admin/roles_log_observer.rst:27
+#: ../../_includes/admin/roles_log_observer.rst:20
msgid ":strong:`Search and filter logs`"
msgstr ":strong:`ログを検索およびフィルターする`"
-#: ../../_includes/admin/roles_log_observer.rst:33
+#: ../../_includes/admin/roles_log_observer.rst:26
msgid ":strong:`Aggregate logs`"
msgstr ":strong:`ログを集計する`"
-#: ../../_includes/admin/roles_log_observer.rst:39
+#: ../../_includes/admin/roles_log_observer.rst:32
msgid ":strong:`Create and manage field aliases`"
msgstr ":strong:`フィールドエイリアスを作成および管理する`"
-#: ../../_includes/admin/roles_log_observer.rst:45
+#: ../../_includes/admin/roles_log_observer.rst:38
+msgid ":strong:`View field aliases`"
+msgstr ":strong:`フィールドエイリアスを表示する`"
+
+#: ../../_includes/admin/roles_log_observer.rst:44
msgid ":strong:`View individual log details`"
msgstr ":strong:`個々のログの詳細を表示する`"
-#: ../../_includes/admin/roles_log_observer.rst:51
-msgid ":strong:`Create and manage log processing rules`"
-msgstr ":strong:`ログ処理ルールを作成および管理する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:57
-msgid ":strong:`Apply processing rules across historical data`"
-msgstr ":strong:`過去のデータに処理ルールを適用する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:63
+#: ../../_includes/admin/roles_log_observer.rst:50
msgid ":strong:`Save and share Log Observer queries`"
msgstr ":strong:`Log Observer クエリを保存および共有する`"
-#: ../../_includes/admin/roles_log_observer.rst:69
+#: ../../_includes/admin/roles_log_observer.rst:56
msgid ":strong:`Add logs data to Splunk Observability Cloud dashboards`"
msgstr ":strong:`ログデータを Splunk Observability Cloud ダッシュボードに追加する`"
-#: ../../_includes/admin/roles_log_observer.rst:75
-msgid ":strong:`Transform data with log processing rules`"
-msgstr ":strong:`ログ処理ルールでデータを変換する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:81
-msgid ":strong:`Create and manage log metricization rules`"
-msgstr ":strong:`ログのメトリクス化ルールを作成および管理する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:87
-msgid ":strong:`Create new S3 connection to allow infinite logging rules`"
-msgstr ":strong:`無限のロギングルールを可能にする新しい S3 接続を作成する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:93
-msgid ":strong:`Create and manage infinite logging rules`"
-msgstr ":strong:`無限のロギングルールを作成および管理する`"
-
-#: ../../_includes/admin/roles_log_observer.rst:95
-msgid "Yes - after admin creates S3 connection"
-msgstr "権限あり - 管理者がS3接続を作成した後"
-
-#: ../../_includes/admin/roles_log_observer.rst:99 ../../_includes/admin/roles_navigation.rst:37
+#: ../../_includes/admin/roles_log_observer.rst:62 ../../_includes/admin/roles_navigation.rst:37
msgid ":strong:`View org subscription usage`"
msgstr ":strong:`組織のサブスクリプション使用状況を表示する`"
-#: ../../_includes/admin/roles_log_observer.rst:105
+#: ../../_includes/admin/roles_log_observer.rst:68
msgid ":strong:`Set up Log Observer Connect connection to Splunk platform`"
msgstr ":strong:`SplunkプラットフォームへのLog Observer Connectの接続のセットアップ`"
@@ -10906,7 +11139,9 @@ msgstr "一般設定"
#: ../../admin/user-management/roles/roles-and-capabilities-table.rst:174
msgid "If :ref:`enhanced team security ` is enabled, some of these permissions may change if a user is also designated as a Team Manager. Team Manager is not part of RBAC; it provides a user with additional permissions for managing a specific team. For details, see :ref:`about-team-roles`."
-msgstr ":ref:`チームセキュリティの強化` が有効になっている場合、あるユーザーが「チームマネージャー」としても指定されていると、これらの権限の一部が変わる可能性があります。「チームマネージャー」はRBACの一部ではなく、特定のチームを管理するための追加権限をユーザーに提供するものです。詳細については、:ref:`about-team-roles` を参照してください。"
+msgstr ""
+":ref:`チームセキュリティの強化` が有効になっている場合、あるユーザーが「チームマネージャー」としても指定されていると、これらの権限の一部が変わる可能性があります。「チームマネージャー」はRBACの一部ではなく、特定のチームを管理するための追加権限をユーザーに提供するものです。詳細については、:ref:`about-team-"
+"roles` を参照してください。"
#: ../../_includes/admin/roles_navigation.rst:13
msgid ":strong:`View General Settings`"
@@ -11388,7 +11623,8 @@ msgstr "任意のチームのランディングページを見るには、以下
msgid "In the left navigation menu, select :menuselection:`Settings` then :menuselection:`Teams`."
msgstr "左のナビゲーションメニューで、:menuselection:`Settings` を選択し、:menuselection:`Teams` を選択します。"
-#: ../../admin/user-management/teams/configure-page.rst:34 ../../admin/user-management/teams/manage-membership.rst:52 ../../admin/user-management/teams/manage-membership.rst:74 ../../admin/user-management/teams/manage-membership.rst:98 ../../admin/user-management/teams/manage-membership.rst:121 ../../admin/user-management/teams/manage-membership.rst:141
+#: ../../admin/user-management/teams/configure-page.rst:34 ../../admin/user-management/teams/manage-membership.rst:52 ../../admin/user-management/teams/manage-membership.rst:74 ../../admin/user-management/teams/manage-membership.rst:98 ../../admin/user-management/teams/manage-membership.rst:121
+#: ../../admin/user-management/teams/manage-membership.rst:141
msgid "A table of current teams appears in the main panel."
msgstr "メインパネルに現在のチームの表が表示されます。"
@@ -11485,8 +11721,12 @@ msgid "By default, every user can join any team in your organization. If you wan
msgstr "デフォルトでは、すべてのユーザーが組織内のどのチームにも参加できます。ユーザーが任意のチームに参加できないように制限したい場合は、チームセキュリティの強化設定を有効にできます。また、チームセキュリティの強化設定を有効にすると、「チームマネージャー」ロールがチームで使用できるようになります。"
#: ../../admin/user-management/teams/enhanced-team-security.rst:28
-msgid "Team Manager role is not part of role-based access control (RBAC). The Team Manager role allows an individual to run administrative tasks for the team. For example, editing the team description, adding or removing team members, and modifying the team notification policies. These permissions apply only to the team they are a member of and do not apply across the entire organization."
-msgstr "「チームマネージャー」ロールは、ロールベースのアクセス制御(RBAC)の一部ではありません。「チームマネージャー」ロールは、ある個人に対してチームの管理タスクを実行することを許可するものです。例えば、チームの説明の編集、チームメンバーの追加または削除、チームの通知ポリシーの変更などです。これらの権限は、「チームマネージャー」が所属するチームにのみ適用され、組織全体には適用されません。"
+msgid ""
+"Team Manager role is not part of role-based access control (RBAC). The Team Manager role allows an individual to run administrative tasks for the team. For example, editing the team description, adding or removing team members, and modifying the team notification policies. These permissions apply only to the team they are a member "
+"of and do not apply across the entire organization."
+msgstr ""
+"「チームマネージャー」ロールは、ロールベースのアクセス制御(RBAC)の一部ではありません。「チームマネージャー」ロールは、ある個人に対してチームの管理タスクを実行することを許可するものです。例えば、チームの説明の編集、チームメンバーの追加または削除、チームの通知ポリシーの変更などです。これらの権限は、「チームマネージャー」が所属する"
+"チームにのみ適用され、組織全体には適用されません。"
#: ../../admin/user-management/teams/enhanced-team-security.rst:30
msgid "To learn more about team roles and permissions, see :ref:`about-team-roles`."
@@ -11514,7 +11754,9 @@ msgstr "チームのロールと権限"
#: ../../admin/user-management/teams/enhanced-team-security.rst:48
msgid "This table presents the available team roles and their permissions. Some team roles and permissions change based on whether enhanced team security is turned on. For example, when you turn on enhanced team security, the Team Manager role is available, and Splunk Observability Cloud administrators or Team Managers must add users."
-msgstr "次の表は、使用可能なチームのロールとその権限を示しています。一部のチームロールおよび権限は、チームセキュリティの強化が有効になっているかどうかによって変わります。たとえば、チームセキュリティの強化を有効にしていると、「チームマネージャー」ロールが使用可能になり、ユーザーの追加はSplunk Observability Cloudの管理者または「チームマネージャー」が行う必要があります。"
+msgstr ""
+"次の表は、使用可能なチームのロールとその権限を示しています。一部のチームロールおよび権限は、チームセキュリティの強化が有効になっているかどうかによって変わります。たとえば、チームセキュリティの強化を有効にしていると、「チームマネージャー」ロールが使用可能になり、ユーザーの追加はSplunk Observability Cloudの管理者または「チームマネー"
+"ジャー」が行う必要があります。"
#: ../../admin/user-management/teams/enhanced-team-security.rst:50
msgid "You can't promote a team member with the ``read_only`` RBAC role to team manager. For more information about RBAC roles, see :ref:`about-team-roles`."
@@ -11592,14 +11834,14 @@ msgstr "チームセキュリティの強化が有効になっている場合は
msgid ":strong:`Remove member`"
msgstr ":strong:`メンバーの削除`"
+#: ../../admin/user-management/teams/enhanced-team-security.rst:118 ../../admin/user-management/teams/enhanced-team-security.rst:124
+msgid "Yes, if on a team"
+msgstr "チームに所属している場合、権限あり"
+
#: ../../admin/user-management/teams/enhanced-team-security.rst:123
msgid ":strong:`Leave team`"
msgstr ":strong:`チームを外れる`"
-#: ../../admin/user-management/teams/enhanced-team-security.rst:124
-msgid "Yes, if on a team"
-msgstr "チームに所属している場合、権限あり"
-
#: ../../admin/user-management/teams/enhanced-team-security.rst:125
msgid "Not applicable, if not on a team"
msgstr "チームに所属していない場合、該当なし"
@@ -11929,7 +12171,9 @@ msgid "Manage users and teams"
msgstr "ユーザーとチームを管理する"
#: ../../admin/user-management/user-management-intro.rst:17
-msgid "The foundational tasks of configuring your org include adding users, assigning them to teams, and managing roles and access permissions for users. Most organizations plan to roll Splunk Observability Cloud out across their enterprise footprint and will have multiple internal customers. Often it involves different requirements when using the various features of the product."
+msgid ""
+"The foundational tasks of configuring your org include adding users, assigning them to teams, and managing roles and access permissions for users. Most organizations plan to roll Splunk Observability Cloud out across their enterprise footprint and will have multiple internal customers. Often it involves different requirements when "
+"using the various features of the product."
msgstr "組織の設定の基本タスクには、ユーザーの追加、チームへのユーザーの割り当て、ユーザーのロールとアクセス権の管理などがあります。ほとんどの組織では、Splunk Observability Cloudを企業全体に展開することを計画し、社内に顧客を複数持つことになります。多くの場合、製品の様々な機能を使用する際に、異なる要件が関わることになります。"
#: ../../admin/user-management/user-management-intro.rst:19
@@ -12414,8 +12658,12 @@ msgstr "APIアクセストークンを表示またはコピーするには、:st
#~ msgid "To configure an Azure AD SSO integration, you must be an administrator for your organization. To learn more, see :new-page-ref:`manage_admin-access`."
#~ msgstr "Azure AD SSOインテグレーションを構成するには、組織の管理者である必要があります。詳細については、:new-page-ref:`manage_admin-access` を参照してください。"
-#~ msgid "After you complete these steps, the Azure AD SSO integration is available to users in your Azure AD organization. When users sign in to Observability Cloud from Azure AD for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. Subsequent login attempts don't require validation."
-#~ msgstr "これらの手順を完了すると、お客様のAzure AD組織のユーザーがAzure AD SSOインテグレーションを利用できるようになります。ユーザーが初めてAzure ADからObservability Cloudにサインインすると、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに認証は必要ありません。"
+#~ msgid ""
+#~ "After you complete these steps, the Azure AD SSO integration is available to users in your Azure AD organization. When users sign in to Observability Cloud from Azure AD for the first time, they receive an email containing a link that they must open in order to authenticate. This only occurs the first time the user signs in. "
+#~ "Subsequent login attempts don't require validation."
+#~ msgstr ""
+#~ "これらの手順を完了すると、お客様のAzure AD組織のユーザーがAzure AD SSOインテグレーションを利用できるようになります。ユーザーが初めてAzure ADからObservability Cloudにサインインすると、認証のために開く必要のあるリンクを含むメールがユーザーに届きます。これは、ユーザーが初めてサインインするときにのみ発生します。それ以降のログインに認"
+#~ "証は必要ありません。"
#~ msgid "Once you have a custom URL configured, your users can continue to log in using their existing username/password pair, or they can use their Azure AD credentials instead. Azure AD SSO authentication and Observability Cloud username/password authentication are independent."
#~ msgstr "カスタムURLを設定すると、ユーザーは既存のユーザー名/パスワードのペアを使ったログインを継続することも、代わりにAzure AD認証情報を使用することもできます。Azure AD SSO認証とObservability Cloudのユーザー名/パスワード認証は独立しています。"
@@ -12802,7 +13050,8 @@ msgstr "APIアクセストークンを表示またはコピーするには、:st
#~ msgstr "(オプション)ルールの解除条件式(SignalFlow形式)。メトリクス、ディメンション、関数などを含みます。"
#~ msgid "Kept for backwards compatibility. Use ``statusExtended`` to receive more information. This is the state of the incident. Valid values are ``anomalous`` (the detector triggered an alert) and ``ok`` (the detector stopped triggering an alert, or the detector clear conditions triggered a clear)."
-#~ msgstr "後方互換性のために保持されます。詳細な情報を得る場合は、``statusExtended`` を使用してください。これはインシデントの状態です。有効な値には、``anomalous`` (ディテクターがアラートをトリガーした)および ``ok`` (ディテクターがアラートのトリガーを停止した、またはディテクターの解除条件によって解除がトリガーされた)などがあります。"
+#~ msgstr ""
+#~ "後方互換性のために保持されます。詳細な情報を得る場合は、``statusExtended`` を使用してください。これはインシデントの状態です。有効な値には、``anomalous`` (ディテクターがアラートをトリガーした)および ``ok`` (ディテクターがアラートのトリガーを停止した、またはディテクターの解除条件によって解除がトリガーされた)などがあります。"
#~ msgid "This is the state of the incident. The value is one of the following:"
#~ msgstr "これはインシデントの状態です。値は以下のいずれかになります:"
@@ -12921,8 +13170,12 @@ msgstr "APIアクセストークンを表示またはコピーするには、:st
#~ msgid "To view your organization's APM subscription usage, go to :guilabel:`Settings` then :guilabel:`Subscription Usage` and select the :guilabel:`APM` tab. Depending on your org subscription model, this might be :guilabel:`Settings` then :guilabel:`Billing and Usage`."
#~ msgstr "組織のAPMのサブスクリプション使用状況を表示するには、 :guilabel:`Settings`、:guilabel:`Subscription Usage` の順に移動し、:guilabel:`APM` タブを選択します。組織のサブスクリプションモデルによっては、この移動先が :guilabel:`Settings`、:guilabel:`Billing and Usage` の順になる場合があります。"
-#~ msgid "To see the usage charts and metrics for your subscription plan, go to :guilabel:`Settings` then :guilabel:`Subscription Usage` and select the :strong:`APM` tab. Depending on your org subscription model, this might be :guilabel:`Settings` then :guilabel:`Billing and Usage`. The following sections detail the metrics for TAPM and host subscription plans respectively."
-#~ msgstr "サブスクリプションプランの使用状況のチャートとメトリクスを見るには、 :guilabel:`Settings` > :guilabel:`Subscription Usage` に移動し、:strong:`APM` タブを選択します。お客様の組織のサブスクリプションモデルによっては、この移動先が :guilabel:`Settings` > :guilabel:`Billing and Usage` になる場合があります。以下のセクションでは、TAPMサブスクリプションプランとホストサブスクリプションプランに分けてメトリクスの詳細を説明します。"
+#~ msgid ""
+#~ "To see the usage charts and metrics for your subscription plan, go to :guilabel:`Settings` then :guilabel:`Subscription Usage` and select the :strong:`APM` tab. Depending on your org subscription model, this might be :guilabel:`Settings` then :guilabel:`Billing and Usage`. The following sections detail the metrics for TAPM and "
+#~ "host subscription plans respectively."
+#~ msgstr ""
+#~ "サブスクリプションプランの使用状況のチャートとメトリクスを見るには、 :guilabel:`Settings` > :guilabel:`Subscription Usage` に移動し、:strong:`APM` タブを選択します。お客様の組織のサブスクリプションモデルによっては、この移動先が :guilabel:`Settings` > :guilabel:`Billing and Usage` になる場合があります。以下のセクションでは、"
+#~ "TAPMサブスクリプションプランとホストサブスクリプションプランに分けてメトリクスの詳細を説明します。"
#~ msgid "The number of bytes Splunk APM accepts from ingested span data after decompression following filtering and throttling."
#~ msgstr "Splunk APMが取り込んだスパンデータから解凍、フィルタリング、スロットリング後に受け入れるバイト数。"
@@ -12978,8 +13231,12 @@ msgstr "APIアクセストークンを表示またはコピーするには、:st
#~ msgid "They are included as part of a host-based subscription, so you're not charged for them."
#~ msgstr "これらはホストベースのサブスクリプションの一部として含まれているため、これに対して料金は発生しません。"
-#~ msgid "In host-based subscriptions, MTS from host and container metrics and bundled metrics are covered as part of the subscription and not charged separately. MTS from custom metrics are subject to the entitlements (200 MTS per host for Enterprise plan and 100 MTS per host for Standard plan). Additional MTS from custom metrics will be charged separately per MTS."
-#~ msgstr "ホストベースのサブスクリプションでは、ホストおよびコンテナのメトリクスとバンドルメトリクスからのMTSはサブスクリプションの一部としてカバーされ、別途課金されません。カスタムメトリクスからのMTSは、エンタイトルメント(Enterpriseプランでは200 MTS/ホスト、Standardプランでは100 MTS/ホスト)の対象となります。カスタムメトリクスからの追加MTSは、MTSごとに別途課金されます。"
+#~ msgid ""
+#~ "In host-based subscriptions, MTS from host and container metrics and bundled metrics are covered as part of the subscription and not charged separately. MTS from custom metrics are subject to the entitlements (200 MTS per host for Enterprise plan and 100 MTS per host for Standard plan). Additional MTS from custom metrics will be "
+#~ "charged separately per MTS."
+#~ msgstr ""
+#~ "ホストベースのサブスクリプションでは、ホストおよびコンテナのメトリクスとバンドルメトリクスからのMTSはサブスクリプションの一部としてカバーされ、別途課金されません。カスタムメトリクスからのMTSは、エンタイトルメント(Enterpriseプランでは200 MTS/ホスト、Standardプランでは100 MTS/ホスト)の対象となります。カスタムメトリクスからの追加"
+#~ "MTSは、MTSごとに別途課金されます。"
#~ msgid "The report has six columns:"
#~ msgstr "レポートには6つの列があります:"
@@ -13049,3 +13306,34 @@ msgstr "APIアクセストークンを表示またはコピーするには、:st
#~ msgid "Total number of MTS generated by organization."
#~ msgstr "組織別の生成されたMTSの総数。"
+
+#~ msgid ""
+#~ "Use the :new-page:`Splunk Distribution of OpenTelemetry Collector ` in data forwarding (gateway) mode. You can forward metrics locally to the Splunk Distribution of OpenTelemetry Collector, which serves as your local store-and-forward service for "
+#~ "telemetry."
+#~ msgstr ""
+#~ ":new-page:`Splunk Distribution of OpenTelemetry Collector` をデータ転送(ゲートウェイ)モードで使用します。メトリクスをローカルでSplunk Distribution of OpenTelemetry Collectorに転送することができ、テレメトリのローカルストアアンドフォワードサービスとして"
+#~ "機能します。"
+
+#~ msgid ":strong:`Live Tail`"
+#~ msgstr ":strong:`Live Tail`"
+
+#~ msgid ":strong:`Create and manage log processing rules`"
+#~ msgstr ":strong:`ログ処理ルールを作成および管理する`"
+
+#~ msgid ":strong:`Apply processing rules across historical data`"
+#~ msgstr ":strong:`過去のデータに処理ルールを適用する`"
+
+#~ msgid ":strong:`Transform data with log processing rules`"
+#~ msgstr ":strong:`ログ処理ルールでデータを変換する`"
+
+#~ msgid ":strong:`Create and manage log metricization rules`"
+#~ msgstr ":strong:`ログのメトリクス化ルールを作成および管理する`"
+
+#~ msgid ":strong:`Create new S3 connection to allow infinite logging rules`"
+#~ msgstr ":strong:`無限のロギングルールを可能にする新しい S3 接続を作成する`"
+
+#~ msgid ":strong:`Create and manage infinite logging rules`"
+#~ msgstr ":strong:`無限のロギングルールを作成および管理する`"
+
+#~ msgid "Yes - after admin creates S3 connection"
+#~ msgstr "権限あり - 管理者がS3接続を作成した後"
diff --git a/locales/ja_JA/LC_MESSAGES/alerts-detectors-notifications.mo b/locales/ja_JA/LC_MESSAGES/alerts-detectors-notifications.mo
index d7a1c8170..f8478ed06 100644
Binary files a/locales/ja_JA/LC_MESSAGES/alerts-detectors-notifications.mo and b/locales/ja_JA/LC_MESSAGES/alerts-detectors-notifications.mo differ
diff --git a/locales/ja_JA/LC_MESSAGES/alerts-detectors-notifications.po b/locales/ja_JA/LC_MESSAGES/alerts-detectors-notifications.po
index a4474179c..af625ebad 100644
--- a/locales/ja_JA/LC_MESSAGES/alerts-detectors-notifications.po
+++ b/locales/ja_JA/LC_MESSAGES/alerts-detectors-notifications.po
@@ -1,4 +1,3 @@
-# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023 Splunk, Inc
# This file is distributed under the same license as the Splunk package.
# FIRST AUTHOR , 2023.
@@ -7,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Splunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-01-29 18:45+0000\n"
-"PO-Revision-Date: 2025-02-27 12:03+0000\n"
+"POT-Creation-Date: 2025-03-13 09:38+0000\n"
+"PO-Revision-Date: 2025-04-10 10:44+0100\n"
"Last-Translator: \n"
"Language-Team: ja_JA \n"
"Language: ja_JA\n"
@@ -16,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
-"X-Generator: Poedit 3.5\n"
+"X-Generator: Poedit 3.6\n"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:-1
msgid "This alert condition lets you trigger an alert by comparing one signal to another or by evaluating multiple conditions"
@@ -51,7 +50,9 @@ msgid "When you are on the Alert Settings tab, you can select :guilabel:`Add ano
msgstr "「アラート設定」タブで、:guilabel:`Add another condition` を選択すると、AND演算子とOR演算子を使用した複合条件を作成できます。合計10個の条件を追加できます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:24
-msgid "When specifying compound conditions, AND conditions are applied before OR conditions. To ensure that the conditions are evaluated as required, you can select options from a condition's Actions menu (|more|) to arrange them into the appropriate order. You can also remove a condition from a condition's Actions menu (|more|)."
+msgid ""
+"When specifying compound conditions, AND conditions are applied before OR conditions. To ensure that the conditions are evaluated as required, you can select options from a condition's Actions menu (|more|) to arrange them into the appropriate order. You can also remove a condition from a condition's Actions menu (|"
+"more|)."
msgstr "複合条件を指定する場合、AND条件はOR条件の前に適用されます。条件が必要に応じて評価されるようにするには、条件の「アクション」メニュー(|more| )からオプションを選択して、適切な順序に並べることができます。また、条件の「アクション」メニュー(|more| )から条件の削除もできます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:26
@@ -67,12 +68,20 @@ msgid "Examples: Single condition, comparing signals"
msgstr "例:単一条件、シグナルの比較"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:36
-msgid "You want to receive an alert when the number of ``cache-misses`` is higher than the number of ``cache-hits`` for 1 |nbsp| minute. In this case, use ``cache-misses`` as the signal to monitor, ``Above`` as the option for :guilabel:`Alert when`, ``cache-hits`` as the threshold, and a ``Duration`` of |nbsp| 1 |nbsp| minute as the option for :guilabel:`Trigger sensitivity`."
-msgstr "1 |nbsp| 分間の ``cache-misses`` の数が ``cache-hits`` の数より多いときにアラートを受信するとします。この場合、監視するシグナルとして ``cache-misses`` を、:guilabel:`Alert when` のオプションとして ``Above`` を、閾値として ``cache-hits`` を、そして、:guilabel:`Trigger sensitivity` のオプションとして |nbsp| 1 |nbsp| 分間の ``Duration`` を使用します。"
+msgid ""
+"You want to receive an alert when the number of ``cache-misses`` is higher than the number of ``cache-hits`` for 1 |nbsp| minute. In this case, use ``cache-misses`` as the signal to monitor, ``Above`` as the option for :guilabel:`Alert when`, ``cache-hits`` as the threshold, and a ``Duration`` of |nbsp| 1 |nbsp| minute "
+"as the option for :guilabel:`Trigger sensitivity`."
+msgstr ""
+"1 |nbsp| 分間の ``cache-misses`` の数が ``cache-hits`` の数より多いときにアラートを受信するとします。この場合、監視するシグナルとして ``cache-misses`` を、:guilabel:`Alert when` のオプションとして ``Above`` を、閾値として ``cache-hits`` を、そして、:guilabel:`Trigger sensitivity` のオプションとして |nbsp| 1 |nbsp| 分間"
+"の ``Duration`` を使用します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:38
-msgid "You have 3 signals, each of which measures maximum latency for a single AWS availability zone. You have had problems with one of the zones in the past, and you want to receive an alert when that signal is outside the range of the other 2 |nbsp| signals. In this case, use the troublesome zone as the signal to monitor, ``Out of range`` as the option for :guilabel:`Alert when`, and the other two signals for the lower and upper thresholds."
-msgstr "3つのシグナルがあり、それぞれが1つのAWSアベイラビリティゾーンの最大レイテンシを測定しているとします。過去にゾーンのうちの1つに問題があり、そのシグナルが他の2つのシグナルの範囲外 |nbsp| にある場合にアラートを受け取りたいと考えています。この場合、問題のあるゾーンを監視するシグナルとして使用し、:guilabel:`Alert when` のオプションとして ``Out of range`` を使用し、他の2つのシグナルを閾値の下限と上限に使用します。"
+msgid ""
+"You have 3 signals, each of which measures maximum latency for a single AWS availability zone. You have had problems with one of the zones in the past, and you want to receive an alert when that signal is outside the range of the other 2 |nbsp| signals. In this case, use the troublesome zone as the signal to monitor, "
+"``Out of range`` as the option for :guilabel:`Alert when`, and the other two signals for the lower and upper thresholds."
+msgstr ""
+"3つのシグナルがあり、それぞれが1つのAWSアベイラビリティゾーンの最大レイテンシを測定しているとします。過去にゾーンのうちの1つに問題があり、そのシグナルが他の2つのシグナルの範囲外 |nbsp| にある場合にアラートを受け取りたいと考えています。この場合、問題のあるゾーンを監視するシグナルとして使用し、:guilabel:`Alert when` のオプ"
+"ションとして ``Out of range`` を使用し、他の2つのシグナルを閾値の下限と上限に使用します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:43
msgid "Example: Compound conditions, monitoring a single signal"
@@ -174,20 +183,23 @@ msgstr "Bが健全でない"
msgid "Settings"
msgstr "設定"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:98 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:31 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:31 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:58
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:29 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:56 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:31 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:30
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:49
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:98 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:31 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:31
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:58 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:29
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:56 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:31
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:30 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:49
msgid ":strong:`Parameter`"
msgstr ":strong:`パラメータ`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:99 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:32 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:32 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:59
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:30 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:50 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:30 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:57
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:99 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:32 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:32
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:59 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:30 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:50
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:30 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:57
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:32 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:31 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:50
msgid ":strong:`Values`"
msgstr ":strong:`値`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:100 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:33 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:33 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:60
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:31 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:51 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:31 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:58
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:100 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:33 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:33
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:60 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:31 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:51
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:31 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:58
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:33 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:32 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:51
msgid ":strong:`Notes`"
msgstr ":strong:`注意事項`"
@@ -213,8 +225,12 @@ msgid "``Static value`` (see :ref:`static-threshold` for acceptable values) or a
msgstr "``Static value`` (許容値については :ref:`static-threshold` を参照)または他のシグナル。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:110
-msgid "``Static value`` is designed to be used as an option when you use the ``Out of Range`` or ``Within Range`` settings. For example, you might want to receive an alert when the signal is between the value of another signal and a static value of 80. Using a static value with ``Above`` or ``Below`` is the same as using the Static Threshold condition."
-msgstr "``Static value`` は、``Out of Range`` または ``Within Range`` 設定を使用する際のオプションとして使用するために設計されています。例えば、シグナルが、別のシグナルの値と静的な値80の間にあるときにアラートを受信したいことがあるかもしれません。``Above`` または ``Below`` で静的な値を使用することは、静的閾値条件を使用することと同じです。"
+msgid ""
+"``Static value`` is designed to be used as an option when you use the ``Out of Range`` or ``Within Range`` settings. For example, you might want to receive an alert when the signal is between the value of another signal and a static value of 80. Using a static value with ``Above`` or ``Below`` is the same as using the "
+"Static Threshold condition."
+msgstr ""
+"``Static value`` は、``Out of Range`` または ``Within Range`` 設定を使用する際のオプションとして使用するために設計されています。例えば、シグナルが、別のシグナルの値と静的な値80の間にあるときにアラートを受信したいことがあるかもしれません。``Above`` または ``Below`` で静的な値を使用することは、静的閾値条件を使用することと同"
+"じです。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:112 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:53
msgid ":guilabel:`Trigger sensitivity`"
@@ -229,14 +245,19 @@ msgid "``Immediately`` triggers an alert as soon as the threshold is met."
msgstr "``Immediately`` を使用すると、閾値に達するとすぐにアラートがトリガーされます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:117
-msgid "``Duration`` triggers when the signal meets and remains at threshold condition for a specified period, such as 10 minutes. If it is normal for a signal to rise and fall rapidly, using this option reduces :term:`flappiness`. For an alert to trigger with this option, there can be no missing data points during the duration. For more information, see :ref:`duration-custom`."
-msgstr "``Duration`` を使用すると、シグナルが閾値条件を満たし、指定した期間(例:10分)にわたってその状態を継続した場合にアラートがトリガーされます。シグナルが急激に上下することが通常である場合には、このオプションを使用すると、:term:`フラッピング` が軽減されます。このオプションを使ってアラートをトリガーする場合、指定した期間中のデータポイントの欠落は許容されません。詳細は、:ref:`duration-custom` を参照してください。"
+msgid ""
+"``Duration`` triggers when the signal meets and remains at threshold condition for a specified period, such as 10 minutes. If it is normal for a signal to rise and fall rapidly, using this option reduces :term:`flappiness`. For an alert to trigger with this option, there can be no missing data points during the "
+"duration. For more information, see :ref:`duration-custom`."
+msgstr ""
+"``Duration`` を使用すると、シグナルが閾値条件を満たし、指定した期間(例:10分)にわたってその状態を継続した場合にアラートがトリガーされます。シグナルが急激に上下することが通常である場合には、このオプションを使用すると、:term:`フラッピング` が軽減されます。このオプションを使ってアラートをトリガーする場合、指定した"
+"期間中のデータポイントの欠落は許容されません。詳細は、:ref:`duration-custom` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:119
msgid "``Percent of duration`` triggers based on the number of data points that met the threshold during the specified duration. For more information, see :ref:`duration-custom`."
msgstr "``Percent of duration`` を使用すると、指定した期間中に閾値を満たしたデータポイントの数に基づいてアラートがトリガーされます。詳細は :ref:`duration-custom` を参照してください。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:122 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:64 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-server-latency.rst:61
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:122 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:64
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-server-latency.rst:61
msgid ":guilabel:`Duration`"
msgstr ":guilabel:`Duration`"
@@ -274,11 +295,11 @@ msgstr "シグナルの性質によっては、アラートをすぐにトリガ
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:146
msgid ""
-"The ``Duration`` option triggers when the signal meets and remains at threshold condition for a specified period, such as 10 minutes. Therefore, using this option is less sensitive (might trigger fewer alerts) than the ``Immediately`` option. If you use this option, an alert isn't triggered if any data points are delayed or do not arrive at all during that time range, even if all the data points that are received :strong:`do` meet the threshold. For more "
-"information about delayed or missing data points, see :ref:`delayed-missing`."
+"The ``Duration`` option triggers when the signal meets and remains at threshold condition for a specified period, such as 10 minutes. Therefore, using this option is less sensitive (might trigger fewer alerts) than the ``Immediately`` option. If you use this option, an alert isn't triggered if any data points are delayed "
+"or do not arrive at all during that time range, even if all the data points that are received :strong:`do` meet the threshold. For more information about delayed or missing data points, see :ref:`delayed-missing`."
msgstr ""
-" ``Duration`` オプションを使用すると、シグナルが閾値条件を満たし、指定した期間(例:10分間)にわたってその状態を継続した場合にアラートがトリガーされます。したがって、このオプションを使用すると、``Immediately`` オプションよりも感度は低くなります(アラートのトリガー回数が少なくなる可能性があります)。このオプションを使用すると、たとえ受信したすべてのデータポイントが閾値条件を :strong:`満たしていても`、指定した期間中にデータポイントが遅延したり、まったく到着しな"
-"かったりすれば、アラートはトリガーされません。データポイントの遅延や欠落について、詳細は :ref:`delayed-missing` を参照してください。"
+"``Duration`` オプションを使用すると、シグナルが閾値条件を満たし、指定した期間(例:10分間)にわたってその状態を継続した場合にアラートがトリガーされます。したがって、このオプションを使用すると、``Immediately`` オプションよりも感度は低くなります(アラートのトリガー回数が少なくなる可能性があります)。このオプションを使用する"
+"と、たとえ受信したすべてのデータポイントが閾値条件を :strong:`満たしていても`、指定した期間中にデータポイントが遅延したり、まったく到着しなかったりすれば、アラートはトリガーされません。データポイントの遅延や欠落について、詳細は :ref:`delayed-missing` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:148
msgid "If you want an option that triggers even if some data points do not arrive on time, use ``Percent of duration`` (with a percentage less than |nbsp| 100)."
@@ -286,11 +307,11 @@ msgstr "一部のデータポイントが時間通りに到着しなくてもア
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:152
msgid ""
-"The ``Percent of duration`` option triggers alerts based on the number of data points that met the threshold during the window, compared to how many data points were expected to arrive. Because this option triggers an alert based on the percentage of data points that met the threshold, it can sometimes trigger an alert even if some data points didn't arrive on time. Therefore, using this option with a percentage less than |nbsp| 100 is more sensitive (might "
-"trigger more alerts) than the ``Duration`` option."
+"The ``Percent of duration`` option triggers alerts based on the number of data points that met the threshold during the window, compared to how many data points were expected to arrive. Because this option triggers an alert based on the percentage of data points that met the threshold, it can sometimes trigger an alert "
+"even if some data points didn't arrive on time. Therefore, using this option with a percentage less than |nbsp| 100 is more sensitive (might trigger more alerts) than the ``Duration`` option."
msgstr ""
-" ``Percent of duration`` オプションを使用すると、指定した時間窓の間に閾値を満たしたデータポイントの数に基づいてアラートがトリガーされます。このオプションは、閾値を満たしたデータポイント数のパーセンテージに基づいてアラートをトリガーするため、一部のデータポイントが時間通りに到着しなかった場合でもアラートをトリガーすることがあります。したがって、100未満のパーセンテージでこのオプションを使用すると、``Duration`` オプションを使用した場合よりも感度は高くなります(よ"
-"り多くのアラートがトリガーされる可能性があります)。"
+"``Percent of duration`` オプションを使用すると、指定した時間窓の間に閾値を満たしたデータポイントの数に基づいてアラートがトリガーされます。このオプションは、閾値を満たしたデータポイント数のパーセンテージに基づいてアラートをトリガーするため、一部のデータポイントが時間通りに到着しなかった場合でもアラートをトリガーすることが"
+"あります。したがって、100未満のパーセンテージでこのオプションを使用すると、``Duration`` オプションを使用した場合よりも感度は高くなります(より多くのアラートがトリガーされる可能性があります)。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:155 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:94
msgid "The following examples illustrate how alerts are triggered in various situations."
@@ -304,11 +325,13 @@ msgstr "例1"
msgid "Option you specify for :strong:`Trigger Sensitivity`: Duration = 3 minutes"
msgstr ":strong:`トリガー感度` に指定するオプション:継続期間=3分"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:162 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:205 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:101 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:144
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:162 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:205
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:101 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:144
msgid "Resolution of the signal: 5 seconds"
msgstr "シグナルの解像度:5秒"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:164 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:207 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:103 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:146
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:164 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:207
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:103 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:146
msgid "Number of data points expected in 3 minutes: 12 |nbsp| per |nbsp| minute |nbsp| * |nbsp| 3 minutes (36)"
msgstr "3分間に予想されるデータポイント数:12/分* 3分(36)"
@@ -316,54 +339,74 @@ msgstr "3分間に予想されるデータポイント数:12/分* 3分(36)
msgid "Number of anomalous data points (how many times the threshold must be met) to trigger alert: 36"
msgstr "アラートをトリガーするまでの異常データポイント数(閾値を満たす必要がある回数):36"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:173 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:216 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:131 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:173
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:216 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:257 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:112 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:155
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:173 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:216
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:131 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:173
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:216 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:257
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:112 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:155
msgid ":strong:`Total data points expected`"
msgstr ":strong:`予想されるデータポイントの総数`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:174 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:217 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:132 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:174
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:217 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:258 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:113 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:156
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:174 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:217
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:132 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:174
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:217 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:258
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:113 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:156
msgid ":strong:`Total data points received`"
msgstr ":strong:`受信したデータポイントの総数`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:175 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:218 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:133 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:175
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:175 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:218
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:133 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:175
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:114 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:157
msgid ":strong:`Anomalous data points required`"
msgstr ":strong:`必要な異常データポイント数`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:176 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:219 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:134 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:176
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:176 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:219
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:134 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:176
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:115 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:158
msgid ":strong:`Anomalous data points received`"
msgstr ":strong:`受信した異常データポイント数`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:177 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:220 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:135 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:177
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:177 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:220
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:135 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:177
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:116 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:159
msgid ":strong:`Alert is triggered?`"
msgstr ":strong:`アラートはトリガーされるか?`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:179 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:180 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:181 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:182
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:185 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:186 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:187 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:191
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:193 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:222 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:223 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:228
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:234 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:118 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:119 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:120
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:121 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:124 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:125 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:126
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:130 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:132 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:161 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:162
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:179 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:180
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:181 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:182
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:185 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:186
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:187 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:191
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:193 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:222
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:223 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:228
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:234 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:118
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:119 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:120
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:121 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:124
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:125 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:126
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:130 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:132
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:161 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:162
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:167 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:173
msgid "36"
msgstr "36"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:183 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:226 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:232 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:141
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:183 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:189 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:226 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:267
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:273 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:122 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:165 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:171
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:183 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:226
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:232 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:141
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:183 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:189
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:226 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:267
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:273 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:122
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:165 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:171
msgid "Yes"
msgstr "はい"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:188 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:194 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:127 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:133
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:188 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:194
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:127 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:133
msgid "35 or fewer"
msgstr "35以下"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:189 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:195 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:238 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:147
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:153 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:195 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:232 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:238
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:279 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:128 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:134 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:177
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:189 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:195
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:238 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:147
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:153 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:195
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:232 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:238
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:279 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:128
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:134 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:177
msgid "No"
msgstr "いいえ"
@@ -383,7 +426,8 @@ msgstr ":strong:`トリガー感度` に指定するオプション:継続期
msgid "Number of anomalous data points (how many times the threshold must be met) to trigger alert: 75% of 36 (27)"
msgstr "アラートをトリガーするまでの異常データポイント数(閾値を満たす必要がある回数):36の75%(27)"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:224 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:230 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:236 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:163
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:224 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:230
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:236 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:163
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:169 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:175
msgid "27"
msgstr "27"
@@ -392,10 +436,14 @@ msgstr "27"
msgid "27-36"
msgstr "27-36"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:229 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:235 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:222 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:223
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:224 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:225 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:228 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:229
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:230 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:234 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:236 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:263
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:264 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:269 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:275 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:168
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:229 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:235
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:222 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:223
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:224 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:225
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:228 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:229
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:230 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:234
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:236 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:263
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:264 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:269
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:275 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:168
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:174 ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:66 ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:78
msgid "30"
msgstr "30"
@@ -409,8 +457,12 @@ msgid "26 or fewer"
msgstr "26以下"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/custom-threshold.rst:240 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:179
-msgid "Note that in the last example above, even if 26 anomalous data points arrive, and 26/30 is greater than the |nbsp| 75% you specified, the required number of anomalous data points (27) did not arrive. Therefore, the alert isn't triggered. The percent you specify represents percent of :strong:`expected` data points, not percent of :strong:`received` data points."
-msgstr "上記の後の方の例では、26個の異常データポイントが到着し、26/30が指定した「 |nbsp| 75%」より大きくても、必要な異常データポイント数(27個)が到着していないことに注意してください。したがって、アラートはトリガーされません。指定するパーセンテージは、:strong:`予想 ` データポイント数に対するパーセンテージを示すものであり、:strong:`受信` データポイント数に対するパーセンテージではありません。"
+msgid ""
+"Note that in the last example above, even if 26 anomalous data points arrive, and 26/30 is greater than the |nbsp| 75% you specified, the required number of anomalous data points (27) did not arrive. Therefore, the alert isn't triggered. The percent you specify represents percent of :strong:`expected` data points, not "
+"percent of :strong:`received` data points."
+msgstr ""
+"上記の後の方の例では、26個の異常データポイントが到着し、26/30が指定した「 |nbsp| 75%」より大きくても、必要な異常データポイント数(27個)が到着していないことに注意してください。したがって、アラートはトリガーされません。指定するパーセンテージは、:strong:`予想 ` データポイント数に対するパーセンテージを示すものであ"
+"り、:strong:`受信` データポイント数に対するパーセンテージではありません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:-1
msgid "The Heartbeat Check condition alerts when a signal has not reported for some time. This might happen because a host is down or stopped reporting a particular metric."
@@ -422,19 +474,24 @@ msgstr "ハートビートチェック"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:12
msgid "Heartbeat Check alerts when a signal has not reported for some time. This might happen because a host is down or stopped reporting a particular metric. This condition is often used in tandem with another detector, to ensure that a signal being analyzed is reporting."
-msgstr "ハートビートチェックは、特定の期間にわたってシグナルのレポートがなかった場合にアラートを発します。これは、ホストがダウンしている場合や、特定のメトリクスのレポートを停止した場合に発生する可能性があります。この条件は、分析中のシグナルがレポートを行っていることを確認するため、しばしば他のディテクターとあわせて使用されます。"
+msgstr ""
+"ハートビートチェックは、特定の期間にわたってシグナルのレポートがなかった場合にアラートを発します。これは、ホストがダウンしている場合や、特定のメトリクスのレポートを停止した場合に発生する可能性があります。この条件は、分析中のシグナルがレポートを行っていることを確認するため、しばしば他のディテクターとあわせて使用されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:14
msgid "Only active metric time series are monitored, so this condition doesn't trigger an alert for a host that has never sent a metric. It triggers only if a host has sent metrics and then stops sending metrics."
msgstr "アクティブなメトリック時系列のみが監視されるため、この条件では、メトリクスを一度も送信していないホストに対するアラートはトリガーされません。メトリクスを送信したホストがメトリクスの送信を停止した場合にのみ、トリガーされます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:18 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:15 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:17 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:16
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:18 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:15 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:17
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:16
msgid "Examples"
msgstr "例"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:20
-msgid "You have a detector that alerts you when the minimum number of logins being handled by each host goes below a specified value. If a host stops reporting, that detector isn't triggered if there is a problem. The Heartbeat Check condition notifies you if a host stops reporting, or if all hosts in a group stop reporting."
-msgstr "各ホストで処理されるログイン数の最小値が指定した値を下回ったときにアラートを発するディテクターがあるとします。いずれかのホストがレポートを停止した場合に、何か問題があってもそのディテクターはトリガーされません。ハートビートチェック条件を使うと、あるホストがレポートを停止した場合、またはグループ内の全ホストがレポートを停止した場合に通知が届きます。"
+msgid ""
+"You have a detector that alerts you when the minimum number of logins being handled by each host goes below a specified value. If a host stops reporting, that detector isn't triggered if there is a problem. The Heartbeat Check condition notifies you if a host stops reporting, or if all hosts in a group stop reporting."
+msgstr ""
+"各ホストで処理されるログイン数の最小値が指定した値を下回ったときにアラートを発するディテクターがあるとします。いずれかのホストがレポートを停止した場合に、何か問題があってもそのディテクターはトリガーされません。ハートビートチェック条件を使うと、あるホストがレポートを停止した場合、またはグループ内の全ホストがレポートを停止"
+"した場合に通知が届きます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:36 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:60
msgid ":strong:`Hasn't reported for`"
@@ -457,21 +514,25 @@ msgid "Dimension or property chosen from dropdown menu"
msgstr "ドロップダウンメニューから選択したディメンションまたはプロパティ"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:42
-msgid "Use a dimension or property when you want alerts to be based on a specified unit. For example, if you group by ``cluster``, the alert is triggered only if all hosts in a cluster stop reporting. Alternatively, if each time series is associated with only one host, and you want to be alerted when :strong:`any` host has stopped reporting, leave this parameter blank (or group by ``host``)."
-msgstr "指定したユニットに基づいてアラートを発する場合には、ディメンションまたはプロパティを使用します。例えば、``cluster`` でグループ化すると、クラスタ内のすべてのホストがレポートを停止した場合にのみアラートがトリガーされます。あるいは、各時系列が1つのホストのみに関連付けられており、:strong:`いずれかの` ホストがレポートを停止したときにアラートを発したい場合は、このパラメータを空白のままにします(または ``host`` でグループを指定)。"
+msgid ""
+"Use a dimension or property when you want alerts to be based on a specified unit. For example, if you group by ``cluster``, the alert is triggered only if all hosts in a cluster stop reporting. Alternatively, if each time series is associated with only one host, and you want to be alerted when :strong:`any` host has "
+"stopped reporting, leave this parameter blank (or group by ``host``)."
+msgstr ""
+"指定したユニットに基づいてアラートを発する場合には、ディメンションまたはプロパティを使用します。例えば、``cluster`` でグループ化すると、クラスタ内のすべてのホストがレポートを停止した場合にのみアラートがトリガーされます。あるいは、各時系列が1つのホストのみに関連付けられており、:strong:`いずれかの` ホストがレポートを停止し"
+"たときにアラートを発したい場合は、このパラメータを空白のままにします(または ``host`` でグループを指定)。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:45 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:103 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:285 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:93
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:115
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:45 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:103 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:285
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:93 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:115
msgid "Further reading"
msgstr "参考"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:52 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:109 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:291 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:100
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:122
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:52 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:109 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:291
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:100 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:122
msgid ":strong:`Parameters`"
msgstr ":strong:`パラメータ`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:53 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:110 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:292 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:101
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:123
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:53 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:110 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:292
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:101 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:123
msgid ":strong:`Remarks`"
msgstr ":strong:`注釈`"
@@ -484,12 +545,20 @@ msgid "If you want to avoid triggering alerts based on specific conditions (for
msgstr "特定の条件に基づいてアラートのトリガーを回避したい場合(例えば、テスト用レルムを除外したり、終了したことが分かっているホストを除外したりする場合)は、アラート条件を設定する前に、シグナルにフィルターを適用してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:58
-msgid "Make sure that the Extrapolation policy is Null (the default) for all signals that influence the heartbeat metric. If it is not Null, Splunk Infrastructure Monitoring extrapolates values for :ref:`missing data points `, and the alert isn't triggered as expected. Extrapolation policy is specified in the plot configuration panel for each signal. To learn more, see :ref:`plot-config-panel`."
-msgstr "ハートビートメトリクスに影響を与えるすべてのシグナルについて、[外挿]ポリシーがNull(デフォルト)であることを確認してください。Nullになっていない場合、Splunk Infrastructure Monitoringは :ref:`欠落したデータポイント` の値を外挿し、アラートは期待通りにトリガーされません。[外挿]ポリシーは、各シグナルのプロット設定パネルで指定します。詳細は、:ref:`plot-config-panel` を参照してください。"
+msgid ""
+"Make sure that the Extrapolation policy is Null (the default) for all signals that influence the heartbeat metric. If it is not Null, Splunk Infrastructure Monitoring extrapolates values for :ref:`missing data points `, and the alert isn't triggered as expected. Extrapolation policy is specified in "
+"the plot configuration panel for each signal. To learn more, see :ref:`plot-config-panel`."
+msgstr ""
+"ハートビートメトリクスに影響を与えるすべてのシグナルについて、[外挿]ポリシーがNull(デフォルト)であることを確認してください。Nullになっていない場合、Splunk Infrastructure Monitoringは :ref:`欠落したデータポイント` の値を外挿し、アラートは期待通りにトリガーされません。[外挿]ポリシーは、各シグナルのプ"
+"ロット設定パネルで指定します。詳細は、:ref:`plot-config-panel` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/heartbeat-check.rst:61
-msgid "To avoid :term:`flappy` alerts that are triggered due to minor, short-lived delays in sending metrics, set this parameter to be significantly larger than the native resolution of the signal (how often the signal is reporting). For example, if the signal reports once a minute, setting this parameter to 10 |nbsp| minutes means that the alert isn't triggered until 10 |nbsp| data points have not reported."
-msgstr "メトリクスの送信におけるマイナーかつ一時的な遅延によってトリガーされる :term:`flappy` アラートを回避するには、このパラメータをシグナルのネイティブ解像度(シグナルのレポート頻度)よりも大幅に大きく設定します。例えば、シグナルが1分に1回レポートする場合、このパラメータを 10分に設定すると、10データポイントがレポートされるまでアラートはトリガーされません。"
+msgid ""
+"To avoid :term:`flappy` alerts that are triggered due to minor, short-lived delays in sending metrics, set this parameter to be significantly larger than the native resolution of the signal (how often the signal is reporting). For example, if the signal reports once a minute, setting this parameter to 10 |nbsp| minutes "
+"means that the alert isn't triggered until 10 |nbsp| data points have not reported."
+msgstr ""
+"メトリクスの送信におけるマイナーかつ一時的な遅延によってトリガーされる :term:`flappy` アラートを回避するには、このパラメータをシグナルのネイティブ解像度(シグナルのレポート頻度)よりも大幅に大きく設定します。例えば、シグナルが1分に1回レポートする場合、このパラメータを 10分に設定すると、10データポイントがレポートされるまで"
+"アラートはトリガーされません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:-1
msgid "The Historical Anomaly condition alerts when a signal is different from the same periods in the past (for cyclical or seasonal data)"
@@ -500,7 +569,9 @@ msgid "Historical Anomaly"
msgstr "履歴的異常"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:12
-msgid "Historical Anomaly alerts when a signal is different from the same periods in the past (for cyclical or seasonal data). Use the Historical Anomaly alert condition to monitor metrics with patterns that repeat over known, fixed periods of time. To specify the period of time over which patterns repeat, use the :strong:`Cycle length` parameter."
+msgid ""
+"Historical Anomaly alerts when a signal is different from the same periods in the past (for cyclical or seasonal data). Use the Historical Anomaly alert condition to monitor metrics with patterns that repeat over known, fixed periods of time. To specify the period of time over which patterns repeat, use "
+"the :strong:`Cycle length` parameter."
msgstr "「履歴的異常」は、シグナルが過去の同じ期間と異なる場合にアラートを発します(周期的データまたは季節的データの場合)。「履歴的異常」アラート条件は、既知の一定期間にわたって繰り返されるパターンを持つメトリクスの監視に使用します。パターンが繰り返される期間を指定するには、:strong:`サイクル長` パラメータを使用します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:17
@@ -515,7 +586,8 @@ msgstr "3ヶ月に一度、季節ごとの売り尽くしセールがあると
msgid "Count of disk reads spikes every 12 hours when an incremental backup kicks off. Set :strong:`Cycle length` to 12h."
msgstr "増分バックアップの開始によって、ディスクの読み取り回数が12時間ごとに急増します。この場合、:strong:`サイクル長` を「12h」に設定します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:25 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:23 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:23 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:24
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:25 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:23
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:23 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:24
msgid "Basic settings"
msgstr "基本的な設定"
@@ -532,7 +604,9 @@ msgid "The time range that reflects the cycle of your signal. For example, a val
msgstr "シグナルのサイクルを表す時間範囲。たとえば、値が ``1w`` の場合は、そのシグナルが毎週のサイクルに従っていることを示します。値が ``1d`` の場合は、そのシグナルが毎日のサイクルに従っていることを示します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst
-msgid "Cycle length works in conjunction with the duration of the time window used for data comparison, represented by the :strong:`Current window` parameter. Data from the current window will be compared against data from one or more previous cycles to detect historical anomaly, depending on the value of the :strong:`Number of previous cycles` parameter."
+msgid ""
+"Cycle length works in conjunction with the duration of the time window used for data comparison, represented by the :strong:`Current window` parameter. Data from the current window will be compared against data from one or more previous cycles to detect historical anomaly, depending on the value of the :strong:`Number of "
+"previous cycles` parameter."
msgstr "サイクル長は、:strong:`現在のウィンドウ` パラメータで表される、データ比較に使用される時間窓の期間と連動して動作します。現在のウィンドウからのデータは、:strong:`以前のサイクル数` パラメータの値に応じて、履歴的異常を検出するために、1つ以上前のサイクルからのデータと比較されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst
@@ -548,14 +622,20 @@ msgid "``Too high``, ``Too low``, ``Too high or Too low``"
msgstr "``Too high``、``Too low``、``Too high or Too low``"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:43
-msgid "Alert is triggered when the signal is either above a threshold, below a threshold, or outside a specified range (for example, more than 3.5 deviations above or below normal, or more than 30% above or below normal). To specify whether anomalies are based on standard deviations from normal or percentage difference from normal, choose :strong:`Custom sensitivity` and then the :strong:`Normal based on` parameter."
-msgstr "アラートは、シグナルが閾値を超えたとき、閾値を下回ったとき、または指定された範囲外にあるときにトリガーされます(例:正常値より3.5偏差以上上または下の場合、正常値より30%以上上または下の場合など)。異常の基準を正常値からの標準偏差とするか、正常値からのパーセンテージ差とするかを指定するには、:strong:`カスタム感度` > :strong:`正常値の基準` パラメータを選択します。"
+msgid ""
+"Alert is triggered when the signal is either above a threshold, below a threshold, or outside a specified range (for example, more than 3.5 deviations above or below normal, or more than 30% above or below normal). To specify whether anomalies are based on standard deviations from normal or percentage difference from "
+"normal, choose :strong:`Custom sensitivity` and then the :strong:`Normal based on` parameter."
+msgstr ""
+"アラートは、シグナルが閾値を超えたとき、閾値を下回ったとき、または指定された範囲外にあるときにトリガーされます(例:正常値より3.5偏差以上上または下の場合、正常値より30%以上上または下の場合など)。異常の基準を正常値からの標準偏差とするか、正常値からのパーセンテージ差とするかを指定するには、:strong:`カスタム感度`> :strong:`"
+"正常値の基準` パラメータを選択します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:45 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:37 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:41
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:45 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:37
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:41
msgid ":strong:`Trigger Sensitivity`"
msgstr ":strong:`トリガー感度`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:46 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:38 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:42 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:39
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:46 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:38
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:42 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:39
msgid "``Low``, ``Medium``, ``High``, ``Custom``"
msgstr "``Low``、``Medium``、``High``、``Custom``"
@@ -563,7 +643,8 @@ msgstr "``Low``、``Medium``、``High``、``Custom``"
msgid "Approximately how often alerts are triggered, where Low can result in fewer alerts being triggered and alerts taking longer to clear (least :term:`flappy`). Choose ``Custom`` to modify the settings that determine triggering and clearing sensitivity (listed below)."
msgstr "アラートのトリガー頻度の目安。「Low」を選択するとアラートのトリガー頻度は低くなり、アラートが解除されるまでの時間が長くなります(最も :term:`flappy` でなくなる)。トリガーと解除の感度を決定する設定を変更するには、``Custom`` を選択します(以下にリスト)。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:50 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:42 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:49 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:43
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:50 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:42
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:49 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:43
msgid "Advanced settings"
msgstr "詳細な設定"
@@ -577,9 +658,11 @@ msgstr "``Mean plus standard deviation``、``Mean plus percentage change``"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:64
msgid ""
-"If the short-term variation in a signal is small relative to the scale of the signal, and the scale is somehow natural, using ``Mean plus percentage change`` is recommended; using ``Mean plus standard deviation`` might trigger alerts even for a large number of standard deviations. In addition, ``Mean plus percentage change`` is recommended for metrics which admit a direct business interpretation. For instance, if ``user_sessions`` drops by 20%, revenue drops "
-"by 5%."
-msgstr "シグナルの短期的な変動がシグナルのスケールに対して小さく、そのスケールがある程度自然である場合は、 ``Mean plus percentage change`` を使用することを推奨します。``Mean plus standard deviation`` を使用すると、標準偏差の数が大きい場合にもアラートが発生する可能性があります。さらに、``Mean plus percentage change`` は、ビジネス上の直接的な解釈が可能なメトリクスの場合に推奨されます(例: ``user_sessions`` が20%低下すると収益が5%低下する、という場合)。"
+"If the short-term variation in a signal is small relative to the scale of the signal, and the scale is somehow natural, using ``Mean plus percentage change`` is recommended; using ``Mean plus standard deviation`` might trigger alerts even for a large number of standard deviations. In addition, ``Mean plus percentage "
+"change`` is recommended for metrics which admit a direct business interpretation. For instance, if ``user_sessions`` drops by 20%, revenue drops by 5%."
+msgstr ""
+"シグナルの短期的な変動がシグナルのスケールに対して小さく、そのスケールがある程度自然である場合は、 ``Mean plus percentage change`` を使用することを推奨します。``Mean plus standard deviation`` を使用すると、標準偏差の数が大きい場合にもアラートが発生する可能性があります。さらに、``Mean plus percentage change`` は、ビジネ"
+"ス上の直接的な解釈が可能なメトリクスの場合に推奨されます(例: ``user_sessions`` が20%低下すると収益が5%低下する、という場合)。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:66 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:59
msgid ":strong:`Current window`"
@@ -602,8 +685,12 @@ msgid "Integer >=1 and <= 8"
msgstr ">=1 かつ <= 8の整数"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:72
-msgid "Works in conjunction with cycle length. The number of cycles to use for setting a historical norm, or baseline. For example, if your cycle length is |nbsp| 1w, this value specifies how many prior weeks you want to use when computing a historical norm. To consider last week the norm, use the value |nbsp| 1; to consider the mean of the last 4 |nbsp| weeks the norm, use the value |nbsp| 4. Higher values mean more data is used to define the baseline."
-msgstr "サイクル長と連動して動作します。履歴ベースの基準またはベースラインを設定するために使用するサイクル数です。例えば、サイクル長が1wの場合、このパラメータは、履歴上の基準を計算する際に使用する過去の週数を指定するものです。先週を基準とする場合は、この値に1を使用します。過去4週間の平均を基準とする場合は、この値に4を使用します。値が大きいほど、基準値を定義するために使用されるデータが多いことを意味します。"
+msgid ""
+"Works in conjunction with cycle length. The number of cycles to use for setting a historical norm, or baseline. For example, if your cycle length is |nbsp| 1w, this value specifies how many prior weeks you want to use when computing a historical norm. To consider last week the norm, use the value |nbsp| 1; to consider "
+"the mean of the last 4 |nbsp| weeks the norm, use the value |nbsp| 4. Higher values mean more data is used to define the baseline."
+msgstr ""
+"サイクル長と連動して動作します。履歴ベースの基準またはベースラインを設定するために使用するサイクル数です。例えば、サイクル長が1wの場合、このパラメータは、履歴上の基準を計算する際に使用する過去の週数を指定するものです。先週を基準とする場合は、この値に1を使用します。過去4週間の平均を基準とする場合は、この値に4を使用します。"
+"値が大きいほど、基準値を定義するために使用されるデータが多いことを意味します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:74
msgid ":strong:`Trigger threshold` and :strong:`Clear threshold` (when :strong:`Normal based on` is ``Mean plus standard deviation``)"
@@ -649,7 +736,8 @@ msgstr "解除の値が20の場合、比較される値が20%以下の差であ
msgid ":strong:`Ignore historical extremes`"
msgstr ":strong:`履歴的極値を無視`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:92 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:80 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:84 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:90
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:92 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:80 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:84
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:90
msgid "``Yes``, ``No``"
msgstr "``Yes``、``No``"
@@ -685,7 +773,8 @@ msgstr "現在のウィンドウとネイティブ解像度"
msgid "If the ratio of current window to native resolution is small, the rolling standard deviation might be small. In that situation, using ``Mean plus percentage change`` might lead to better results."
msgstr "現在のウィンドウとネイティブ解像度の比率が小さい場合、ローリング標準偏差が小さくなる可能性があります。そのような場合、``Mean plus percentage change`` を使用すると、より良い結果が得られる可能性があります。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:118 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:109 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:112 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:117
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/hist-anomaly.rst:118 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:109
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:112 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:117
msgid "Signal"
msgstr "シグナル"
@@ -702,7 +791,9 @@ msgid "Built-in alert conditions"
msgstr "内蔵アラート条件"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/index.rst:25
-msgid "When you create rules in detectors to specify conditions that trigger alerts, Splunk Infrastructure Monitoring provides a number of built-in conditions that detect common problem scenarios. Many of these alert conditions provide more powerful ways of monitoring signals than the standard practice of comparing a signal to a static threshold."
+msgid ""
+"When you create rules in detectors to specify conditions that trigger alerts, Splunk Infrastructure Monitoring provides a number of built-in conditions that detect common problem scenarios. Many of these alert conditions provide more powerful ways of monitoring signals than the standard practice of comparing a signal to "
+"a static threshold."
msgstr "ディテクターにルールを作成してアラートをトリガーする条件を指定すると、Splunk Infrastructure Monitoringでは、一般的な問題シナリオを検出するための多くの内蔵アラート条件を利用できるようになります。これらのアラート条件の多くは、シグナルを静的閾値と比較する標準的な方法よりも強力なシグナル監視手段を提供します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/index.rst:27
@@ -713,9 +804,10 @@ msgstr "次の表は、利用可能な内蔵アラート条件の概要です。
msgid ":strong:`Condition`"
msgstr ":strong:`条件`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/index.rst:36 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:40 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:74 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:110
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:141 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:154 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:179 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:199
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:224 ../../alerts-detectors-notifications/slo/create-slo.rst:92
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/index.rst:36 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:40 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:74
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:110 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:141 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:154
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:179 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:199 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:224
+#: ../../alerts-detectors-notifications/slo/create-slo.rst:92
msgid ":strong:`Description`"
msgstr ":strong:`説明`"
@@ -828,8 +920,12 @@ msgid "Example"
msgstr "例"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:19
-msgid "Use this condition to determine if you have not added a host to your load balancer, or if there is a problem between the host and the load balancer. For example, if a metric tracks requests routed to a host in a load balancer, trigger an outlier alert when, for example, the value of the metric is more than 2.5 standard deviations below the mean of similar signals for 80% of 5m."
-msgstr "ロードバランサーにホストを追加していないか、またはホストとロードバランサーの間に問題がないかを判断するためにこの条件を使用します。例えば、あるメトリクスがロードバランサーのホストにルーティングされたリクエストを追跡している場合、例えばメトリクス値が5mの80%にわたって同類のシグナルの平均より2.5標準偏差以上低い時に、外れ値アラートを発します。"
+msgid ""
+"Use this condition to determine if you have not added a host to your load balancer, or if there is a problem between the host and the load balancer. For example, if a metric tracks requests routed to a host in a load balancer, trigger an outlier alert when, for example, the value of the metric is more than 2.5 standard "
+"deviations below the mean of similar signals for 80% of 5m."
+msgstr ""
+"ロードバランサーにホストを追加していないか、またはホストとロードバランサーの間に問題がないかを判断するためにこの条件を使用します。例えば、あるメトリクスがロードバランサーのホストにルーティングされたリクエストを追跡している場合、例えばメトリクス値が5mの80%にわたって同類のシグナルの平均より2.5標準偏差以上低い時に、外れ値ア"
+"ラートを発します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:49 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:29
msgid ":strong:`Paramter`"
@@ -876,8 +972,12 @@ msgid "(Optional) :strong:`Group by`"
msgstr "(オプション) :strong:`グループを指定`"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:67
-msgid "Use a dimension or property when you want the norm to be different according to the different values of the dimension or property. For example, if you choose ``aws_availability_zone`` and your zones are US-east and US-west, instances in US-east are being compared only to other instances in US-east, and likewise for US-west. If you choose None, there is one norm, and all members are compared to this norm."
-msgstr "ディメンションまたはプロパティの値の違いによって異なる基準を作りたい場合は、ディメンションまたはプロパティを使用します。例えば、``aws_availability_zone`` を選択し、ゾーンがUS-eastおよびUS-westの場合、US-east内のインスタンスはUS-east内の他のインスタンスのみと比較されます。US-westの場合も同様です。「None」を選択すると、基準は1つになり、すべてのメンバーがこの基準に対して比較されます。"
+msgid ""
+"Use a dimension or property when you want the norm to be different according to the different values of the dimension or property. For example, if you choose ``aws_availability_zone`` and your zones are US-east and US-west, instances in US-east are being compared only to other instances in US-east, and likewise for US-"
+"west. If you choose None, there is one norm, and all members are compared to this norm."
+msgstr ""
+"ディメンションまたはプロパティの値の違いによって異なる基準を作りたい場合は、ディメンションまたはプロパティを使用します。例えば、``aws_availability_zone`` を選択し、ゾーンがUS-eastおよびUS-westの場合、US-east内のインスタンスはUS-east内の他のインスタンスのみと比較されます。US-westの場合も同様です。「None」を選択すると、基準"
+"は1つになり、すべてのメンバーがこの基準に対して比較されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:69
msgid ":strong:`Trigger threshold` and :strong:`Clear threshold` (when :strong:`Define thresholds by` is ``Deviations from norm``)"
@@ -907,7 +1007,8 @@ msgstr "解除の値が20の場合、比較される値が20%以下の差であ
msgid ":strong:`Trigger duration`"
msgstr ":strong:`トリガーの継続期間`"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:86 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:66 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:76
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:86 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:66
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:76
msgid "Percent: Integer between 1 and 100; Time indicator: Integer >= 1, followed by time indicator (s, m, h, d, w). For example, 30s, 10m, 2h, 5d, 1w."
msgstr "パーセンテージ:1~100の整数。時間の指標:>= 1の整数の後に時間を表す指標(s、m、h、d、w)を付す。例:30s、10m、2h、5d、1w"
@@ -924,8 +1025,12 @@ msgid "Percent: Integer between 1 and 100; Time indicator: Integer >= 1, followe
msgstr "パーセンテージ:1~100の整数。時間の指標:>= 1の整数の後に時間を表す指標(s、m、h、d、w)を付す。例:30s、10m、2h、5d、1w"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:91
-msgid "The number of times the signal must meet the clear threshold, compared to the number of expected data points. Higher percentages and/or longer time periods result in longer times for alerts to clear, increasing confidence that the alert condition is in fact no longer occurring. For more information about this option, see :ref:`duration-outlier`."
-msgstr "予想されるデータポイントの数との比較において、シグナルが解除の閾値を満たさなければならない回数。パーセンテージが高い、または期間が長いほど、アラートの解除までにかかる時間が長くなり、アラート条件が実際に発生しなくなったことをしっかりと確信できるようになります。このオプションの詳細については、:ref:`duration-outlier` を参照してください。"
+msgid ""
+"The number of times the signal must meet the clear threshold, compared to the number of expected data points. Higher percentages and/or longer time periods result in longer times for alerts to clear, increasing confidence that the alert condition is in fact no longer occurring. For more information about this option, "
+"see :ref:`duration-outlier`."
+msgstr ""
+"予想されるデータポイントの数との比較において、シグナルが解除の閾値を満たさなければならない回数。パーセンテージが高い、または期間が長いほど、アラートの解除までにかかる時間が長くなり、アラート条件が実際に発生しなくなったことをしっかりと確信できるようになります。このオプションの詳細については、:ref:`duration-outlier` を参照"
+"してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:97
msgid "The Duration option"
@@ -937,14 +1042,16 @@ msgstr "``Trigger duration`` と ``Clear duration`` のオプションは、指
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:102
msgid ""
-"Specifying |nbsp| 100% means that all expected data points arrived (there were no delayed or missing data points) and all met the threshold. In other words, if you specify 100% |nbsp| of a time range, an alert isn't triggered if any data points are delayed or do not arrive at all during that time range, even if all the data points that are received :strong:`do` meet the threshold. (For more information about delayed or missing data points, see :ref:`delayed-"
-"missing`.)"
+"Specifying |nbsp| 100% means that all expected data points arrived (there were no delayed or missing data points) and all met the threshold. In other words, if you specify 100% |nbsp| of a time range, an alert isn't triggered if any data points are delayed or do not arrive at all during that time range, even if all the "
+"data points that are received :strong:`do` meet the threshold. (For more information about delayed or missing data points, see :ref:`delayed-missing`.)"
msgstr ""
-" |nbsp| 「100%」と指定すると、期待されたデータポイントがすべて到着し(遅延や欠落したデータポイントがない)、すべてが閾値を満たしたという意味になります。言い換えると、「時間範囲の100% |nbsp| 」を指定した場合、受信されたすべてのデータポイントが閾値を :strong:` 満たして` いたとしても、その時間範囲中にデータポイントが遅延したり、まったく到着しなかったりしたりすれば、アラートはトリガーされません。(データポイントの遅延や欠落の詳細については、:ref:`delayed-"
-"missing` を参照してください。)"
+"|nbsp| 「100%」と指定すると、期待されたデータポイントがすべて到着し(遅延や欠落したデータポイントがない)、すべてが閾値を満たしたという意味になります。言い換えると、「時間範囲の100% |nbsp| 」を指定した場合、受信されたすべてのデータポイントが閾値を :strong:` 満たして` いたとしても、その時間範囲中にデータポイントが遅延した"
+"り、まったく到着しなかったりしたりすれば、アラートはトリガーされません。(データポイントの遅延や欠落の詳細については、:ref:`delayed-missing` を参照してください。)"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:104
-msgid "To specify that an alert triggers immediately, specify 100% |nbsp| of 1 |nbsp| second for infrastructure detectors, and 100% |nbsp| of 10 |nbsp| seconds for µAPM |nbsp| detectors. If the signal resolution is greater than the value you enter, a message indicates that you need to change it to at least the value of the signal resolution."
+msgid ""
+"To specify that an alert triggers immediately, specify 100% |nbsp| of 1 |nbsp| second for infrastructure detectors, and 100% |nbsp| of 10 |nbsp| seconds for µAPM |nbsp| detectors. If the signal resolution is greater than the value you enter, a message indicates that you need to change it to at least the value of the "
+"signal resolution."
msgstr "アラートが即時トリガーされるように指定するには、インフラストラクチャディテクターの場合は1秒の100%を指定し、APMディテクターの場合は10秒の100%を指定します。シグナルの解像度が入力した値より大きい場合は、シグナルの解像度以上の値に変更する必要があることを示すメッセージが表示されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:106
@@ -953,7 +1060,9 @@ msgstr "100未満のパーセンテージを指定すると得られる効果が
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:108
msgid "For the Alert threshold, a lower percentage is more sensitive (might trigger more alerts) than using 100%, because fewer signals are needed to trigger an alert. Also, it can trigger alerts even if some data points are missing, as long as the required number of anomalous signals arrive."
-msgstr "アラートの閾値については、100%を使用するよりも、低いパーセンテージの方が、アラートをトリガーするために必要なシグナル数が少なくなるため、感度が高くなります(トリガーされるアラート数が多くなる可能性があります)。また、いくつかのデータポイントが欠落していても、必要な数の異常シグナルが到着している限り、アラートをトリガーすることができます。"
+msgstr ""
+"アラートの閾値については、100%を使用するよりも、低いパーセンテージの方が、アラートをトリガーするために必要なシグナル数が少なくなるため、感度が高くなります(トリガーされるアラート数が多くなる可能性があります)。また、いくつかのデータポイントが欠落していても、必要な数の異常シグナルが到着している限り、アラートをトリガーする"
+"ことができます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:110
msgid "For the Clear threshold, it can clear alerts more quickly than using 100%, because fewer signals are needed to trigger the clear condition. Also, it can clear an alert even if some data points are missing, as long as the required number of non-anomalous signals arrive."
@@ -983,9 +1092,12 @@ msgstr "10分間に予想されるデータポイント数:6/分* 10分(60
msgid "Number of anomalous data points (how many times the threshold must be met) to trigger alert: 100% of 60 (60)"
msgstr "アラートをトリガーするまでの異常データポイント数(閾値を満たす必要がある回数):60の100%(60)"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:137 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:138 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:139 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:140
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:143 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:144 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:145 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:149
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:151 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:179 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:180 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:185
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:137 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:138
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:139 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:140
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:143 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:144
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:145 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:149
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:151 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:179
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:180 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:185
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:191
msgid "60"
msgstr "60"
@@ -999,8 +1111,12 @@ msgid "59"
msgstr "59"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:155
-msgid "Note that in the last example above, even though 100% of the data points that arrived were anomalous, the required number of anomalous data points (60) did not arrive. Therefore, the alert isn't triggered. The percent you specify represents percent of :strong:`expected` data points, not percent of :strong:`received` data points."
-msgstr "上記の最後の例では、到着したデータポイントの100%が異常であったものの、異常データポイントの必要数(60)が到着していないことに注意してください。したがって、アラートはトリガーされません。指定するパーセンテージは、:strong:`予想` データポイント数に対するパーセンテージを示すものであり、:strong:`受信` データポイント数に対するパーセンテージではありません。"
+msgid ""
+"Note that in the last example above, even though 100% of the data points that arrived were anomalous, the required number of anomalous data points (60) did not arrive. Therefore, the alert isn't triggered. The percent you specify represents percent of :strong:`expected` data points, not percent of :strong:`received` data "
+"points."
+msgstr ""
+"上記の最後の例では、到着したデータポイントの100%が異常であったものの、異常データポイントの必要数(60)が到着していないことに注意してください。したがって、アラートはトリガーされません。指定するパーセンテージは、:strong:`予想` データポイント数に対するパーセンテージを示すものであり、:strong:`受信` データポイント数に対する"
+"パーセンテージではありません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:158
msgid "Alert example 2"
@@ -1014,7 +1130,8 @@ msgstr "継続期間のパーセンテージに指定した値:10分の80%"
msgid "Number of anomalous data points (how many times the threshold must be met) to trigger alert: 80% of 60 (48)"
msgstr "アラートをトリガーするまでの異常データポイント数(閾値を満たす必要がある回数):60の80%(48)"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:181 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:187 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:193
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:181 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:187
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:193
msgid "48"
msgstr "48"
@@ -1035,8 +1152,12 @@ msgid "47"
msgstr "47"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:197
-msgid "Note that in the last example above, even though 47/50 is greater than the |nbsp| 80% you specified, the required number of anomalous data points (48) did not arrive. Therefore, the alert isn't triggered. The percent you specify represents percent of :strong:`expected` data points, not percent of :strong:`received` data points."
-msgstr "上記の最後の例では、47/50が指定した「 |nbsp| 80%」より大きくても、異常データポイントの必要数(48)が到着していないことに注意してください。したがって、アラートはトリガーされません。指定するパーセンテージは、:strong:`予想 ` データポイント数に対するパーセンテージを示すものであり、:strong:`受信` データポイント数に対するパーセンテージではありません。"
+msgid ""
+"Note that in the last example above, even though 47/50 is greater than the |nbsp| 80% you specified, the required number of anomalous data points (48) did not arrive. Therefore, the alert isn't triggered. The percent you specify represents percent of :strong:`expected` data points, not percent of :strong:`received` data "
+"points."
+msgstr ""
+"上記の最後の例では、47/50が指定した「 |nbsp| 80%」より大きくても、異常データポイントの必要数(48)が到着していないことに注意してください。したがって、アラートはトリガーされません。指定するパーセンテージは、:strong:`予想 ` データポイント数に対するパーセンテージを示すものであり、:strong:`受信` データポイント数に対するパーセ"
+"ンテージではありません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:202
msgid "Clear example 1"
@@ -1080,7 +1201,9 @@ msgstr "25"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:240
msgid "Note that in the last example above, even though 100% of the data points that arrived were anomalous, only 35 out of the 36 expected data points arrived. Therefore, the alert isn't cleared. The percent you specify represents percent of :strong:`expected` data points, not percent of :strong:`received` data points."
-msgstr "上記の最後の例では、到着したデータポイントの100%が異常であったにもかかわらず、予想されるデータポイント数36個のうち35個しか到着していないことに注意してください。したがって、アラートは解除されません。指定するパーセンテージは、:strong:`予想` データポイント数に対するパーセンテージを示すものであり、:strong:`受信` データポイント数に対するパーセンテージではありません。"
+msgstr ""
+"上記の最後の例では、到着したデータポイントの100%が異常であったにもかかわらず、予想されるデータポイント数36個のうち35個しか到着していないことに注意してください。したがって、アラートは解除されません。指定するパーセンテージは、:strong:`予想` データポイント数に対するパーセンテージを示すものであり、:strong:`受信` データポイン"
+"ト数に対するパーセンテージではありません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:243
msgid "Clear example 2"
@@ -1094,7 +1217,8 @@ msgstr "継続期間のパーセンテージに指定した値:15分の50%"
msgid "Number of anomalous data points (how many times the threshold must be met) to clear alert: 50% of 30 (15)"
msgstr "アラートを解除するまでの異常データポイント数(閾値を満たす必要がある回数):30の50%(15)"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:265 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:271 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:277
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:265 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:271
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:277
msgid "15"
msgstr "15"
@@ -1102,7 +1226,8 @@ msgstr "15"
msgid "15-30"
msgstr "15-30"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:270 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:276 ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:82 ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:90
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:270 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:276 ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:82
+#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:90
msgid "20"
msgstr "20"
@@ -1115,8 +1240,12 @@ msgid "14"
msgstr "14"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:281
-msgid "Note that in the last example above, even if 14 anomalous data points arrive, and 14/15 is greater than the |nbsp| 50% you specified, the required number of anomalous data points (15) did not arrive. Therefore, the alert isn't triggered. The percent you specify represents percent of :strong:`expected` data points, not percent of :strong:`received` data points."
-msgstr "上記の最後の例では、14個の異常データポイントが到着し、14/15が指定した「 |nbsp| 50%」より大きくても、必要な異常データポイント数(15個)が到着していないことに注意してください。したがって、アラートはトリガーされません。指定したパーセンテージは、:strong:`予想` データポイント数に対するパーセンテージを示すものであり、:strong:`受信` データポイント数に対するパーセンテージではありません。"
+msgid ""
+"Note that in the last example above, even if 14 anomalous data points arrive, and 14/15 is greater than the |nbsp| 50% you specified, the required number of anomalous data points (15) did not arrive. Therefore, the alert isn't triggered. The percent you specify represents percent of :strong:`expected` data points, not "
+"percent of :strong:`received` data points."
+msgstr ""
+"上記の最後の例では、14個の異常データポイントが到着し、14/15が指定した「 |nbsp| 50%」より大きくても、必要な異常データポイント数(15個)が到着していないことに注意してください。したがって、アラートはトリガーされません。指定したパーセンテージは、:strong:`予想` データポイント数に対するパーセンテージを示すものであり、:strong:`"
+"受信` データポイント数に対するパーセンテージではありません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/outlier-detection.rst:294 ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:125
msgid "Alert when"
@@ -1160,19 +1289,27 @@ msgstr "リソースの枯渇"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:11
msgid ""
-"Resource Running Out alerts when a signal has a certain amount of time before it is exhausted (reaches a specified minimum value) or full (reaches a specified capacity). While it is common to use a :ref:`static-threshold` for many types of signals that trend to empty or capacity, such as alerting when memory utilization is |nbsp| 80% or when free disk space is below |nbsp| 10%, the Resource Running Out condition provides a more powerful way of receiving "
-"alerts for these types of signals, because it takes into account whether a signal is trending up or down (steadily rising or falling)."
+"Resource Running Out alerts when a signal has a certain amount of time before it is exhausted (reaches a specified minimum value) or full (reaches a specified capacity). While it is common to use a :ref:`static-threshold` for many types of signals that trend to empty or capacity, such as alerting when memory utilization "
+"is |nbsp| 80% or when free disk space is below |nbsp| 10%, the Resource Running Out condition provides a more powerful way of receiving alerts for these types of signals, because it takes into account whether a signal is trending up or down (steadily rising or falling)."
msgstr ""
-"「リソースの枯渇」は、シグナルが枯渇する(指定した最小値に達する)、または満杯になる(指定した容量に達する)までに一定の時間があるときにアラートを発します。メモリの使用率が80%になったときや、ディスクの空き容量が10%未満になったときにアラートを発するというような、空きまたは容量を示す多くのタイプのシグナルには :ref:`static-threshold` を使用するのが一般的ですが、「リソースの枯渇」条件は、シグナルの上昇傾向または下降傾向(安定して上昇または下降している)を考慮に入"
-"れるため、これらのタイプのシグナルについてアラートを受け取るためのより強力な方法を提供します。"
+"「リソースの枯渇」は、シグナルが枯渇する(指定した最小値に達する)、または満杯になる(指定した容量に達する)までに一定の時間があるときにアラートを発します。メモリの使用率が80%になったときや、ディスクの空き容量が10%未満になったときにアラートを発するというような、空きまたは容量を示す多くのタイプのシグナルには :ref:`static-"
+"threshold` を使用するのが一般的ですが、「リソースの枯渇」条件は、シグナルの上昇傾向または下降傾向(安定して上昇または下降している)を考慮に入れるため、これらのタイプのシグナルについてアラートを受け取るためのより強力な方法を提供します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:17
-msgid "You might have a detector that triggers an alert when memory utilization goes above 80%, so you have time to look into the issue before the your app is seriously affected. In fact, reaching 80% might only represent a problem if the value has been trending upward and is on a path to reaching 100%. A better way to monitor this signal is to use the Resource Running Out alert condition, which alerts you when a signal is trending up or down."
-msgstr "メモリ使用率が80%を超過したときにアラートを発するディテクターがあれば、アプリに深刻な影響が出る前に問題を調べる時間ができます。実際、80%に達することが問題になるのは、その値が上昇傾向にあり、100%に達しようとしている場合だけかもしれません。このシグナルを監視するより良い方法は、シグナルの上昇傾向/下降傾向に応じてアラートを発する「リソースの枯渇」アラート条件を使用することです。"
+msgid ""
+"You might have a detector that triggers an alert when memory utilization goes above 80%, so you have time to look into the issue before the your app is seriously affected. In fact, reaching 80% might only represent a problem if the value has been trending upward and is on a path to reaching 100%. A better way to monitor "
+"this signal is to use the Resource Running Out alert condition, which alerts you when a signal is trending up or down."
+msgstr ""
+"メモリ使用率が80%を超過したときにアラートを発するディテクターがあれば、アプリに深刻な影響が出る前に問題を調べる時間ができます。実際、80%に達することが問題になるのは、その値が上昇傾向にあり、100%に達しようとしている場合だけかもしれません。このシグナルを監視するより良い方法は、シグナルの上昇傾向/下降傾向に応じてアラートを発"
+"する「リソースの枯渇」アラート条件を使用することです。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:19
-msgid "In this case, say you want to receive a notification when the signal is expected to hit 80% in 15 |nbsp| minutes (trigger threshold of |nbsp| .25 |nbsp| hours) and has been in this state for 3 |nbsp| minutes (trigger duration of |nbsp| 3m). This alerts you in advance of the error condition, giving you more time to respond, but won't send a false alert if the signal spikes to 80% and then quickly drops to a safer level."
-msgstr "この場合に、シグナルが15分後に80%に達すると予想され(トリガーの閾値は0.25時間)、その状態が3分間続いたとき(トリガーの継続期間は3m)に通知を受け取りたいとします。これは、エラー条件を事前にアラートし、対応のために使える時間を増やしますが、シグナルが80%まで急上昇し、その後すぐに安全なレベルまで低下した場合に、誤アラートを送信することはありません。"
+msgid ""
+"In this case, say you want to receive a notification when the signal is expected to hit 80% in 15 |nbsp| minutes (trigger threshold of |nbsp| .25 |nbsp| hours) and has been in this state for 3 |nbsp| minutes (trigger duration of |nbsp| 3m). This alerts you in advance of the error condition, giving you more time to "
+"respond, but won't send a false alert if the signal spikes to 80% and then quickly drops to a safer level."
+msgstr ""
+"この場合に、シグナルが15分後に80%に達すると予想され(トリガーの閾値は0.25時間)、その状態が3分間続いたとき(トリガーの継続期間は3m)に通知を受け取りたいとします。これは、エラー条件を事前にアラートし、対応のために使える時間を増やしますが、シグナルが80%まで急上昇し、その後すぐに安全なレベルまで低下した場合に、誤アラートを送"
+"信することはありません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:33
msgid ":strong:`Alert when nearing`"
@@ -1203,8 +1340,12 @@ msgid "Approximately how often alerts will be triggered, where Low can result in
msgstr "アラートのトリガー頻度の目安。「Low」を選択するとアラートのトリガー頻度は低くなり、アラートが解除されるまでの時間が長くなります(最も :term:`flappy` でなくなる)。トリガーと解除の感度を決定する設定を変更するには、``Custom`` を選択します(以下にリスト)。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:45
-msgid "\\* If you specify a metric unit in the plot configuration panel for the signal, the value you enter for Capacity must match the unit you specified. For example, if you specified bytes, you have to specify 100000000000 (a hundred billion) to specify 100 gigabytes. To learn more, see :ref:`specify-unit` and :ref:`plot-config-panel`."
-msgstr "\\*シグナルのプロット設定パネルでメトリクスの単位を指定した場合、「Capacity」に入力する値は、指定した単位と一致していなければなりません。例えば、「バイト」を指定した場合、100ギガバイトを指定するには100000000000(1000億)を指定する必要があります。詳細は、:ref:`specify-unit` および :ref:`plot-config-panel` を参照してください。"
+msgid ""
+"\\* If you specify a metric unit in the plot configuration panel for the signal, the value you enter for Capacity must match the unit you specified. For example, if you specified bytes, you have to specify 100000000000 (a hundred billion) to specify 100 gigabytes. To learn more, see :ref:`specify-unit` and :ref:`plot-"
+"config-panel`."
+msgstr ""
+"\\*シグナルのプロット設定パネルでメトリクスの単位を指定した場合、「Capacity」に入力する値は、指定した単位と一致していなければなりません。例えば、「バイト」を指定した場合、100ギガバイトを指定するには100000000000(1000億)を指定する必要があります。詳細は、:ref:`specify-unit` および :ref:`plot-config-panel` を参照してくださ"
+"い。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:61
msgid ":strong:`Trigger threshold`"
@@ -1239,8 +1380,12 @@ msgid "For example, if the Trigger threshold is 24 and the Clear threshold is 36
msgstr "例えば、「トリガーの閾値」が24で「解除の閾値」が36の場合、リソースが24時間以内に容量に達すると予測されたときにアラートがトリガーされ、容量に達するまでの予測時間が36時間まで増えると解除されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:77
-msgid "The number of times the derived signal (hours remaining) must meet the clear threshold, compared to the number of expected data points. Higher percentages and/or longer time periods result in longer times for alerts to clear, increasing confidence that the alert condition is in fact no longer occurring. For more information about this option, see :ref:`duration-resource`."
-msgstr "予想されるデータポイントの数との比較において、到着したシグナル(残り時間数)が解除の閾値を満たさなければならない回数。パーセンテージが高い、または期間が長いほど、アラートの解除までにかかる時間が長くなり、アラート条件が実際に発生しなくなったことをしっかりと確信できるようになります。このオプションの詳細については、:ref:`duration-resource` を参照してください。"
+msgid ""
+"The number of times the derived signal (hours remaining) must meet the clear threshold, compared to the number of expected data points. Higher percentages and/or longer time periods result in longer times for alerts to clear, increasing confidence that the alert condition is in fact no longer occurring. For more "
+"information about this option, see :ref:`duration-resource`."
+msgstr ""
+"予想されるデータポイントの数との比較において、到着したシグナル(残り時間数)が解除の閾値を満たさなければならない回数。パーセンテージが高い、または期間が長いほど、アラートの解除までにかかる時間が長くなり、アラート条件が実際に発生しなくなったことをしっかりと確信できるようになります。このオプションの詳細について"
+"は、:ref:`duration-resource` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:79
msgid ":strong:`Use Double EWMA`"
@@ -1248,7 +1393,7 @@ msgstr ":strong:`Double EWMAの使用`"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:81
msgid "``Yes`` uses a double exponentially weighted moving average to perform forecasts. ``No`` uses linear extrapolation. In general, it's good paractice to use ``Yes`` to handle trends present at a resolution somewhat coarser than native resolution."
-msgstr "``Yes`` に設定すると、二重指数加重移動平均を使用して予測を実行します。``No`` に設定すると、線形外挿法を使用します。一般的に、 ``Yes`` を使用して、ネイティブ解像度よりやや粗い解像度に存在する傾向を扱うのが良い方法です。"
+msgstr "``Yes`` に設定すると、二重指数加重移動平均を使用して予測を実行します。``No`` に設定すると、線形外挿法を使用します。一般的に、 ``Yes`` を使用して、ネイティブ解像度よりやや粗い解像度に存在する傾向を扱うのが良い方法です。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:87
msgid "Using the Duration option"
@@ -1256,9 +1401,11 @@ msgstr "継続期間のオプションの使用"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:89
msgid ""
-"The Trigger duration and Clear duration options are used to trigger or clear alerts based on how frequently the condition is satisfied during the specified time window. For this alert, the condition being evaluated concerns the forecasted number of hours left, and the forecast is extrapolated when data is missing. Therefore, in the alert when nearing empty case (for example), a short period of descent followed by a long period of missing data might result in "
-"an alert being triggered."
-msgstr "トリガーの継続期間と解除の継続期間のオプションは、指定された時間窓の間に条件が満たされる頻度に基づいてアラートをトリガーまたは解除するために使用します。このアラートの場合、評価される条件において重要なのは予測される残り時間数であり、データが欠落している場合には予測が外挿されます。したがって、(たとえば)「Emptyに接近したときにアラートを発する」のケースでは、短時間の下降に続いて長時間のデータ欠落が発生すると、アラートがトリガーされる可能性があります。"
+"The Trigger duration and Clear duration options are used to trigger or clear alerts based on how frequently the condition is satisfied during the specified time window. For this alert, the condition being evaluated concerns the forecasted number of hours left, and the forecast is extrapolated when data is missing. "
+"Therefore, in the alert when nearing empty case (for example), a short period of descent followed by a long period of missing data might result in an alert being triggered."
+msgstr ""
+"トリガーの継続期間と解除の継続期間のオプションは、指定された時間窓の間に条件が満たされる頻度に基づいてアラートをトリガーまたは解除するために使用します。このアラートの場合、評価される条件において重要なのは予測される残り時間数であり、データが欠落している場合には予測が外挿されます。したがって、(たとえば)「Emptyに接近したと"
+"きにアラートを発する」のケースでは、短時間の下降に続いて長時間のデータ欠落が発生すると、アラートがトリガーされる可能性があります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:103
msgid "Trigger duration and Clear duration"
@@ -1269,8 +1416,12 @@ msgid "Trigger threshold and Trigger duration"
msgstr "トリガーの閾値とトリガーの継続期間"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:107
-msgid "These parameters are naturally a pair: consider a trigger strategy with 3 |nbsp| rules, such as alert if < |nbsp| 72 |nbsp| hours left for |nbsp| 100% of |nbsp| 4 |nbsp| hours, if < |nbsp| 48 |nbsp| hours for 100% of |nbsp| 2 |nbsp| hours, or if < |nbsp| 24 hours |nbsp| for 100% of |nbsp| 1 |nbsp| hour (with increasingly higher levels of severity)."
-msgstr "これらのパラメータは必然的にペアです。例えば、「残り時間が< |nbsp| 72 |nbsp| の場合にアラート、継続期間は |nbsp| 4 |nbsp| 時間の |nbsp| 100%」、「残り時間が< |nbsp| 48 |nbsp| の場合にアラート、継続期間は |nbsp| 2 |nbsp| 時間の100%」、「残り時間が< |nbsp| 24 |nbsp| の場合にアラート、継続期間は |nbsp| 1 |nbsp| 時間の100%」(トリガー感度が次第に上がっている)のように、3つ |nbsp| のルールを持つトリガー戦略を検討してみましょう。"
+msgid ""
+"These parameters are naturally a pair: consider a trigger strategy with 3 |nbsp| rules, such as alert if < |nbsp| 72 |nbsp| hours left for |nbsp| 100% of |nbsp| 4 |nbsp| hours, if < |nbsp| 48 |nbsp| hours for 100% of |nbsp| 2 |nbsp| hours, or if < |nbsp| 24 hours |nbsp| for 100% of |nbsp| 1 |nbsp| hour (with "
+"increasingly higher levels of severity)."
+msgstr ""
+"これらのパラメータは必然的にペアです。例えば、「残り時間が< |nbsp| 72 |nbsp| の場合にアラート、継続期間は |nbsp| 4 |nbsp| 時間の |nbsp| 100%」、「残り時間が< |nbsp| 48 |nbsp| の場合にアラート、継続期間は |nbsp| 2 |nbsp| 時間の100%」、「残り時間が< |nbsp| 24 |nbsp| の場合にアラート、継続期間は |nbsp| 1 |nbsp| 時間の100%」"
+"(トリガー感度が次第に上がっている)のように、3つ |nbsp| のルールを持つトリガー戦略を検討してみましょう。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/resource-running-out.rst:110
msgid "If the signal often does not change, changes might go undetected (depending on \"percent\" required in the trigger duration)."
@@ -1294,9 +1445,11 @@ msgstr "静的閾値"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:12
msgid ""
-"Static Threshold alerts when a signal goes above or below a static threshold, or is within or outside of a range. Use this condition when you need to be alerted based on fixed values, as opposed to trends (for which you can use the :ref:`sudden-change` and :ref:`resource-running-out` conditions) or comparisons with past behavior (for which you can use :ref:`hist-anomaly`). This condition works best with metrics that have a static range of \"good\" and \"bad\" "
-"values."
-msgstr "静的閾値は、シグナルが静的閾値を上回った/下回った場合、または、ある範囲内にある/範囲外にある場合にアラートを発します。この条件は、傾向( :ref:`sudden-change` および :ref:`resource-running-out` の条件が使用可能な場合)や過去の挙動との比較( :ref:`hist-anomaly` の条件が使用可能な場合)とは対照的に、固定値に基づいてアラートする必要がある場合に使用します。この条件は、「可」の値と「不可」の値に静的な範囲があるメトリクスで使用すると最適に動作します。"
+"Static Threshold alerts when a signal goes above or below a static threshold, or is within or outside of a range. Use this condition when you need to be alerted based on fixed values, as opposed to trends (for which you can use the :ref:`sudden-change` and :ref:`resource-running-out` conditions) or comparisons with past "
+"behavior (for which you can use :ref:`hist-anomaly`). This condition works best with metrics that have a static range of \"good\" and \"bad\" values."
+msgstr ""
+"静的閾値は、シグナルが静的閾値を上回った/下回った場合、または、ある範囲内にある/範囲外にある場合にアラートを発します。この条件は、傾向( :ref:`sudden-change` および :ref:`resource-running-out` の条件が使用可能な場合)や過去の挙動との比較( :ref:`hist-anomaly` の条件が使用可能な場合)とは対照的に、固定値に基づいてアラート"
+"する必要がある場合に使用します。この条件は、「可」の値と「不可」の値に静的な範囲があるメトリクスで使用すると最適に動作します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:14
msgid "To compare one signal with another, use :ref:`custom-threshold`."
@@ -1339,8 +1492,12 @@ msgid "For ``Out of Range``, the threshold values you provide are exclusive ( >
msgstr "``Out of Range`` の場合、指定する閾値は排他的(> および < )です。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:59
-msgid "``Duration`` triggers when the signal meets and remains at threshold condition for a specified period, such as 10 minutes. If it is normal for a signal to rise and fall rapidly, using this option reduces :term:`flappiness`. If this option is used, an alert will *not* trigger if there are any missing data points during the duration. For more information, see :ref:`duration-static`."
-msgstr "``Duration`` を使用すると、シグナルが閾値条件を満たし、指定した期間(例:10分)にわたってその状態を継続した場合にアラートがトリガーされます。シグナルが急激に上下することが通常である場合には、このオプションを使用すると、:term:`フラッピング ` が軽減されます。このオプションを使用している場合、指定した期間中にデータポイントの欠落があると、アラートはトリガー *されません*。詳細は、:ref:`duration-static` を参照してください。"
+msgid ""
+"``Duration`` triggers when the signal meets and remains at threshold condition for a specified period, such as 10 minutes. If it is normal for a signal to rise and fall rapidly, using this option reduces :term:`flappiness`. If this option is used, an alert will *not* trigger if there are any missing data points "
+"during the duration. For more information, see :ref:`duration-static`."
+msgstr ""
+"``Duration`` を使用すると、シグナルが閾値条件を満たし、指定した期間(例:10分)にわたってその状態を継続した場合にアラートがトリガーされます。シグナルが急激に上下することが通常である場合には、このオプションを使用すると、:term:`フラッピング ` が軽減されます。このオプションを使用している場合、指定した期間中にデータポ"
+"イントの欠落があると、アラートはトリガー *されません*。詳細は、:ref:`duration-static` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:61
msgid "``Percent of duration`` triggers based on the number of data points that met the threshold during the specified duration. For more information, see :ref:`duration-static`."
@@ -1360,11 +1517,11 @@ msgstr "ご想像の通り、:guilabel:`Trigger Sensitivity` に ``Immediately``
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:86
msgid ""
-"The ``Duration`` option triggers when the signal meets and remains at threshold condition for a specified period, such as 10 minutes. Therefore, using this option is less sensitive (might trigger fewer alerts) than the ``Immediately`` option. If you use this option, an alert isn't triggered if any data points are delayed or don't arrive at all during that time range, even if all the data points that are received :strong:`do` meet the threshold. For more "
-"information about delayed or missing data points, see :ref:`delayed-missing`."
+"The ``Duration`` option triggers when the signal meets and remains at threshold condition for a specified period, such as 10 minutes. Therefore, using this option is less sensitive (might trigger fewer alerts) than the ``Immediately`` option. If you use this option, an alert isn't triggered if any data points are delayed "
+"or don't arrive at all during that time range, even if all the data points that are received :strong:`do` meet the threshold. For more information about delayed or missing data points, see :ref:`delayed-missing`."
msgstr ""
-" ``Duration`` オプションを使用すると、シグナルが閾値条件を満たし、指定した期間(例:10分間)にわたってその状態を継続した場合にアラートがトリガーされます。したがって、このオプションを使用すると、``Immediately`` オプションよりも感度は低くなります(アラートのトリガー回数が少なくなる可能性があります)。このオプションを使用すると、たとえ受信したすべてのデータポイントが閾値条件を :strong:`満たしていても`、指定した期間中にデータポイントが遅延したり、まったく到着しな"
-"かったりすれば、アラートはトリガーされません。データポイントの遅延や欠落について、詳細は :ref:`delayed-missing` を参照してください。"
+"``Duration`` オプションを使用すると、シグナルが閾値条件を満たし、指定した期間(例:10分間)にわたってその状態を継続した場合にアラートがトリガーされます。したがって、このオプションを使用すると、``Immediately`` オプションよりも感度は低くなります(アラートのトリガー回数が少なくなる可能性があります)。このオプションを使用する"
+"と、たとえ受信したすべてのデータポイントが閾値条件を :strong:`満たしていても`、指定した期間中にデータポイントが遅延したり、まったく到着しなかったりすれば、アラートはトリガーされません。データポイントの遅延や欠落について、詳細は :ref:`delayed-missing` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:88
msgid "If you want an option that triggers even if some data points do not arrive on time, use ``Percent of duration`` (with a percentage below |nbsp| 100)."
@@ -1372,11 +1529,11 @@ msgstr "一部のデータポイントが時間通りに到着しなくてもア
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:92
msgid ""
-"The ``Percent of duration`` option triggers alerts based on the number of data points that met the threshold during the window, compared to how many data points were expected to arrive. Because this option triggers an alert based on the percentage of data points that met the threshold, it can sometimes trigger an alert even if some data points didn't arrive on time. Therefore, using this option with a percentage below |nbsp| 100 is more sensitive (might "
-"trigger more alerts) than the ``Duration`` option."
+"The ``Percent of duration`` option triggers alerts based on the number of data points that met the threshold during the window, compared to how many data points were expected to arrive. Because this option triggers an alert based on the percentage of data points that met the threshold, it can sometimes trigger an alert "
+"even if some data points didn't arrive on time. Therefore, using this option with a percentage below |nbsp| 100 is more sensitive (might trigger more alerts) than the ``Duration`` option."
msgstr ""
-" ``Percent of duration`` オプションを使用すると、指定した時間窓の間に閾値を満たしたデータポイントの数に基づいてアラートがトリガーされます。このオプションは、閾値を満たしたデータ ポイント数のパーセンテージに基づいてアラートをトリガーするため、一部のデータポイントが時間通りに到着しなかった場合でもアラートをトリガーすることがあります。したがって、100未満のパーセンテージでこのオプションを使用すると、``Duration`` オプションを使用した場合よりも感度は高くなります(よ"
-"り多くのアラートがトリガーされる可能性があります)。"
+"``Percent of duration`` オプションを使用すると、指定した時間窓の間に閾値を満たしたデータポイントの数に基づいてアラートがトリガーされます。このオプションは、閾値を満たしたデータ ポイント数のパーセンテージに基づいてアラートをトリガーするため、一部のデータポイントが時間通りに到着しなかった場合でもアラートをトリガーすることが"
+"あります。したがって、100未満のパーセンテージでこのオプションを使用すると、``Duration`` オプションを使用した場合よりも感度は高くなります(より多くのアラートがトリガーされる可能性があります)。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:142
msgid "Option you specify for :strong:`Trigger Sensitivity`: Percent of Duration = 75% of 3 |nbsp| minutes"
@@ -1388,11 +1545,11 @@ msgstr "APIの使用に関する注意事項"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/static-threshold.rst:185
msgid ""
-"If you use the Splunk Observability Cloud API to build detectors, you can use the ``const()`` function to specify different threshold values for different dimension values. For example, you might have different acceptable SLA values depending on whether a host is in dev, lab, or production. Using the ``const()`` function can be more efficient than manually building multiple detectors or detectors with multiple rules. For more information, see the section on "
-"creating multiple time series in the :new-page:`Splunk Observability Cloud API documentation `."
+"If you use the Splunk Observability Cloud API to build detectors, you can use the ``const()`` function to specify different threshold values for different dimension values. For example, you might have different acceptable SLA values depending on whether a host is in dev, lab, or production. Using the ``const()`` function "
+"can be more efficient than manually building multiple detectors or detectors with multiple rules. For more information, see the section on creating multiple time series in the :new-page:`Splunk Observability Cloud API documentation `."
msgstr ""
-"Splunk Observability Cloud APIを使用してディテクターを作成する場合、 ``const()`` 関数を使用して、異なるディメンション値に対して異なる閾値を指定できます。たとえば、あるホストが開発、実験、本番のいずれの環境に存在するかによって許容できるSLA値が異なるという場合があるでしょう。ここで ``const()`` 関数を使用すると、複数のディテクターや複数のルールを持つディテクターを手動で構築するよりも効率的です。詳細は、:new-page:`Splunk Observability Cloud API ドキュメント"
-"` の、複数の時系列の作成に関するセクションを参照してください。"
+"Splunk Observability Cloud APIを使用してディテクターを作成する場合、 ``const()`` 関数を使用して、異なるディメンション値に対して異なる閾値を指定できます。たとえば、あるホストが開発、実験、本番のいずれの環境に存在するかによって許容できるSLA値が異なるという場合があるでしょう。ここで ``const()`` 関数を使用すると、複数のディ"
+"テクターや複数のルールを持つディテクターを手動で構築するよりも効率的です。詳細は、:new-page:`Splunk Observability Cloud API ドキュメント` の、複数の時系列の作成に関するセクションを参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:-1
msgid "The Sudden Change condition alerts when values received during a recent time window are anomalous compared to values received during the preceding time window."
@@ -1403,7 +1560,9 @@ msgid "Sudden Change"
msgstr "急激な変化"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:12
-msgid "Sudden Change alerts when values received during a recent (short) time window (called the current window) are anomalous compared to values received during the preceding (typically longer) time window (called the historical window). Use this condition to find a sudden change in a metric when you don't have a static baseline for comparison."
+msgid ""
+"Sudden Change alerts when values received during a recent (short) time window (called the current window) are anomalous compared to values received during the preceding (typically longer) time window (called the historical window). Use this condition to find a sudden change in a metric when you don't have a static "
+"baseline for comparison."
msgstr "「急激な変化」は、直近の(短い)時間窓(現在のウィンドウ)で受信した値が、その前の(一般的に長い)時間窓(履歴的ウィンドウ)で受信した値と比較して異常である場合にアラートを発します。この条件を使用すると、比較のための静的な基準がない場合に、メトリクスの急激な変化を検出できます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:18
@@ -1416,9 +1575,11 @@ msgstr "あるサーバーのログイン数が突然大幅に減少した場合
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:36
msgid ""
-"Alert is triggered when the signal is either above a threshold, below a threshold, or outside a specified range (e.g. more than 3.5 standard deviations above or below the mean of the preceding window, or higher than the 95th percentile of the preceding window). Choose :strong:`Custom sensitivity` and then the :strong:`Normal based on` parameter on to specify whether anomalies are based on standard deviations from the mean, a percentile value, or mean plus "
-"percentage change."
-msgstr "アラートは、シグナルが閾値を超えたとき、閾値を下回ったとき、または指定した範囲外にあるときにトリガーされます(例:直前のウィンドウの平均値より3.5標準偏差以上上または下、または直前のウィンドウの95パーセンタイルより高い場合など)。:strong:`カスタム感度` を選択し、:strong:`正常値の基準` のパラメータを選択して、異常の基準を平均値からの標準偏差とするか、パーセンタイル値とするか、または平均に変化率を加えたものとするかを指定します。"
+"Alert is triggered when the signal is either above a threshold, below a threshold, or outside a specified range (e.g. more than 3.5 standard deviations above or below the mean of the preceding window, or higher than the 95th percentile of the preceding window). Choose :strong:`Custom sensitivity` and then "
+"the :strong:`Normal based on` parameter on to specify whether anomalies are based on standard deviations from the mean, a percentile value, or mean plus percentage change."
+msgstr ""
+"アラートは、シグナルが閾値を超えたとき、閾値を下回ったとき、または指定した範囲外にあるときにトリガーされます(例:直前のウィンドウの平均値より3.5標準偏差以上上または下、または直前のウィンドウの95パーセンタイルより高い場合など)。:strong:`カスタム感度` を選択し、:strong:`正常値の基準` のパラメータを選択して、異常の基準を平"
+"均値からの標準偏差とするか、パーセンタイル値とするか、または平均に変化率を加えたものとするかを指定します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:38
msgid ":guilabel:`Trigger Sensitivity`"
@@ -1434,11 +1595,11 @@ msgstr "履歴ウィンドウとの比較における異常の定義方法。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:57
msgid ""
-"Use ``Percentile`` for signals such as application response time or latency, where the signal might be more likely to have small but consistent increases or decreases. In general, ``Percentile`` aims to be representative but can be rigid (a new maximum value is seen as anomalous regardless of scale). ``Mean plus standard deviation`` is more flexible but can be unduly influenced by extreme observations. ``Mean plus percentage change`` is more interpretable but "
-"might be harder to tune."
+"Use ``Percentile`` for signals such as application response time or latency, where the signal might be more likely to have small but consistent increases or decreases. In general, ``Percentile`` aims to be representative but can be rigid (a new maximum value is seen as anomalous regardless of scale). ``Mean plus standard "
+"deviation`` is more flexible but can be unduly influenced by extreme observations. ``Mean plus percentage change`` is more interpretable but might be harder to tune."
msgstr ""
-"アプリケーションの応答時間やレイテンシのように、小さくとも一貫した増減を示す可能性の高いシグナルには、``Percentile`` を使用します。一般的に、``Percentile`` は代表的であることを目指しているものの、柔軟性に欠ける可能性があります(新たな最大値は、スケールに関係なく異常とみなされる)。``Mean plus standard deviation`` はより柔軟ですが、極値が観測された場合に過度に影響される可能性があります。``Mean plus percentage change`` はより解釈しやすいですが、調整が難しい可"
-"能性があります。"
+"アプリケーションの応答時間やレイテンシのように、小さくとも一貫した増減を示す可能性の高いシグナルには、``Percentile`` を使用します。一般的に、``Percentile`` は代表的であることを目指しているものの、柔軟性に欠ける可能性があります(新たな最大値は、スケールに関係なく異常とみなされる)。``Mean plus standard deviation`` はより"
+"柔軟ですが、極値が観測された場合に過度に影響される可能性があります。``Mean plus percentage change`` はより解釈しやすいですが、調整が難しい可能性があります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:61
msgid "The time range being monitored. For example, a value of 10m indicates that you are looking for anomalies that have occurred in the most recent 10 minutes."
@@ -1485,8 +1646,11 @@ msgid ":strong:`Ignore historical extremes` (when :strong:`Normal based on` is `
msgstr ":strong:`履歴的極値を無視` ( :strong:`正常値の基準` が ``Mean plus standard deviation`` の場合)"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:85
-msgid "``Yes`` applies a filter to the historical data: it replaces data points more than :strong:`Trigger threshold` standard deviations away from the mean with the associated limit (i.e., the value exactly :strong:`Trigger threshold` standard deviations away from the mean), then calculates the threshold on that modified set. ``No`` does not apply a filter."
-msgstr "``Yes`` に設定すると、履歴データにフィルターが適用されます。 :strong:`トリガーの閾値` の標準偏差以上平均から離れたデータポイントを、関連する上限値(すなわち、平均からちょうど :strong:`トリガーの閾値` の標準偏差離れた値)で置き換え、その修正セットで閾値を計算します。``No`` に設定した場合は、フィルターは適用されません。"
+msgid ""
+"``Yes`` applies a filter to the historical data: it replaces data points more than :strong:`Trigger threshold` standard deviations away from the mean with the associated limit (i.e., the value exactly :strong:`Trigger threshold` standard deviations away from the mean), then calculates the threshold on that modified set. "
+"``No`` does not apply a filter."
+msgstr ""
+"``Yes`` に設定すると、履歴データにフィルターが適用されます。 :strong:`トリガーの閾値` の標準偏差以上平均から離れたデータポイントを、関連する上限値(すなわち、平均からちょうど :strong:`トリガーの閾値` の標準偏差離れた値)で置き換え、その修正セットで閾値を計算します。``No`` に設定した場合は、フィルターは適用されません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:87
msgid "In general, ``Yes`` is recommended as a way to prevent anomalous values from influencing the definition of \"normal\" behavior against which to measure the signal."
@@ -1498,14 +1662,16 @@ msgstr ":strong:`EWMAを使用` ( :strong:`正常値の基準` が ``Mean plus
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:91
msgid "``Yes`` calculates an exponentially weighted moving average (and adds standard deviations or a percentage as appropriate). ``No`` uses a usual moving average. In general, ``Yes`` is recommended as a way to prevent the threshold from lagging too far behind the current values."
-msgstr "``Yes`` に設定すると、二重指数加重移動平均を計算します(そして、必要に応じて標準偏差またはパーセンテージを追加します)。``No`` に設定すると、通常の移動平均を使用します。一般的に、閾値が現在の値から大きく遅れるのを防ぐためには、 ``Yes`` が推奨されます。"
+msgstr "``Yes`` に設定すると、二重指数加重移動平均を計算します(そして、必要に応じて標準偏差またはパーセンテージを追加します)。``No`` に設定すると、通常の移動平均を使用します。一般的に、閾値が現在の値から大きく遅れるのを防ぐためには、 ``Yes`` が推奨されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:98
msgid "Specifying trigger and clear thresholds"
msgstr "トリガーの閾値と解除の閾値の指定"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:100
-msgid "As noted above, when :strong:`Normal based on` is ``Mean plus standard deviation`` or ``Mean plus percentage change``, the value of Clear threshold must be lower than that of Trigger threshold. However, when when :strong:`Normal based on` is ``Percentile``, the relationship between the 2 |nbsp| values is a bit more complex."
+msgid ""
+"As noted above, when :strong:`Normal based on` is ``Mean plus standard deviation`` or ``Mean plus percentage change``, the value of Clear threshold must be lower than that of Trigger threshold. However, when when :strong:`Normal based on` is ``Percentile``, the relationship between the 2 |nbsp| values is a bit more "
+"complex."
msgstr "前述のように、:strong:`正常値の基準` が ``Mean plus standard deviation`` または ``Mean plus percentage change`` の場合、「解除の閾値」の値は「トリガーの閾値」の値よりも小さくする必要があります。ただし、:strong:`正常値の基準` が ``Percentile`` の場合は、これらの2つの値の関係は少し複雑になります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:102
@@ -1532,15 +1698,18 @@ msgstr "現在のウィンドウ、履歴ウィンドウ、ネイティブ解像
msgid "Set both :guilabel:`Current window` and :guilabel:`Historical window` to be significantly larger than native resolution."
msgstr ":guilabel:`Current window` と :guilabel:`Historical window` は、共にネイティブ解像度より大幅に大きく設定します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:131 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:41 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:79 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:117
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:187
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:131 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:41 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:79
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:117 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:187
msgid "Current window"
msgstr "現在のウィンドウ"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:132
msgid ""
-"The alert condition applies rolling minimum and maximum transformations (over the current window), which can interact poorly with other analytics on the signal. The alert condition is not influenced by missing data points in the current window or historical window. That is, all of the received values must be above/below the threshold; missing data points do not prevent an alert from triggering. Similarly, the threshold calculations ignore missing data points."
-msgstr "このアラート条件は、(現在のウィンドウに)ローリング最小値および最大値の変換を適用するため、シグナルに対する他の分析との相互作用が悪くなる可能性があります。このアラート条件は、現在のウィンドウまたは履歴的ウィンドウにおけるデータポイントの欠落の影響を受けません。つまり、すべての受信値が閾値を超えるか閾値未満である必要があります。データポイントが欠落しても、アラートのトリガーを妨げることはありません。同様に、閾値の計算もデータポイントの欠落を無視します。"
+"The alert condition applies rolling minimum and maximum transformations (over the current window), which can interact poorly with other analytics on the signal. The alert condition is not influenced by missing data points in the current window or historical window. That is, all of the received values must be above/below "
+"the threshold; missing data points do not prevent an alert from triggering. Similarly, the threshold calculations ignore missing data points."
+msgstr ""
+"このアラート条件は、(現在のウィンドウに)ローリング最小値および最大値の変換を適用するため、シグナルに対する他の分析との相互作用が悪くなる可能性があります。このアラート条件は、現在のウィンドウまたは履歴的ウィンドウにおけるデータポイントの欠落の影響を受けません。つまり、すべての受信値が閾値を超えるか閾値未満である必要があ"
+"ります。データポイントが欠落しても、アラートのトリガーを妨げることはありません。同様に、閾値の計算もデータポイントの欠落を無視します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:134
msgid "Trigger threshold and Clear threshold"
@@ -1548,9 +1717,11 @@ msgstr "トリガーの閾値と解除の閾値"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-condition-reference/sudden-change.rst:135
msgid ""
-"These produce dynamic thresholds, which can be somewhat disorienting. For example, an alert can be triggered when the signal value is 31.4 (units of the original metric, not deviations or a percentile) and clear when the value is 55.1 (because the dynamic threshold has been influenced by the elevated values that have occurred since the alert was triggered). The clear event does :strong:`not` mean the signal is below the threshold in effect when the alert was "
-"triggered."
-msgstr "これらは動的な閾値を生成するため、多少混乱を生じさせる可能性があります。例えば、あるアラートは、シグナル値が31.4(偏差やパーセンタイルではなく、元のメトリクスの単位)のときにアラートがトリガーされ、55.1のときに解除されるという可能性があります(アラートがトリガーされてから発生した値の上昇によって動的閾値が影響を受けたため)。解除イベントは、アラートがトリガーされたときに有効であった閾値をシグナルが下回ったことを意味するもの :strong:`ではありません`。"
+"These produce dynamic thresholds, which can be somewhat disorienting. For example, an alert can be triggered when the signal value is 31.4 (units of the original metric, not deviations or a percentile) and clear when the value is 55.1 (because the dynamic threshold has been influenced by the elevated values that have "
+"occurred since the alert was triggered). The clear event does :strong:`not` mean the signal is below the threshold in effect when the alert was triggered."
+msgstr ""
+"これらは動的な閾値を生成するため、多少混乱を生じさせる可能性があります。例えば、あるアラートは、シグナル値が31.4(偏差やパーセンタイルではなく、元のメトリクスの単位)のときにアラートがトリガーされ、55.1のときに解除されるという可能性があります(アラートがトリガーされてから発生した値の上昇によって動的閾値が影響を受けたた"
+"め)。解除イベントは、アラートがトリガーされたときに有効であった閾値をシグナルが下回ったことを意味するもの :strong:`ではありません`。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:5
msgid "Alert message variables reference"
@@ -1584,8 +1755,9 @@ msgstr "アラートメッセージの変数"
msgid "Detector and rule details"
msgstr "ディテクターとルールの詳細"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:39 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:73 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:109 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:140
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:178 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:198 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:223 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:254
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:39 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:73 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:109
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:140 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:178 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:198
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:223 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:254
msgid ":strong:`Variable`"
msgstr ":strong:`変数`"
@@ -1881,8 +2053,8 @@ msgstr "値が閾値より低い場合のアラートのトリガーの閾値"
msgid "{{inputs.clear_bot.value}}"
msgstr "{{inputs.clear_bot.value}}"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:208 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:214 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:239 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:245
-#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:267 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:273
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:208 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:214 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:239
+#: ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:245 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:267 ../../alerts-detectors-notifications/alerts-and-detectors/alert-message-variables-reference.rst:273
msgid "Threshold for clearing alert"
msgstr "アラートの解除の閾値"
@@ -2004,7 +2176,9 @@ msgstr "Splunk Observability Cloudのアラートとディテクターの概要"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:31
msgid "Splunk Observability Cloud uses detectors, events, alerts, and notifications to keep you informed when certain criteria are met. Active alerts and existing detectors can be found in tabs on the :strong:`Alerts` page, and events can be found in the :strong:`Events` sidebar, available from within any dashboard."
-msgstr "Splunk Observability Cloudは、ディテクター、イベント、アラート、および通知を使用して、特定の基準が満たされたときに情報を提供します。アクティブなアラートと既存のディテクターは、:strong:`アラート` ページのタブ内で見つけることができ、イベントは、:strong:`イベント` サイドバー内で見つけることができます。どのダッシュボードからも利用可能です。"
+msgstr ""
+"Splunk Observability Cloudは、ディテクター、イベント、アラート、および通知を使用して、特定の基準が満たされたときに情報を提供します。アクティブなアラートと既存のディテクターは、:strong:`アラート` ページのタブ内で見つけることができ、イベントは、:strong:`イベント` サイドバー内で見つけることができます。どのダッシュボードから"
+"も利用可能です。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:39
msgid "You want a message sent to a Slack channel or to an email address for the Ops team when CPU Utilization has reached the 95th percentile."
@@ -2023,8 +2197,12 @@ msgid "A :term:`detector` monitors signals on a plot line, as on a chart, and tr
msgstr ":term:`detector` は、チャート上と同様に、プロットライン上のシグナルを監視し、ルールで定義した条件に基づいてアラートイベントや解除イベントをトリガーします。概念的には、ディテクターは、シグナル値がアラートルールで定義した指定閾値をまたいだときにアラートをトリガーすることができるチャートと考えることができます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:52
-msgid "Rules trigger an alert when the conditions in those rules are met. Individual rules in a detector are labeled according to severity: Info, Warning, Minor, Major, and Critical. For example, a detector that monitors the latency of an API call might go into a critical state when the latency is significantly higher than normal, as defined in the detector rules."
-msgstr "ルールは、そのルールの条件が満たされたときにアラートをトリガーします。ディテクター内の個々のルールは、重大度に従ってラベル付けされます。重大度は、「情報」、「警告」、「マイナー」、「メジャー」、「クリティカル」です。たとえば、APIコールのレイテンシを監視するディテクターは、ディテクターのルールの定義にしたがって、レイテンシが通常よりも大幅に長い場合に「クリティカル」の状態になる可能性があります。"
+msgid ""
+"Rules trigger an alert when the conditions in those rules are met. Individual rules in a detector are labeled according to severity: Info, Warning, Minor, Major, and Critical. For example, a detector that monitors the latency of an API call might go into a critical state when the latency is significantly higher than "
+"normal, as defined in the detector rules."
+msgstr ""
+"ルールは、そのルールの条件が満たされたときにアラートをトリガーします。ディテクター内の個々のルールは、重大度に従ってラベル付けされます。重大度は、「情報」、「警告」、「マイナー」、「メジャー」、「クリティカル」です。たとえば、APIコールのレイテンシを監視するディテクターは、ディテクターのルールの定義にしたがって、レイテンシ"
+"が通常よりも大幅に長い場合に「クリティカル」の状態になる可能性があります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:54
msgid "Detectors also evaluate streams against a specific condition over a period of time. When you apply analytics to a metric time series (MTS), it produces a stream, an object of SignalFlow query language. The MTS can contain raw data or the output of an analytics function."
@@ -2040,37 +2218,49 @@ msgstr "たとえば、Kafkaのようなクラスタ化されたサービスを
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:66
msgid ""
-"If you want to track whether the CPU utilization remains below 80 for each of those virtual machines, you can create a single detector that queries for the CPU utilization metrics that include the :code:`service:kafka` dimension and evaluates those metrics against the threshold of 80. This single detector triggers individual alerts for each virtual machine whose CPU utilization exceeds the threshold, as if you had 30 separate detectors. You do not need to "
-"create 30 individual detectors to monitor each of your 30 virtual machines."
+"If you want to track whether the CPU utilization remains below 80 for each of those virtual machines, you can create a single detector that queries for the CPU utilization metrics that include the :code:`service:kafka` dimension and evaluates those metrics against the threshold of 80. This single detector triggers "
+"individual alerts for each virtual machine whose CPU utilization exceeds the threshold, as if you had 30 separate detectors. You do not need to create 30 individual detectors to monitor each of your 30 virtual machines."
msgstr ""
-"これらの各仮想マシンのCPU使用率が80未満にとどまっているかどうかを追跡する場合、:code:`service:kafka` ディメンションを含むCPU使用率メトリクスをクエリし、80という閾値に対してこれらのメトリクスを評価する単一のディテクターを作成できます。この単一のディテクターを使用して、まるで30台の別々のディテクターがあるかのように、CPU使用率が閾値を超える各仮想マシンに対して個別のアラートをトリガーできます。30台の仮想マシンそれぞれの監視に、30個の個別のディテクターを作成する必"
-"要はありません。"
+"これらの各仮想マシンのCPU使用率が80未満にとどまっているかどうかを追跡する場合、:code:`service:kafka` ディメンションを含むCPU使用率メトリクスをクエリし、80という閾値に対してこれらのメトリクスを評価する単一のディテクターを作成できます。この単一のディテクターを使用して、まるで30台の別々のディテクターがあるかのように、CPU使用"
+"率が閾値を超える各仮想マシンに対して個別のアラートをトリガーできます。30台の仮想マシンそれぞれの監視に、30個の個別のディテクターを作成する必要はありません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:68
-msgid "If the population changes because the cluster has grown to 40 virtual machines, you can make a cluster- or service-level detector. If you include the :code:`service:kafka` dimension for the newly-added virtual machines, the existing detector's query includes all new virtual machines in the cluster in the threshold evaluation."
+msgid ""
+"If the population changes because the cluster has grown to 40 virtual machines, you can make a cluster- or service-level detector. If you include the :code:`service:kafka` dimension for the newly-added virtual machines, the existing detector's query includes all new virtual machines in the cluster in the threshold "
+"evaluation."
msgstr "クラスタが仮想マシン40台となって増加したために母集団が変更されるという場合は、クラスタレベルまたはサービスレベルのディテクターを作成できます。新しく追加された仮想マシンに :code:`service:kafka` ディメンションを含めると、既存のディテクターのクエリでは、クラスタ内のすべての新しい仮想マシンが閾値の評価に含まれます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:76
-msgid "Setting static values for detector conditions can lead to noisy alerting because the appropriate value for one service or for a particular time of day might not be suitable for another service or a different time of day. For example, if your applications or services contain an elastic infrastructure, like Docker containers or EC2 autoscaling, the values for your alerts might vary by time of day."
-msgstr "ディテクターの条件に静的な値を設定すると、あるサービスや特定の時間帯にとって適切な値が、別のサービスや別の時間帯には適切でない可能性があるため、ノイズの多いアラートが発生する可能性があります。例えば、アプリケーションやサービスにDockerコンテナやEC2オートスケーリングのようなしなやかなインフラストラクチャが含まれている場合、アラートの値は、時間帯によって異なる可能性があります。"
+msgid ""
+"Setting static values for detector conditions can lead to noisy alerting because the appropriate value for one service or for a particular time of day might not be suitable for another service or a different time of day. For example, if your applications or services contain an elastic infrastructure, like Docker "
+"containers or EC2 autoscaling, the values for your alerts might vary by time of day."
+msgstr ""
+"ディテクターの条件に静的な値を設定すると、あるサービスや特定の時間帯にとって適切な値が、別のサービスや別の時間帯には適切でない可能性があるため、ノイズの多いアラートが発生する可能性があります。例えば、アプリケーションやサービスにDockerコンテナやEC2オートスケーリングのようなしなやかなインフラストラクチャが含まれている場合、"
+"アラートの値は、時間帯によって異なる可能性があります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:78
msgid ""
-"You can define dynamic thresholds to account for changes in streaming data. For example, if your metric exhibits cyclical behavior, you can define a threshold that is a one-week timeshifted version of the same metric. Suppose the relevant basis of comparison for your data is the behavior of a population, such as a clustered service. In that case, you can define your threshold as a value that reflects that behavior. For example, the 90th percentile for the "
-"metric across the entire cluster over a moving 15-minute window."
-msgstr "そこで、ストリーミングデータにおける変化を考慮した動的な閾値を定義することができます。例えば、メトリクスが周期的な挙動を示す場合、同じメトリクスを1週間タイムシフトしたバージョンの閾値を定義することができます。関連データの比較基準が、クラスタ化されたサービスのような集団の挙動であると考えてみてください。この場合は、その挙動を反映した値を閾値として定義することができます。例えば、15分の移動窓におけるクラスタ全体のメトリクスの90パーセンタイルなどです。"
+"You can define dynamic thresholds to account for changes in streaming data. For example, if your metric exhibits cyclical behavior, you can define a threshold that is a one-week timeshifted version of the same metric. Suppose the relevant basis of comparison for your data is the behavior of a population, such as a "
+"clustered service. In that case, you can define your threshold as a value that reflects that behavior. For example, the 90th percentile for the metric across the entire cluster over a moving 15-minute window."
+msgstr ""
+"そこで、ストリーミングデータにおける変化を考慮した動的な閾値を定義することができます。例えば、メトリクスが周期的な挙動を示す場合、同じメトリクスを1週間タイムシフトしたバージョンの閾値を定義することができます。関連データの比較基準が、クラスタ化されたサービスのような集団の挙動であると考えてみてください。この場合は、その挙動"
+"を反映した値を閾値として定義することができます。例えば、15分の移動窓におけるクラスタ全体のメトリクスの90パーセンタイルなどです。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:80
msgid "To learn more, see :ref:`condition-reference`."
msgstr "詳細は、:ref:`condition-reference` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:88
-msgid "When data in an input MTS matches a condition, the detector generates a trigger event and an alert that has a specific severity level. You can configure an alert to send a notification using Splunk On-Call. For more information, see the :new-page:`Splunk On-Call ` documentation."
-msgstr "入力MTSのデータが条件に一致すると、ディテクターはトリガーイベントと特定の重大度レベルを持つアラートを生成します。アラートは、Splunk On-Callを使用して通知を送信するように設定できます。詳細は、:new-page:`Splunk On-Call` のドキュメントを参照してください。"
+msgid "When data in an input MTS matches a condition, the detector generates a trigger event and an alert that has a specific severity level. You can configure an alert to send a notification using Splunk On-Call. For more information, see the :ref:`about-spoc` documentation."
+msgstr "入力MTSのデータが条件に一致すると、ディテクターはトリガーイベントと特定の重大度レベルを持つアラートを生成します。アラートは、Splunk On-Callを使用して通知を送信するように設定できます。詳細は、:ref:`about-spoc` のドキュメントを参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:90
-msgid "Alert rules use settings you specify for built-in alert conditions to define thresholds that trigger alerts. When a detector determines that the conditions for a rule are met, it triggers an alert, creates an event, and sends notifications (if specified). Detectors can send notifications via email, as well as via other systems, such as Slack, or via a webhook."
-msgstr "アラートルールは、内蔵のアラート条件に指定した設定を使用して、アラートをトリガーする閾値を定義します。ディテクターは、ルールの条件が満たされたと判断すると、アラートをトリガーし、イベントを作成し、通知を送信します(指定してある場合)。ディテクターは、電子メール、Slackなどの他システム、またはウェブフックを介して通知を送信できます。"
+msgid ""
+"Alert rules use settings you specify for built-in alert conditions to define thresholds that trigger alerts. When a detector determines that the conditions for a rule are met, it triggers an alert, creates an event, and sends notifications (if specified). Detectors can send notifications via email, as well as via other "
+"systems, such as Slack, or via a webhook."
+msgstr ""
+"アラートルールは、内蔵のアラート条件に指定した設定を使用して、アラートをトリガーする閾値を定義します。ディテクターは、ルールの条件が満たされたと判断すると、アラートをトリガーし、イベントを作成し、通知を送信します(指定してある場合)。ディテクターは、電子メール、Slackなどの他システム、またはウェブフックを介して通知を送信で"
+"きます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/alerts-detectors-notifications.rst:98
msgid "The interaction between detectors, events, alerts, and notifications is as follows:"
@@ -2241,8 +2431,12 @@ msgid "Select :guilabel:`Done` to save your changes."
msgstr ":guilabel:`Done` を選択して変更を保存します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/auto-clearing-alerts.rst:24
-msgid "You can use Auto-clear alerts to specify that alerts from heartbeat detectors persist longer than alerts from other detectors before being cleared. Alternatively, to clear a heartbeat alert within an activity period and before inactivity sets in, set explicit clear conditions such as the following, rendered in SignalFlow: ``detect(when(A is None, '10s') and not when(A is None, '40s'))``"
-msgstr "アラートの自動解除機能を使用すると、ハートビートディテクターからのアラートが他のディテクターからのアラートよりも長く持続してから解除されるように指定できます。または、アクティビティ期間内で、非アクティブになる前にハートビートアラートを解除するには、次のような明示的な解除条件を設定します(SignalFlowでレンダリング): ``detect(when(A is None, '10s') and not when(A is None, '40s'))``"
+msgid ""
+"You can use Auto-clear alerts to specify that alerts from heartbeat detectors persist longer than alerts from other detectors before being cleared. Alternatively, to clear a heartbeat alert within an activity period and before inactivity sets in, set explicit clear conditions such as the following, rendered in "
+"SignalFlow: ``detect(when(A is None, '10s') and not when(A is None, '40s'))``"
+msgstr ""
+"アラートの自動解除機能を使用すると、ハートビートディテクターからのアラートが他のディテクターからのアラートよりも長く持続してから解除されるように指定できます。または、アクティビティ期間内で、非アクティブになる前にハートビートアラートを解除するには、次のような明示的な解除条件を設定します(SignalFlowでレンダリング): "
+"``detect(when(A is None, '10s') and not when(A is None, '40s'))``"
#: ../../alerts-detectors-notifications/alerts-and-detectors/auto-clearing-alerts.rst:28
msgid "Resolution logic"
@@ -2253,12 +2447,20 @@ msgid "A detector auto resolves if it can't evaluate the condition specified for
msgstr "ディテクターは、``auto_resolve_after`` パラメータの時間間隔に指定された条件を評価できない場合、自動解決を実行します。ディテクターは、次のような場合に条件を正常に評価できません:"
#: ../../alerts-detectors-notifications/alerts-and-detectors/auto-clearing-alerts.rst:32
-msgid "When a metric time series (MTS) lapses into inactivity, it stops reporting and triggers an auto-resolve countdown clock. If reporting resumes within your specified time interval, the countdown clock is freed to re-trigger in case reporting stops again. If reporting does not resume within the interval you've specified, then the involved MTS is considered no longer relevant, and the alert for it is auto-cleared."
-msgstr "メトリック時系列(MTS)が非アクティブになると、レポーティングを停止し、自動解決のカウントダウンクロックをトリガーします。指定した時間間隔内にレポートが再開した場合、カウントダウンクロックは解放され、レポートが再び停止した場合の再トリガーに備えます。指定した時間間隔内にレポートが再開されない場合、関与するMTSは関連性がなくなったものと見なされ、そのMTSのアラートは自動解除されます。"
+msgid ""
+"When a metric time series (MTS) lapses into inactivity, it stops reporting and triggers an auto-resolve countdown clock. If reporting resumes within your specified time interval, the countdown clock is freed to re-trigger in case reporting stops again. If reporting does not resume within the interval you've specified, "
+"then the involved MTS is considered no longer relevant, and the alert for it is auto-cleared."
+msgstr ""
+"メトリック時系列(MTS)が非アクティブになると、レポーティングを停止し、自動解決のカウントダウンクロックをトリガーします。指定した時間間隔内にレポートが再開した場合、カウントダウンクロックは解放され、レポートが再び停止した場合の再トリガーに備えます。指定した時間間隔内にレポートが再開されない場合、関与するMTSは関連性がなく"
+"なったものと見なされ、そのMTSのアラートは自動解除されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/auto-clearing-alerts.rst:34
-msgid "When there are too many null data points for the detector to successfully evaluate the condition for the specified time interval, the alert will auto-clear. This can happen because the MTS is aperiodic or sparse. It can also happen when there is a mismatch between the detector resolution and the MTS resolution. For example, you have the following condition for auto-clearing your alerts:"
-msgstr "nullデータポイントが多すぎるために、指定した時間間隔においてディテクターが条件を正常に評価できない場合、アラートは自動解除されます。これは、MTSが非周期的または疎であるために発生する可能性があります。また、ディテクターの解像度とMTSの解像度が一致しない場合にも発生することがあります。例えば、以下のようなアラートの自動解除条件があるとします:"
+msgid ""
+"When there are too many null data points for the detector to successfully evaluate the condition for the specified time interval, the alert will auto-clear. This can happen because the MTS is aperiodic or sparse. It can also happen when there is a mismatch between the detector resolution and the MTS resolution. For "
+"example, you have the following condition for auto-clearing your alerts:"
+msgstr ""
+"nullデータポイントが多すぎるために、指定した時間間隔においてディテクターが条件を正常に評価できない場合、アラートは自動解除されます。これは、MTSが非周期的または疎であるために発生する可能性があります。また、ディテクターの解像度とMTSの解像度が一致しない場合にも発生することがあります。例えば、以下のようなアラートの自動解除条"
+"件があるとします:"
#: ../../alerts-detectors-notifications/alerts-and-detectors/auto-clearing-alerts.rst:40
msgid "In this example, if the MTS does not send a data point for at least 80% of the detector time windows, active alerts will auto-clear because the condition can't be evaluated for the time interval provided in ``auto_resolve_after``."
@@ -2337,8 +2539,8 @@ msgid "To customize a copy of an AutoDetect detector, do the following:"
msgstr "AutoDetectディテクターのコピーをカスタマイズするには、以下の手順に従います:"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-customize.rst:14 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-subscribe-mute-turn-off.rst:27
-msgid "In the navigation menu, select :menuselection:`Alerts & Detectors`."
-msgstr "ナビゲーションメニューで、:menuselection:`Alerts & Detectors` を選択します。"
+msgid "In the navigation menu, select :guilabel:`Detectors & SLOs`."
+msgstr "ナビゲーションメニューで、:guilabel:`Detectors & SLOs` を選択します"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-customize.rst:15 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-subscribe-mute-turn-off.rst:28
msgid "Select the :strong:`Detectors` tab."
@@ -2425,8 +2627,8 @@ msgid ":ref:`get-started-k8s`"
msgstr ":ref:`get-started-k8s`"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-intro.rst:25
-msgid "After you've set up the supported integrations, AutoDetect alerts and detectors automatically appear on the :strong:`Alerts & Detectors` page and the corresponding dashboards and navigators for your integrations."
-msgstr "サポート対象のインテグレーションを設定すると、AutoDetectアラートおよびディテクターは、:strong:`アラートとディテクター` のページ、およびインテグレーションに対応したダッシュボードとナビゲーターに自動的に表示されます。"
+msgid "After you've set up the supported integrations, AutoDetect alerts and detectors automatically appear on the :guilabel:`Detectors & SLOs` page and the corresponding dashboards and navigators for your integrations."
+msgstr "サポート対象のインテグレーションを設定すると、AutoDetectアラートおよびディテクターは、:guilabel:`Detectors & SLOs` のページ、およびインテグレーションに対応したダッシュボードとナビゲーターに自動的に表示されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-intro.rst:27
msgid "By default, you aren't subscribed to receive notifications from AutoDetect. To learn how to subscribe to AutoDetect notifications, see :ref:`autodetect-subscribe-mute-turn-off`."
@@ -2445,8 +2647,12 @@ msgid "List of available AutoDetect detectors"
msgstr "利用可能なAutoDetectディテクターのリスト"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:10
-msgid "The following tables show available AutoDetect detectors and their customizable arguments. To learn more about the driving SignalFlow functions, see the detectors functions in the SignalFlow library in :new-page:`GitHub `. Links to each specific function are also included in the following documentation for each detector."
-msgstr "以下の表は、使用可能なAutoDetectディテクターとそのカスタマイズ可能な引数を示しています。SignalFlowの駆動関数の詳細については、:new-page:`GitHub` のSignalFlowライブラリにあるディテクター関数を参照してください。各関数へのリンクは、各ディテクターに関する以下のドキュメントにも含まれています。"
+msgid ""
+"The following tables show available AutoDetect detectors and their customizable arguments. To learn more about the driving SignalFlow functions, see the detectors functions in the SignalFlow library in :new-page:`GitHub `. "
+"Links to each specific function are also included in the following documentation for each detector."
+msgstr ""
+"以下の表は、使用可能なAutoDetectディテクターとそのカスタマイズ可能な引数を示しています。SignalFlowの駆動関数の詳細については、:new-page:`GitHub` のSignalFlowライブラリにあるディテクター関数を参照してください。各関数へのリンク"
+"は、各ディテクターに関する以下のドキュメントにも含まれています。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:12
msgid "To learn how to use and customize AutoDetect detectors, see :ref:`autodetect`."
@@ -2465,55 +2671,70 @@ msgid "Service latency"
msgstr "サービス遅延"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:27
-msgid "Description: Alerts when there is a sudden change in service latency. By default, the alert fires when the latency in the last ten minutes (current window) exceeds the baseline of the preceding hour (historical window) by more than 5 deviations. The alert clears when the latency goes back to less than 4 deviations above the norm."
+msgid ""
+"Description: Alerts when there is a sudden change in service latency. By default, the alert fires when the latency in the last ten minutes (current window) exceeds the baseline of the preceding hour (historical window) by more than 5 deviations. The alert clears when the latency goes back to less than 4 deviations above "
+"the norm."
msgstr "説明:サービスのレイテンシに急激な変化があった場合にアラートを発します。このアラートは、デフォルトでは、直近の10分間(現在のウィンドウ)のレイテンシが、直前の1時間(履歴ウィンドウ)の基準値を5偏差以上上回った場合に始動します。レイテンシが基準値から4偏差未満の超過に戻ると、アラートは解除されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:28
msgid "SignalFlow function: See the function in :new-page:`SignalFlow library ` repository on GitHub."
msgstr "SignalFlow関数:GitHubの :new-page:`SignalFlowライブラリ` リポジトリにある関数を参照してください。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:30 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:68 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:106 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:149 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:178
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:206 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:242 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:273 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:305
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:342 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:379 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:421 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:466
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:489 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:525 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:550 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:576
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:596 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:622 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:649 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:686
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:722 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:758 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:806 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:840
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:875 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:910 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:936 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:961
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:997 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1025 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1069
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:30 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:68 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:106
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:149 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:178 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:206
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:242 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:273 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:305
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:342 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:379 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:421
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:466 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:489 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:525
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:550 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:576 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:596
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:622 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:649 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:686
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:722 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:758 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:806
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:840 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:875 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:910
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:936 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:961 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:997
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1025 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1069
msgid "The following table shows customizable arguments for this detector. To learn how to use and customize AutoDetect detectors, see :ref:`autodetect`."
msgstr "以下の表は、このディテクターのカスタマイズ可能な引数を示しています。AutoDetectディテクターの使用方法とカスタマイズ方法については、:ref:`autodetect` を参照してください。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:37 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:75 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:113 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:155 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:184
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:212 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:248 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:279 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:311
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:348 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:385 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:427 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:453
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:472 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:495 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:531 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:556
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:582 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:602 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:628 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:655
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:692 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:728 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:764 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:812
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:847 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:881 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:916 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:942
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:967 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1003 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1031 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1075
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:37 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:75 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:113
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:155 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:184 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:212
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:248 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:279 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:311
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:348 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:385 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:427
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:453 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:472 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:495
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:531 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:556 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:582
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:602 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:628 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:655
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:692 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:728 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:764
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:812 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:847 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:881
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:916 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:942 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:967
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1003 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1031 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1075
msgid "Argument"
msgstr "引数"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:38 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:76 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:114 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:156 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:185
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:213 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:249 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:280 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:312
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:349 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:386 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:428 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:454
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:473 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:496 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:532 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:557
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:583 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:603 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:629 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:656
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:693 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:729 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:765 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:813
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:848 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:882 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:917 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:943
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:968 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1004 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1032 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1076
-#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:247 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/find-detectors.rst:30 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-server-latency.rst:55 ../../alerts-detectors-notifications/slo/custom-metric-scenario.rst:45
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:38 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:76 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:114
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:156 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:185 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:213
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:249 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:280 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:312
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:349 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:386 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:428
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:454 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:473 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:496
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:532 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:557 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:583
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:603 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:629 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:656
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:693 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:729 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:765
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:813 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:848 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:882
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:917 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:943 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:968
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1004 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1032 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1076
+#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:247 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/find-detectors.rst:30 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-server-latency.rst:55
+#: ../../alerts-detectors-notifications/slo/custom-metric-scenario.rst:45
msgid "Description"
msgstr "説明"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:39 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:77 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:115 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:157 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:186
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:214 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:250 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:281 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:313
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:350 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:387 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:429 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:455
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:474 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:497 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:533 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:558
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:584 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:604 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:630 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:657
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:694 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:730 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:766 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:814
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:849 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:883 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:918 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:944
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:969 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1005 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1033 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1077
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:39 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:77 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:115
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:157 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:186 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:214
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:250 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:281 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:313
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:350 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:387 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:429
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:455 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:474 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:497
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:533 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:558 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:584
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:604 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:630 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:657
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:694 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:730 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:766
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:814 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:849 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:883
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:918 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:944 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:969
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1005 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1033 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1077
msgid "Default value"
msgstr "デフォルト値"
@@ -2521,11 +2742,13 @@ msgstr "デフォルト値"
msgid "Time window to test for anomalous values, in minutes."
msgstr "異常値をテストする時間窓(単位:分)。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:43 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:81 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:119 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:189
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:43 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:81 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:119
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:189
msgid "``10m``"
msgstr "``10m``"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:44 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:82 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:120 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:190 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:740
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:44 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:82 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:120
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:190 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:740
msgid "Historical window"
msgstr "履歴ウィンドウ"
@@ -2533,17 +2756,21 @@ msgstr "履歴ウィンドウ"
msgid "Time window to use for historical normal values, in hours."
msgstr "過去の正常値に使用する時間窓(単位:時間)。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:46 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:84 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:122 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:192
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:46 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:84 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:122
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:192
msgid "``1h``"
msgstr "``1h``"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:47 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:85 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:123 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:159 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:193
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:216 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:251 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:315 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:352
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:389 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:431 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:475 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:498
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:534 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:560 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:606 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:659
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:696 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:768 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:816 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:851
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:885 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:920 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:945 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:971
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1007 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1035 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1079
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:47 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:85 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:123
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:159 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:193 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:216
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:251 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:315 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:352
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:389 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:431 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:475
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:498 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:534 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:560
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:606 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:659 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:696
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:768 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:816 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:851
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:885 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:920 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:945
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:971 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1007 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1035
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1079
msgid "Trigger threshold"
msgstr "トリガーの閾値"
@@ -2579,23 +2806,27 @@ msgstr "アラートをトリガーするために現在のウィンドウ内で
msgid "``20``"
msgstr "``20``"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:56 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:94 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:129 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:168 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:196
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:263 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:288 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:437 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:456
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:478 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:510 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:540 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:566
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:586 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:612 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:635 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:784
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:926
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:56 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:94 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:129
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:168 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:196 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:263
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:288 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:437 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:456
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:478 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:510 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:540
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:566 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:586 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:612
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:635 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:784 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:926
msgid "Filters"
msgstr "フィルター"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:57 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:95 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:130 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:197
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:57 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:95 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:130
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:197
msgid "Dimensions you want to add to the detector."
msgstr "ディテクターに追加するディメンション"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:58 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:96 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:131 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:170 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:198
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:265 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:290 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:439 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:458
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:480 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:512 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:542 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:568
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:588 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:614 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:637 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:677
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:714 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:746 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:786 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:928
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:58 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:96 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:131
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:170 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:198 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:265
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:290 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:439 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:458
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:480 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:512 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:542
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:568 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:588 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:614
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:637 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:677 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:714
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:746 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:786 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:928
msgid "None"
msgstr "なし"
@@ -2604,7 +2835,8 @@ msgid "Service error rate"
msgstr "サービスエラー率"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:65
-msgid "Description: Alerts when a sudden change in service error rate occurs. By default, the alert fires when the error rate in the last ten minutes (current window) exceeds the baseline of the preceding hour (historical window) by more than 100%. The alert clears when the error rate goes back to less than 80% above the norm."
+msgid ""
+"Description: Alerts when a sudden change in service error rate occurs. By default, the alert fires when the error rate in the last ten minutes (current window) exceeds the baseline of the preceding hour (historical window) by more than 100%. The alert clears when the error rate goes back to less than 80% above the norm."
msgstr "説明:サービスのエラー率に急激な変化があった場合にアラートを発します。このアラートは、デフォルトでは、直近の10分間(現在のウィンドウ)のエラー率が、直前の1時間(履歴ウィンドウ)の基準値を100%以上上回った場合に始動します。エラー率が基準値から80%未満の超過に戻ると、アラートは解除されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:66
@@ -2619,10 +2851,11 @@ msgstr "現在値が、履歴データと比較した超過の指定パーセン
msgid "``100``"
msgstr "``100``"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:88 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:165 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:224 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:257 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:323
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:360 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:397 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:504 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:667
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:704 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:776 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:979 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1043
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1087
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:88 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:165 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:224
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:257 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:323 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:360
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:397 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:504 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:667
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:704 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:776 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:979
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1043 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1087
msgid "Clear threshold"
msgstr "解除の閾値"
@@ -2651,7 +2884,9 @@ msgid "Service request rate"
msgstr "サービスのリクエスト率"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:103
-msgid "Description: Alerts when a sudden change in request rate occurs. By default, the alert fires when the request rate in the last ten minutes (current window) exceeds the baseline of the preceding hour (historical window) by more than 3 deviations. The alert clears when the request rate goes back to less than 2.5 deviations above the norm."
+msgid ""
+"Description: Alerts when a sudden change in request rate occurs. By default, the alert fires when the request rate in the last ten minutes (current window) exceeds the baseline of the preceding hour (historical window) by more than 3 deviations. The alert clears when the request rate goes back to less than 2.5 deviations "
+"above the norm."
msgstr "説明:リクエスト率の急激な変化が発生した場合にアラートを発します。このアラートは、デフォルトでは、直近の10分間(現在のウィンドウ)のリクエスト率が、直前の1時間(履歴ウィンドウ)の基準値を3偏差以上上回った場合に始動します。リクエスト率が基準値から2.5偏差未満の超過に戻ると、アラートは解除されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:104
@@ -2694,24 +2929,26 @@ msgstr "空き容量の枯渇に対するアラートトリガーの閾値(単
msgid "``48``"
msgstr "``48``"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:162 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:254 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:282 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:434
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:501 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:537 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:563 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:609
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:632 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:772 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:820 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:855
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:889 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:948 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:975 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1011
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1039 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1083
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:162 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:254 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:282
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:434 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:501 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:537
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:563 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:609 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:632
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:772 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:820 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:855
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:889 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:948 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:975
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1011 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1039 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:1083
msgid "Sensitivity"
msgstr "感度"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:163 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:255 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:283 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:435
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:502 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:538 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:564 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:610
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:633 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:949
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:163 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:255 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:283
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:435 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:502 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:538
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:564 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:610 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:633
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:949
msgid "Sensitivity of the alerting"
msgstr "アラートの感度"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:164 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:222 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:230 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:284
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:287 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:321 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:329 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:358
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:366 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:395 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:403 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:774
-#, python-format
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:164 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:222 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:230
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:284 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:287 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:321
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:329 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:358 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:366
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:395 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:403 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:774
msgid "``80% of 10m``"
msgstr "``80% of 10m``"
@@ -2723,9 +2960,10 @@ msgstr "空き容量の枯渇に対するアラート解除の閾値(単位:
msgid "``96``"
msgstr "``96``"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:169 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:264 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:289 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:438
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:457 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:479 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:511 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:541
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:567 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:587 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:613 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:636
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:169 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:264 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:289
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:438 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:457 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:479
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:511 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:541 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:567
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:587 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:613 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:636
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:785 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:927
msgid "Dimensions you want to add to the detector"
msgstr "ディテクターに追加するディメンション"
@@ -2735,7 +2973,9 @@ msgid "AWS ALB: Sudden change in HTTP 5xx server errors"
msgstr "AWS ALB:HTTP 5xxサーバーエラーの急激な変化"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:175
-msgid "Description: Alerts when there is a sudden change in the number of HTTP 5xx server error codes that originate from the load balancer. By default, the alert fires when the change in HTTP 5xx server error count in the last ten minutes (current window) exceeds the baseline of the preceding hour (historical window) by more than 3.5 deviations."
+msgid ""
+"Description: Alerts when there is a sudden change in the number of HTTP 5xx server error codes that originate from the load balancer. By default, the alert fires when the change in HTTP 5xx server error count in the last ten minutes (current window) exceeds the baseline of the preceding hour (historical window) by more "
+"than 3.5 deviations."
msgstr "説明:ロードバランサー由来のHTTP 5xxサーバーエラーコードの数に急激な変化があったときにアラートを発します。このアラートは、デフォルトでは、直近の10分間(現在のウィンドウ)のHTTP 5xxサーバーエラー数の変化が、直前の1時間(履歴ウィンドウ)の基準値を3.5偏差以上上回った場合に始動します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:176
@@ -2770,13 +3010,14 @@ msgstr "SignalFlow関数:GitHubの :new-page:`SignalFlowライブラリ` repository on GitHub."
@@ -2929,7 +3174,8 @@ msgstr "ストレージ使用率のアラートトリガーの閾値を%で指
msgid "Specifies clear threshold in % for the storage utilization"
msgstr "ストレージ使用率のアラート解除の閾値を%で指定します"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:405 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:675 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:712 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:744
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:405 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:675 ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:712
+#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:744
msgid "filter"
msgstr "フィルター"
@@ -2953,14 +3199,14 @@ msgstr "SignalFlow関数:GitHubの :new-page:`SignalFlowライブラリ` リポジトリにある関数を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/autodetect/autodetect-list.rst:634
-#, python-format
msgid "``100% of 30s``"
msgstr "``100% of 30s``"
@@ -3170,9 +3414,9 @@ msgstr "SignalFlow関数:GitHubの :new-page:`SignalFlowライブラリ`. If you are familiar with that API, you can use the detector display to view and edit the detector code and make changes to the detector rules."
-msgstr "ディテクターのディスプレイに「SignalFlow」タブが含まれている場合は、:new-page:`Splunk Observability CloudディテクターAPI` を使用してプログラムで作成されたディテクターが表示されています。このAPIに精通している場合は、ディテクターのディスプレイを使用してディテクターコードを表示および編集したり、ディテクタールールを変更することができます。"
+msgid ""
+"If a detector display includes a SignalFlow tab, you are viewing a detector created programmatically using the :new-page:`Splunk Observability Cloud Detectors API `. If you are familiar with that API, you can use the detector display to view and edit "
+"the detector code and make changes to the detector rules."
+msgstr ""
+"ディテクターのディスプレイに「SignalFlow」タブが含まれている場合は、:new-page:`Splunk Observability CloudディテクターAPI` を使用してプログラムで作成されたディテクターが表示されています。このAPIに精通している場合は、ディテクターのディスプレイを使用して"
+"ディテクターコードを表示および編集したり、ディテクタールールを変更することができます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:96
msgid "Create alert rules for your detector"
@@ -3924,15 +4173,19 @@ msgstr ":strong:`アラートシグナル` タブで、メトリクスと該当
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:118
msgid ""
-"If you are creating a detector from scratch, you have to first select the signals you want to monitor. Selecting a signal for a detector is similar to selecting a signal in a chart in the Chart Builder. Enter a metric and select the metric you want to monitor from the list. Add filters or analytics. To add more signals, select :guilabel:`Add Metric or Event` or :guilabel:`Add Formula`. You can add events to be displayed on the chart, but you cannot select an "
-"event as the signal to be monitored. To learn more, see :ref:`specify-signal`."
+"If you are creating a detector from scratch, you have to first select the signals you want to monitor. Selecting a signal for a detector is similar to selecting a signal in a chart in the Chart Builder. Enter a metric and select the metric you want to monitor from the list. Add filters or analytics. To add more signals, "
+"select :guilabel:`Add Metric or Event` or :guilabel:`Add Formula`. You can add events to be displayed on the chart, but you cannot select an event as the signal to be monitored. To learn more, see :ref:`specify-signal`."
msgstr ""
-"ディテクターをゼロから作成する場合は、まず監視するシグナルを選択する必要があります。ディテクターのシグナルの選択方法は、「チャートビルダー」でのチャートのシグナルの選択と同様です。メトリクスを入力し、監視するメトリクスをリストから選択します。フィルターまたは分析を追加します。さらにシグナルを追加する場合は、:guilabel:`Add Metric or Event` または :guilabel:`Add Formula` を選択します。チャートに表示するイベントを追加することはできますが、監視対象のシグナルとして"
-"イベントを選択することはできません。詳細は、:ref:`specify-signal` を参照してください。"
+"ディテクターをゼロから作成する場合は、まず監視するシグナルを選択する必要があります。ディテクターのシグナルの選択方法は、「チャートビルダー」でのチャートのシグナルの選択と同様です。メトリクスを入力し、監視するメトリクスをリストから選択します。フィルターまたは分析を追加します。さらにシグナルを追加する場合は、:guilabel:`Add "
+"Metric or Event` または :guilabel:`Add Formula` を選択します。チャートに表示するイベントを追加することはできますが、監視対象のシグナルとしてイベントを選択することはできません。詳細は、:ref:`specify-signal` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:121
-msgid "When you select an archived metric as a signal in your detector, the archived metric can't be report data to your detector and will cause the detector to misfire alerts or stop working. To include an archived metric in detectors, route them to real-time or create exception rules to make them available. For more information, see the :ref:`mpm-rule-routing-exception` section."
-msgstr "アーカイブ済みのメトリクスをディテクターのシグナルとして選択すると、アーカイブ済みのメトリクスがディテクターにデータをレポートすることができず、ディテクターがアラートを誤発動したり動作を停止したりする原因になります。アーカイブ済みのメトリクスをディテクターに含めるには、リアルタイムにルーティングするか、例外ルールを作成してそれらを利用できるようにします。詳細については、:ref:`mpm-rule-routing-exception` セクションを参照してください。"
+msgid ""
+"When you select an archived metric as a signal in your detector, the archived metric can't be report data to your detector and will cause the detector to misfire alerts or stop working. To include an archived metric in detectors, route them to real-time or create exception rules to make them available. For more "
+"information, see the :ref:`mpm-rule-routing-exception` section."
+msgstr ""
+"アーカイブ済みのメトリクスをディテクターのシグナルとして選択すると、アーカイブ済みのメトリクスがディテクターにデータをレポートすることができず、ディテクターがアラートを誤発動したり動作を停止したりする原因になります。アーカイブ済みのメトリクスをディテクターに含めるには、リアルタイムにルーティングするか、例外ルールを作成し"
+"てそれらを利用できるようにします。詳細については、:ref:`mpm-rule-routing-exception` セクションを参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:123
msgid "If you are creating a detector :ref:`from a chart` or by :ref:`cloning a detector`, you might not need to add new signals. However, if you do add new signals to the detector, the signals you add are not added to the original chart or detector."
@@ -3951,7 +4204,9 @@ msgid "To monitor one signal, select the bell icon in the :guilabel:`Alert on` c
msgstr "単一のシグナルを監視するには、:guilabel:`Alert on` 列のベルアイコンを選択し、監視するシグナルを選択します。ベルが青くなっている場合、それは監視中のシグナルです。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:134
-msgid "To create compound conditions based on the values of more than one signal, for example, signal A is higher than ``x`` OR signal B is higher than ``y``, select the :guilabel:`Monitor multiple signals` double-bells icon. When you select to monitor multiple signals your alert condition is changed to :guilabel:`Custom Threshold`."
+msgid ""
+"To create compound conditions based on the values of more than one signal, for example, signal A is higher than ``x`` OR signal B is higher than ``y``, select the :guilabel:`Monitor multiple signals` double-bells icon. When you select to monitor multiple signals your alert condition is changed to :guilabel:`Custom "
+"Threshold`."
msgstr "複数のシグナルの値に基づいて複合条件を作成する場合(例えば、「シグナルAが ``x`` より高い OR シグナルBが ``y`` より高い」など)、:guilabel:`Monitor multiple signals` のベル2個のアイコンを選択します。複数のシグナルを監視することを選択すると、アラート条件は :guilabel:`Custom Threshold` に変更されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:136
@@ -4059,8 +4314,12 @@ msgid "Message preview"
msgstr "メッセージのプレビュー"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:199
-msgid "Displays a default message that is sent when an alert is triggered or cleared. To edit the subject or the content of the message, select :guilabel:`Customize`; you can see the code and variables used to construct the message. Available variables are shown to the right of the message area while you are editing the message. Use triple braces where indicated so that the variable value is not escaped."
-msgstr "アラートがトリガーまたは解除されたときに送信されるデフォルトメッセージを表示します。メッセージの件名や内容を編集するには、:guilabel:`Customize` を選択します。メッセージの作成に使用されるコードと変数を見ることができます。メッセージの編集中には、使用可能な変数がメッセージ領域の右に表示されます。変数の値がエスケープ処理されないように、指定された場所では三重の波括弧を使用します。"
+msgid ""
+"Displays a default message that is sent when an alert is triggered or cleared. To edit the subject or the content of the message, select :guilabel:`Customize`; you can see the code and variables used to construct the message. Available variables are shown to the right of the message area while you are editing the "
+"message. Use triple braces where indicated so that the variable value is not escaped."
+msgstr ""
+"アラートがトリガーまたは解除されたときに送信されるデフォルトメッセージを表示します。メッセージの件名や内容を編集するには、:guilabel:`Customize` を選択します。メッセージの作成に使用されるコードと変数を見ることができます。メッセージの編集中には、使用可能な変数がメッセージ領域の右に表示されます。変数の値がエスケープ処理され"
+"ないように、指定された場所では三重の波括弧を使用します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:201
msgid "Note that the use of variables is supported only in the message subject and body, not in the Runbook or Tip fields."
@@ -4111,8 +4370,12 @@ msgid "On the :strong:`Alert recipients` tab, specify who receive notification m
msgstr ":strong:`アラート受信者` タブで、アラートがトリガーまたは解除された際の通知メッセージの受信者を指定します。受信者は、ルールの受信登録者です。受信者の追加は任意ですが、この機能は多くの場合に役立ちます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:237
-msgid "If you have previously :ref:`integrated your alerts with another system `, those options appear in the :guilabel:`Add Recipient` dropdown menu. You can also send to email addresses, :ref:`webhook URLs`, and :ref:`Create and manage teams`. Notifications are also sent when a condition clears."
-msgstr "以前に :ref:`アラートを他のシステムと統合している場合 ` は、それらのオプションは :guilabel:`Add Recipient` のドロップダウンメニューに表示されます。また、メールアドレス、:ref:`ウェブフックURL` および :ref:`Create and manage teams` に送信することもできます。条件が解除された際にも、通知が送信されます。"
+msgid ""
+"If you have previously :ref:`integrated your alerts with another system `, those options appear in the :guilabel:`Add Recipient` dropdown menu. You can also send to email addresses, :ref:`webhook URLs`, and :ref:`Create and manage teams`. Notifications are also sent when a "
+"condition clears."
+msgstr ""
+"以前に :ref:`アラートを他のシステムと統合している場合 ` は、それらのオプションは :guilabel:`Add Recipient` のドロップダウンメニューに表示されます。また、メールアドレス、:ref:`ウェブフックURL` および :ref:`Create and manage teams` に送信することもできます。条件が解除された際"
+"にも、通知が送信されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:239
msgid "The following table explains different types of email notifications:"
@@ -4159,8 +4422,8 @@ msgid "Tips"
msgstr "ヒント"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:260
-msgid "If you want to add the same subscribers to each of multiple rules, you can add the subscribers to all rules at once by using the :ref:`Manage subscriptions` option on the Detectors tab under Alerts & Detectors after you save the detector."
-msgstr "複数のルールのそれぞれに同じ受信登録者を追加する場合は、ディテクターを保存した後に、「アラートとディテクター」の「ディテクター」タブにある「 :ref:`受信登録の管理` 」オプションを使用して、すべてのルールに受信登録者を一度に追加できます。"
+msgid "If you want to add the same subscribers to each of multiple rules, you can add the subscribers to all rules at once by using the :ref:`Manage subscriptions` option on the :guilabel:`Detectors` tab under :guilabel:`Detectors & SLOs` after you save the detector."
+msgstr "複数のルールのそれぞれに同じ受信登録者を追加する場合は、ディテクターを保存した後に、:guilabel:`Detectors & SLOs` の :guilabel:`Detectors` タブにある「 :ref:`サブスクリプションの管理` 」オプションを使用して、すべてのルールに受信登録者を一度に追加できます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:262
msgid "You can temporarily stop a detector from sending notifications by :ref:`muting notifications`."
@@ -4176,11 +4439,11 @@ msgstr ":strong:`有効化` タブに、指定したディテクター設定の
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:272
msgid ""
-"Select :guilabel:`Activate Alert Rule` to save the detector and begin monitoring the specified signal. After you activate the detector, the :strong:`Alert Rules` tab of the detector is displayed, showing the signal you selected and a summary of the rule you built. You can edit the detector name; the text you enter here is displayed as the detector name on the Detectors tab under Alerts & Detectors. You can also provide additional descriptive text below the "
-"name, for example, to clarify the purpose of the detector for others."
+"Select :guilabel:`Activate Alert Rule` to save the detector and begin monitoring the specified signal. After you activate the detector, the :strong:`Alert Rules` tab of the detector is displayed, showing the signal you selected and a summary of the rule you built. You can edit the detector name; the text you enter here "
+"is displayed as the detector name on the :guilabel:`Detectors` tab under :guilabel:`Detectors & SLOs`. You can also provide additional descriptive text below the name, for example, to clarify the purpose of the detector for others."
msgstr ""
-":guilabel:`Activate Alert Rule` を選択して、ディテクターを保存し指定したシグナルの監視を開始します。ディテクターを有効にすると、ディテクターの :strong:`アラート ルール` タブが表示され、選択したシグナルと構築したルールの概要が表示されます。ディテクター名の編集ができます。ここで入力したテキストは、「アラートとディテクター」の「ディテクター」タブにディテクター名として表示されます。また、他のメンバーに向けてディテクターの目的を明確にするために、ディテクター名の下"
-"に追加の説明テキストを入力することもできます。"
+":guilabel:`Activate Alert Rule` を選択して、ディテクターを保存し指定したシグナルの監視を開始します。ディテクターを有効にすると、ディテクターの :strong:`アラートルール` タブが表示され、選択したシグナルと構築したルールの概要が表示されます。ディテクター名の編集ができます。ここで入力したテキストは、:guilabel:`Detectors & "
+"SLOs` の :guilabel:`Detectors` タブにディテクター名として表示されます。また、他のメンバーに向けてディテクターの目的を明確にするために、ディテクター名の下に追加の説明テキストを入力することもできます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:275
msgid "If you make any changes to the detector name or description, select the :guilabel:`Save` button. If you select the :strong:`Close` button without saving, your changes will be lost."
@@ -4243,7 +4506,8 @@ msgid "This image shows the plot options for the plot line."
msgstr "この画像は、プロットラインのプロットオプションを示しています。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:322
-msgid "To add or edit the alert message, recipients, or rule name, use the :guilabel:`Edit` button on the Alert Rules tab. The rule name you add on the :strong:`Activate` tab is displayed on the :strong:`Alert Rules` tab. The rule name is also shown as the alert condition on the :strong:`Alerts` page and in alert notifications."
+msgid ""
+"To add or edit the alert message, recipients, or rule name, use the :guilabel:`Edit` button on the Alert Rules tab. The rule name you add on the :strong:`Activate` tab is displayed on the :strong:`Alert Rules` tab. The rule name is also shown as the alert condition on the :strong:`Alerts` page and in alert notifications."
msgstr "アラートメッセージ、受信者、またはルール名を追加または編集するには、「アラートルール」タブの :guilabel:`Edit` ボタンを使用します。:strong:`有効化` タブで追加したルール名は、:strong:`アラート ルール` タブに表示されます。このルール名は、:strong:`アラート` ページおよびアラート通知のアラート条件としても表示されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:324
@@ -4283,8 +4547,11 @@ msgid "Activate/deactivate alert rules"
msgstr "アラートルールの有効化/無効化"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:352
-msgid "If a detector has multiple rules, such as different rules for different severity levels, you can specify which ones to activate or deactivate. Deactivating a rule prevents it from generating any events or sending any notifications. Use this option to decrease or increase the number of alerts the detector is triggering."
-msgstr "ディテクターに複数のルール(重大度レベルごとに異なるルールなど)がある場合、どのルールをアクティブまたは非アクティブにするかを指定できます。ルールを非アクティブにすると、そのルールはイベントを生成しなくなり、通知を送信しなくなります。このオプションを使用して、ディテクターがトリガーするアラートの数を増やしたり減らしたりします。"
+msgid ""
+"If a detector has multiple rules, such as different rules for different severity levels, you can specify which ones to activate or deactivate. Deactivating a rule prevents it from generating any events or sending any notifications. Use this option to decrease or increase the number of alerts the detector is triggering."
+msgstr ""
+"ディテクターに複数のルール(重大度レベルごとに異なるルールなど)がある場合、どのルールをアクティブまたは非アクティブにするかを指定できます。ルールを非アクティブにすると、そのルールはイベントを生成しなくなり、通知を送信しなくなります。このオプションを使用して、ディテクターがトリガーするアラートの数を増やしたり減らしたりし"
+"ます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/create-detectors-for-alerts.rst:354
msgid "Deactivating an alert rule also clears any of its active alerts."
@@ -4483,7 +4750,9 @@ msgid "Detectors in Splunk Observability Cloud run on a regular time interval, k
msgstr "Splunk Observability Cloudのディテクターは、ディテクターの解像度と呼ばれる一定の時間間隔で実行されます。ディテクターは、実行のたびに条件を評価し、アラートが起動するかどうかを決定します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detector-options.rst:36
-msgid "Because many metric time series (MTS) can be included in a single detector, the analytics engine keeps track of the lag for known MTS, attempting to make sure that the all known MTS will be included. While most MTS have little delay, a detector evaluate its condition up to 15 minutes late if data points are regularly delayed."
+msgid ""
+"Because many metric time series (MTS) can be included in a single detector, the analytics engine keeps track of the lag for known MTS, attempting to make sure that the all known MTS will be included. While most MTS have little delay, a detector evaluate its condition up to 15 minutes late if data points are regularly "
+"delayed."
msgstr "1つのディテクターに多くのメトリック時系列(MTS)を含めることができるため、分析エンジンは既知のMTSの遅延を追跡し、すべての既知のMTSを確実に含めるようにします。大部分のMTSにはほとんど遅延がありませんが、データポイントが定期的に遅延している場合、ディテクターは最大で15分遅れて条件を評価します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detector-options.rst:38
@@ -4500,9 +4769,11 @@ msgstr ":strong:`最小遅延` パラメータは、分析エンジンが特定
#: ../../alerts-detectors-notifications/alerts-and-detectors/detector-options.rst:48
msgid ""
-"For example, if you set :strong:`Min Delay` to 2 minutes, the computation waits for at least 2 minutes even if all the data points arrive on time with no delay. Because the detector will wait a minimum of 2 minutes whether the data arrives on time or not, you are prioritizing correctness over real-time alerting. :strong:`Min Delay` is most useful in cases of delayed new MTS or sparsely emitting MTS for the detector compared to the existing set of MTS being "
-"computed on."
-msgstr "たとえば、:strong:`最小遅延` を2分に設定すると、すべてのデータポイントが遅延なく時間通りに到着しても、計算は最低2分間待機します。データが時間通りに到着してもしなくても、ディテクターは最低2分間待機するため、リアルタイムのアラートよりも正確性を優先することになります。:strong:`最小遅延` は、新しいMTSが遅延している場合や、計算中の既存のMTSセットに比べてディテクターのMTSによる送信が疎である場合に、最も有効です。"
+"For example, if you set :strong:`Min Delay` to 2 minutes, the computation waits for at least 2 minutes even if all the data points arrive on time with no delay. Because the detector will wait a minimum of 2 minutes whether the data arrives on time or not, you are prioritizing correctness over real-time "
+"alerting. :strong:`Min Delay` is most useful in cases of delayed new MTS or sparsely emitting MTS for the detector compared to the existing set of MTS being computed on."
+msgstr ""
+"たとえば、:strong:`最小遅延` を2分に設定すると、すべてのデータポイントが遅延なく時間通りに到着しても、計算は最低2分間待機します。データが時間通りに到着してもしなくても、ディテクターは最低2分間待機するため、リアルタイムのアラートよりも正確性を優先することになります。:strong:`最小遅延` は、新しいMTSが遅延している場合や、"
+"計算中の既存のMTSセットに比べてディテクターのMTSによる送信が疎である場合に、最も有効です。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detector-options.rst:50
msgid "By default, :strong:`Min Delay` is set to ``0``, which means the analytics engine does not have to wait to run the computation."
@@ -4525,8 +4796,12 @@ msgid "For example, if :strong:`Max Delay` is set to 5 minutes, the detector wil
msgstr "例えば、:strong:`最大遅延` が5分に設定されている場合、一部のデータポイントが到着していない場合でも、ディテクターは最大で5分間のみ待機します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detector-options.rst:63
-msgid "By default, :strong:`Max Delay` is set to ``Auto``, allowing the analytics engine to determine the appropriate amount of time to wait for data points. With :strong:`Max Delay` set to ``Auto``, the analytics engine will accommodate most data by adopting the maximum observed delay. :strong:`Max Delay` is most useful in cases where there might be occasional momentary delay of some data points."
-msgstr "デフォルトでは、:strong:`最大遅延` は ``Auto`` に設定されており、分析エンジンがデータポイントを待機する適切な時間を決定できるようになっています。:strong:`最大遅延` が ``Auto`` に設定されていることによって、分析エンジンは観測された最大の遅延を採用し、ほとんどのデータに対応します。:strong:`最大遅延` は、一部のデータポイントに偶発的で瞬間的な遅延が発生する可能性がある場合に最も役立ちます。"
+msgid ""
+"By default, :strong:`Max Delay` is set to ``Auto``, allowing the analytics engine to determine the appropriate amount of time to wait for data points. With :strong:`Max Delay` set to ``Auto``, the analytics engine will accommodate most data by adopting the maximum observed delay. :strong:`Max Delay` is most useful in "
+"cases where there might be occasional momentary delay of some data points."
+msgstr ""
+"デフォルトでは、:strong:`最大遅延` は ``Auto`` に設定されており、分析エンジンがデータポイントを待機する適切な時間を決定できるようになっています。:strong:`最大遅延` が ``Auto`` に設定されていることによって、分析エンジンは観測された最大の遅延を採用し、ほとんどのデータに対応します。:strong:`最大遅延` は、一部のデー"
+"タポイントに偶発的で瞬間的な遅延が発生する可能性がある場合に最も役立ちます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detector-options.rst:65
msgid "You can permanently override the default setting for a detector by setting a :strong:`Max Delay` value in the :strong:`Detector Options` tab or using the API. For more information, see the :new-page:`Detectors API reference `."
@@ -4538,11 +4813,11 @@ msgstr "チャート表示のサンプリングを無効にする"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detector-options.rst:73
msgid ""
-"In cases where a large number of time series are displayed, for example, if you choose a metric being reported by 500 servers, Splunk Infrastructure Monitoring samples a subset of those time series so the chart will render more quickly. The sampled display provides you with an approximate sense of the values in those time series. If you disable sampling, any time series data that were previously omitted will be shown. Depending on the number of time series, "
-"disabling sampling might cause the chart to render more slowly."
+"In cases where a large number of time series are displayed, for example, if you choose a metric being reported by 500 servers, Splunk Infrastructure Monitoring samples a subset of those time series so the chart will render more quickly. The sampled display provides you with an approximate sense of the values in those "
+"time series. If you disable sampling, any time series data that were previously omitted will be shown. Depending on the number of time series, disabling sampling might cause the chart to render more slowly."
msgstr ""
-"多数の時系列が表示される場合、たとえば500個のサーバーからレポートされているメトリクスを選択した場合に、Splunk Infrastructure Monitoringはこれらの時系列のサブセットをサンプリングし、チャートがより迅速にレンダリングされるようにします。サンプリングされた表示は、これらの時系列の値に対するおおまかな感覚を提供します。サンプリングを無効にすると、それまで省略されていた時系列データが表示されるようになります。時系列の数によっては、サンプリングを無効にするとチャートのレ"
-"ンダリングが遅くなる場合があります。"
+"多数の時系列が表示される場合、たとえば500個のサーバーからレポートされているメトリクスを選択した場合に、Splunk Infrastructure Monitoringはこれらの時系列のサブセットをサンプリングし、チャートがより迅速にレンダリングされるようにします。サンプリングされた表示は、これらの時系列の値に対するおおまかな感覚を提供します。サンプリン"
+"グを無効にすると、それまで省略されていた時系列データが表示されるようになります。時系列の数によっては、サンプリングを無効にするとチャートのレンダリングが遅くなる場合があります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detector-options.rst:75
msgid "The detector is still triggered as configured, regardless of the number of time series displayed on the chart."
@@ -4554,13 +4829,19 @@ msgstr "カレンダーのタイムゾーン"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detector-options.rst:84
msgid ""
-"The :ref:`time zone` used for aligning data timestamps and interpreting calendar cycles in analytics functions that perform :ref:`calculations over calendar windows`. All such functions in a chart use the same calendar time zone. The value set here can also be viewed and changed while editing any calendar window function in the chart builder. This option has no effect if there are no functions using calendar windows."
+"The :ref:`time zone` used for aligning data timestamps and interpreting calendar cycles in analytics functions that perform :ref:`calculations over calendar windows`. All such functions in a chart use the same calendar time zone. The value set here can also be viewed and changed "
+"while editing any calendar window function in the chart builder. This option has no effect if there are no functions using calendar windows."
msgstr ""
-":ref:`カレンダーウィンドウでの計算` を実行する分析関数において、データのタイムスタンプを揃えカレンダー周期を解釈するために使用される :ref:`タイムゾーン` です。チャート内のこのような関数はすべて同じカレンダータイムゾーンを使用します。ここで設定した値は、チャートビルダーでカレンダーウィンドウ関数を編集する際にも表示および変更ができます。カレンダーウィンドウを使用する関数がない場合、このオプションには何の効果もありません。"
+":ref:`カレンダーウィンドウでの計算` を実行する分析関数において、データのタイムスタンプを揃えカレンダー周期を解釈するために使用される :ref:`タイムゾーン` です。チャート内のこのような関数はすべて同じカレンダータイムゾーンを使用します。ここで設定した値は、チャートビルダーでカレンダー"
+"ウィンドウ関数を編集する際にも表示および変更ができます。カレンダーウィンドウを使用する関数がない場合、このオプションには何の効果もありません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:-1
-msgid "Splunk Observability Cloud uses detectors, events, alerts, and notifications to tell you when certain criteria are met. When a detector condition is met, the detector generates an event, triggers an alert, and can send one or more notifications. Follow these best practices in Splunk Observability Cloud when creating a detector."
-msgstr "Splunk Observability Cloudは、ディテクター、イベント、アラート、通知を使用して、特定の基準が満たされたときに情報を提供します。ディテクターの条件が満たされると、ディテクターはイベントを生成し、アラートをトリガーし、1つ以上の通知を送信することができます。ディテクターを作成する際は、以下のSplunk Observability Cloudのベストプラクティスにしたがってください。"
+msgid ""
+"Splunk Observability Cloud uses detectors, events, alerts, and notifications to tell you when certain criteria are met. When a detector condition is met, the detector generates an event, triggers an alert, and can send one or more notifications. Follow these best practices in Splunk Observability Cloud when creating a "
+"detector."
+msgstr ""
+"Splunk Observability Cloudは、ディテクター、イベント、アラート、通知を使用して、特定の基準が満たされたときに情報を提供します。ディテクターの条件が満たされると、ディテクターはイベントを生成し、アラートをトリガーし、1つ以上の通知を送信することができます。ディテクターを作成する際は、以下のSplunk Observability Cloudのベストプ"
+"ラクティスにしたがってください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:6
msgid "Best practices for creating detectors in Splunk Observability Cloud"
@@ -4568,11 +4849,11 @@ msgstr "Splunk Observability Cloudのディテクター作成のベストプラ
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:11
msgid ""
-"Splunk Observability Cloud uses detectors to set conditions that determine when to send an alert or notification to the appropriate team members. Detectors evaluate metric time series against a specified condition, and optionally for a duration. When a condition is met, detectors generate events with a level of severity. Severity levels are Info, Warning, Minor, Major, and Critical. These events are alerts that can trigger notifications in incident "
-"management platforms, such as PagerDuty, or messaging systems, such as Slack or email."
+"Splunk Observability Cloud uses detectors to set conditions that determine when to send an alert or notification to the appropriate team members. Detectors evaluate metric time series against a specified condition, and optionally for a duration. When a condition is met, detectors generate events with a level of severity. "
+"Severity levels are Info, Warning, Minor, Major, and Critical. These events are alerts that can trigger notifications in incident management platforms, such as PagerDuty, or messaging systems, such as Slack or email."
msgstr ""
-"Splunk Observability Cloudは、ディテクターを使用して、適切なチームメンバーにアラートまたは通知を送信するタイミングを決定する条件を設定します。ディテクターは、指定された条件および(オプションの)期間に照らしてメトリック時系列を評価します。条件が満たされると、ディテクターは重大度レベル付きのイベントを生成します。重大度レベルは、「情報」(Info)、「警告」(Warning)、「マイナー」(Minor)、「メジャー」(Major)、および「クリティカル」(Critical)です。これらのイ"
-"ベントは、PagerDutyなどのインシデント管理プラットフォーム、またはSlackや電子メールなどのメッセージングシステムで通知をトリガーできるアラートです。"
+"Splunk Observability Cloudは、ディテクターを使用して、適切なチームメンバーにアラートまたは通知を送信するタイミングを決定する条件を設定します。ディテクターは、指定された条件および(オプションの)期間に照らしてメトリック時系列を評価します。条件が満たされると、ディテクターは重大度レベル付きのイベントを生成します。重大度レベ"
+"ルは、「情報」(Info)、「警告」(Warning)、「マイナー」(Minor)、「メジャー」(Major)、および「クリティカル」(Critical)です。これらのイベントは、PagerDutyなどのインシデント管理プラットフォーム、またはSlackや電子メールなどのメッセージングシステムで通知をトリガーできるアラートです。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:14
msgid "Using static thresholds"
@@ -4580,11 +4861,11 @@ msgstr "静的閾値の使用"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:15
msgid ""
-"The most basic kind of alert triggers immediately when a simple metric crosses a static threshold. An example is anytime CPU utilization goes above 70%. Fixed thresholds are easy to implement and interpret when there are absolute goals to measure against. For example, if you know the typical memory per CPU profile of a certain application, you can define bounds that define normal state. Or, if you have a business requirement to serve requests within a certain "
-"time period, you know what is an unacceptable latency for that function. See :ref:`static-threshold` for more information."
+"The most basic kind of alert triggers immediately when a simple metric crosses a static threshold. An example is anytime CPU utilization goes above 70%. Fixed thresholds are easy to implement and interpret when there are absolute goals to measure against. For example, if you know the typical memory per CPU profile of a "
+"certain application, you can define bounds that define normal state. Or, if you have a business requirement to serve requests within a certain time period, you know what is an unacceptable latency for that function. See :ref:`static-threshold` for more information."
msgstr ""
-"最も基本的な種類のアラートは、シンプルなメトリクスが静的閾値を超えたときに即座にトリガーされるものです。例えば、CPU使用率が70%を超えた時などです。測定する絶対的な目標がある場合は、固定した閾値を実装し解釈すると簡単です。例えば、特定のアプリケーションのCPUあたりの典型的なメモリプロファイルがわかっている場合、正常なステータスを定義するための境界を定義することができます。あるいは、特定時間内にリクエストを処理するというビジネス要件がある場合に、その機能にとって許"
-"容できない待ち時間を把握します。詳細は、:ref:`static-threshold` を参照してください。"
+"最も基本的な種類のアラートは、シンプルなメトリクスが静的閾値を超えたときに即座にトリガーされるものです。例えば、CPU使用率が70%を超えた時などです。測定する絶対的な目標がある場合は、固定した閾値を実装し解釈すると簡単です。例えば、特定のアプリケーションのCPUあたりの典型的なメモリプロファイルがわかっている場合、正常なステータ"
+"スを定義するための境界を定義することができます。あるいは、特定時間内にリクエストを処理するというビジネス要件がある場合に、その機能にとって許容できない待ち時間を把握します。詳細は、:ref:`static-threshold` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:18
msgid "Consistent signal types"
@@ -4595,8 +4876,12 @@ msgid "For a detector to work properly, the signal that it evaluates must repres
msgstr "ディテクターが適切に動作するためには、ディテクターが評価するシグナルは一貫したタイプの測定値を表すものである必要があります。例えば、Splunk Observability Cloudが ``cpu.utilization`` をレポートする場合、それは0から100の間の値であり、単一のLinuxインスタンスまたはホストの全CPUコアの平均使用率を表すものです。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:21
-msgid "Do not use wildcards. If you use wildcards in your metric name, make sure that the wildcards do not mistakenly include metrics of different types. For example, if you enter ``jvm.*`` as the metric name, your detector can evaluate to ``jvm.heap``, ``jvm.uptime`` and ``jvm.cpu.load`` (assuming each is a metric names in use in your organization) against the same threshold, which might lead to unexpected results."
-msgstr "ワイルドカードは使用しないでください。メトリクス名にワイルドカードを使用する場合は、そのワイルドカードによって異なるタイプのメトリクスが誤って含まれないようにしてください。たとえば、メトリクス名として ``jvm.*`` を入力した場合、ディテクターは同じ閾値に対して ``jvm.heap``、``jvm.uptime``、``jvm.cpu.load`` (それぞれ組織で使用されているメトリクス名であると仮定)を評価することができ、予期しない結果につながる可能性があります。"
+msgid ""
+"Do not use wildcards. If you use wildcards in your metric name, make sure that the wildcards do not mistakenly include metrics of different types. For example, if you enter ``jvm.*`` as the metric name, your detector can evaluate to ``jvm.heap``, ``jvm.uptime`` and ``jvm.cpu.load`` (assuming each is a metric names in use "
+"in your organization) against the same threshold, which might lead to unexpected results."
+msgstr ""
+"ワイルドカードは使用しないでください。メトリクス名にワイルドカードを使用する場合は、そのワイルドカードによって異なるタイプのメトリクスが誤って含まれないようにしてください。たとえば、メトリクス名として ``jvm.*`` を入力した場合、ディテクターは同じ閾値に対して ``jvm.heap``、``jvm.uptime``、``jvm.cpu.load`` (それぞれ組織で使"
+"用されているメトリクス名であると仮定)を評価することができ、予期しない結果につながる可能性があります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:24
msgid "Viewing at native data resolution"
@@ -4604,47 +4889,60 @@ msgstr "ネイティブのデータ解像度での表示"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:25
msgid ""
-"A common and easy way to create a detector is to first create a chart, which lets you visualize the behavior of the signal you want to alert on, then convert it to a detector. See :new-page:`Create a detector from a chart ` to learn how. If you choose to use this method to create a detector, make sure you are visualizing the "
-"data at its native resolution, as this gives you the most accurate picture of the data that your detector evaluates. For example, if you create a detector using a metric that reports once every 10 seconds, make sure the time range for your chart is small enough (say, 15 minutes) to see individual measurements every 10 seconds."
+"A common and easy way to create a detector is to first create a chart, which lets you visualize the behavior of the signal you want to alert on, then convert it to a detector. See :new-page:`Create a detector from a chart ` to learn how. If you choose to use this method to create a detector, make sure you are visualizing the data at its native resolution, as this gives you the most accurate picture of the data that your detector evaluates. For example, if you create a detector using a metric that "
+"reports once every 10 seconds, make sure the time range for your chart is small enough (say, 15 minutes) to see individual measurements every 10 seconds."
msgstr ""
-"ディテクターを作成するための一般的で簡単な方法は、最初にチャートを作成し、アラートを発したいシグナルの動作を視覚化してから、それをディテクターに変換することです。この方法は、「 :new-page:`チャートからディテクターを作成する` 」を参照してください。この方法を使用してディテクターを作成する場合、必ずデータをネイティブの解像度で視"
-"覚化してください。これを行うことで、ディテクターが評価するデータの最も正確な描画を取得できるからです。たとえば、10秒に1回レポートするメトリクスを使用してディテクターを作成する場合は、チャートの時間範囲が、10秒ごとの個々の測定値を表示するために十分に小さい(例:15分間)ことを確認してください。"
+"ディテクターを作成するための一般的で簡単な方法は、最初にチャートを作成し、アラートを発したいシグナルの動作を視覚化してから、それをディテクターに変換することです。この方法は、「 :new-page:`チャートからディテクターを作成する` 」を参照してください。この方法を使用してディテクターを作成する場合、必ずデータをネイティブの解像度で視覚化してください。これを行うことで、ディテクターが評価するデータの最も正確な描画を取得できるからです。たとえば、10秒に1回レポートするメトリクスを使用してディテクターを作成する"
+"場合は、チャートの時間範囲が、10秒ごとの個々の測定値を表示するために十分に小さい(例:15分間)ことを確認してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:27
msgid ""
-"By default, Splunk Observability Cloud chooses a chart display resolution that fits within the time range you choose, and summarizes the data to match that resolution. For example, if you use a metric that reports every 10 seconds, but you look at a 1-day window, then by default the data you see on the chart represents 30-minute intervals. Depending on the rollup or summarization method, this could mean that any peaks or dips average out, which gives you an "
-"inaccurate understanding of your signal and what constitutes an appropriate detector threshold. Also, analytics pipelines are applied to the rolled-up data, so the meaning of a calculation might change if the resolution changes. For example, duration parameters, which you can use for timeshifting and smoothing data, have no effect when they are smaller than the resolution."
+"By default, Splunk Observability Cloud chooses a chart display resolution that fits within the time range you choose, and summarizes the data to match that resolution. For example, if you use a metric that reports every 10 seconds, but you look at a 1-day window, then by default the data you see on the chart represents "
+"30-minute intervals. Depending on the rollup or summarization method, this could mean that any peaks or dips average out, which gives you an inaccurate understanding of your signal and what constitutes an appropriate detector threshold. Also, analytics pipelines are applied to the rolled-up data, so the meaning of a "
+"calculation might change if the resolution changes. For example, duration parameters, which you can use for timeshifting and smoothing data, have no effect when they are smaller than the resolution."
msgstr ""
-"デフォルトでは、Splunk Observability Cloudは選択された時間範囲に収まるチャート表示解像度を選択し、その解像度に合わせてデータを要約します。たとえば、10秒ごとにレポートするメトリクスを使用しているにもかかわらず、1日の時間窓で見るという場合、デフォルトでは、チャート上のデータは30分間隔で表示されます。ロールアップや要約の方法によっては、これではピークやディップが平均化されてしまう可能性があり、シグナルや適切なディテクター閾値に対する不正確な理解につながる可能性が"
-"あります。また、分析パイプラインはロールアップされたデータに適用されるため、解像度が変わると計算の意味が変わる可能性があります。例えば、タイムシフトやデータの平滑化に使用できる継続期間パラメータは、解像度より小さければ効果がありません。"
+"デフォルトでは、Splunk Observability Cloudは選択された時間範囲に収まるチャート表示解像度を選択し、その解像度に合わせてデータを要約します。たとえば、10秒ごとにレポートするメトリクスを使用しているにもかかわらず、1日の時間窓で見るという場合、デフォルトでは、チャート上のデータは30分間隔で表示されます。ロールアップや要約の方法"
+"によっては、これではピークやディップが平均化されてしまう可能性があり、シグナルや適切なディテクター閾値に対する不正確な理解につながる可能性があります。また、分析パイプラインはロールアップされたデータに適用されるため、解像度が変わると計算の意味が変わる可能性があります。例えば、タイムシフトやデータの平滑化に使用できる継続期"
+"間パラメータは、解像度より小さければ効果がありません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:32
msgid "Create detectors that monitor a single signal across a population"
msgstr "母集団全体にわたり単一のシグナルを監視するディテクターの作成"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:33
-msgid "Splunk Observability Cloud provides a simple and concise way of defining detectors that monitor a large number of similar items like the CPU utilization for all of the hosts in a given cluster. It accomplishes this through the metadata that is associated with metric time series, which is analogous to how that metadata - dimensions, properties or tags - creates charts."
-msgstr "Splunk Observability Cloudは、特定のクラスタ内の全ホストのCPU使用率のように多数の類似した項目を監視するディテクターを定義するためのシンプルで簡潔な方法を提供します。これは、メトリック時系列に関連付けられたメタデータによって実現されるもので、これは、そのメタデータ(ディメンション、プロパティ、タグ)がチャートを作成する方法に似ています。"
+msgid ""
+"Splunk Observability Cloud provides a simple and concise way of defining detectors that monitor a large number of similar items like the CPU utilization for all of the hosts in a given cluster. It accomplishes this through the metadata that is associated with metric time series, which is analogous to how that metadata - "
+"dimensions, properties or tags - creates charts."
+msgstr ""
+"Splunk Observability Cloudは、特定のクラスタ内の全ホストのCPU使用率のように多数の類似した項目を監視するディテクターを定義するためのシンプルで簡潔な方法を提供します。これは、メトリック時系列に関連付けられたメタデータによって実現されるもので、これは、そのメタデータ(ディメンション、プロパティ、タグ)がチャートを作成する方法"
+"に似ています。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:35
msgid ""
-"Let's look at an example. If you have a group of 30 hosts that provide a clustered service like Kafka, it normally includes a dimension like ``service:kafka`` with all of the metrics coming from those hosts. In this case, if you want to track whether CPU utilization remains below 70% for each of those hosts, you can create a single detector for the ``cpu.utilization`` metric that filters hosts using the ``service:kafka`` dimension and evaluates them against "
-"the static threshold of 70. This detector triggers individual alerts for each host whose CPU utilization exceeds the threshold - just as if you had 30 separate detectors - but you only need to create one detector, not 30."
+"Let's look at an example. If you have a group of 30 hosts that provide a clustered service like Kafka, it normally includes a dimension like ``service:kafka`` with all of the metrics coming from those hosts. In this case, if you want to track whether CPU utilization remains below 70% for each of those hosts, you can "
+"create a single detector for the ``cpu.utilization`` metric that filters hosts using the ``service:kafka`` dimension and evaluates them against the static threshold of 70. This detector triggers individual alerts for each host whose CPU utilization exceeds the threshold - just as if you had 30 separate detectors - but "
+"you only need to create one detector, not 30."
msgstr ""
-"例を1つ見てみましょう。Kafkaのようなクラスタ化されたサービスを提供する30個のホストのグループがある場合、通常は ``service:kafka`` のようなディメンションが含まれ、そのメトリクスはすべてこれらのホストから来ます。この場合に、これらの各ホストのCPU使用率が70%未満にとどまっているかどうかを追跡したければ、 ``service:kafka`` ディメンションを使用しているホストをフィルタリングして ``cpu.utilization`` メトリクスを監視する単一のディテクターを作成し、70という静的閾値に対"
-"して評価を行います。このディテクターは、まるで別々の30個のディテクターを設定しているかのように、CPU使用率が閾値を超えた各ホストに対して個別のアラートをトリガーしますが、作成する必要があるのは30個ではなくたった1個のディテクターです。"
+"例を1つ見てみましょう。Kafkaのようなクラスタ化されたサービスを提供する30個のホストのグループがある場合、通常は ``service:kafka`` のようなディメンションが含まれ、そのメトリクスはすべてこれらのホストから来ます。この場合に、これらの各ホストのCPU使用率が70%未満にとどまっているかどうかを追跡したければ、 ``service:kafka``ディ"
+"メンションを使用しているホストをフィルタリングして ``cpu.utilization`` メトリクスを監視する単一のディテクターを作成し、70という静的閾値に対して評価を行います。このディテクターは、まるで別々の30個のディテクターを設定しているかのように、CPU使用率が閾値を超えた各ホストに対して個別のアラートをトリガーしますが、作成する必要が"
+"あるのは30個ではなくたった1個のディテクターです。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:37
-msgid "In addition, if the population changes - say, because the cluster grows to 40 hosts - you do not need to make any changes to your detector. As long as you include the ``service:kafka`` dimension for metrics coming from the new hosts, the existing detector finds them and automatically includes them in the threshold evaluation."
+msgid ""
+"In addition, if the population changes - say, because the cluster grows to 40 hosts - you do not need to make any changes to your detector. As long as you include the ``service:kafka`` dimension for metrics coming from the new hosts, the existing detector finds them and automatically includes them in the threshold "
+"evaluation."
msgstr "さらに、母集団が変わった場合(例えば、クラスタの規模が40ホストに拡大した場合)でも、ディテクターに変更を加える必要がありません。新たに増えたホストから来るメトリクスについて ``service:kafka`` ディメンションを含めている限りは、既存のディテクターがそれらを見つけて自動で閾値評価の対象に含めます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:39
msgid ""
-"Detectors that monitor a single signal work best when all of the members of the population have the same threshold, and the same notification policy. For example, they might publish alerts into the same Slack channel. If you have different thresholds or notification policies, you must create multiple detectors (one for each permutation of threshold and notification) or take advantage of the const function in SignalFlow. In any case, the likely number of such "
-"detectors is still fewer than the count of individual members that it monitors. It is important to create a detector for a signal, not for a microservice, in order to avoid accumulating too many detectors that trigger a multitude of alerts."
+"Detectors that monitor a single signal work best when all of the members of the population have the same threshold, and the same notification policy. For example, they might publish alerts into the same Slack channel. If you have different thresholds or notification policies, you must create multiple detectors (one for "
+"each permutation of threshold and notification) or take advantage of the const function in SignalFlow. In any case, the likely number of such detectors is still fewer than the count of individual members that it monitors. It is important to create a detector for a signal, not for a microservice, in order to avoid "
+"accumulating too many detectors that trigger a multitude of alerts."
msgstr ""
-"単一のシグナルを監視するディテクターは、母集団の全てのメンバーが同じ閾値を持ち、同じ通知ポリシーを持っている場合に、最もうまく機能します。例えば、同じSlackチャンネルにアラートを発行するような場合です。閾値や通知ポリシーが異なる場合は、複数のディテクター(閾値と通知の配列ごとに1つずつ)を作成するか、SignalFlowのconst関数を活用する必要があります。いずれにせよ、このようなディテクターの数は、それが監視する個々のメンバーの数よりもまだ少ない可能性が高いです。多数の"
-"アラートをトリガーするディテクターを蓄積しすぎないようにするためには、マイクロサービスではなくシグナルに対してディテクターを作成することが重要です。"
+"単一のシグナルを監視するディテクターは、母集団の全てのメンバーが同じ閾値を持ち、同じ通知ポリシーを持っている場合に、最もうまく機能します。例えば、同じSlackチャンネルにアラートを発行するような場合です。閾値や通知ポリシーが異なる場合は、複数のディテクター(閾値と通知の配列ごとに1つずつ)を作成するか、SignalFlowのconst関数を"
+"活用する必要があります。いずれにせよ、このようなディテクターの数は、それが監視する個々のメンバーの数よりもまだ少ない可能性が高いです。多数のアラートをトリガーするディテクターを蓄積しすぎないようにするためには、マイクロサービスではなくシグナルに対してディテクターを作成することが重要です。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:42
msgid "Use aggregation to monitor sub-groups within a population"
@@ -4652,19 +4950,26 @@ msgstr "母集団内のサブグループを監視するために集計を使用
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:43
msgid ""
-"You can also use detectors to monitor sub-groups within the population. For example, let’s say you have 100 hosts in total, divided among 10 services. You want to make sure the 95th percentile of CPU utilization across the cluster of hosts that provide each of those services remains below 70%. In this case, create a single detector for ``cpu.utilization``, then apply an analytics function of P95, and group by ``service``. The aggregation approach works only "
-"if ``service`` is a dimension or property. The aggregation approach does not work if ``service`` is a tag."
+"You can also use detectors to monitor sub-groups within the population. For example, let’s say you have 100 hosts in total, divided among 10 services. You want to make sure the 95th percentile of CPU utilization across the cluster of hosts that provide each of those services remains below 70%. In this case, create a "
+"single detector for ``cpu.utilization``, then apply an analytics function of P95, and group by ``service``. The aggregation approach works only if ``service`` is a dimension or property. The aggregation approach does not work if ``service`` is a tag."
msgstr ""
-"ディテクターを使用して、母集団内のサブグループを監視することもできます。例えば、合計100個のホストがあり、それらが10個のサービスに分かれているとします。これらの各サービスを提供するホストクラスタ全体のCPU使用率の95パーセンタイルが70%未満にとどまっていることを確認したいとします。この場合、``cpu.utilization`` のディテクターを1つ作成し、P95の分析関数を適用して、``service`` でグループ化します。この集計アプローチは、``service`` がディメンションまたはプロパティで"
-"ある場合にのみ機能します。``service`` がタグである場合、この集計アプローチは機能しません。"
+"ディテクターを使用して、母集団内のサブグループを監視することもできます。例えば、合計100個のホストがあり、それらが10個のサービスに分かれているとします。これらの各サービスを提供するホストクラスタ全体のCPU使用率の95パーセンタイルが70%未満にとどまっていることを確認したいとします。この場合、``cpu.utilization`` のディテクターを"
+"1つ作成し、P95の分析関数を適用して、``service`` でグループ化します。この集計アプローチは、``service`` がディメンションまたはプロパティである場合にのみ機能します。``service`` がタグである場合、この集計アプローチは機能しません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:45
-msgid "This aggregation detector triggers alerts for each service, just as if you had 10 separate detectors - but you only need to create one detector, not 10. If you add additional services, the detector automatically monitors them as long as you have included a ``service`` dimension or property for the new services' metrics."
-msgstr "この集計ディテクターは、まるで10個の個別のディテクターを設定しているかのように各サービスに対してアラートをトリガーしますが、作成する必要があるのは10個でなく1個のディテクターだけです。サービスを追加した場合でも、その新しいサービスのメトリクスに ``service`` ディメンションまたはプロパティが含まれている限り、このディテクターは自動的にそれらのサービスを監視します。"
+msgid ""
+"This aggregation detector triggers alerts for each service, just as if you had 10 separate detectors - but you only need to create one detector, not 10. If you add additional services, the detector automatically monitors them as long as you have included a ``service`` dimension or property for the new services' metrics."
+msgstr ""
+"この集計ディテクターは、まるで10個の個別のディテクターを設定しているかのように各サービスに対してアラートをトリガーしますが、作成する必要があるのは10個でなく1個のディテクターだけです。サービスを追加した場合でも、その新しいサービスのメトリクスに ``service`` ディメンションまたはプロパティが含まれている限り、このディテクター"
+"は自動的にそれらのサービスを監視します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/detectors-best-practices.rst:47
-msgid "You can also monitor individual members of a population for deviation from the population norm, optionally grouping by dimensions or properties, with the Outlier Detection built-in alert condition. See the population_comparison detector in the signalflow-library in GitHub at :new-page:`https://github.com/signalfx/signalflow-library/tree/master/library/signalfx/detectors/population_comparison`."
-msgstr "また、「外れ値の検出」の内蔵アラート条件を使って、母集団の個々のメンバーを、母集団の標準からの偏差について、オプションでディメンションまたはプロパティをグループ化して、監視することができます。:new-page:`https://github.com/signalfx/signalflow-library/tree/master/library/signalfx/detectors/population_comparison` で、GitHubのsignalflow-libraryにあるpopulation_comparisonディテクターについて参照してください。"
+msgid ""
+"You can also monitor individual members of a population for deviation from the population norm, optionally grouping by dimensions or properties, with the Outlier Detection built-in alert condition. See the population_comparison detector in the signalflow-library in GitHub at :new-page:`https://github.com/signalfx/"
+"signalflow-library/tree/master/library/signalfx/detectors/population_comparison`."
+msgstr ""
+"また、「外れ値の検出」の内蔵アラート条件を使って、母集団の個々のメンバーを、母集団の標準からの偏差について、オプションでディメンションまたはプロパティをグループ化して、監視することができます。:new-page:`https://github.com/signalfx/signalflow-library/tree/master/library/signalfx/detectors/population_comparison` で、GitHub"
+"のsignalflow-libraryにあるpopulation_comparisonディテクターについて参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/link-detectors-to-charts.rst:-1
msgid "Learn how to Link detectors to charts in Splunk Observability Cloud so that you can discover and diagnose issues more quickly."
@@ -4675,8 +4980,12 @@ msgid "Link detectors to charts"
msgstr "ディテクターをチャートにリンクする"
#: ../../alerts-detectors-notifications/alerts-and-detectors/link-detectors-to-charts.rst:12
-msgid "Detectors constantly monitor signals for conditions or issues, triggering alerts when needed. When you link detectors to charts, you can discover and diagnose issues at a glance from your dashboards. If you :ref:`create a new detector from a chart `, a link to the new detector is automatically added to the chart."
-msgstr "ディテクターは、シグナルの状態や問題を常に監視し、必要に応じてアラートを発します。ディテクターをチャートにリンクすると、ダッシュボードから一目で問題を発見し、診断することができます。:ref:`チャートから新しいディテクターを作成する` と、その新しいディテクターへのリンクが自動的にチャートに追加されます。"
+msgid ""
+"Detectors constantly monitor signals for conditions or issues, triggering alerts when needed. When you link detectors to charts, you can discover and diagnose issues at a glance from your dashboards. If you :ref:`create a new detector from a chart `, a link to the new detector is automatically "
+"added to the chart."
+msgstr ""
+"ディテクターは、シグナルの状態や問題を常に監視し、必要に応じてアラートを発します。ディテクターをチャートにリンクすると、ダッシュボードから一目で問題を発見し、診断することができます。:ref:`チャートから新しいディテクターを作成する` と、その新しいディテクターへのリンクが自動的にチャートに追加され"
+"ます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/link-detectors-to-charts.rst:16
msgid "Linked detectors color the border of the charts, tables, and icons with the color of the highest alert severity for all detectors linked to that chart. In the following example, the green border means there are no active alerts. If there is no border, then the chart has no linked detectors."
@@ -4939,16 +5248,16 @@ msgid "Mute alert notifications"
msgstr "アラート通知のミュート"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:10
-msgid "Muting is helpful when you need to stop sending alert notifications during situations that are known to trigger alerts, such as maintenance windows or tests. Muting allows you to reduce noise and focus on what really matters."
-msgstr "メンテナンスウィンドウやテストなど、アラートをトリガーすることが分かっている状況でアラート通知の送信を停止する必要がある場合は、ミュートが役に立ちます。ミュートを使用することで、ノイズを減らし、本当に重要なことに集中することができます。"
+msgid "Muting is helpful when you need to stop sending alert notifications during situations known to trigger alerts, such as maintenance windows or tests. Muting lets you reduce noise and focus on what matters."
+msgstr "メンテナンスウィンドウやテストなど、アラートをトリガーすることが分かっている状況でアラート通知の送信を停止する必要がある場合は、ミュートが役に立ちます。ミュートを使用することで、ノイズを減らし、重要なことに集中することができます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:12
msgid "You can stop sending, or mute, alert notifications based on certain conditions you can specify. You can mute notifications for a specified period of time or indefinitely, although alerts and events are still generated, and appear in Splunk Observability Cloud."
msgstr "指定可能な特定の条件に基づいて、アラート通知の送信を停止、またはミュートすることができます。通知は、指定した期間または無期限にミュートすることができますが、アラートとイベントは依然として生成され、Splunk Observability Cloudに表示されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:14
-msgid "To see your existing muting rules or create new ones, go to :guilabel:`Alerts`, then select the :guilabel:`Muting Rules` tab."
-msgstr "既存のミュートルールを確認したり、新しいミュートルールを作成するには、:guilabel:`Alerts` に移動し、:guilabel:`Muting Rules` タブを選択します。"
+msgid "To see your existing muting rules or create new ones, go to :guilabel:`Detectors & SLOs`, then select the :guilabel:`Muting rules` tab."
+msgstr "既存のミュートルールを確認したり、新しいミュートルールを作成するには、:guilabel:`Detectors & SLOs` に移動し、:guilabel:`Muting rules` タブを選択します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:5
msgid "Muting rules tab in Alerts"
@@ -4959,11 +5268,17 @@ msgid "How muting works"
msgstr "ミュートの仕組み"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:26
-msgid "Alert notifications are muted according to :ref:`muting rules `, which include a schedule that sets the muting period. During the muting period, notifications that match the rule aren't sent to :ref:`subscribers `. The only exception are clear notifications for alerts that were active before the muting period started."
-msgstr "アラート通知は、:ref:`ミュートルール` に従ってミュートされます。このルールには、ミュート期間を設定するスケジュールが含まれます。ミュート期間中は、ルールに一致する通知は :ref:`受信登録者` に送信されません。唯一の例外は、ミュート期間が始まる前にアクティブになっていたアラートの解除に関する通知です。"
+msgid ""
+"Alert notifications are muted according to :ref:`muting rules `, which include a schedule that sets the muting period. During the muting period, notifications that match the rule aren't sent to :ref:`subscribers `. The only exception are clear notifications for alerts that were "
+"active before the muting period started."
+msgstr ""
+"アラート通知は、:ref:`ミュートルール` に従ってミュートされます。このルールには、ミュート期間を設定するスケジュールが含まれます。ミュート期間中は、ルールに一致する通知は :ref:`受信登録者` に送信されません。唯一の例外は、ミュート期間が始まる前にアクティブになっていたアラートの解除に関す"
+"る通知です。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:28
-msgid "After the muting period ends, Splunk Observability Cloud restarts sending to subscribers notifications for alerts that are still active, or for alerts triggered within the last 90 days of the muting period. To turn off sending alert notifications after the muting period has ended, edit the :ref:`muting rule configuration `."
+msgid ""
+"After the muting period ends, Splunk Observability Cloud restarts sending to subscribers notifications for alerts that are still active, or for alerts triggered within the last 90 days of the muting period. To turn off sending alert notifications after the muting period has ended, edit the :ref:`muting rule configuration "
+"`."
msgstr "ミュート期間が終了すると、Splunk Observability Cloudは、まだアクティブなアラート、またはミュート期間の最後の90日内にトリガーされたアラートの通知の受信登録者への送信を再開します。ミュート期間終了後のアラート通知の送信をオフにするには、:ref:`ミュートルールの設定` を編集します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:30
@@ -4975,8 +5290,8 @@ msgid "Create muting rules"
msgstr "ミュートルールの作成"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:37
-msgid "To create a muting rule, you can either:"
-msgstr "ミュートルールを作成するには、以下のいずれかの操作を行います:"
+msgid "To create a muting rule, you can do one of the following:"
+msgstr "ミュートルールを作成するには、以下のいずれかを実行できます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:39
msgid ":ref:`Mute specific detectors or alerts `."
@@ -5002,15 +5317,15 @@ msgstr "既存のディテクターまたはアラートからミュートルー
msgid "To mute a specific detector or alert:"
msgstr "特定のディテクターまたはアラートをミュートするには、以下の手順に従います:"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:52
-msgid "Open the :guilabel:`Alerts` page, and locate the detector or active alert you want to mute."
-msgstr ":guilabel:`Alerts` ページを開き、ミュートしたいディテクターまたはアクティブアラートを見つけます。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:52 ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:67
+msgid "Open :guilabel:`Detectors & SLOs`, then select either the :guilabel:`Active alerts` or :guilabel:`Detectors` tab."
+msgstr ":guilabel:`Detectors & SLOs` を開き、:guilabel:`Active alerts` または :guilabel:`Detectors` タブを選択します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:53
msgid "Select the more icon (|more|) next to the detector or alert, and select :menuselection:`Create Muting Rule`."
msgstr "ディテクターまたはアラートの横にあるその他(|more| )のアイコンを選択し、 :menuselection:`Create Muting Rule` を選択します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:54 ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:70 ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:84
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:54 ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:70 ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:82
msgid ":ref:`Configure and save the muting rule `."
msgstr ":ref:`ミュートルールを構成し、保存します`。"
@@ -5030,13 +5345,9 @@ msgstr "ミュートルールには、:guilabel:`Group By` で指定されたデ
msgid "To create muting rules based on group-by dimensions:"
msgstr "ディメンションによるグループ化に基づいてミュートルールを作成するには、以下の手順に従います:"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:67
-msgid "Open :guilabel:`Alerts`, then select either the :guilabel:`Active Alerts` or :guilabel:`Detectors` tab."
-msgstr ":guilabel:`Alerts` を開き、:guilabel:`Active Alerts` または :guilabel:`Detectors` タブを選択します。"
-
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:68
-msgid "Specify the grouping dimensions using the :guilabel:`Group By` buttons."
-msgstr ":guilabel:`Group By` ボタンを使用して、グループ化するディメンションを指定します。"
+msgid "Specify the grouping dimensions by selecting the :guilabel:`Group By` button."
+msgstr ":guilabel:`Group By` ボタンを選択して、グループ化するディメンションを指定します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:69
msgid "Select the more button (|more|) next any grouped item, and select :menuselection:`Create Muting Rule`."
@@ -5051,154 +5362,200 @@ msgid "Create muting rules from scratch"
msgstr "ゼロからミュートルールを作成する"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:79
-msgid "Create or edit muting rules at any time from the :guilabel:`Muting Rules` tab in :guilabel:`Alerts`."
-msgstr ":guilabel:`Alerts` の :guilabel:`Muting Rules` タブから、いつでもミュートルールを作成または編集できます。"
-
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:81
msgid "To create a new muting rule from scratch:"
msgstr "ゼロからミュートルールを作成するには、以下の手順に従います:"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:83
-msgid "Open :guilabel:`Alerts`, then select the :guilabel:`Muting Rules` tab."
-msgstr ":guilabel:`Alerts` を開き、:guilabel:`Muting Rules` タブを選択します。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:81 ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:157
+msgid "Open :guilabel:`Detectors & SLOs`, then select the :guilabel:`Muting rules` tab."
+msgstr ":guilabel:`Detectors & SLOs` を開き、:guilabel:`Muting rules` タブを選択します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:89
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:87
msgid "Configure your muting rule"
msgstr "ミュートルールの構成"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:91
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:89
msgid "The following screenshot shows the muting rule dialog box:"
msgstr "次のスクリーンショットは、ミュートルールのダイアログボックスを示しています:"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:89
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:87
msgid "Configure a muting rule"
msgstr "ミュートルールの構成"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:95
+msgid "To configure a new muting rule, follow these steps:"
+msgstr "新しいミュートルールを設定するには、以下の手順に従ってください:"
+
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:97
-msgid "To create a new muting rule, follow these steps:"
-msgstr "新しいミュートルールを作成するには、以下の手順に従ってください:"
+msgid "Include a :guilabel:`Description` for the muting rule. The text you enter in this field displays as the name of the muting rule in the :guilabel:`Muting rules` tab."
+msgstr "ミュートルールに :guilabel:`Description` を含めます。このフィールドに入力したテキストは、:guilabel:`Muting rules` タブのミュートルールの名前として表示されます。"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:98
+msgid ""
+"Use :guilabel:`Select detectors` and :guilabel:`Select properties` to add one or more detectors and properties for which you want to mute notifications. If using groups, you can also type :strong:`sf_tags` to find a list of tags. When you add more than one detector or property, the muting rule interprets the detectors "
+"and properties using the AND logical operator."
+msgstr ""
+":guilabel:`Select detectors` と :guilabel:`Select properties` を使用して、通知をミュートしたい1つまたは複数のディテクターとプロパティを追加します。グループを使用する場合は、:strong:`sf_tags` と入力して、タグのリストを見つけることもできます。複数のディテクターまたはプロパティを追加すると、ミュートルールはAND論理演算子を使"
+"用してディテクターとプロパティを解釈します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:99
-msgid "Use :guilabel:`Add property` to add or modify one or more properties for which you want to mute notifications. If using groups, you can also type :strong:`sf_tags` to find a list of tags. When you add more than one property, the muting rule interprets the properties using the AND logical operator."
-msgstr ":guilabel:`Add property` を使って、通知をミュートしたい1つ以上のプロパティを追加または変更します。グループを使用する場合、:strong:`sf_tags` とタイプしてタグのリストを見つけることもできます。複数のプロパティを追加する場合、ミュートルールはAND論理演算子を使用してプロパティを解釈します。"
+msgid "Specify the :guilabel:`Muting schedule` during which notifications are muted (muting period) using the predefined periods or by creating a custom period. You can also mute indefinitely."
+msgstr "定義済みの期間を使用するかカスタム期間を作成して、通知をミュートすべき期間の :guilabel:`Muting schedule` (ミュート期間)を指定します。無期限にミュートすることもできます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:100
-msgid "Include a :guilabel:`Reason` for the muting rule. The text you enter in this field is displayed when you hover over a rule in the :guilabel:`Muting Rules` tab, and can help others understand why alerts are being muted."
-msgstr "ミュートルールの :guilabel:`Reason` を入力します。このフィールドに入力したテキストは、:guilabel:`Muting Rules` タブでルールにカーソルを合わせたときに表示され、アラートがミュートされている理由を他のユーザーが理解するのに役立ちます。"
+msgid ""
+"(Optional) If the rule follows a schedule, you can set a :guilabel:`Time window` and a :guilabel:`Recurrence` period for the muting rule. When scheduling a muting rule, the rule repeats after a set number of days, starting with the start time of the original rule. The daily and weekly options set that number to ``1`` and "
+"``7`` respectively. The :menuselection:`Custom` option lets you set the number of days or set a number of weeks. To learn more about setting a time window, see :ref:`time-range-selector`."
+msgstr ""
+"(オプション)ルールがスケジュールに従っている場合、ミュートルールの :guilabel:`Time window` と :guilabel:`Recurrence` 期間を設定できます。ミュートルールのスケジューリングでは、元のルールの開始時刻を起点として、設定した日数後にルールが繰り返されます。毎日および毎週のオプションでは、この日数をそれぞれ ``1`` と ``7`` に設定"
+"します。:menuselection:`Custom` オプションでは、日数または週数を設定できます。時間ウィンドウの設定については、:ref:`time-range-selector` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:101
-msgid "Specify the :guilabel:`Schedule` during which notifications should be muted (muting period) using the predefined periods or by creating a custom period. You can also mute indefinitely."
-msgstr "定義済みの期間を使用するかカスタム期間を作成して、通知をミュートすべき期間の :guilabel:`Schedule` (ミュート期間)を指定します。無期限にミュートすることもできます。"
-
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:102
-msgid "(Optional) If the rule follows a schedule, you can set a :guilabel:`Recurrence` period for the muting rule. When scheduling a muting rule, the rule repeats after a set number of days, starting with the start time of the original rule. The daily and weekly options set that number to ``1`` and ``7`` respectively. The :menuselection:`Custom` option lets you set the number of days or set a number of weeks."
-msgstr "(オプション)ルールがスケジュールに従っている場合、ミュートルールの :guilabel:`Recurrence` 期間を設定できます。ミュートルールをスケジュールすると、ルールは、元のルールの開始時刻を起点として、設定した日数後に繰り返します。毎日および毎週のオプションでは、この日数をそれぞれ ``1`` および ``7`` に設定します。:menuselection:`Custom` オプションでは、日数または週数を自分で設定できます。"
-
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:103
-msgid "Select whether you want to clear any existing alerts that match the conditions you have set. If you're muting certain alerts to address a known problem, you might want to clear existing alerts so you are starting from a clean slate. Clearing these alerts also notifies downstream systems, such as Splunk On-Call, OpsGenie, and PagerDuty."
+msgid ""
+"Select whether you want to clear any existing alerts that match the conditions you have set. If you're muting certain alerts to address a known problem, you might want to clear existing alerts so you are starting from a clean slate. Clearing these alerts also notifies downstream systems, such as Splunk On-Call, OpsGenie, "
+"and PagerDuty."
msgstr "設定した条件に一致する既存のアラートを解除するかどうかを選択します。既知の問題に対処するために特定のアラートをミュートする場合は、既存のアラートを解除して白紙の状態から始めるとよいでしょう。これらのアラートを解除すると、Splunk On-Call、OpsGenie、PagerDutyなどのダウンストリームシステムにも通知されます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:104
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:102
msgid "Select whether you want to receive notifications for alerts that are still active when the muting period ends."
msgstr "ミュート期間が終了した後に依然としてアクティブなアラートの通知を受信するかどうかを選択します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:105
-msgid "Select :guilabel:`Next` to view a summary of the muting conditions. If you want to turn on the muting rule, select :guilabel:`Save`. It can take up to a minute before a new muting rule goes into effect."
-msgstr ":guilabel:`Next` を選択すると、ミュート条件の概要が表示されます。このミュートルールを有効にしたい場合は、:guilabel:`Save` を選択します。新しいミュートルールが有効になるまでに最大で1分かかります。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:103
+msgid "Select :guilabel:`Create` to activate the muting rule. It can take up to a minute before a new muting rule goes into effect."
+msgstr "ミュートルールを有効にするには、:guilabel:`Create` を選択します。新しいミュートルールが有効になるまで、最大1分かかることがあります。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:107
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:105
msgid "Splunk Observability Cloud allows a maximum of 9,500 muting rules."
msgstr "Splunk Observability Cloudでは、最大9,500個のミュートルールが利用できます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:112
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:110
msgid "Search and view muting rules"
msgstr "ミュートルールの検索と表示"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:114
-msgid "You can search existing muting rules and view their details at any time, as well as browse muted notifications."
-msgstr "いつでも既存のミュートルールを検索してその詳細を表示できるほか、ミュートされた通知を閲覧することもできます。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:112
+msgid "You can search muting rules and view their details at any time, as well as browse muted notifications."
+msgstr "いつでもミュートルールを検索してその詳細を表示できるほか、ミュートされた通知を閲覧することもできます。"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:115
+msgid "Muting rules"
+msgstr "ミュートルール"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:117
-msgid "Active and scheduled muting rules"
-msgstr "アクティブなミュートルールおよびスケジュールされたミュートルール"
+msgid "To find muting rules, use the search field in the :guilabel:`Muting rules` tab on the :guilabel:`Detectors & SLOs` page."
+msgstr "ミュートルールを検索するには、:guilabel:`Detectors & SLOs` ページの :guilabel:`Muting rules` タブにある検索フィールドを使用します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:119
-msgid "To find active or scheduled muting rules, use the search field in the :guilabel:`Muting Rules` tab on the :guilabel:`Alerts` page."
-msgstr "アクティブなミュートルールまたはスケジュールされたミュートルールを検索するには、:guilabel:`Alerts` ページの :guilabel:`Muting Rules` タブにある検索フィールドを使用します。"
+msgid "You can also view information about muting rules from different places on the :guilabel:`Detectors & SLOs` page."
+msgstr "また、:guilabel:`Detectors & SLOs` のページでは、さまざまな場所からミュートルールに関する情報を表示できます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:121
-msgid "You can also view information about active and scheduled muting rules from different places on the Alerts page."
-msgstr "また、「アラート」ページのさまざまな場所からも、アクティブなミュートルールやスケジュールされたミュートルールに関する情報を表示することができます。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:123
+msgid "On the :guilabel:`Muting rules` tab, by default, you can view a list of all active and scheduled muting rules."
+msgstr ":guilabel:`Muting rules` タブでは、デフォルトで、アクティブなミュートルールとスケジュールされたミュートルールの全リストを表示できます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:125
-msgid "On the :guilabel:`Muting Rules` tab, you can view a list of all active and scheduled muting rules."
-msgstr ":guilabel:`Muting Rules` タブでは、アクティブなミュートルールとスケジュールされたミュートルールの全リストを表示できます。"
+msgid "Use the :guilabel:`Status` filter to view different lists of muting rules. You can filter muting rules by :strong:`Active and Scheduled`, :strong:`Active`, :strong:`Scheduled`, :strong:`Expired`, or :strong:`Any`."
+msgstr "ミュートルールのさまざまなリストを表示するには、:guilabel:`Status` フィルターを使用します。:strong:`Active and Scheduled`、:strong:`Active`、:strong:`Scheduled`、:strong:`Expired`、または :strong:`Any` でミュートルールをフィルターできます。"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:126
+msgid "Select the arrow next to a muting rule name to expand the row and see more details about the muting rule."
+msgstr "ミュートルール名の横にある矢印を選択すると、行が展開され、ミュートルールの詳細が表示されます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:127
-msgid "On the :guilabel:`Detectors` and the :guilabel:`Active Alerts` tabs, running or scheduled muting rules are indicated by :guilabel:`NOTIFICATIONS MUTED` labels next to the muted detector. You can select the label to view muting rules for the associated detector."
-msgstr ":guilabel:`Detectors` および :guilabel:`Active Alerts` のタブでは、実行中またはスケジュール済みのミュートルールが、ミュートされたディテクターの横に :guilabel:`NOTIFICATIONS MUTED` ラベルで表示されます。ラベルを選択すると、関連するディテクターのミュートルールが表示されます。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:128
+msgid "On the :guilabel:`Active alerts` tab, you can view a list of muted alerts by selecting the :guilabel:`All alerts` filter and changing it to :guilabel:`Only muted alerts`. Select the :strong:`Notifications muted` label next to the duration to view and edit muting rules for the associated alert."
+msgstr ":guilabel:`Active alerts` タブで、:guilabel:`All alerts` フィルターを選択し、:guilabel:`Only muted alerts` に変更すると、ミュートされたアラートのリストを表示できます。期間の横にある :strong:`ミュートされた通知` ラベルを選択すると、関連するアラートのミュートルールを表示および編集できます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:129
-msgid "If you select :guilabel:`NOTIFICATIONS MUTED` and the :strong:`Muting Rules` tab displays an empty page, then the muting rule was created based on properties instead of created for a detector."
-msgstr ":guilabel:`NOTIFICATIONS MUTED` を選択して、:strong:`ミュートルール` タブに空のページが表示された場合、そのミュートルールはディテクターに対して作成されたのではなく、プロパティに基づいて作成されたことになります。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:130
+msgid "On the :guilabel:`Detectors` tab, you can view a list of muted detectors by selecting the :guilabel:`All detectors` filter and changing it to :guilabel:`Only muted detectors`. Select the :strong:`Muted` label next to the detector name to view and edit muting rules for the associated detector."
+msgstr ":guilabel:`Detectors` タブで、:guilabel:`All detectors` フィルターを選択し、:guilabel:`Only muted detectors` に変更すると、ミュートされたディテクターのリストを表示できます。ディテクター名の横にある :strong:`ミュート` ラベルを選択すると、関連するディテクターのミュートルールを表示および編集できます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:134
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:132
+msgid "If you select :guilabel:`Muted` or :strong:`Notifications muted` and the :strong:`Muting rules` tab displays an empty page, then the muting rule was created based on properties instead of created for a detector."
+msgstr ":guilabel:`Muted` または :strong:`ミュートされた通知` を選択し、:strong:`ミュートルール` タブで空のページが表示された場合、ミュートルールはディテクターに対して作成されたのではなく、プロパティに基づいて作成されました。"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:137
msgid "Muted notifications"
msgstr "ミュートされた通知"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:136
-msgid "If a notification was muted, an indicator is displayed wherever the event might send the notification, such as on the :guilabel:`Active Alerts` tab or in an event feed."
-msgstr "通知がミュートされた場合、:guilabel:`Active Alerts` タブ上やイベントフィード内など、イベントが通知を送信する可能性のある場所にインジケーターが表示されます。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:139
+msgid "If a notification is muted, an indicator is displayed wherever the event might send the notification, such as on the :guilabel:`Active alerts` tab or in an event feed."
+msgstr "通知がミュートされている場合、:guilabel:`Active alerts` タブ上やイベントフィード内など、イベントが通知を送信する可能性のある場所にインジケーターが表示されます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:138
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:141
msgid "To see events related to past muting rules, you can use the :ref:`Events sidebar ` or the :ref:`Event overlay`. Events are generated when the rule becomes active (notifications stop) and when the rule becomes inactive (notifications resume)."
msgstr "過去のミュートルールに関連するイベントを表示するには、:ref:`イベントサイドバー` または :ref:`イベントオーバーレイ` を使用できます。イベントは、ルールがアクティブになったとき(通知が停止したとき)と、ルールが非アクティブになったとき(通知が再開したとき)に生成されます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:140
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:143
msgid "To find muting events in the Events sidebar, search for :guilabel:`sf_eventType:alertMuting`."
msgstr "「イベントサイドバー」でミュートイベントを見つけるには、:guilabel:`sf_eventType:alertMuting` を検索します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:142
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:145
msgid "To overlay muting events on a dashboard, search for :guilabel:`alertMuting` in the Event Overlay search box."
msgstr "ミュートイベントをダッシュボードにオーバーレイするには、「イベントオーバーレイ」の検索ボックスで :guilabel:`alertMuting` を検索します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:147
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:151
+msgid "Edit muting rules"
+msgstr "ミュートルールの編集"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:153
+msgid "You can only edit active and scheduled muting rules. Expired muting rules are read-only."
+msgstr "編集できるのは、アクティブおよびスケジュールされたミュートルールだけです。期限切れのミュートルールは読み取り専用です。"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:155
+msgid "To edit a muting rule:"
+msgstr "ミュートルールを編集するには:"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:158
+msgid "Select the more icon (|more|), then select :menuselection:`Edit`."
+msgstr "その他(|more| )のアイコンを選択し、:menuselection:`Edit` を選択します。"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:159
+msgid "Make any edits you want to your muting rule."
+msgstr "ミュートルールに必要な編集を行います。"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:161
+msgid "For active muting rules, you can't change the detector and property filters as well as the muting start date."
+msgstr "アクティブなミュートルールの場合、ディテクターとプロパティフィルター、およびミュート開始日を変更することはできません。"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:163
+msgid "Select :guilabel:`Save`."
+msgstr ":guilabel:`Save` を選択します。"
+
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:168
msgid "Cancel or delete muting rules"
msgstr "ミュートルールのキャンセルまたは削除"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:149
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:170
msgid "Canceling an active muting rule and resuming notifications for an alert or detector are the same thing. A canceled muting rules is deleted from Splunk Observability Cloud before it expires. Scheduled muting rules that are not yet active can also be deleted before they start."
msgstr "アクティブなミュートルールをキャンセルすることと、アラートまたはディテクターの通知を再開することは、同じことです。キャンセルされたミュートルールは、その有効期限が切れる前にSplunk Observability Cloudから削除されます。まだアクティブでないスケジュール済みのミュートルールも、開始前に削除できます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:151
-msgid "To cancel an active muting rule or delete a scheduled muting rule from :guilabel:`Alerts`:"
-msgstr ":guilabel:`Alerts` からアクティブなミュートルールをキャンセルしたり、スケジュール済みのミュートルールを削除するには、以下の手順に従います:"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:172
+msgid "To cancel an active muting rule or delete a scheduled muting rule from :guilabel:`Detectors & SLOs`:"
+msgstr ":guilabel:`Detectors & SLOs` からアクティブなミュートルールをキャンセルしたり、スケジュール済みのミュートルールを削除するには、以下の手順に従います:"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:153
-msgid "Select the :guilabel:`Muting Rules` tab, and locate the muting rule you want to cancel or delete."
-msgstr ":guilabel:`Muting Rules` タブを選択し、キャンセルまたは削除したいミュートルールを見つけます。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:174
+msgid "Select the :guilabel:`Muting rules` tab, and locate the muting rule you want to cancel or delete."
+msgstr ":guilabel:`Muting rules` タブを選択し、キャンセルまたは削除したいミュートルールを見つけます。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:155
-msgid "Select the more icon (|more|) next to the muting rule and select :menuselection:`Resume Notifications` or :menuselection:`Delete`."
-msgstr "ミュートルールの隣にあるその他(|more| )のアイコンを選択し、:menuselection:`Resume Notifications` または :menuselection:`Delete` を選択します。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:176
+msgid "Select the more icon (|more|) next to the muting rule and select :menuselection:`Resume notifications` or :menuselection:`Delete`."
+msgstr "ミュートルールの隣にあるその他(|more| )のアイコンを選択し、:menuselection:`Resume notifications` または :menuselection:`Delete` を選択します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:157
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:178
msgid "You can also cancel muting rules from a muted alert or detector:"
msgstr "また、以下の手順で、ミュートされたアラートまたはディテクターからミュートルールをキャンセルすることもできます:"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:159
-msgid "On the :guilabel:`Active Alerts` or the :guilabel:`Detectors` tab, select the :guilabel:`muted` or the :guilabel:`notifications muted` label."
-msgstr ":guilabel:`Active Alerts` または :guilabel:`Detectors` タブで、:guilabel:`muted` または :guilabel:`notifications muted` ラベルを選択します。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:180
+msgid "On the :guilabel:`Active alerts` or the :guilabel:`Detectors` tab, select the :guilabel:`Muted` or the :guilabel:`Notifications muted` label."
+msgstr ":guilabel:`Active alerts` または :guilabel:`Detectors` タブで、:guilabel:`Muted` または :guilabel:`Notifications muted` ラベルを選択します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:161
-msgid "For a detector, select the muting rule, then select :menuselection:`Resume Notifications`."
-msgstr "ディテクターの場合、ミュートルールを選択し、:menuselection:`Resume Notifications` を選択します。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:182
+msgid "For a detector, select the muting rule, then select :menuselection:`Resume notifications`."
+msgstr "ディテクターの場合、ミュートルールを選択し、:menuselection:`Resume notifications` を選択します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:162
-msgid "For an active alert, select the more icon (|more|), then select :menuselection:`Resume Notifications`."
-msgstr "アクティブなアラートについては、その他(|more| )のアイコンを選択し、:menuselection:`Resume Notifications` を選択します。"
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:183
+msgid "For an active alert, select the more icon (|more|), then select :menuselection:`Resume notifications`."
+msgstr "アクティブなアラートについては、その他(|more| )のアイコンを選択し、:menuselection:`Resume notifications` を選択します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:164
+#: ../../alerts-detectors-notifications/alerts-and-detectors/mute-notifications.rst:185
msgid "If there are multiple rules, select the rule for which you want to resume notifications. In each case, you can confirm that you want to resume sending notifications."
msgstr "複数のルールがある場合は、通知を再開したいルールを選択します。それぞれのケースで、通知の送信を再開することを確認できます。"
@@ -5212,11 +5569,12 @@ msgstr "ディテクターのアラートのプレビュー"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:12
msgid ""
-"Setting up the right alerts is usually a process of trial and error. You set up an alert, get notified when it is triggered (or worse, don't get notified when it should have triggered), adjust the trigger condition if necessary, and wait for the next alert. Splunk Infrastructure Monitoring provides an alert preview functionality that accelerates this trial and error process. (If you are using the Splunk Observability Cloud API to manage detectors, this "
-"feature corresponds to the :new-page:`POST /v2/signalflow/preflight ` API endpoint.)"
+"Setting up the right alerts is usually a process of trial and error. You set up an alert, get notified when it is triggered (or worse, don't get notified when it should have triggered), adjust the trigger condition if necessary, and wait for the next alert. Splunk Infrastructure Monitoring provides an alert preview "
+"functionality that accelerates this trial and error process. (If you are using the Splunk Observability Cloud API to manage detectors, this feature corresponds to the :new-page:`POST /v2/signalflow/preflight ` API "
+"endpoint.)"
msgstr ""
-"適切なアラートを設定することは、通常、試行錯誤のプロセスです。アラートを設定し、それがトリガーされたときに通知を受け(うまく行かなければ、トリガーされるべきときに通知が届かず)、必要に応じてトリガー条件を調整し、次のアラートを待ちます。Splunk Infrastructure Monitoringは、この試行錯誤のプロセスを迅速化するためのアラートプレビュー機能を提供します。(ディテクターの管理にSplunk Observability Cloud APIを使用している場合、この機能は、:new-page:`POST /v2/signalflow/"
-"preflight` のAPIエンドポイントに対応します。)"
+"適切なアラートを設定することは、通常、試行錯誤のプロセスです。アラートを設定し、それがトリガーされたときに通知を受け(うまく行かなければ、トリガーされるべきときに通知が届かず)、必要に応じてトリガー条件を調整し、次のアラートを待ちます。Splunk Infrastructure Monitoringは、この試行錯誤のプロセスを迅速化するためのアラートプ"
+"レビュー機能を提供します。(ディテクターの管理にSplunk Observability Cloud APIを使用している場合、この機能は、:new-page:`POST /v2/signalflow/preflight` のAPIエンドポイントに対応します。)"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:16
msgid "How alert preview works"
@@ -5224,11 +5582,11 @@ msgstr "アラートプレビューの仕組み"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:18
msgid ""
-"When you go to the Alert Settings tab while creating or editing a detector rule, Splunk Infrastructure Monitoring runs the settings against your data and generates a preview chart to help you decide whether your settings are appropriate for your requirements. The preview indicates when alerts would have triggered during the time range specified in the detector. You can use the preview to fine-tune the settings that will trigger the alert, to assure that you "
-"will receive the alerts you expect when you expect them."
+"When you go to the Alert Settings tab while creating or editing a detector rule, Splunk Infrastructure Monitoring runs the settings against your data and generates a preview chart to help you decide whether your settings are appropriate for your requirements. The preview indicates when alerts would have triggered during "
+"the time range specified in the detector. You can use the preview to fine-tune the settings that will trigger the alert, to assure that you will receive the alerts you expect when you expect them."
msgstr ""
-"ディテクタールールの作成中または編集中に「アラート設定」タブに移動すると、Splunk Infrastructure Monitoringがデータに対してその設定を実行し、設定内容が要件に対して適切かどうかを判断するのに役立つプレビューチャートを生成します。このプレビューには、ディテクターで指定した時間範囲においてアラートがトリガーされるはずのタイミングが表示されます。このプレビューを使用して、アラートをトリガーするための設定内容の微調整を行い、期待するアラートを期待するタイミングで確実に受"
-"信できるようにすることができます。"
+"ディテクタールールの作成中または編集中に「アラート設定」タブに移動すると、Splunk Infrastructure Monitoringがデータに対してその設定を実行し、設定内容が要件に対して適切かどうかを判断するのに役立つプレビューチャートを生成します。このプレビューには、ディテクターで指定した時間範囲においてアラートがトリガーされるはずのタイミン"
+"グが表示されます。このプレビューを使用して、アラートをトリガーするための設定内容の微調整を行い、期待するアラートを期待するタイミングで確実に受信できるようにすることができます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:23
msgid "If you are editing a detector created using the API, alert preview is available while you are managing rules using the Alert Rules tab. The preview is triggered when you are editing the SignalFlow text or when you change the time range of the detector."
@@ -5236,11 +5594,11 @@ msgstr "APIを使用して作成されたディテクターを編集している
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:26
msgid ""
-"Data displayed in the chart may be rolled up based on the detector's time range. The detail view displays data at detector resolution for the selected time period on the chart; that is, data points are shown at the frequency with which the detector is monitoring the signal to determine whether an alert should be triggered or cleared. This view lets you see exactly what data the detector is viewing for the period selected in the chart. You can select and drag "
-"the left edge of the detail view to enlarge it and gain more visibility into the data."
+"Data displayed in the chart may be rolled up based on the detector's time range. The detail view displays data at detector resolution for the selected time period on the chart; that is, data points are shown at the frequency with which the detector is monitoring the signal to determine whether an alert should be "
+"triggered or cleared. This view lets you see exactly what data the detector is viewing for the period selected in the chart. You can select and drag the left edge of the detail view to enlarge it and gain more visibility into the data."
msgstr ""
-"チャートに表示されるデータは、ディテクターの時間範囲に基づいてロールアップされることがあります。詳細ビューでは、チャート上で選択された期間のデータがディテクターの解像度で表示されます。つまり、ディテクターがアラートのトリガーまたは解除を判断するためにシグナルを監視する頻度で、データポイントが表示されます。このビューでは、チャートで選択された期間について、ディテクターが見ているデータそのものを確認できます。詳細ビューの左端を選択してドラッグすると、ビューが拡大さ"
-"れ、データがより見やすくなります。"
+"チャートに表示されるデータは、ディテクターの時間範囲に基づいてロールアップされることがあります。詳細ビューでは、チャート上で選択された期間のデータがディテクターの解像度で表示されます。つまり、ディテクターがアラートのトリガーまたは解除を判断するためにシグナルを監視する頻度で、データポイントが表示されます。このビューでは、"
+"チャートで選択された期間について、ディテクターが見ているデータそのものを確認できます。詳細ビューの左端を選択してドラッグすると、ビューが拡大され、データがより見やすくなります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:28
msgid "You can navigate between tabs while the preview is shown. For example, you might want to go to the Alert Signal tab and look at the Data Table to review the values of your signal before, during, and after the time an alert would be triggered."
@@ -5271,23 +5629,28 @@ msgid "Modify an existing detector based on past activity"
msgstr "過去のアクティビティに基づいて既存のディテクターを修正する"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:44
-msgid "If you already have detectors triggering alerts in your system, you may find that some of them are either too sensitive (they trigger alerts too often) or are not sensitive enough (they don't trigger alerts when you want to be notified about an issue). In either case, you can use the preview option to modify a detector's settings so it triggers the appropriate number of alerts."
-msgstr "すでにシステムでアラートをトリガーしているディテクターがある場合、それらの一部の感度が高すぎる(アラートをトリガーする頻度が高すぎる)か、または十分な感度がない(問題について通知を受けたいときにアラートをトリガーしない)ことに気づくかもしれません。いずれの場合も、プレビューオプションを使用して、適切な数のアラートをトリガーするようにディテクターの設定を変更できます。"
+msgid ""
+"If you already have detectors triggering alerts in your system, you may find that some of them are either too sensitive (they trigger alerts too often) or are not sensitive enough (they don't trigger alerts when you want to be notified about an issue). In either case, you can use the preview option to modify a detector's "
+"settings so it triggers the appropriate number of alerts."
+msgstr ""
+"すでにシステムでアラートをトリガーしているディテクターがある場合、それらの一部の感度が高すぎる(アラートをトリガーする頻度が高すぎる)か、または十分な感度がない(問題について通知を受けたいときにアラートをトリガーしない)ことに気づくかもしれません。いずれの場合も、プレビューオプションを使用して、適切な数のアラートをトリ"
+"ガーするようにディテクターの設定を変更できます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:46
msgid ""
-"To use the preview option for the detector, open the detector and set a time range of, for example, -1w to display all alerts that were triggered in the last week. (Alternately, you can set a shorter time range that better represents the issue you are addressing). Display the Alert Rules tab, edit the alert condition, and open the Alert Settings tab. The chart display changes from showing actual past alerts (if any) to showing a preview of alerts that would "
-"have triggered based on the alert condition."
+"To use the preview option for the detector, open the detector and set a time range of, for example, -1w to display all alerts that were triggered in the last week. (Alternately, you can set a shorter time range that better represents the issue you are addressing). Display the Alert Rules tab, edit the alert condition, "
+"and open the Alert Settings tab. The chart display changes from showing actual past alerts (if any) to showing a preview of alerts that would have triggered based on the alert condition."
msgstr ""
-"ディテクターのプレビューオプションを使用するには、ディテクターを開き、時間範囲を例えば-1wに設定して、過去1週間にトリガーされたすべてのアラートを表示します(対処中の問題をより適切に表すさらに短い時間範囲を設定することもできます)。「アラートルール」タブを表示し、アラート条件を編集し、「アラート設定」タブを開きます。チャートの表示は、実際の過去のアラート(該当するものがある場合)の表示から、アラート条件に基づいてトリガーされたであろうアラートのプレビュー表示に変"
-"わります。"
+"ディテクターのプレビューオプションを使用するには、ディテクターを開き、時間範囲を例えば-1wに設定して、過去1週間にトリガーされたすべてのアラートを表示します(対処中の問題をより適切に表すさらに短い時間範囲を設定することもできます)。「アラートルール」タブを表示し、アラート条件を編集し、「アラート設定」タブを開きます。チャー"
+"トの表示は、実際の過去のアラート(該当するものがある場合)の表示から、アラート条件に基づいてトリガーされたであろうアラートのプレビュー表示に変わります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:51
msgid ""
-"Depending on the type of alert condition, you have different options for making the detector more or less sensitive. For example, if you see more markers than you think you should (alert is too :term:`flappy`), you might be able to change Trigger Sensitivity from High to Medium or Low, or you might be able to change the sensitivity from triggering immediately to triggering after a period of time. For many alert conditions, you can choose Custom for Trigger "
-"Sensitivity, which gives you more control over when alerts will be triggered."
+"Depending on the type of alert condition, you have different options for making the detector more or less sensitive. For example, if you see more markers than you think you should (alert is too :term:`flappy`), you might be able to change Trigger Sensitivity from High to Medium or Low, or you might be able to change the "
+"sensitivity from triggering immediately to triggering after a period of time. For many alert conditions, you can choose Custom for Trigger Sensitivity, which gives you more control over when alerts will be triggered."
msgstr ""
-"アラート条件の種類に応じて、ディテクターの感度を上げるか下げるかのオプションがあります。たとえば、必要以上に多くのマーカーが表示される場合(アラートが :term:`flappy` すぎる場合)は、トリガー感度を「高」から「中」または「低」に変更したり、感度を「即時トリガー」から「一定時間経過後トリガー」に変更したりできます。多くのアラート条件では、「トリガー感度」に「カスタム」を選択することができ、アラートがトリガーされるタイミングをより詳細に制御することができます。"
+"アラート条件の種類に応じて、ディテクターの感度を上げるか下げるかのオプションがあります。たとえば、必要以上に多くのマーカーが表示される場合(アラートが :term:`flappy` すぎる場合)は、トリガー感度を「高」から「中」または「低」に変更したり、感度を「即時トリガー」から「一定時間経過後トリガー」に変更したりできます。多くのア"
+"ラート条件では、「トリガー感度」に「カスタム」を選択することができ、アラートがトリガーされるタイミングをより詳細に制御することができます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:53
msgid "As you make these changes, the preview is updated and the chart will display the number of alerts that would have triggered based on your new settings. When you have modified the detector to more accurately reflect the desired behavior, select :guilabel:`Activate`` and then update the alert rule."
@@ -5311,11 +5674,11 @@ msgstr "このシグナルをプロットラインとして含むチャートが
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:68
msgid ""
-"In this example, we set the time range of the detector to -2h, named the detector and the new rule, and chose the :ref:`sudden-change` condition, which compares recent values with earlier values. Based on the trigger sensitivity (the default is Low), the preview chart shows event markers for times when the alert would have been triggered during the past week; you should see an event marker for the time the spike occurred. You might also see markers for other "
-"times the signal spiked in the past week, as well as markers indicating the alert condition cleared."
+"In this example, we set the time range of the detector to -2h, named the detector and the new rule, and chose the :ref:`sudden-change` condition, which compares recent values with earlier values. Based on the trigger sensitivity (the default is Low), the preview chart shows event markers for times when the alert would "
+"have been triggered during the past week; you should see an event marker for the time the spike occurred. You might also see markers for other times the signal spiked in the past week, as well as markers indicating the alert condition cleared."
msgstr ""
-"この例では、ディテクターの時間範囲を-2hに設定し、ディテクターと新しいルールに名前を付け、:ref:`sudden-change` 条件を選択しています。これは、最近の値と以前の値を比較する条件です。トリガー感度(デフォルトは「低」)に基づいて、プレビューチャートでは、過去1週間の間にアラートがトリガーされたであろう時間にイベントマーカーが表示されます。急上昇が発生した時間にイベントマーカーが見えているはずです。また、過去1週間でシグナルが急上昇したその他の時間のマーカーや、アラート"
-"条件が解除されたことを示すマーカーも表示されるでしょう。"
+"この例では、ディテクターの時間範囲を-2hに設定し、ディテクターと新しいルールに名前を付け、:ref:`sudden-change` 条件を選択しています。これは、最近の値と以前の値を比較する条件です。トリガー感度(デフォルトは「低」)に基づいて、プレビューチャートでは、過去1週間の間にアラートがトリガーされたであろう時間にイベントマーカーが表示"
+"されます。急上昇が発生した時間にイベントマーカーが見えているはずです。また、過去1週間でシグナルが急上昇したその他の時間のマーカーや、アラート条件が解除されたことを示すマーカーも表示されるでしょう。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:73 ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:93
msgid "You have different options for adjusting sensitivity depending on the type of alert condition you are using."
@@ -5334,7 +5697,9 @@ msgid "When we increase the threshold value, the number of projected alerts is r
msgstr "閾値を上げると、予測されるアラートの数は減ります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/preview-detector-alerts.rst:91
-msgid "Adjust settings until you see a preview that makes sense for your data. For a static threshold condition, you can adjust the threshold value, but you can also adjust how quickly the alert is triggered. To learn more, see :ref:`static-threshold`. Use these settings in combination to customize the detector for your requirements."
+msgid ""
+"Adjust settings until you see a preview that makes sense for your data. For a static threshold condition, you can adjust the threshold value, but you can also adjust how quickly the alert is triggered. To learn more, see :ref:`static-threshold`. Use these settings in combination to customize the detector for your "
+"requirements."
msgstr "データにふさわしいプレビューが表示されるまで、設定の調整を続けます。静的閾値条件では、閾値を調整することができますが、アラートをトリガーする速さも調整することができます。詳細については、:ref:`static-threshold` を参照してください。これらの設定を組み合わせて使用し、要件に合わせてディテクターをカスタマイズします。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/delay-detectors.rst:-1
@@ -5354,8 +5719,12 @@ msgid "Despite the alert, Buttercup Game has been receiving complaints from cust
msgstr "このアラートがあるにもかかわらず、Buttercup Gamesは、``productcatalog`` サービスからのエラーに関する顧客からの苦情を受け取っています。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/delay-detectors.rst:16
-msgid "Kai, an SRE on the team, investigates ``productcatalog`` and finds out that the service has a low request rate and rarely sends a data point for errors, sometimes only once a day. Because of this, the analytics engine can't keep track of the increased delay of the sparse error-tracking MTS. Its data points are too delayed to be included in the :strong:`Service error` detector, so the detector can't generate alerts on the ``productcatalog`` service."
-msgstr "チームのSREであるKaiが ``productcatalog`` を調査したところ、このサービスはリクエスト率が低く、エラーのデータポイントを送信することはほとんどなく、1日に1回しか送信しないこともあることがわかりました。そのため解析エンジンは、この疎なエラー追跡MTSの遅延の増加を追跡できません。そのデータポイントは遅延が大きすぎるため :strong:`「サービスエラー」` ディテクターに含めることができず、ディテクターは ``productcatalog`` サービスに関するアラートを生成できません。"
+msgid ""
+"Kai, an SRE on the team, investigates ``productcatalog`` and finds out that the service has a low request rate and rarely sends a data point for errors, sometimes only once a day. Because of this, the analytics engine can't keep track of the increased delay of the sparse error-tracking MTS. Its data points are too "
+"delayed to be included in the :strong:`Service error` detector, so the detector can't generate alerts on the ``productcatalog`` service."
+msgstr ""
+"チームのSREであるKaiが ``productcatalog`` を調査したところ、このサービスはリクエスト率が低く、エラーのデータポイントを送信することはほとんどなく、1日に1回しか送信しないこともあることがわかりました。そのため解析エンジンは、この疎なエラー追跡MTSの遅延の増加を追跡できません。そのデータポイントは遅延が大きすぎるた"
+"め :strong:`「サービスエラー」` ディテクターに含めることができず、ディテクターは ``productcatalog`` サービスに関するアラートを生成できません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/delay-detectors.rst:18
msgid "In order to account for delayed data points from ``productcatalog``, Kai configures a Min Delay value for :strong:`Service error` by making an API call to the ``/detector`` endpoint. The Min Delay configuration forces the detector to wait a set amount of time before running the computation."
@@ -5365,7 +5734,8 @@ msgstr "``productcatalog`` からの遅延したデータポイントを考慮
msgid "Kai charts the lag from the sparse MTS and determines that it is usually less than 30 seconds but has never been higher than 1 minute, so they set a Min Delay of 1 minute for :strong:`Service error`."
msgstr "Kaiは、この疎なMTSからのラグをグラフ化し、通常は30秒未満であるが1分を超えたことはないと判断したため、:strong:`「サービスエラー」` の「最小遅延」を1分に設定します。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/delay-detectors.rst:23 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/find-detectors.rst:60 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/max-delay-detectors.rst:23 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-autodetect.rst:67
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/delay-detectors.rst:23 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/find-detectors.rst:60
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/max-delay-detectors.rst:23 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-autodetect.rst:67
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-server-latency.rst:85 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:123 ../../alerts-detectors-notifications/slo/custom-metric-scenario.rst:58
msgid "Summary"
msgstr "まとめ"
@@ -5374,7 +5744,8 @@ msgstr "まとめ"
msgid "By setting a Min Delay threshold for :strong:`Service error`, Kai has successfully included sparse data and can now catch errors from the ``productcatalog`` service before they affect customers' experience."
msgstr ":strong:`「サービスエラー」` に「最小遅延」の閾値を設定することで、Kaiは疎なデータを含めることに成功し、顧客のエクスペリエンスに影響を与える前に ``productcatalog`` サービスからのエラーをキャッチできるようになりました。"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/delay-detectors.rst:28 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/find-detectors.rst:65 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/max-delay-detectors.rst:29 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-autodetect.rst:72
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/delay-detectors.rst:28 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/find-detectors.rst:65
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/max-delay-detectors.rst:29 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-autodetect.rst:72
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-server-latency.rst:90 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:134 ../../alerts-detectors-notifications/slo/custom-metric-scenario.rst:63
msgid "Learn more"
msgstr "さらに詳しく"
@@ -5400,16 +5771,16 @@ msgid "Kai, a site reliability engineer at Buttercup Games, has created a detect
msgstr "Buttercup Gamesのサイト信頼性エンジニアであるKaiは、Buttercup GamesのホストマシンのCPU使用率の急激な変化を監視する「CPUディテクター」というディテクターを作成しました。Kaiはこのディテクターから多くのアラートを受け取っており、これらのアラートのより詳細なビューを取得したいと考えています。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/find-detectors.rst:14
-msgid "Using the :guilabel:`Alerts & Detectors` page in Splunk Observability Cloud, Kai can find and view these active alerts so they can easily troubleshoot the CPU changes."
-msgstr "Splunk Observability Cloudの :guilabel:`Alerts & Detectors` ページを使用して、Kaiはこれらのアクティブなアラートを見つけて表示することができ、CPUの変化に対するトラブルシューティングを簡単に行うことができます。"
+msgid "Using the :guilabel:`Detectors & SLOs` page in Splunk Observability Cloud, Kai can find and view these active alerts so they can easily troubleshoot the CPU changes."
+msgstr "Splunk Observability Cloudの :guilabel:`Detectors & SLOs` ページを使用して、Kaiはこれらのアクティブなアラートを見つけて表示することができ、CPUの変化に対するトラブルシューティングを簡単に行うことができます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/find-detectors.rst:17
msgid "Find active alerts using the search list"
msgstr "検索リストを使用してアクティブなアラートを見つける"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/find-detectors.rst:19
-msgid "From the :guilabel:`Alerts & Detectors` page, Kai can find active alerts using the search list. Kai follows these steps:"
-msgstr ":guilabel:`Alerts & Detectors` ページから、Kaiは検索リストを使ってアクティブなアラートを見つけることができます。その手順は以下の通りです:"
+msgid "From the :guilabel:`Detectors & SLOs` page, Kai can find active alerts using the search list. Kai follows these steps:"
+msgstr ":guilabel:`Detectors & SLOs` ページから、Kaiは検索リストを使ってアクティブなアラートを見つけることができます。その手順は以下の通りです:"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/find-detectors.rst:21
msgid "Kai wants to find an active alert, so they select the :guilabel:`Active Alerts` tab."
@@ -5509,16 +5880,23 @@ msgstr "チームのSREであるKaiは、:strong:`「店舗の売上」` ディ
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/max-delay-detectors.rst:16
msgid ""
-"After some investigation, they find out that the data from some stores has a sudden, momentary increase in delay caused by the network infrastructure in that region. Data points missing from the initial computation caused the alert to fire. However, when Kai goes look at the chart 30 minutes later, the data points have arrived, causing them to think that the detector misfired. In cases like this, the analytics engine can't predict the sudden change in delay."
-msgstr "調査の結果、いくつかの店舗からのデータについて、その地域のネットワークインフラに起因する突然で瞬間的な遅延の増加があることが判明しました。最初の計算から欠落したデータポイントによってアラートが発されたのです。しかし、30分後にKaiがチャートを見るとそれらのデータポイントは到着しており、ディテクターが誤作動したように見える原因になっていました。このような場合、分析エンジンは遅延における急激な変化を予測できません。"
+"After some investigation, they find out that the data from some stores has a sudden, momentary increase in delay caused by the network infrastructure in that region. Data points missing from the initial computation caused the alert to fire. However, when Kai goes look at the chart 30 minutes later, the data points have "
+"arrived, causing them to think that the detector misfired. In cases like this, the analytics engine can't predict the sudden change in delay."
+msgstr ""
+"調査の結果、いくつかの店舗からのデータについて、その地域のネットワークインフラに起因する突然で瞬間的な遅延の増加があることが判明しました。最初の計算から欠落したデータポイントによってアラートが発されたのです。しかし、30分後にKaiがチャートを見るとそれらのデータポイントは到着しており、ディテクターが誤作動したように見える原因"
+"になっていました。このような場合、分析エンジンは遅延における急激な変化を予測できません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/max-delay-detectors.rst:18
msgid "To make sure that the data from sudden lags is included in the detector computation, Kai configures a Max Delay value for :strong:`Store sales`."
msgstr "突発的なラグからのデータがディテクターの計算に含まれるようにするため、Kaiは :strong:`「店舗の売上」` に「最大遅延」の値を設定します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/max-delay-detectors.rst:20
-msgid "Kai sees that the maximum delay for the late metric time series (MTS) is 10 minutes, so they configure a Max Delay of 10 minutes. Now the analytics engine can't run earlier than 10 minutes if known MTS have not sent a data point. If all known MTS send a data point, the computation can still occur before the 10-minute Max Delay."
-msgstr "Kaiは、遅延しているメトリック時系列(MTS)の最大遅延が10分であることを確認したため、「最大遅延」を10分に設定します。これで、既知のMTSがデータポイントを送信していない場合、分析エンジンは10分経たなければ実行できなくなります。すべての既知のMTSがデータポイントを送信した場合は、依然として10分の「最大遅延」の前に計算を実行できます。"
+msgid ""
+"Kai sees that the maximum delay for the late metric time series (MTS) is 10 minutes, so they configure a Max Delay of 10 minutes. Now the analytics engine can't run earlier than 10 minutes if known MTS have not sent a data point. If all known MTS send a data point, the computation can still occur before the 10-minute Max "
+"Delay."
+msgstr ""
+"Kaiは、遅延しているメトリック時系列(MTS)の最大遅延が10分であることを確認したため、「最大遅延」を10分に設定します。これで、既知のMTSがデータポイントを送信していない場合、分析エンジンは10分経たなければ実行できなくなります。すべての既知のMTSがデータポイントを送信した場合は、依然として10分の「最大遅延」の前に計算を実行でき"
+"ます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/max-delay-detectors.rst:25
msgid "By setting a Max Delay threshold for :strong:`Service error`, Kai has successfully accounted for unexpected changes in delayed data and corrected the detector behavior."
@@ -5617,9 +5995,10 @@ msgid "Customize AutoDetect detectors"
msgstr "AutoDetectディテクターをカスタマイズする"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-autodetect.rst:55
-#, python-format
msgid "Kai's AutoDetect detector will trigger an alert when the number of detectors used is 90%, but Kai would like to be alerted when they are reaching 75% of the detectors used instead. To receive these alerts, Kai can customize the system limits AutoDetect detector."
-msgstr "KaiのAutoDetectディテクターは、使用されているディテクターの数が90%に達したときにアラートをトリガーしますが、Kaiは、この代わりに、使用されているディテクターの数が75%に達しそうなときにアラートを受け取りたいと考えています。このようなアラートを受信するためには、システム制限のAutoDetectディテクターをカスタマイズすることができます。"
+msgstr ""
+"KaiのAutoDetectディテクターは、使用されているディテクターの数が90%に達したときにアラートをトリガーしますが、Kaiは、この代わりに、使用されているディテクターの数が75%に達しそうなときにアラートを受け取りたいと考えています。このようなアラートを受信するためには、システム制限のAutoDetectディテクターをカスタマイズすることができ"
+"ます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-autodetect.rst:57
msgid "To customize this detector, Kai follows these steps:"
@@ -5678,8 +6057,8 @@ msgid "Define the data to use for alerting"
msgstr "アラートに使用するデータを定義する"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-server-latency.rst:19
-msgid "Kai opens the :guilabel:`Alerts & Detectors` page in Splunk Observability Cloud and selects :guilabel:`New Detector` to create a detector from scratch."
-msgstr "Kaiは、Splunk Observability Cloud の :guilabel:`Alerts & Detectors` ページを開き、:guilabel:`New Detector` を選択してゼロからディテクターを作成します。"
+msgid "Kai opens the :guilabel:`Detectors & SLOs` page in Splunk Observability Cloud and selects :guilabel:`New Detector` to create a detector from scratch."
+msgstr "Kaiは、Splunk Observability Cloud の :guilabel:`Detectors & SLOs` ページを開き、:guilabel:`New Detector` を選択してゼロからディテクターを作成します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-server-latency.rst:21
msgid "After naming the detector, Kai chooses :guilabel:`Infrastructure or Custom Metrics Alert Rule`."
@@ -5714,8 +6093,12 @@ msgid "Kai can choose between several options for an alert condition. Alert cond
msgstr "Kaiは、アラート条件をいくつかのオプションから選択することができます。アラート条件は、アラートをトリガーする動作のタイプを決定します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-server-latency.rst:42
-msgid "Kai chooses the :guilabel:`Static threshold` alert condition because they want to know when server latency exceeds a certain point for a certain duration of time. In other cases, Kai might want to choose a different alert condition. For example, Kai might choose the :guilabel:`Sudden change` condition if they want to be alerted when server latency rapidly increases."
-msgstr "Kaiは、サーバーレイテンシが一定期間にわたって特定の点を超過したときを把握したいと考えているため、:guilabel:`Static threshold` のアラート条件を選択します。他のケースなら、別のアラート条件を選択するとよいでしょう。例えば、サーバーのレイテンシが急激に増加したときにアラートを受けたい場合は、:guilabel:`Sudden change` の条件を選択するとよいでしょう。"
+msgid ""
+"Kai chooses the :guilabel:`Static threshold` alert condition because they want to know when server latency exceeds a certain point for a certain duration of time. In other cases, Kai might want to choose a different alert condition. For example, Kai might choose the :guilabel:`Sudden change` condition if they want to be "
+"alerted when server latency rapidly increases."
+msgstr ""
+"Kaiは、サーバーレイテンシが一定期間にわたって特定の点を超過したときを把握したいと考えているため、:guilabel:`Static threshold` のアラート条件を選択します。他のケースなら、別のアラート条件を選択するとよいでしょう。例えば、サーバーのレイテンシが急激に増加したときにアラートを受けたい場合は、:guilabel:`Sudden change` の条件を"
+"選択するとよいでしょう。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/monitor-server-latency.rst:45
msgid "Customize alert settings"
@@ -5831,7 +6214,9 @@ msgstr "シナリオ:Kaiが誤ったアラートを発するディテクター
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:12
msgid "Kai, a site reliability engineer at Buttercup Games, is creating a new detector and wants to receive an alert whenever their server latency is higher than 260 milliseconds. Kai considers latency lower than 260 milliseconds as healthy for their service, so they want to get alerts when latency exceeds that threshold."
-msgstr "Buttercup Gamesのサイト信頼性エンジニアであるKaiは、新しいディテクターを作成しており、サーバーのレイテンシが260ミリ秒より高くなったときにアラートを受け取りたいと考えています。Kaiは、自社のサービスにおいて260ミリ秒未満のレイテンシは健全であるとみなしており、レイテンシがこの閾値を超えたときにアラートを受け取りたいと考えています。"
+msgstr ""
+"Buttercup Gamesのサイト信頼性エンジニアであるKaiは、新しいディテクターを作成しており、サーバーのレイテンシが260ミリ秒より高くなったときにアラートを受け取りたいと考えています。Kaiは、自社のサービスにおいて260ミリ秒未満のレイテンシは健全であるとみなしており、レイテンシがこの閾値を超えたときにアラートを受け取りたいと考えてい"
+"ます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:15
msgid "Reduce excessive alerts"
@@ -5842,8 +6227,8 @@ msgid "Kai creates a detector to report on latency by following these steps:"
msgstr "Kaiは、以下の手順で、レイテンシをレポートするディテクターを作成します:"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:19
-msgid "In the :guilabel:`Alerts & Detectors` page, Kai selects :guilabel:`New Detector`."
-msgstr ":guilabel:`Alerts & Detectors` ページで、:guilabel:`New Detector` を選択します。"
+msgid "In the :guilabel:`Detectors & SLOs` page, Kai selects :guilabel:`New Detector`."
+msgstr ":guilabel:`Detectors & SLOs` ページで、:guilabel:`New Detector` を選択します。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:20
msgid "Kai selects :guilabel:`Infrastructure or Custom Metrics Alert Rule`."
@@ -5913,15 +6298,18 @@ msgstr "Kaiは、いくつかのデータポイントがプレビューに表示
msgid "Kai has three options for fixing the missing data point problem:"
msgstr "データポイントの欠落の問題を修正するためには3つのオプションがあります:"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:54 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:59 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:129
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:54 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:59
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:129
msgid "Change extrapolation policy"
msgstr "外挿ポリシーを変更する"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:55 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:80 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:130
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:55 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:80
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:130
msgid "Apply aggregation to the metric"
msgstr "メトリクスに集計を適用する"
-#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:56 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:100 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:131
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:56 ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:100
+#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:131
msgid "Use percent of duration"
msgstr "継続期間のパーセンテージを使用する"
@@ -6010,7 +6398,8 @@ msgid "Kai enters the percentage of their duration they would like to trigger an
msgstr "アラートをトリガーさせたい継続時間のパーセンテージを入力します。Kaiは、:guilabel:`80` と入力しました。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:109
-msgid "The detector triggers an alert when 80% of the data points receieved in a 1 minute period are over 260 milliseconds. Since Kai's latency data arrives every 10 seconds, there should be 6 data points every minute. To trigger the alert, 5 out of the 6 data points need to arrive and need to be higher than 260 milliseconds."
+msgid ""
+"The detector triggers an alert when 80% of the data points receieved in a 1 minute period are over 260 milliseconds. Since Kai's latency data arrives every 10 seconds, there should be 6 data points every minute. To trigger the alert, 5 out of the 6 data points need to arrive and need to be higher than 260 milliseconds."
msgstr "このディテクターは、1分間に受信したデータポイントの80%が260ミリ秒を超えている場合にアラートをトリガーします。Kaiのレイテンシデータは10秒ごとに到着するため、1分間に6つのデータポイントがあるはずです。このアラートをトリガーするには、6つのデータポイントのうち5つが到着し、260ミリ秒を超えている必要があります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/scenarios-detectors-alerts/troubleshoot-noisy-detectors.rst:111
@@ -6106,8 +6495,12 @@ msgid "Troubleshoot timestamp issues"
msgstr "タイムスタンプの問題のトラブルシューティング"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:52
-msgid "Apart from not triggering an expected alert, delayed data can sometimes create the opposite problem of triggering an unwarranted alert. If data that you see in the detector does not match the chart preview shown in an alert message, then data might have been unavailable because it was delayed or missing while the detector was running."
-msgstr "予想されたアラートがトリガーしないという問題ではなく、遅延したデータによって不当なアラートがトリガーするという逆の問題が発生することがあります。ディテクターに表示されるデータがアラートメッセージに表示されるチャートプレビューと一致しない場合、ディテクターの実行中にデータが遅延または欠落したためにデータが利用できなくなっている可能性があります。"
+msgid ""
+"Apart from not triggering an expected alert, delayed data can sometimes create the opposite problem of triggering an unwarranted alert. If data that you see in the detector does not match the chart preview shown in an alert message, then data might have been unavailable because it was delayed or missing while the "
+"detector was running."
+msgstr ""
+"予想されたアラートがトリガーしないという問題ではなく、遅延したデータによって不当なアラートがトリガーするという逆の問題が発生することがあります。ディテクターに表示されるデータがアラートメッセージに表示されるチャートプレビューと一致しない場合、ディテクターの実行中にデータが遅延または欠落したためにデータが利用できなくなって"
+"いる可能性があります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:54
msgid "The following example describes how to avoid timestamp related issues:"
@@ -6178,11 +6571,14 @@ msgid "11:13"
msgstr "11:13"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:95
-msgid "In this example, the detector does not trigger an alert if all data arrives on time. But the value of the metric being monitored was over 50 between 11:08 and 11:15, when the 11:09 data point with a value of 40 finally arrived. With the provided detector parameters, an alert is triggered 5 minutes after 11:08, at 11:13."
+msgid ""
+"In this example, the detector does not trigger an alert if all data arrives on time. But the value of the metric being monitored was over 50 between 11:08 and 11:15, when the 11:09 data point with a value of 40 finally arrived. With the provided detector parameters, an alert is triggered 5 minutes after 11:08, at 11:13."
msgstr "この例では、すべてのデータが時間通りに到着した場合、ディテクターはアラートを発しません。しかし、11:08から11:15までの間に監視対象のメトリクスの値が50を超え、値が40である11:09のデータポイントがこのときにやっと到着しています。指定されたディテクターパラメーターにより、11:08から5分後の11:13にアラートがトリガーされます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:97
-msgid "When you look later at the detector, however, data points shown in the chart reflect the correct timestamps. That is, all the data points from 11:09 onwards show values under 50 with the correct timestamps (for when metrics were sent and expected to arrive), so it doesn't look like the triggering threshold condition was met."
+msgid ""
+"When you look later at the detector, however, data points shown in the chart reflect the correct timestamps. That is, all the data points from 11:09 onwards show values under 50 with the correct timestamps (for when metrics were sent and expected to arrive), so it doesn't look like the triggering threshold condition was "
+"met."
msgstr "しかし、後でこのディテクターを見ると、チャートに表示されたデータポイントは正しいタイムスタンプを反映しています。つまり、11:09以降のデータポイントはすべて、正しいタイムスタンプ(メトリクスが送信され、到着が予想される時刻)で50未満の値を示しているため、トリガーの閾値条件が満たされたようには見えません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:99
@@ -6190,15 +6586,20 @@ msgid "You can use several strategies to avoid this problem:"
msgstr "この問題を避けるために、いくつかの戦略を使うことができます:"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:101
-msgid "Set :guilabel:`Max Delay` value to :guilabel:`Auto`. If you manually set a Max Delay value on the detector, reset that value to Auto. Letting Amazon CloudWatch metric sync and Amazon EC2 property sync adjust max delay automatically based on incoming data will usually prevent inadvertent triggering of alerts by delayed data."
-msgstr ":guilabel:`Max Delay` の値を :guilabel:`Auto` に設定します。ディテクターで「最大遅延」の値を手動で設定した場合は、その値を「Auto」にリセットします。Amazon CloudWatchメトリクスの同期とAmazon EC2プロパティの同期に、受信データに基づいて最大遅延を自動的に調整させるようにすると、通常、遅延データによるアラートの不用意なトリガーを防ぐことができます。"
+msgid ""
+"Set :guilabel:`Max Delay` value to :guilabel:`Auto`. If you manually set a Max Delay value on the detector, reset that value to Auto. Letting Amazon CloudWatch metric sync and Amazon EC2 property sync adjust max delay automatically based on incoming data will usually prevent inadvertent triggering of alerts by delayed "
+"data."
+msgstr ""
+":guilabel:`Max Delay` の値を :guilabel:`Auto` に設定します。ディテクターで「最大遅延」の値を手動で設定した場合は、その値を「Auto」にリセットします。Amazon CloudWatchメトリクスの同期とAmazon EC2プロパティの同期に、受信データに基づいて最大遅延を自動的に調整させるようにすると、通常、遅延データによるアラートの不用意なトリガー"
+"を防ぐことができます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:103
msgid "Set the :guilabel:`extrapolation policy` to 0 (zero) for the detector to prevent alerts from being triggered by missing data. Data points not sent within an expected timeframe are considered null by default and excluded from calculations."
msgstr "ディテクターの :guilabel:`extrapolation policy` を0(ゼロ)に設定して、データの欠落によるアラートのトリガーを防止します。予想される時間枠内に送信されなかったデータポイントは、デフォルトでnullと見なされ、計算から除外されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:105
-msgid "Change the signal and condition that triggers the alert by adding the ``mean analytics`` function to the signal and giving it a transformation value of 5 minutes, with the detector firing immediately. In the example table, there is no 5-minute period during which the mean value is over 50, so no alert would be triggered."
+msgid ""
+"Change the signal and condition that triggers the alert by adding the ``mean analytics`` function to the signal and giving it a transformation value of 5 minutes, with the detector firing immediately. In the example table, there is no 5-minute period during which the mean value is over 50, so no alert would be triggered."
msgstr "シグナルに ``mean analytics`` 関数を追加し、変換値を5分に指定することで、アラートをトリガーするシグナルと条件を変更し、ディテクターが直ちに発動するようにします。上記の例の表では、平均値が50を超える5分間は存在しないので、アラートはトリガーされません。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:110
@@ -6211,7 +6612,8 @@ msgstr "相関とは、変数の組が互いにどれほど強く関係して(
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:114
msgid "A time series is defined by a metric name and a set of dimensions. Therefore, if you use a custom alert threshold that compares two plots that each hold a metric, but the metrics involved do not have the same dimensions, then a correlation conflict between them might prevent the alert from firing."
-msgstr "時系列は、メトリクス名とディメンションのセットによって定義されます。したがって、それぞれがメトリクスを保持している2つのプロットを比較するカスタムのアラート閾値を使用しているにもかかわらず、関与するメトリクスが同じディメンションを持たないという場合、それらの間の相関の矛盾によってアラートが発動しない可能性があります。"
+msgstr ""
+"時系列は、メトリクス名とディメンションのセットによって定義されます。したがって、それぞれがメトリクスを保持している2つのプロットを比較するカスタムのアラート閾値を使用しているにもかかわらず、関与するメトリクスが同じディメンションを持たないという場合、それらの間の相関の矛盾によってアラートが発動しない可能性があります。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:116
msgid "When one metric holds dimensions that the other does not, the analytic engine cannot compare (correlate) the two metrics to each other without extra help."
@@ -6227,10 +6629,11 @@ msgstr "count関数を使用して、インスタンスが停止しているか
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:125
msgid ""
-"In an ephemeral infrastructure environment where things are constantly going up and down, traditional monitoring mechanisms require repeated manual configuration. Traditional monitoring mechanisms assume that non-reporting of a metric is always alert-worthy. This is a problem when non-reporting is the expected effect of autoscaling, as when an instance is turned down on purpose. By using analytics, however, you can alert only when non-reporting is unexpected."
+"In an ephemeral infrastructure environment where things are constantly going up and down, traditional monitoring mechanisms require repeated manual configuration. Traditional monitoring mechanisms assume that non-reporting of a metric is always alert-worthy. This is a problem when non-reporting is the expected effect of "
+"autoscaling, as when an instance is turned down on purpose. By using analytics, however, you can alert only when non-reporting is unexpected."
msgstr ""
-"常にアップダウンが繰り返される刹那的なインフラストラクチャ環境では、従来の監視メカニズムでは、手動による設定を繰り返す必要があります。従来の監視メカニズムは、メトリクスのレポートがないことは常にアラートに値すると仮定しています。これは、インスタンスを意図的に停止する場合のように、レポートがないことがオートスケールによって期待される効果である場合に問題となります。しかし、分析を使用することで、レポートがないことが予期しない事態である場合にのみアラートを発すること"
-"ができます。"
+"常にアップダウンが繰り返される刹那的なインフラストラクチャ環境では、従来の監視メカニズムでは、手動による設定を繰り返す必要があります。従来の監視メカニズムは、メトリクスのレポートがないことは常にアラートに値すると仮定しています。これは、インスタンスを意図的に停止する場合のように、レポートがないことがオートスケールによって"
+"期待される効果である場合に問題となります。しかし、分析を使用することで、レポートがないことが予期しない事態である場合にのみアラートを発することができます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/troubleshoot-detectors.rst:127
msgid "The ``count`` analytics function tells you how many time series are reporting a value at a given point in time. If an instance stops reporting a metric, for example, because it has been terminated purposefully, then its time series is not counted."
@@ -6394,7 +6797,7 @@ msgstr "チャートから、または Infrastructure Navigatorで、関連す
#: ../../alerts-detectors-notifications/alerts-and-detectors/view-alerts.rst:92
msgid "|openmenu|"
-msgstr " |openmenu| "
+msgstr "|openmenu| "
#: ../../alerts-detectors-notifications/alerts-and-detectors/view-alerts.rst:94
msgid "Select an active alert or hover over a detector and select :menuselection:`View Active Alerts` to see all active alerts for that detector."
@@ -6433,8 +6836,11 @@ msgid "View a list of all detectors"
msgstr "全ディテクターのリストを見る"
#: ../../alerts-detectors-notifications/alerts-and-detectors/view-detectors.rst:17
-msgid "You can see a list of existing detectors in the Detectors tab on the Alerts page. If a detector is currently :ref:`muted` or scheduled to be muted, a red or grey indicator (respectively) appears next to the detector. For more information, see :ref:`view-muting-rules`."
-msgstr "既存のディテクターのリストは、「アラート」ページの「ディテクター」タブで表示できます。ディテクターが現在 :ref:`ミュート` になっている場合、またはミュートの予定がある場合は、ディテクターの横に、それぞれ赤とグレーのインジケーターが表示されます。詳細については、:ref:`view-muting-rules` を参照してください。"
+msgid ""
+"You can see a list of existing detectors in the :guilabel:`Detectors` tab on the :guilabel:`Detectors & SLOs` page. If a detector is currently :ref:`muted` or scheduled to be muted, a red or grey indicator (respectively) appears next to the detector. For more information, see :ref:`view-muting-rules`."
+msgstr ""
+"既存のディテクターのリストは、:guilabel:`Detectors & SLOs` ページの :guilabel:`Detectors` タブで表示できます。ディテクターが現在 :ref:`ミュート` になっている場合、またはミュートの予定がある場合は、ディテクターの横に、それぞれ赤とグレーのインジケーターが表示されます。詳細については、:ref:`view-muting-"
+"rules` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/view-detectors.rst:23
msgid "View detectors related to a chart or the Infrastructure Navigator"
@@ -6445,8 +6851,12 @@ msgid "When you are looking at the Detector menu for a chart, or in the Infrastr
msgstr "チャートの「ディテクター」メニューやInfrastructure Navigatorを見ると、1つ以上の「関連ディテクター」が表示されることがあります。関連するディテクターを見つけやすくすることで、組織でInfrastructure Monitoringを使用している全員が、同じデータを監視するために必ず同じディテクターを使用するようにできます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/view-detectors.rst:30
-msgid "|openmenu| The following illustration shows two related detectors for this chart. If you hover over a related detector, you see options that let you :ref:`subscribe to the detector` by adding a new notification, open the detector for viewing or editing, or view the alerts triggered by the detector. To learn more, go to :ref:`view-alerts`."
-msgstr " |openmenu| 以下の図には、このチャートに関連する2つのディテクターが示されています。関連するディテクターにカーソルを置くと、新しい通知を追加することで :ref:`ディテクターを受信登録` したり、ディテクターを開いて表示または編集したり、ディテクターによってトリガーされたアラートを表示したりできるオプションが表示されます。詳細については、:ref:`view-alerts` に移動してください。"
+msgid ""
+"|openmenu| The following illustration shows two related detectors for this chart. If you hover over a related detector, you see options that let you :ref:`subscribe to the detector` by adding a new notification, open the detector for viewing or editing, or view the alerts triggered by the detector. To learn "
+"more, go to :ref:`view-alerts`."
+msgstr ""
+"|openmenu| 以下の図には、このチャートに関連する2つのディテクターが示されています。関連するディテクターにカーソルを置くと、新しい通知を追加することで :ref:`ディテクターを受信登録` したり、ディテクターを開いて表示または編集したり、ディテクターによってトリガーされたアラートを表示したりできるオプションが表示されま"
+"す。詳細については、:ref:`view-alerts` に移動してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/view-detectors.rst:36
msgid "View an individual detector"
@@ -6454,15 +6864,19 @@ msgstr "個々のディテクターを見る"
#: ../../alerts-detectors-notifications/alerts-and-detectors/view-detectors.rst:38
msgid ""
-"There are two charts in the detector view. On the right side, you can see a detailed view. It shows each datapoint at the native resolution of the detector and represents exactly the datapoints that the detector sees. On the left side, you can see a summary view. It shows a summary of the data over a longer period of time. Because it is a summary, short spikes are not visible. The yellow box controls which part of the summary chart displays in the detail "
-"chart. You can see a short-term spike in the detail view by dragging the yellow box to the area where the alert fired."
+"There are two charts in the detector view. On the right side, you can see a detailed view. It shows each datapoint at the native resolution of the detector and represents exactly the datapoints that the detector sees. On the left side, you can see a summary view. It shows a summary of the data over a longer period of "
+"time. Because it is a summary, short spikes are not visible. The yellow box controls which part of the summary chart displays in the detail chart. You can see a short-term spike in the detail view by dragging the yellow box to the area where the alert fired."
msgstr ""
-"ディテクタービューには2つのチャートがあります。右側にあるのは詳細ビューです。これは、ディテクターのネイティブ解像度で各データポイントを表示し、ディテクターが見ているデータポイントそのものを表示します。左側には、概要ビューがあります。これは、より長期間のデータの概要を表示するものです。概要であるため、短期間のスパイク(急上昇)は目に見えません。黄色のボックスは、概要チャートのどの部分を詳細チャートに表示するかをコントロールします。アラートが発動したエリアに黄色"
-"のボックスをドラッグすると、詳細ビューに短期間のスパイクが表示されます。"
+"ディテクタービューには2つのチャートがあります。右側にあるのは詳細ビューです。これは、ディテクターのネイティブ解像度で各データポイントを表示し、ディテクターが見ているデータポイントそのものを表示します。左側には、概要ビューがあります。これは、より長期間のデータの概要を表示するものです。概要であるため、短期間のスパイク(急上"
+"昇)は目に見えません。黄色のボックスは、概要チャートのどの部分を詳細チャートに表示するかをコントロールします。アラートが発動したエリアに黄色のボックスをドラッグすると、詳細ビューに短期間のスパイクが表示されます。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/view-detectors.rst:40
-msgid "The Alert Rules tab is open when you open a detector, showing a chart that represents values for the visible signals. The list of detector rules and the number of currently active alerts for each rule are visible. To learn more, see :ref:`view-alerts-within-detector`. For information on creating rules, see :ref:`build-rules` or :ref:`apm-alerts`, depending on which type of detector you are creating."
-msgstr "ディテクターを開くと、「アラートルール」タブが開き、表示可能なシグナルの値を表すチャートが表示されます。ディテクタールールのリストと、各ルールの現在アクティブなアラートの数を見ることができます。詳細については、:ref:`view-alerts-within-detector` を参照してください。ルールの作成に関する情報は、作成するディテクターの種類に応じて、:ref:`build-rules` または :ref:`apm-alerts` を参照してください。"
+msgid ""
+"The Alert Rules tab is open when you open a detector, showing a chart that represents values for the visible signals. The list of detector rules and the number of currently active alerts for each rule are visible. To learn more, see :ref:`view-alerts-within-detector`. For information on creating rules, see :ref:`build-"
+"rules` or :ref:`apm-alerts`, depending on which type of detector you are creating."
+msgstr ""
+"ディテクターを開くと、「アラートルール」タブが開き、表示可能なシグナルの値を表すチャートが表示されます。ディテクタールールのリストと、各ルールの現在アクティブなアラートの数を見ることができます。詳細については、:ref:`view-alerts-within-detector` を参照してください。ルールの作成に関する情報は、作成するディテクターの種類に応"
+"じて、:ref:`build-rules` または :ref:`apm-alerts` を参照してください。"
#: ../../alerts-detectors-notifications/alerts-and-detectors/view-detectors.rst:42
msgid "As with charts, the resolution of data displayed is determined by the chart's time range. The detail view at right displays data at the detector's resolution, that is, the frequency at which the detector evaluates the signal. Any events that have occurred during the detector's time range are shown under the X axis."
@@ -6546,7 +6960,8 @@ msgstr "\\\text{燃焼率しきい値} = \\frac{\\\text{SLO コンプライア
#: ../../alerts-detectors-notifications/slo/burn-rate-alerts.rst:37
msgid "The following tables show the burn rate threshold estimates for different long and short windows. Short windows are 1/12 of the long windows, as suggested by Google. To learn more, see :new-page:`Alerting on SLOs ` on Google's Site Reliability Workbook."
-msgstr "以下の表は、異なるロングウィンドウとショートウィンドウに対する燃焼率のしきい値の推定値を示しています。ショートウィンドウは、Googleが提案するように、ロングウィンドウの1/12です。詳しくは、Google の Site Reliability Workbook の :new-page:`Alerting on SLOs` をご覧ください。"
+msgstr ""
+"以下の表は、異なるロングウィンドウとショートウィンドウに対する燃焼率のしきい値の推定値を示しています。ショートウィンドウは、Googleが提案するように、ロングウィンドウの1/12です。詳しくは、Google の Site Reliability Workbook の :new-page:`Alerting on SLOs` をご覧ください。"
#: ../../alerts-detectors-notifications/slo/burn-rate-alerts.rst:40
msgid "Burn rate for a 99.9% SLO with a 30-day compliance window"
@@ -6734,23 +7149,32 @@ msgstr "SignalFlowエディターで、以下のコードサンプルが表示
#: ../../alerts-detectors-notifications/slo/create-slo.rst:59
msgid "Line 1 defines ``G`` as a data stream of ``good.metric`` metric time series (MTS). The SignalFlow ``filter()`` function queries for a collection of MTS with value ``false`` for the ``sf_error`` dimension. The filter distinguishes successful requests from total requests, making ``G`` the good events variable."
-msgstr "1行目は、``good.metric`` メトリック時系列(MTS)のデータストリームとして ``G`` を定義しています。SignalFlowの ``filter()`` 関数は、 ``sf_error`` ディメンションに ``false`` の値を持つMTSの集合をクエリします。このフィルターによって、成功したリクエスト数とリクエスト総数を区別し、 ``G`` を成功イベントの変数にしています。"
+msgstr ""
+"1行目は、``good.metric`` メトリック時系列(MTS)のデータストリームとして ``G`` を定義しています。SignalFlowの ``filter()`` 関数は、 ``sf_error`` ディメンションに ``false`` の値を持つMTSの集合をクエリします。このフィルターによって、成功したリクエスト数とリクエスト総数を区別し、 ``G`` を成功イベントの変数にしています。"
#: ../../alerts-detectors-notifications/slo/create-slo.rst:60
msgid "Line 2 defines ``T`` as a data stream ``total.metric`` MTS. ``T`` is the total events variable."
msgstr "2行目は、``T`` を ``total.metric`` MTSのデータストリームとして定義しています。``T`` は、イベント総数の変数です。"
#: ../../alerts-detectors-notifications/slo/create-slo.rst:62
-msgid "Replace the code sample with your own SignalFlow program. You can define good events and total events variables using any metric and supported SignalFlow function. For more information, see :new-page:`Analyze data using SignalFlow ` in the Splunk Observability Cloud Developer Guide."
-msgstr "このコードサンプルをご自身のSignalFlowプログラムに置き換えてください。任意のメトリクスとサポートされているSignalFlow関数を使用して、成功イベントの変数とイベント総数の変数を定義できます。詳細については、Splunk Observability Cloud開発者ガイドの :new-page:`SignalFlowを使用したデータ分析` を参照してください。"
+msgid ""
+"Replace the code sample with your own SignalFlow program. You can define good events and total events variables using any metric and supported SignalFlow function. For more information, see :new-page:`Analyze data using SignalFlow ` in the Splunk Observability Cloud "
+"Developer Guide."
+msgstr ""
+"このコードサンプルをご自身のSignalFlowプログラムに置き換えてください。任意のメトリクスとサポートされているSignalFlow関数を使用して、成功イベントの変数とイベント総数の変数を定義できます。詳細については、Splunk Observability Cloud開発者ガイドの :new-page:`SignalFlowを使用したデータ分析` を参照してください。"
#: ../../alerts-detectors-notifications/slo/create-slo.rst:64
msgid "Select appropriate variable names for the :guilabel:`Good events (numerator)` and :guilabel:`Total events (denominator)` dropdown menus."
msgstr ":guilabel:`Good events (numerator)` および :guilabel:`Total events (denominator)` のドロップダウンメニューに、適切な変数名を選択します。"
#: ../../alerts-detectors-notifications/slo/create-slo.rst:66
-msgid "Custom metric SLO works by calculating the percentage of successful requests over a given compliance period. This calculation works better for counter and histogram metrics than for gauge metrics. Gauge metrics are not suitable for custom metric SLO, so you might get confusing data when selecting gauge metrics in your configuration."
-msgstr "カスタムメトリクスSLOは、特定のコンプライアンス期間中に成功したリクエストのパーセンテージを計算することにより機能します。この計算は、ゲージメトリクスよりもカウンターメトリクスやヒストグラムメトリクスの場合にうまく機能します。ゲージメトリクスはカスタムメトリクスSLOには適さないため、設定でゲージメトリクスを選択すると、データが混乱する可能性があります。"
+msgid ""
+"Custom metric SLO works by calculating the percentage of successful requests over a given compliance period. This calculation works better for counter and histogram metrics than for gauge metrics. Gauge metrics are not suitable for custom metric SLO, so you might get confusing data when selecting gauge metrics in your "
+"configuration."
+msgstr ""
+"カスタムメトリクスSLOは、特定のコンプライアンス期間中に成功したリクエストのパーセンテージを計算することにより機能します。この計算は、ゲージメトリクスよりもカウンターメトリクスやヒストグラムメトリクスの場合にうまく機能します。ゲージメトリクスはカスタムメトリクスSLOには適さないため、設定でゲージメトリクスを選択すると、デー"
+"タが混乱する可能性があります。"
#: ../../alerts-detectors-notifications/slo/create-slo.rst:68
msgid "Define your SLO and how to measure it."
@@ -6858,11 +7282,11 @@ msgstr "SignalFlowエディターに以下のプログラムを入力します
#: ../../alerts-detectors-notifications/slo/custom-metric-scenario.rst:28
msgid ""
-"Kai defines variables ``G`` and ``T`` as two streams of ``synthetics.run.count`` metric time series (MTS) measuring the health of requests sent to the Emby service. To distinguish between the two data streams, Kai applies an additional filter on the ``success`` dimension in the definition for ``G``. This filter queries for a specific collection of MTS that track successful requests for the Emby service. In Kai's SignalFlow program, ``G`` is a data stream of "
-"good events and ``T`` is a data stream of total events."
+"Kai defines variables ``G`` and ``T`` as two streams of ``synthetics.run.count`` metric time series (MTS) measuring the health of requests sent to the Emby service. To distinguish between the two data streams, Kai applies an additional filter on the ``success`` dimension in the definition for ``G``. This filter queries "
+"for a specific collection of MTS that track successful requests for the Emby service. In Kai's SignalFlow program, ``G`` is a data stream of good events and ``T`` is a data stream of total events."
msgstr ""
-"Kaiは、変数 ``G`` と ``T`` を、Embyサービスに送信されたリクエストの健全性を測定する ``synthetics.run.count`` メトリック時系列(MTS)の2つのストリームとして定義します。この2つのデータストリームを区別するため、 ``success`` の定義において、``G`` ディメンションに追加のフィルターを適用します。このフィルターは、Embyサービスに対する成功したリクエストを追跡するMTSの特定の集合をクエリします。KaiのSignalFlowプログラムでは、 ``G`` は成功イベントのデータストリーム"
-"であり、 ``T`` はイベント総数のデータストリームです。"
+"Kaiは、変数 ``G`` と ``T`` を、Embyサービスに送信されたリクエストの健全性を測定する ``synthetics.run.count`` メトリック時系列(MTS)の2つのストリームとして定義します。この2つのデータストリームを区別するため、 ``success`` の定義において、``G`` ディメンションに追加のフィルターを適用します。このフィルターは、Embyサービ"
+"スに対する成功したリクエストを追跡するMTSの特定の集合をクエリします。KaiのSignalFlowプログラムでは、 ``G`` は成功イベントのデータストリームであり、 ``T`` はイベント総数のデータストリームです。"
#: ../../alerts-detectors-notifications/slo/custom-metric-scenario.rst:30
msgid "This image shows Kai's SLO configuration using the ``synthetics.run.count`` metric and appropriate filters."
@@ -6937,7 +7361,9 @@ msgid "Service level objective (SLO) management is a service level monitoring ex
msgstr "サービスレベル目標(SLO)管理は、ビジネスニーズとエンジニアリングの信頼性目標を整合させるためのサービスレベルモニタリングです。"
#: ../../alerts-detectors-notifications/slo/slo-intro.rst:22
-msgid "While you have always been able to use the data in Splunk Observability Cloud to monitor, troubleshoot, and optimize your services, SLO management provides a quantitative way to track the reliability and performance of your services. This allows teams to make the right investment trade-offs between product development and operational work."
+msgid ""
+"While you have always been able to use the data in Splunk Observability Cloud to monitor, troubleshoot, and optimize your services, SLO management provides a quantitative way to track the reliability and performance of your services. This allows teams to make the right investment trade-offs between product development "
+"and operational work."
msgstr "これまでも Splunk Observability Cloud のデータを使用して、サービスの監視、トラブルシューティング、最適化を行うことができましたが、SLO 管理はサービスの信頼性とパフォーマンスを定量的に追跡する方法を提供します。これにより、チームは製品開発と運用業務の間で適切な投資のトレードオフを行うことができます。"
#: ../../alerts-detectors-notifications/slo/slo-intro.rst:31
@@ -7125,14 +7551,18 @@ msgid "Select :strong:`OK` to add the SLI chart to the dashboard."
msgstr ":strong:`OK` を選択して、SLIチャートをダッシュボードに追加します。"
#: ../../alerts-detectors-notifications/slo/view-slo.rst:50
+msgid "After adding an SLI chart to a dashboard, you can also save the chart as a CSV file or an image. For more information, see :ref:`export-and-share-charts`."
+msgstr "ダッシュボードにSLIチャートを追加した後、チャートをCSVファイルまたは画像として保存することもできます。詳細については、:ref:`export-and-share-charts` を参照してください。"
+
+#: ../../alerts-detectors-notifications/slo/view-slo.rst:52
msgid "You must have write permission for a dashboard to add an SLI chart to it."
msgstr "ダッシュボードにSLIチャートを追加するには、そのダッシュボードに対する書き込み権限が必要です。"
-#: ../../alerts-detectors-notifications/slo/view-slo.rst:53
+#: ../../alerts-detectors-notifications/slo/view-slo.rst:55
msgid "Troubleshooting with an SLI chart"
msgstr "SLIチャートに関するトラブルシューティング"
-#: ../../alerts-detectors-notifications/slo/view-slo.rst:55
+#: ../../alerts-detectors-notifications/slo/view-slo.rst:57
msgid "With an SLI chart, not only can you get an overview of your SLO at a glance, but you can also gain more specific insights into your SLI performance using different filter and customized time ranges. For more information, see :ref:`time-range-selector`."
msgstr "SLIチャートでは、SLOの概要を一目で把握できるだけでなく、さまざまなフィルターやカスタマイズされた時間範囲を使用して、SLIパフォーマンスのより具体的なインサイトを取得することもできます。詳細は、:ref:`time-range-selector` を参照してください。"
@@ -7324,3 +7754,15 @@ msgstr "SLIチャートでは、SLOの概要を一目で把握できるだけで
#~ msgid "Breach event"
#~ msgstr "違反イベント"
+
+#~ msgid "Open the :guilabel:`Alerts` page, and locate the detector or active alert you want to mute."
+#~ msgstr ":guilabel:`Alerts` ページを開き、ミュートしたいディテクターまたはアクティブアラートを見つけます。"
+
+#~ msgid "Create or edit muting rules at any time from the :guilabel:`Muting Rules` tab in :guilabel:`Alerts`."
+#~ msgstr ":guilabel:`Alerts` の :guilabel:`Muting Rules` タブから、いつでもミュートルールを作成または編集できます。"
+
+#~ msgid "Active and scheduled muting rules"
+#~ msgstr "アクティブなミュートルールおよびスケジュールされたミュートルール"
+
+#~ msgid "On the :guilabel:`Detectors` and the :guilabel:`Active Alerts` tabs, running or scheduled muting rules are indicated by :guilabel:`NOTIFICATIONS MUTED` labels next to the muted detector. You can select the label to view muting rules for the associated detector."
+#~ msgstr ":guilabel:`Detectors` および :guilabel:`Active Alerts` のタブでは、実行中またはスケジュール済みのミュートルールが、ミュートされたディテクターの横に :guilabel:`NOTIFICATIONS MUTED` ラベルで表示されます。ラベルを選択すると、関連するディテクターのミュートルールが表示されます。"
diff --git a/locales/ja_JA/LC_MESSAGES/analytics.mo b/locales/ja_JA/LC_MESSAGES/analytics.mo
index 04fd76e22..4589ed760 100644
Binary files a/locales/ja_JA/LC_MESSAGES/analytics.mo and b/locales/ja_JA/LC_MESSAGES/analytics.mo differ
diff --git a/locales/ja_JA/LC_MESSAGES/analytics.po b/locales/ja_JA/LC_MESSAGES/analytics.po
index 16cd027fa..aaea25a91 100644
--- a/locales/ja_JA/LC_MESSAGES/analytics.po
+++ b/locales/ja_JA/LC_MESSAGES/analytics.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Splunk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-01-29 18:45+0000\n"
-"PO-Revision-Date: 2025-02-27 12:02+0000\n"
+"PO-Revision-Date: 2025-04-09 18:56+0100\n"
"Last-Translator: \n"
"Language-Team: ja_JA \n"
"Language: ja_JA\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
-"X-Generator: Poedit 3.5\n"
+"X-Generator: Poedit 3.6\n"
#: ../../analytics/infrastructure-monitoring-analytics.rst:-1
msgid "Splunk infrastructure monitoring analytics overview, rollup policies, signalflow instructions, and analytics aggregations and transformations"
@@ -412,8 +412,8 @@ msgstr ""
#: ../../analytics/signalflow.rst:138
msgid ""
-"The timeshift feature in charts is aware of cycles having variable lengths, such as how March has more days than February, and shifts correctly to the end of a previous interval. By contrast, the standalone timeshift analytics function performs a fixed width shift, such as 30 days. For more information, see :ref:"
-"`use-timeshift-function-to-understand-trends`."
+"The timeshift feature in charts is aware of cycles having variable lengths, such as how March has more days than February, and shifts correctly to the end of a previous interval. By contrast, the standalone timeshift analytics function performs a fixed width shift, such as 30 days. For more information, "
+"see :ref:`use-timeshift-function-to-understand-trends`."
msgstr "チャートのタイムシフト機能は、3月が2月より日数が多いというような、可変長のサイクルを認識し、前の間隔の終わりに正しくシフトします。対照的に、スタンドアローンのタイムシフト分析機能は、30日のような固定幅のシフトを行います。詳しくは :ref:`use-timeshift-function-to-understand-trends` を参照してください。"
#: ../../analytics/signalflow.rst:143
diff --git a/locales/ja_JA/LC_MESSAGES/apm.mo b/locales/ja_JA/LC_MESSAGES/apm.mo
index 665b2d08f..840a1bd92 100644
Binary files a/locales/ja_JA/LC_MESSAGES/apm.mo and b/locales/ja_JA/LC_MESSAGES/apm.mo differ
diff --git a/locales/ja_JA/LC_MESSAGES/apm.po b/locales/ja_JA/LC_MESSAGES/apm.po
index 0a6cffe58..860a950ce 100644
--- a/locales/ja_JA/LC_MESSAGES/apm.po
+++ b/locales/ja_JA/LC_MESSAGES/apm.po
@@ -1,4 +1,3 @@
-# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023 Splunk, Inc
# This file is distributed under the same license as the Splunk package.
# FIRST AUTHOR , 2023.
@@ -7,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Splunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-01-29 18:45+0000\n"
-"PO-Revision-Date: 2025-02-27 12:53+0000\n"
+"POT-Creation-Date: 2025-03-13 09:38+0000\n"
+"PO-Revision-Date: 2025-04-10 14:12+0100\n"
"Last-Translator: \n"
"Language-Team: ja_JA \n"
"Language: ja_JA\n"
@@ -16,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
-"X-Generator: Poedit 3.5\n"
+"X-Generator: Poedit 3.6\n"
#: ../../apm/apm-alert-visualize/alert-conditions-apm.rst:-1
msgid "Learn about the built-in alert conditions in Splunk APM."
@@ -46,8 +45,8 @@ msgstr "以下はSplunk APMのディテクターで利用可能な内蔵アラ
msgid ":strong:`Condition`"
msgstr ":strong:`条件`"
-#: ../../apm/apm-alert-visualize/alert-conditions-apm.rst:24 ../../apm/apm-data-links/apm-create-data-links.rst:36 ../../apm/apm-spans-traces/service-map.rst:102 ../../apm/apm-spans-traces/traces-spans.rst:87 ../../apm/db-query-perf/db-perf-reference.rst:49 ../../apm/db-query-perf/db-perf-reference.rst:84 ../../apm/key-concepts.rst:17 ../../apm/span-tags/add-context-trace-span.rst:263 ../../apm/span-tags/index-span-tags.rst:138 ../../apm/span-tags/index-tag-tips.rst:40
-#: ../../apm/span-tags/index-tag-tips.rst:85 ../../apm/workflows/create-workflow-rule.rst:42
+#: ../../apm/apm-alert-visualize/alert-conditions-apm.rst:24 ../../apm/apm-spans-traces/service-map.rst:111 ../../apm/apm-spans-traces/traces-spans.rst:87 ../../apm/db-query-perf/db-perf-reference.rst:49 ../../apm/db-query-perf/db-perf-reference.rst:84 ../../apm/key-concepts.rst:17 ../../apm/span-tags/add-context-trace-span.rst:263 ../../apm/span-tags/index-span-tags.rst:138
+#: ../../apm/span-tags/index-tag-tips.rst:40 ../../apm/span-tags/index-tag-tips.rst:85 ../../apm/workflows/create-workflow-rule.rst:42
msgid ":strong:`Description`"
msgstr ":strong:`説明`"
@@ -280,8 +279,11 @@ msgid "Track service performance using dashboards in Splunk APM"
msgstr "Splunk APMのダッシュボードを使用してサービスパフォーマンスを追跡する"
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:10
-msgid "Splunk APM provides a set of built-in dashboards that present :ref:`charts` and visualized metrics to help you see problems occurring in real time and quickly determine whether the problem is associated with a service, a specific endpoint, or the underlying infrastructure. To learn about dashboards in Splunk Observability Cloud, see :ref:`dashboards`."
-msgstr "Splunk APMは、:ref:`チャート` と可視化されたメトリクスを表示する内蔵ダッシュボードの一式を提供しています。これは、リアルタイムで発生している問題を確認し、問題がサービス、特定のエンドポイント、または基盤となるインフラストラクチャのいずれに関連しているかを迅速に判断するのに役立ちます。Splunk Observability Cloudのダッシュボードについては、:ref:`dashboards` を参照してください。"
+msgid ""
+"Splunk APM provides a set of built-in dashboards that present :ref:`charts` and visualized metrics to help you see problems occurring in real time and quickly determine whether the problem is associated with a service, a specific endpoint, or the underlying infrastructure. To learn about dashboards in Splunk Observability Cloud, see :ref:`dashboards`."
+msgstr ""
+"Splunk APMは、:ref:`チャート` と可視化されたメトリクスを表示する内蔵ダッシュボードの一式を提供しています。これは、リアルタイムで発生している問題を確認し、問題がサービス、特定のエンドポイント、または基盤となるインフラストラクチャのいずれに関連しているかを迅速に判断するのに役立ちます。Splunk Observability Cloudのダッシュボードについては、:ref:`dashboards` "
+"を参照してください。"
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:12
msgid "The following image shows an example service dashboard for ``paymentservice``."
@@ -289,7 +291,9 @@ msgstr "次の画像は、``paymentservice`` のサービスダッシュボー
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:17
msgid "APM dashboards present request, error, and duration (RED) metrics based on :ref:`Monitoring MetricSets` created from endpoint spans for your services, endpoints, and Business Workflows. They also present related host and Kubernetes metrics to help you determine whether problems are related to the underlying infrastructure, as in the following image."
-msgstr "APMのダッシュボードは、サービス、エンドポイント、およびビジネスワークフローのエンドポイントスパンから作成された :ref:`Monitoring MetricSets` に基づいて、リクエスト、エラーおよび時間(RED)のメトリクスを表示します。また、次の画像のように、関連するホストとKubernetesのメトリクスを表示して、問題が基礎となるインフラストラクチャに関連しているかどうかの判断に役立つようになっています。"
+msgstr ""
+"APMのダッシュボードは、サービス、エンドポイント、およびビジネスワークフローのエンドポイントスパンから作成された :ref:`Monitoring MetricSets` に基づいて、リクエスト、エラーおよび時間(RED)のメトリクスを表示します。また、次の画像のように、関連するホストとKubernetesのメトリクスを表示して、問題が基礎となるインフラストラクチャに関連しているかどうかの判断に役立つ"
+"ようになっています。"
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:19
msgid "This image shows Kubernetes metrics in an APM service dashboard."
@@ -372,8 +376,12 @@ msgid "Use dashboards to troubleshoot issues in APM"
msgstr "APMでダッシュボードを使用して問題をトラブルシューティングする"
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:56
-msgid "You can navigate from within a dashboard directly to the relevant troubleshooting view with all the relevant data populated. In a dashboard, select the more menu (|more|) within a chart and select :guilabel:`Troubleshoot from the Time Window` to open the troubleshooting view (which includes the service map). The dashboard's filters are preserved so that you can continue troubleshooting issues in context."
-msgstr "ダッシュボード内から、すべての関連データが入力された該当のトラブルシューティングビューに直接移動することができます。ダッシュボードで、チャート内の「その他」(|more| )のメニューを選択し、:guilabel:`Troubleshoot from the Time Window` を選択すると、トラブルシューティングビュー(サービスマップを含む)が開きます。ダッシュボードのフィルターは保持されるため、コンテキスト内で問題のトラブルシューティングを続けることができます。"
+msgid ""
+"You can navigate from within a dashboard directly to the relevant troubleshooting view with all the relevant data populated. In a dashboard, select the more menu (|more|) within a chart and select :guilabel:`Troubleshoot from the Time Window` to open the troubleshooting view (which includes the service map). The dashboard's filters are preserved so that you can continue "
+"troubleshooting issues in context."
+msgstr ""
+"ダッシュボード内から、すべての関連データが入力された該当のトラブルシューティングビューに直接移動することができます。ダッシュボードで、チャート内の「その他」(|more| )のメニューを選択し、:guilabel:`Troubleshoot from the Time Window` を選択すると、トラブルシューティングビュー(サービスマップを含む)が開きます。ダッシュボードのフィルターは保持されるため、コンテキスト内で問題のトラブ"
+"ルシューティングを続けることができます。"
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:58
msgid "See :ref:`service-map` for a sample scenario of the troubleshooting view in Splunk APM."
@@ -393,7 +401,9 @@ msgstr "作成済みのダッシュボードにフィルター、チャートの
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:69
msgid "Edit a specific chart by selecting its more menu (|more|) and selecting :guilabel:`Open`. This opens a detailed chart editor you can use to adjust chart type, axis labels, formulas, and more. Once you edit a chart or dashboard, select the more menu (|more|) and select :guilabel:`Save As` from the dropdown to save your customizations for future reference."
-msgstr "特定のチャートを編集するには、チャートのその他(|more| )のメニューを選択し、:guilabel:`Open` を選択します。チャートの種類、軸ラベル、計算式などを調整できる詳細なチャートエディターが開きます。チャートまたはダッシュボードを編集したら、その他(|more| )のメニューを選択し、ドロップダウンから :guilabel:`Save As` を選択すると、カスタマイズ内容が保存され将来的に参照できるようになります。"
+msgstr ""
+"特定のチャートを編集するには、チャートのその他(|more| )のメニューを選択し、:guilabel:`Open` を選択します。チャートの種類、軸ラベル、計算式などを調整できる詳細なチャートエディターが開きます。チャートまたはダッシュボードを編集したら、その他(|more| )のメニューを選択し、ドロップダウンから :guilabel:`Save As` を選択すると、カスタマイズ内容が保存され将来的に参照できるようになりま"
+"す。"
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:71
msgid "You can also create a new dashboard from scratch. See :ref:`create-dashboard` to learn more. See :ref:`dashboard-group` to learn how you can share your custom dashboards in groups."
@@ -405,7 +415,8 @@ msgstr "SignalFlowを使用してチャートを作成する"
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:76
msgid "The dashboard editor provides a lot of customization options for your charts, but if you need even more flexibility, you can use SignalFlow to run calculations and create charts from your data. See the :new-page:`Analyze Data Using SignalFlow ` topic in the Splunk Observability Cloud Developer Guide to learn more."
-msgstr "ダッシュボードエディターにはチャートのカスタマイズオプションが多数用意されていますが、さらに柔軟性が必要な場合は、SignalFlowを使用してデータから計算を実行し、チャートを作成することができます。詳しくは、『Splunk Observability Cloud開発者ガイド』の「 :new-page:`SignalFlow を使用したデータ分析` 」のトピックを参照してください。"
+msgstr ""
+"ダッシュボードエディターにはチャートのカスタマイズオプションが多数用意されていますが、さらに柔軟性が必要な場合は、SignalFlowを使用してデータから計算を実行し、チャートを作成することができます。詳しくは、『Splunk Observability Cloud開発者ガイド』の「 :new-page:`SignalFlow を使用したデータ分析` 」のトピックを参照してください。"
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:78
msgid "See :ref:`dashboards-best-practices` for more tips on building informative dashboards."
@@ -415,7 +426,8 @@ msgstr "有益なダッシュボードを構築するためのヒントについ
msgid "Create a detector from a dashboard"
msgstr "ダッシュボードからディテクターを作成する"
-#: ../../apm/apm-alert-visualize/apm-dashboards.rst:86 ../../apm/apm-data-links/apm-create-data-links.rst:18 ../../apm/apm-spans-traces/inferred-services.rst:109 ../../apm/set-up-apm/apm-orientation.rst:19 ../../apm/set-up-apm/sensitive-data-controls.rst:16 ../../apm/span-tags/add-context-trace-span.rst:20 ../../apm/workflows/example-business-workflow.rst:19 ../../apm/workflows/workflow-alerts.rst:32
+#: ../../apm/apm-alert-visualize/apm-dashboards.rst:86 ../../apm/apm-data-links/apm-create-data-links.rst:17 ../../apm/apm-spans-traces/inferred-services.rst:109 ../../apm/set-up-apm/apm-orientation.rst:19 ../../apm/set-up-apm/sensitive-data-controls.rst:16 ../../apm/span-tags/add-context-trace-span.rst:20 ../../apm/workflows/example-business-workflow.rst:19
+#: ../../apm/workflows/workflow-alerts.rst:32
msgid "Prerequisite"
msgstr "前提条件"
@@ -428,8 +440,12 @@ msgid "To create a detector from a dashboard, select the bell icon within a spec
msgstr "ダッシュボードからディテクターを作成するには、ダッシュボードの特定のチャート内でベルアイコンを選択し、:guilabel:`New Detector From Chart` を選択します。"
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:92
-msgid "If you don't have write permissions on the dashboard you're viewing, a Detector Linking pop-up informs you the detector is not linked directly to the dashboard. You can select :guilabel:`Ok` to proceed, or save a copy of the dashboard to gain write permissions so that you can create a linked detector based on your new dashboard. To learn more about linking detectors, see :ref:`linking-detectors`."
-msgstr "表示中のダッシュボードに対する書き込み権限がない場合は、「ディテクターのリンク」のポップアップが表示され、そのディテクターがダッシュボードに直接リンクされないことが通知されます。:guilabel:`Ok` を選択して続行するか、ダッシュボードのコピーを保存して書き込み権限を取得し、新しいダッシュボードに基づいてリンクされたディテクターを作成することができます。ディテクターのリンクの詳細については、:ref:`linking-detectors` を参照してください。"
+msgid ""
+"If you don't have write permissions on the dashboard you're viewing, a Detector Linking pop-up informs you the detector is not linked directly to the dashboard. You can select :guilabel:`Ok` to proceed, or save a copy of the dashboard to gain write permissions so that you can create a linked detector based on your new dashboard. To learn more about linking detectors, "
+"see :ref:`linking-detectors`."
+msgstr ""
+"表示中のダッシュボードに対する書き込み権限がない場合は、「ディテクターのリンク」のポップアップが表示され、そのディテクターがダッシュボードに直接リンクされないことが通知されます。:guilabel:`Ok` を選択して続行するか、ダッシュボードのコピーを保存して書き込み権限を取得し、新しいダッシュボードに基づいてリンクされたディテクターを作成することができます。ディテクターのリンクの詳細について"
+"は、:ref:`linking-detectors` を参照してください。"
#: ../../apm/apm-alert-visualize/apm-dashboards.rst:94
msgid "In the New APM Detector window, enter a name for your detector and follow the steps in the guided setup to configure your detector, or see :ref:`apm-alerts` for more information."
@@ -444,8 +460,8 @@ msgid "Link APM services, traces, and spans to relevant resources"
msgstr "APMのサービス、トレース、スパンを関連リソースにリンクする"
#: ../../apm/apm-data-links/apm-create-data-links.rst:10
-msgid "Create global data links to link Splunk APM properties, such as services, traces, spans, and span tags, to relevant resources. For example, you can link APM properties to Infrastructure Monitoring navigators and dashboards, Splunk instances, Kibana logs, or custom URLs."
-msgstr "グローバルデータリンクを作成して、Splunk APMのサービス、トレース、スパン、スパンタグといったプロパティを関連リソースにリンクします。たとえば、APMのプロパティをInfrastructure Monitoringのナビゲーターおよびダッシュボード、Splunkインスタンス、Kibanaログ、またはカスタムURLにリンクできます。"
+msgid "Create global data links to link Splunk APM properties, such as services, traces, spans, and span tags, to relevant resources. For example, you can link APM properties to Infrastructure Monitoring navigators and dashboards, Splunk instances, Kibana logs, Splunk AppDynamics tiers, or custom URLs."
+msgstr "グローバルデータリンクを作成して、Splunk APMのサービス、トレース、スパン、スパンタグといったプロパティを関連リソースにリンクします。たとえば、APMのプロパティをInfrastructure Monitoringのナビゲーターおよびダッシュボード、Splunkインスタンス、Kibanaログ、Splunk AppDynamics階層、またはカスタムURLにリンクできます。"
#: ../../apm/apm-data-links/apm-create-data-links.rst:12
msgid "You can also use global data links to dynamically transfer contextual information about the property you're viewing to the linked resource, helping you get to relevant information faster."
@@ -455,295 +471,679 @@ msgstr "また、グローバルデータリンクを使用して、閲覧中の
msgid "For information about how to access global data links, see :ref:`apm-use-data-links`."
msgstr "グローバルデータリンクの利用方法については、:ref:`apm-use-data-links` を参照してください。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:20
+#: ../../apm/apm-data-links/apm-create-data-links.rst:19
msgid "To create global data links, you must have the admin role."
msgstr "グローバルデータリンクを作成するには、adminロールが必要です。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:25
+#: ../../apm/apm-data-links/apm-create-data-links.rst:24
msgid "Parameters to create global data links for APM properties"
msgstr "APMのプロパティにグローバルデータリンクを作成するためのパラメータ"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:27
+#: ../../apm/apm-data-links/apm-create-data-links.rst:26
msgid "When you create a global data link for an APM property, you can transfer the context parameter values for the property to dashboards and custom URLs. Here are the APM properties and their context parameters."
msgstr "APMのプロパティにグローバルデータリンクを作成すると、そのプロパティのコンテキストパラメータ値をダッシュボードやカスタムURLに転送できます。以下は、APMのプロパティとそのコンテキストパラメータです。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:32
+msgid ":guilabel:`Property`"
+msgstr ":guilabel:`Property`"
+
#: ../../apm/apm-data-links/apm-create-data-links.rst:33
-msgid ":strong:`Property`"
-msgstr ":strong:`プロパティ`"
+msgid ":guilabel:`Field`"
+msgstr ":guilabel:`Field`"
#: ../../apm/apm-data-links/apm-create-data-links.rst:34
-msgid ":strong:`Field`"
-msgstr ":strong:`フィールド`"
+msgid ":guilabel:`Context parameters`"
+msgstr ":guilabel:`Context parameters`"
#: ../../apm/apm-data-links/apm-create-data-links.rst:35
-msgid ":strong:`Context parameters`"
-msgstr ":strong:`コンテキストパラメーター`"
+msgid ":guilabel:`Description`"
+msgstr ":guilabel:`Description`"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:38 ../../apm/apm-spans-traces/traces-spans.rst:89 ../../apm/filter-apm-data.rst:134 ../../apm/workflows/create-workflow-rule.rst:46
+#: ../../apm/apm-data-links/apm-create-data-links.rst:37 ../../apm/apm-spans-traces/traces-spans.rst:89 ../../apm/filter-apm-data.rst:134 ../../apm/workflows/create-workflow-rule.rst:46
msgid "Service"
msgstr "サービス"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:39 ../../apm/span-tags/metricsets.rst:120 ../../apm/span-tags/metricsets.rst:129 ../../apm/span-tags/metricsets.rst:143 ../../apm/span-tags/metricsets.rst:157
+#: ../../apm/apm-data-links/apm-create-data-links.rst:38 ../../apm/span-tags/metricsets.rst:120 ../../apm/span-tags/metricsets.rst:129 ../../apm/span-tags/metricsets.rst:143 ../../apm/span-tags/metricsets.rst:157
msgid "``sf_service``"
msgstr "``sf_service``"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:40
+#: ../../apm/apm-data-links/apm-create-data-links.rst:39
msgid "``sf_environment``, ``sf_operation``, ``sf_endpoint``"
msgstr "``sf_environment``、``sf_operation``、``sf_endpoint``"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:41
+#: ../../apm/apm-data-links/apm-create-data-links.rst:40
msgid "The name of the service in APM. This is generally specified when configuring instrumentation for the service."
msgstr "APMでのサービス名。これは一般的にサービスのインストルメンテーションの設定時に指定されます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:43
+#: ../../apm/apm-data-links/apm-create-data-links.rst:42
msgid "Trace ID"
msgstr "トレースID"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:44
+#: ../../apm/apm-data-links/apm-create-data-links.rst:43
msgid "``trace_id``"
msgstr "``trace_id``"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:45
+#: ../../apm/apm-data-links/apm-create-data-links.rst:44
msgid "``sf_service``, ``sf_operation``, any global tags for the trace"
msgstr "``sf_service``、``sf_operation``、トレースのグローバルタグ"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:46
+#: ../../apm/apm-data-links/apm-create-data-links.rst:45
msgid "A unique 16- or 32-character identifier associated with a specific trace."
msgstr "特定のトレースに関連付けられた16文字または32文字の一意識別子。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:48 ../../apm/apm-spans-traces/traces-spans.rst:97
+#: ../../apm/apm-data-links/apm-create-data-links.rst:47 ../../apm/apm-spans-traces/traces-spans.rst:97
msgid "Span ID"
msgstr "スパンID"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:49
+#: ../../apm/apm-data-links/apm-create-data-links.rst:48
msgid "``span_id``"
msgstr "``span_id``"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:50
+#: ../../apm/apm-data-links/apm-create-data-links.rst:49
msgid "``sf_service``, ``sf_operation``, ``trace_id``, ``span_id``, all tags for the span"
msgstr "``sf_service``、``sf_operation``、``trace_id``、``span_id``、スパンのすべてのタグ"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:51
+#: ../../apm/apm-data-links/apm-create-data-links.rst:50
msgid "A unique 16-character identifier associated with a specific span."
msgstr "特定のスパンに関連付けられた16文字の一意識別子。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:53
+#: ../../apm/apm-data-links/apm-create-data-links.rst:52
msgid "Span tag"
msgstr "スパンタグ"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:54
+#: ../../apm/apm-data-links/apm-create-data-links.rst:53
msgid "An existing span tag value."
msgstr "既存のスパンタグの値。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:55
+#: ../../apm/apm-data-links/apm-create-data-links.rst:54
msgid "``sf_service``, ``sf_operation``, ``span_id``, ``trace_id``, all other tags for the span"
msgstr "``sf_service``、``sf_operation``、``span_id``、``trace_id``、スパンのその他すべてのタグ"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:56
+#: ../../apm/apm-data-links/apm-create-data-links.rst:55
msgid "A field-value pair that describes the span. Use span tags to describe the span. Specify the tags when you configure instrumentation for the service. You can also specify span tags in the Splunk Distribution of OpenTelemetry Collector (or the Smart Agent, now deprecated) configuration."
msgstr "スパンを記述するフィールドと値のペア。スパンタグを使用してスパンを記述します。タグは、サービスのインストルメンテーションを構成する際にタグを指定します。Splunk Distribution of OpenTelemetry Collector(または現在は非推奨のSmart Agent)の設定でもスパンタグを指定できます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:60
+#: ../../apm/apm-data-links/apm-create-data-links.rst:59
msgid "Link APM properties to Splunk Infrastructure Monitoring navigators"
msgstr "APMのプロパティをSplunk Infrastructure Monitoringのナビゲーターにリンクする"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:62
+#: ../../apm/apm-data-links/apm-create-data-links.rst:61
msgid "The following task describes how to create a global data link for a service that links to an Infrastructure Monitoring navigator. You can set up a global data link for any service or a specific service."
msgstr "次のタスクは、Infrastructure Monitoringのナビゲーターにリンクするサービスのグローバルデータリンクを作成する方法について説明したものです。任意のサービスまたは特定のサービスのグローバルデータリンクを設定できます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:64 ../../apm/apm-data-links/apm-create-data-links.rst:80 ../../apm/apm-data-links/apm-create-data-links.rst:100
+#: ../../apm/apm-data-links/apm-create-data-links.rst:63 ../../apm/apm-data-links/apm-create-data-links.rst:79 ../../apm/apm-data-links/apm-create-data-links.rst:99 ../../apm/apm-data-links/apm-create-data-links.rst:143
msgid "In the Splunk Observability Cloud main menu, select :guilabel:`Settings` then :guilabel:`Global Data Links`."
msgstr "Splunk Observability Cloudのメインメニューで、:guilabel:`Settings` を選択し、次に :guilabel:`Global Data Links` を選択します。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:65 ../../apm/apm-data-links/apm-create-data-links.rst:81 ../../apm/apm-data-links/apm-create-data-links.rst:101 ../../apm/apm-data-links/apm-create-data-links.rst:123
-msgid "Select :strong:`New Link`."
-msgstr ":strong:`新規リンク` を選択します。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:64 ../../apm/apm-data-links/apm-create-data-links.rst:80 ../../apm/apm-data-links/apm-create-data-links.rst:100 ../../apm/apm-data-links/apm-create-data-links.rst:122
+msgid "Select :guilabel:`New Link`."
+msgstr ":guilabel:`New Link` を選択します。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:65
+msgid "Enter a :guilabel:`Link Label`. This is what you select when you want to use the global data link to drill down into a specific service."
+msgstr ":guilabel:`Link Label` を入力します。これは、グローバルデータリンクを使用して特定のサービスにドリルダウンする際に選択するものです。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:66
-msgid "Enter a :strong:`Link Label`. This is what you select when you want to use the global data link to drill down into a specific service."
-msgstr ":strong:`リンクラベル` を入力します。これは、グローバルデータリンクを使用して特定のサービスにドリルダウンする際に選択するものです。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:66 ../../apm/apm-data-links/apm-create-data-links.rst:82
+msgid "For :guilabel:`Show On`, select :guilabel:`Any Value of` and enter :guilabel:`sf_service` to associate the global data link with every service. If you want to create the global data link for a specific service, select :guilabel:`Property:Value Pair` and enter :guilabel:`sf_service:` for the service you want to create the global data link for."
+msgstr ":guilabel:`Show On` には、:guilabel:`Any Value of` を選択し、:guilabel:`sf_service` と入力すると、このグローバルデータリンクがすべてのサービスに関連付けられます。特定のサービスに対してグローバルデータリンクを作成する場合は、:guilabel:`Property:Value Pair` を選択し、グローバルデータリンクを作成するサービスとして :guilabel:`sf_service:` を入力します。"
#: ../../apm/apm-data-links/apm-create-data-links.rst:67 ../../apm/apm-data-links/apm-create-data-links.rst:83
-msgid "For :strong:`Show On`, select :strong:`Any Value of` and enter :strong:`sf_service` to associate the global data link with every service. If you want to create the global data link for a specific service, select :strong:`Property:Value Pair` and enter :strong:`sf_service:` for the service you want to create the global data link for."
-msgstr ":strong:`表示先` には、:strong:`任意の値` を選択し、:strong:`sf_service` と入力すると、このグローバルデータリンクがすべてのサービスに関連付けられます。特定のサービスに対してグローバルデータリンクを作成する場合は、:strong:`プロパティ:値ペア` を選択し、グローバルデータリンクを作成するサービスとして :strong:`sf_service:` を入力します。"
+msgid ""
+"If you want the global data link to display based on the :guilabel:`Show On` value and 1 or more additional conditions, select :guilabel:`Add Conditions`. To define a condition based on a property name, select :guilabel:`Any Value of` and enter a property name. To define a condition based on a property name and a specific value, select :guilabel:`Property:Value Pair` and enter a "
+"property name and value pair. If you define multiple conditions, all conditions must be met for the link to display."
+msgstr ""
+"グローバルデータリンクを :guilabel:`Show On` の値と1つ以上の追加条件に基づいて表示させたい場合は、:guilabel:`Add Conditions` を選択します。プロパティ名に基づいて条件を定義するには、:guilabel:`Any Value of` を選択し、プロパティ名を入力します。プロパティ名と特定の値に基づいて条件を定義するには、:guilabel:`Property:Value Pair` を選択し、プロパティ名と値のペアを入力します。複数の条件"
+"を定義すると、リンクが表示されるためにはすべての条件が満たされる必要があります。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:68 ../../apm/apm-data-links/apm-create-data-links.rst:84
-msgid "If you want the global data link to display based on the :strong:`Show On` value and 1 or more additional conditions, select :strong:`Add Conditions`. To define a condition based on a property name, select :strong:`Any Value of` and enter a property name. To define a condition based on a property name and a specific value, select :strong:`Property:Value Pair` and enter a property name and value pair. If you define multiple conditions, all conditions must be met for the link to display."
-msgstr "グローバルデータリンクを :strong:`表示先` の値と1つ以上の追加条件に基づいて表示させたい場合は、:strong:`条件の追加` を選択します。プロパティ名に基づいて条件を定義するには、:strong:`任意の値` を選択し、プロパティ名を入力します。プロパティ名と特定の値に基づいて条件を定義する には、:strong:`プロパティ:値ペア` を選択し、プロパティ名と値のペアを入力します。複数の条件を定義すると 、リンクが表示されるためにはすべての条件が満たされる必要があります。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:68
+msgid "Select :guilabel:`Choose Navigator` and select the navigator you want to associate with the global data link."
+msgstr ":guilabel:`Choose Navigator` を選択し、グローバルデータリンクに関連付けたいナビゲーターを選択します。"
#: ../../apm/apm-data-links/apm-create-data-links.rst:69
-msgid "Select :strong:`Choose Navigator` and select the navigator you want to associate with the global data link."
-msgstr ":strong:`ナビゲーターの選択` を選択し、グローバルデータリンクに関連付けたいナビゲーターを選択します。"
-
-#: ../../apm/apm-data-links/apm-create-data-links.rst:70
-msgid "Select :strong:`Save`. When you view a service that matches the :strong:`Show On` value, you can carry the entire context of the service to the navigator."
-msgstr ":strong:`保存` を選択します。:strong:`表示先` の値に一致するサービスを表示すると、サービスの完全なコンテキストがナビゲーターに引き継がれます。"
+msgid "Select :guilabel:`Save`. When you view a service that matches the :guilabel:`Show On` value, you can carry the entire context of the service to the navigator."
+msgstr ":guilabel:`Save` を選択します。:guilabel:`Show On` の値に一致するサービスを表示すると、サービスの完全なコンテキストがナビゲーターに引き継がれます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:74
+#: ../../apm/apm-data-links/apm-create-data-links.rst:73
msgid "Link APM properties to Splunk Infrastructure Monitoring dashboards"
msgstr "APMのプロパティをSplunk Infrastructure Monitoringのダッシュボードにリンクする"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:76
+#: ../../apm/apm-data-links/apm-create-data-links.rst:75
msgid ""
-"You can create a global data link that passes information about APM services, traces, and spans to custom dashboards available in Splunk Observability Cloud. When you select a global data link to an Infrastructure Monitoring dashboard, the entire context of the property you were viewing transfers to the dashboard. For example, if you were viewing a service, the global data link transfers information about any endpoints you filtered for, the selected environments, and any tags you filtered for within "
-"the selected time range to the dashboard."
+"You can create a global data link that passes information about APM services, traces, and spans to custom dashboards available in Splunk Observability Cloud. When you select a global data link to an Infrastructure Monitoring dashboard, the entire context of the property you were viewing transfers to the dashboard. For example, if you were viewing a service, the global data link "
+"transfers information about any endpoints you filtered for, the selected environments, and any tags you filtered for within the selected time range to the dashboard."
msgstr ""
-"APMのサービス、トレース、スパンに関する情報を、Splunk Observability Cloudで利用可能なカスタムダッシュボードに渡すグローバルデータリンクを作成できます。Infrastructure Monitoringのダッシュボードへのグローバルデータリンクを選択すると、表示していたプロパティの完全なコンテキストがそのダッシュボードに転送されます。たとえば、サービスを表示していた場合、グローバルデータリンクは、選択した時間範囲内でフィルタリングしたエンドポイント、選択した環境、およびフィルタリングしたタグに関する情報を、ダッシュボードに転送"
-"します。"
+"APMのサービス、トレース、スパンに関する情報を、Splunk Observability Cloudで利用可能なカスタムダッシュボードに渡すグローバルデータリンクを作成できます。Infrastructure Monitoringのダッシュボードへのグローバルデータリンクを選択すると、表示していたプロパティの完全なコンテキストがそのダッシュボードに転送されます。たとえば、サービスを表示していた場合、グローバルデータリンクは、選択した"
+"時間範囲内でフィルタリングしたエンドポイント、選択した環境、およびフィルタリングしたタグに関する情報を、ダッシュボードに転送します。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:78
+#: ../../apm/apm-data-links/apm-create-data-links.rst:77
msgid "The following task describes how to create a global data link for a service that links to an Infrastructure Monitoring dashboard. You can set up a global data link for any service or a specific service."
msgstr "次のタスクは、Infrastructure Monitoringのダッシュボードにリンクするサービスのグローバルデータリンクを作成する方法について説明したものです。任意のサービスまたは特定のサービスのグローバルデータリンクを設定できます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:82
-msgid "Enter a :strong:`Link Label`. This is what you select when you want to use the global data link to drill down into a specific service. For example, you might enter :strong:`Trace Ingest Dashboard`."
-msgstr ":strong:`リンクラベル` を入力します。これは、特定のサービスにドリルダウンするためにグローバルデータリンクを使用する際に選択するものです。たとえば、:strong:`トレース取り込みダッシュボード` と入力します。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:81
+msgid "Enter a :guilabel:`Link Label`. This is what you select when you want to use the global data link to drill down into a specific service. For example, you might enter :guilabel:`Trace Ingest Dashboard`."
+msgstr ":guilabel:`Link Label` を入力します。これは、特定のサービスにドリルダウンするためにグローバルデータリンクを使用する際に選択するものです。たとえば、:guilabel:`Trace Ingest Dashboard` と入力します。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:85
-msgid "Select :strong:`Choose Dashboard` and select the dashboard you want to associate with the global data link."
-msgstr ":strong:`ダッシュボードの選択` を選択し、グローバルデータリンクに関連付けたいダッシュボードを選択します。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:84
+msgid "Select :guilabel:`Choose Dashboard` and select the dashboard you want to associate with the global data link."
+msgstr ":guilabel:`Choose Dashboard` を選択し、グローバルデータリンクに関連付けたいダッシュボードを選択します。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:86
-msgid "Select :strong:`Save`. When you view a service that matches the :strong:`Show On` value, you can carry the entire context of the service to the dashboard."
-msgstr ":strong:`保存` を選択します。:strong:`表示先` の値に一致するサービスを表示する際、サービスの完全なコンテキストがダッシュボードに届きます。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:85
+msgid "Select :guilabel:`Save`. When you view a service that matches the :guilabel:`Show On` value, you can carry the entire context of the service to the dashboard."
+msgstr ":guilabel:`Save` を選択します。:guilabel:`Show On` の値に一致するサービスを表示すると、サービスの完全なコンテキストがダッシュボードに引き継がれます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:92
+#: ../../apm/apm-data-links/apm-create-data-links.rst:91
msgid "Link APM properties to Splunk platform logs"
msgstr "APMのプロパティをSplunkプラットフォームのログにリンクする"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:94
+#: ../../apm/apm-data-links/apm-create-data-links.rst:93
msgid "You can create a global data link that passes information about an APM service, trace, or span to a Splunk Cloud Platform or Splunk Enterprise search. This means you can create a global data link that runs a Splunk search query to parse logs for any service, trace ID, or span ID you're analyzing."
msgstr "APMのサービス、トレース、スパンに関する情報をSplunk Cloud PlatformまたはSplunk Enterpriseのサーチに渡すグローバルデータリンクを作成できます。つまり、分析中のサービス、トレースID、スパンIDのログを解析するSplunkサーチクエリを実行するグローバルデータリンクを作成できます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:96
-msgid "Create a global data link for each APM property that you want to connect to logs in a Splunk instance. For example, if you want to connect a trace ID to a logs in a Splunk instance, create a global data link that carries the trace ID context to the Splunk instance. To connect a span ID to logs in a Splunk instance, create a global data link that carries the span ID context to the Splunk instance."
-msgstr "Splunkインスタンスのログに接続したいAPMのプロパティごとにグローバルデータリンクを作成します。たとえば、トレースIDをSplunkインスタンスのログに接続する場合は、トレースIDのコンテキストをSplunkインスタンスに届けるグローバルデータリンクを作成します。スパンIDをSplunkインスタンスのログに接続する場合は、スパンIDのコンテキストをSplunkインスタンスに届けるグローバルデータリンクを作成します。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:95
+msgid ""
+"Create a global data link for each APM property that you want to connect to logs in a Splunk instance. For example, if you want to connect a trace ID to a logs in a Splunk instance, create a global data link that carries the trace ID context to the Splunk instance. To connect a span ID to logs in a Splunk instance, create a global data link that carries the span ID context to the "
+"Splunk instance."
+msgstr ""
+"Splunkインスタンスのログに接続したいAPMのプロパティごとにグローバルデータリンクを作成します。たとえば、トレースIDをSplunkインスタンスのログに接続する場合は、トレースIDのコンテキストをSplunkインスタンスに届けるグローバルデータリンクを作成します。スパンIDをSplunkインスタンスのログに接続する場合は、スパンIDのコンテキストをSplunkインスタンスに届けるグローバルデータリンクを作成します。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:97
+msgid ""
+"The following task describes how to create a global data link for a trace ID. The global data link runs a Splunk search query for log events that include a specific trace ID in a Splunk instance. The process is the same for creating a global data link for a service, span ID, or span tag: use a :guilabel:`Show On` value for the property you want to create a global data link for."
+msgstr ""
+"次のタスクでは、トレース ID のグローバルデータリンクを作成する方法を説明します。グローバルデータリンクは、Splunk インスタンスの特定のトレース ID を含むログイベントに対して Splunk 検索クエリを実行します。プロセスは、サービス、スパン ID、またはスパンタグのグローバルデータリンクを作成する場合と同じです。グローバルデータリンクを作成するプロパティには、:guilabel:`Show On` 値を使用しま"
+"す。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:98
-msgid "The following task describes how to create a global data link for a trace ID. The global data link runs a Splunk search query for log events that include a specific trace ID in a Splunk instance. The process is the same for creating a global data link for a service, span ID, or span tag: use a :strong:`Show On` value for the property you want to create a global data link for."
-msgstr "次のタスクでは、トレースIDのグローバルデータリンクを作成する方法を説明します。このグローバルデータリンクは、Splunkインスタンスで特定のトレースIDを含むログイベントのSplunkサーチクエリを実行します。このプロセスは、サービス、スパンID、またはスパンタグのグローバルデータリンクを作成する場合でも同様です。グローバルデータリンクを作成したいプロパティの :strong:`表示先` の値を使用してください。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:101
+msgid "Enter a :guilabel:`Link Label`. This is what you select when you want to use the global data link to drill down into a specific trace ID. For example, you might enter :guilabel:`Splunk Cloud Platform Search`."
+msgstr ":guilabel:`Link Label` を入力します。これは、特定のトレースIDにドリルダウンするためにグローバルデータリンクを使用する際に選択するものです。たとえば、:guilabel:`Splunk Cloud Platform Search` と入力します。"
#: ../../apm/apm-data-links/apm-create-data-links.rst:102
-msgid "Enter a :strong:`Link Label`. This is what you select when you want to use the global data link to drill down into a specific trace ID. For example, you might enter :strong:`Splunk Cloud Platform Search`."
-msgstr ":strong:`リンクラベル` を入力します。これは、グローバルデータリンクを使用して特定のトレースIDにドリルダウンする際に選択するものです。たとえば、:strong:`Splunk Cloud Platform サーチ` と入力します。"
+msgid "For :guilabel:`Link to`, select :guilabel:`Splunk`."
+msgstr ":guilabel:`Link to` の場合は、:guilabel:`Splunk` を選択します。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:103
-msgid "For :strong:`Link to`, select :strong:`Splunk`."
-msgstr ":strong:`リンク先` には、:strong:`Splunk` を選択します。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:103 ../../apm/apm-data-links/apm-create-data-links.rst:125
+msgid "For :guilabel:`Show On`, select :guilabel:`Any Value of` and enter :guilabel:`trace_id`."
+msgstr ":guilabel:`Show On` の場合は、:guilabel:`Any Value of` を選択し、:guilabel:`trace_id` を入力します。"
#: ../../apm/apm-data-links/apm-create-data-links.rst:104 ../../apm/apm-data-links/apm-create-data-links.rst:126
-msgid "For :strong:`Show On`, select :strong:`Any Value of` and enter :strong:`trace_id`."
-msgstr ":strong:`表示先` には、:strong:`任意の値` を選択し、:strong:`trace_id` を入力します。"
-
-#: ../../apm/apm-data-links/apm-create-data-links.rst:105 ../../apm/apm-data-links/apm-create-data-links.rst:127
-msgid "If you want the global data link to display based on the :strong:`Show On` value and one or more additional conditions, select :strong:`Add Conditions`. To define a condition based on a property name, select :strong:`Any Value of` and enter a property name. To define a condition based on a property name and a specific value, select :strong:`Property:Value Pair` and enter a property name and value pair. If you define multiple conditions, all conditions must be met for the link to display."
-msgstr "グローバルデータリンクを :strong:`表示先` の値と1つ以上の追加条件に基づいて表示させたい場合は、:strong:`条件の追加` を選択します。プロパティ名に基づいて条件を定義するには、:strong:`任意の値` を選択し、プロパティ名を入力します。プロパティ名と特定の値に基づいて条件を定義する には、:strong:`プロパティ:値ペア` を選択し、プロパティ名と値のペアを入力します。複数の条件を定義すると 、リンクが表示されるためにはすべての条件が満たされる必要があります。"
+msgid ""
+"If you want the global data link to display based on the :guilabel:`Show On` value and one or more additional conditions, select :guilabel:`Add Conditions`. To define a condition based on a property name, select :guilabel:`Any Value of` and enter a property name. To define a condition based on a property name and a specific value, select :guilabel:`Property:Value Pair` and enter "
+"a property name and value pair. If you define multiple conditions, all conditions must be met for the link to display."
+msgstr ""
+"グローバルデータリンクを :guilabel:`Show On` の値と1つ以上の追加条件に基づいて表示させたい場合は、:guilabel:`Add Conditions` を選択します。プロパティ名に基づいて条件を定義するには、:guilabel:`Any Value of` を選択し、プロパティ名を入力します。プロパティ名と特定の値に基づいて条件を定義するには、:guilabel:`Property:Value Pair` を選択し、プロパティ名と値のペアを入力します。複数の条件"
+"を定義すると、リンクが表示されるためにはすべての条件が満たされる必要があります。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:106
-msgid "Enter the Splunk instance fully qualified domain name (FQDN) and port of your Splunk instance for the :strong:`URL`. For example, you might enter :strong:`https://.splunkcloud.com:443` for a Splunk Cloud Platform instance. You might also specify the FQDN and port for a Splunk Enterprise instance you have access to."
-msgstr ":strong:`URL` に、Splunkインスタンスの完全修飾ドメイン名(FQDN)とポートを入力します。たとえば、Splunk Cloud Platformのインスタンスの場合は、:strong:`https://.splunkcloud.com:443` と入力することになります。また、アクセス可能なSplunk EnterpriseインスタンスのFQDNとポートを指定することもできます。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:105
+msgid "Enter the Splunk instance fully qualified domain name (FQDN) and port of your Splunk instance for the :guilabel:`URL`. For example, you might enter :guilabel:`https://.splunkcloud.com:443` for a Splunk Cloud Platform instance. You might also specify the FQDN and port for a Splunk Enterprise instance you have access to."
+msgstr ":guilabel:`URL` に、Splunkインスタンスの完全修飾ドメイン名(FQDN)とポートを入力します。たとえば、Splunk Cloud Platformのインスタンスの場合は、:guilabel:`https://.splunkcloud.com:443` と入力することになります。また、アクセス可能なSplunk EnterpriseインスタンスのFQDNとポートを指定することもできます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:107 ../../apm/apm-data-links/apm-create-data-links.rst:130
-msgid "Keep the :strong:`Minimum Time Window` at :strong:`1m`."
-msgstr ":strong:`最小時間窓` は :strong:`1m` に保ちます。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:106 ../../apm/apm-data-links/apm-create-data-links.rst:129
+msgid "Keep the :guilabel:`Minimum Time Window` at :guilabel:`1m`."
+msgstr ":guilabel:`Minimum Time Window` を :guilabel:`1m` に維持します。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:108
-msgid "If your Splunk instance refers to fields differently than APM refers to them, associate APM fields with related fields in Splunk. For example, ``sf_service`` in APM could be ``service`` in your Splunk instance. If something like this is the case, specify the :strong:`Splunk Observability Cloud Term` value and map it to an :strong:`External Term` value."
-msgstr "SplunkインスタンスがAPMとは異なる方法でフィールドを参照している場合は、APMのフィールドをSplunkの関連フィールドに関連付けます。たとえば、APM の ``sf_service`` は、Splunkインスタンスでは ``service`` になる可能性があります。このような場合には、:strong:`Splunk Observability Cloudの用語` の値を指定し、:strong:`外部の用語` の値にマッピングします。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:107
+msgid "If your Splunk instance refers to fields differently than APM refers to them, associate APM fields with related fields in Splunk. For example, ``sf_service`` in APM could be ``service`` in your Splunk instance. If something like this is the case, specify the :guilabel:`Splunk Observability Cloud Term` value and map it to an :guilabel:`External Term` value."
+msgstr "SplunkインスタンスがAPMとは異なる方法でフィールドを参照している場合は、APMのフィールドをSplunkの関連フィールドに関連付けます。たとえば、APMの ``sf_service`` は、Splunkインスタンスでは ``service`` になる可能性があります。このような場合には、:guilabel:`Splunk Observability Cloud Term` の値を指定し、:guilabel:`External Term` の値にマッピングします。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:109 ../../apm/apm-data-links/apm-create-data-links.rst:132
-msgid "Select :strong:`Save`. When you view a specific trace, you can drill down into this global data link and view a Splunk search that includes all log events with the trace ID within the time range of the trace."
-msgstr ":strong:`保存` を選択します。特定のトレースを表示する際、このグローバルデータリンクにドリルダウンして、そのトレースの時間範囲内で、このトレースIDを持つすべてのログイベントを含むSplunkサーチを表示できます。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:108 ../../apm/apm-data-links/apm-create-data-links.rst:131
+msgid "Select :guilabel:`Save`. When you view a specific trace, you can drill down into this global data link and view a Splunk search that includes all log events with the trace ID within the time range of the trace."
+msgstr ":guilabel:`Save` を選択します。特定のトレースを表示する際、このグローバルデータリンクにドリルダウンして、そのトレースの時間範囲内で、このトレースIDを持つすべてのログイベントを含むSplunkサーチを表示できます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:115
+#: ../../apm/apm-data-links/apm-create-data-links.rst:114
msgid "Link APM properties to Kibana logs"
msgstr "APMのプロパティをKibanaのログにリンクする"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:117
+#: ../../apm/apm-data-links/apm-create-data-links.rst:116
msgid "You can create a global data link that passes information about an APM service, trace, or span to a Kibana URL. By passing APM properties and their characteristics in a Kibana URL, you can transfer context from Splunk Observability Cloud to Kibana."
msgstr "APMのサービス、トレース、スパンに関する情報をKibana URLに渡すグローバルデータリンクを作成できます。Kibana URLにAPMのプロパティとその特性を渡すことで、Splunk Observability CloudからKibanaにコンテキストを転送できます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:119
-msgid "The following task describes how to create a global data link for a log filter in Kibana for a selected trace ID. You can also filter on other APM properties: use a :strong:`Show On` value for the property you want to create a global data link for."
-msgstr "次のタスクでは、選択したトレース ID に対してKibanaのログフィルター用のグローバルデータリンクを作成する方法を説明します。他のAPMプロパティでフィルタリングすることもできます。:strong:`表示先` の値に、グローバルリンクを作成したいプロパティを指定します。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:118
+msgid "The following task describes how to create a global data link for a log filter in Kibana for a selected trace ID. You can also filter on other APM properties: use a :guilabel:`Show On` value for the property you want to create a global data link for."
+msgstr "次のタスクでは、選択したトレース ID に対してKibanaのログフィルター用のグローバルデータリンクを作成する方法を説明します。他のAPMプロパティでフィルタリングすることもできます。:guilabel:`Show On` の値に、グローバルリンクを作成したいプロパティを指定します。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:121 ../../apm/apm-data-links/apm-use-data-links.rst:22 ../../apm/apm-data-links/apm-use-data-links.rst:30 ../../apm/apm-data-links/apm-use-data-links.rst:46 ../../apm/apm-data-links/apm-use-data-links.rst:62 ../../apm/apm-data-links/apm-use-data-links.rst:82
+#: ../../apm/apm-data-links/apm-create-data-links.rst:120 ../../apm/apm-data-links/apm-use-data-links.rst:26 ../../apm/apm-data-links/apm-use-data-links.rst:34 ../../apm/apm-data-links/apm-use-data-links.rst:49 ../../apm/apm-data-links/apm-use-data-links.rst:65 ../../apm/apm-data-links/apm-use-data-links.rst:85
msgid "Open the Splunk Observability Cloud main menu."
msgstr "Splunk Observability Cloudのメインメニューを開きます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:122
+#: ../../apm/apm-data-links/apm-create-data-links.rst:121
msgid "Hover over :guilabel:`Data Configuration` and select :guilabel:`Global Data Links`."
msgstr ":guilabel:`Data Configuration` にカーソルを合わせ、:guilabel:`Global Data Links` を選択します。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:123
+msgid "Enter a :guilabel:`Link Label`. This is what you select when you want to use the global data link to drill down into a specific trace ID. For example, you might enter :guilabel:`Kibana filter`."
+msgstr ":guilabel:`Link Label` を入力します。これは、特定のトレースIDにドリルダウンするためにグローバルデータリンクを使用する際に選択するものです。たとえば、:guilabel:`Kibana filter` と入力します。"
+
#: ../../apm/apm-data-links/apm-create-data-links.rst:124
-msgid "Enter a :strong:`Link Label`. This is what you select when you want to use the global data link to drill down into a specific trace ID. For example, you might enter :strong:`Kibana filter`."
-msgstr ":strong:`リンクラベル` を入力します。これは、グローバルデータリンクを使用して特定のトレースIDにドリルダウンする際に選択するものです。たとえば、:strong:`Kibanaフィルター` と入力します。"
+msgid "For :guilabel:`Link to`, select :guilabel:`Kibana`."
+msgstr ":guilabel:`Link to` の場合は、:guilabel:`Kibana` を選択します。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:125
-msgid "For :strong:`Link to`, select :strong:`Kibana`."
-msgstr ":strong:`リンク先` には、:strong:`Kibana` を選択します。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:127
+msgid ""
+"Enter a Kibana URL that includes the :guilabel:`trace_id` field in a log filter for the :guilabel:`URL`. For example, you can enter a URL like this one: :code:`http:///kibana/app/kibana#/discover?_g=(refreshInterval:(display:Off,pause:!f,value:0),time:(from:'{{start_time}}',mode:absolute,to:'{{end_time}}'))&_a=(columns:!(_source),interval:auto,query:"
+"(language:kuery,query:'traceId:{{value}}'),sort:!('@timestamp',desc))`"
+msgstr ""
+":guilabel:`URL` のログフィルターに :guilabel:`trace_id` フィールドを含む Kibana URLを入力します。たとえば、次のようなURLを入力します::code:`http:///kibana/app/kibana#/discover?_g=(refreshInterval:(display:Off,pause:!f,value:0),time:(from:'{{start_time}}',mode:absolute,to:'{{end_time}}'))&_a=(columns:!(_source),interval:auto,query:(language:kuery,query:'traceId:"
+"{{value}}'),sort:!('@timestamp',desc))`"
#: ../../apm/apm-data-links/apm-create-data-links.rst:128
-msgid "Enter a Kibana URL that includes the :strong:`trace_id` field in a log filter for the :strong:`URL`. For example, you can enter a URL like this one: :code:`http:///kibana/app/kibana#/discover?_g=(refreshInterval:(display:Off,pause:!f,value:0),time:(from:'{{start_time}}',mode:absolute,to:'{{end_time}}'))&_a=(columns:!(_source),interval:auto,query:(language:kuery,query:'traceId:{{value}}'),sort:!('@timestamp',desc))`"
-msgstr ":strong:`URL` のログフィルターに :strong:`trace_id` フィールドを含む Kibana URLを入力します。たとえば、次のようなURLを入力します: :code:`http:///kibana/app/kibana#/discover?_g=(refreshInterval:(display:Off,pause:!f,value:0),time:(from:'{{start_time}}',mode:absolute,to:'{{end_time}}'))&_a=(columns:!(_source),interval:auto,query:(language:kuery,query:'traceId:{{value}}'),sort:!('@timestamp',desc))`"
-
-#: ../../apm/apm-data-links/apm-create-data-links.rst:129
-msgid "Enter your preferred :strong:`Time Format`."
-msgstr "お好みの :strong:`時間形式` を入力します。"
+msgid "Enter your preferred :guilabel:`Time Format`."
+msgstr "希望する :guilabel:`Time Format` を入力します。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:131
-msgid "If Kibana refers to fields differently than APM refers to them, associate APM fields with related fields in Kibana. For example, ``sf_service`` in APM could be ``service`` in Kibana. If something like this is the case, specify the :strong:`Splunk Observability Cloud Term` and :strong:`External Term`. If the field names are the same, skip this step."
-msgstr "KibanaがAPMとは異なる方法でフィールドを参照している場合は、APMのフィールドをKibanaの関連フィールドに関連付けます。たとえば、APMの ``sf_service`` は、Kibanaでは ``service`` になる可能性があります。このような場合には、:strong:`Splunk Observability Cloudの用語` と :strong:`外部の用語` を指定します。フィールド名が同じ場合は、この手順を飛ばしてください。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:130
+msgid "If Kibana refers to fields differently than APM refers to them, associate APM fields with related fields in Kibana. For example, ``sf_service`` in APM could be ``service`` in Kibana. If something like this is the case, specify the :guilabel:`Splunk Observability Cloud Term` and :guilabel:`External Term`. If the field names are the same, skip this step."
+msgstr "KibanaがAPMとは異なる方法でフィールドを参照している場合は、APMのフィールドをKibanaの関連フィールドに関連付けます。たとえば、APMの ``sf_service`` は、Kibanaでは ``service`` になる可能性があります。このような場合には、:guilabel:`Splunk Observability Cloud Term` と :guilabel:`External Term` を指定します。フィールド名が同じ場合は、この手順を飛ばしてください。"
#: ../../apm/apm-data-links/apm-create-data-links.rst:136
+msgid "Link APM properties to Splunk AppDynamics tiers"
+msgstr "APMプロパティをSplunk AppDynamics階層にリンクする"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:139 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:11 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:11 ../../apm/apm-data-links/apm-datalinks-terraform/apm-data-links-terraform.rst:19
+msgid "You can only create a global data link from a Splunk APM inferred service to a Splunk AppDynamics tier if the tier is monitored by a Splunk AppDynamics SaaS environment."
+msgstr "Splunk APM推定サービスから Splunk AppDynamics階層へのグローバルデータリンクを作成できるのは、その階層がSplunk AppDynamics SaaS環境で監視されている場合のみです。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:141
+msgid "This section describes how to create global data links to Splunk AppDynamics tiers using the user interface. To programmatically create global data links with Terraform, see :ref:`apm-create-data-links-terraform`."
+msgstr "このセクションでは、ユーザーインターフェイスを使用してSplunk AppDynamics階層へのグローバルデータリンクを作成する方法について説明します。Terraformを使用してプログラムでグローバルデータリンクを作成するには、:ref:`apm-create-data-links-terraform` を参照してください。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:144
+msgid "Select :guilabel:`New link`."
+msgstr ":guilabel:`New link` を選択します。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:145
+msgid "Enter a :guilabel:`Link label`. This is what you select when you want to use the global data link to drill down into a specific Splunk AppDynamics tier. For example, you might enter :guilabel:`Splunk AppDynamics tier`."
+msgstr ":guilabel:`Link label` を入力します。これは、特定のSplunk AppDynamics 階層にドリルダウンするためにグローバルデータリンクを使用する際に選択するものです。たとえば、:guilabel:`Splunk AppDynamics tier` と入力します。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:146
+msgid "For :guilabel:`Link to`, select :guilabel:`AppDynamics tier`."
+msgstr ":guilabel:`Link to` の場合は、:guilabel:`AppDynamics tier` を選択します。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:147
+msgid "For :guilabel:`Show on`, select an inferred service from the list. For more information on inferred services, see :ref:`apm-inferred-services`."
+msgstr ":guilabel:`Show on` では、リストから推定サービスを選択します。推定サービスの詳細については、:ref:`apm-inferred-services` を参照してください。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:148
+msgid "For :guilabel:`URL`, enter the Splunk AppDynamics tier URL. To obtain the tier URL, navigate to the tier in the Splunk AppDynamics UI and copy the URL from the browser. Ensure that you capture the entire URL and that it contains the controller URL, application ID, and application component."
+msgstr ":guilabel:`URL` の場合は、Splunk AppDynamics階層のURLを入力します。階層のURLを取得するには、Splunk AppDynamics UIで階層に移動し、ブラウザからURLをコピーします。URL全体をキャプチャし、コントローラURL、アプリケーションID、アプリケーションコンポーネントが含まれていることを確認します。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:149
+msgid "Select :guilabel:`Save`. When you view an inferred service in the :guilabel:`APM Service Map`, you can select the data link to navigate to the service in Splunk AppDynamics."
+msgstr ":guilabel:`Save` を選択します。:guilabel:`APM Service Map` で推定サービスが表示すると、データリンクを選択してSplunk AppDynamicsのサービスに移動できます。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:152
msgid "Transfer APM context in a custom URL"
msgstr "カスタムURLにAPMのコンテキストを転送する"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:138
+#: ../../apm/apm-data-links/apm-create-data-links.rst:154
msgid "You can create a global data link that passes information about an APM service, trace, or span to a custom URL."
msgstr "APMのサービス、トレース、またはスパンに関する情報をカスタムURLに渡すグローバルデータリンクを作成できます。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:140
+#: ../../apm/apm-data-links/apm-create-data-links.rst:156
msgid "For example, you can specify a custom URL like this to transfer the context of a service to a URL: :code:`https://www.example.com/search/?field={{key}}&value={{value}}&service={{properties.sf_service}}&st={{start_time}}&et={{end_time}}`."
msgstr "例えば、次のようなカスタムURLを指定して、サービスのコンテキストをURLに転送することができます: :code:`https://www.example.com/search/?field={{key}}&value={{value}}&service={{properties.sf_service}}&st={{start_time}}&et={{end_time}}`。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:143 ../../apm/apm-scenarios/configure-business-workflows.rst:47 ../../apm/apm-scenarios/custom-metricset.rst:64 ../../apm/apm-scenarios/endpoint-performance.rst:90 ../../apm/apm-scenarios/historical-data.rst:44 ../../apm/apm-scenarios/monitor-business-workflows.rst:48 ../../apm/apm-scenarios/monitor-services.rst:39 ../../apm/apm-scenarios/service-map.rst:66 ../../apm/apm-scenarios/services-impact-business-workflows.rst:53
-#: ../../apm/apm-scenarios/specific-trace.rst:55 ../../apm/apm-scenarios/troubleshoot-business-workflows.rst:80 ../../apm/apm-scenarios/troubleshoot-slow-traces.rst:82 ../../apm/apm-scenarios/troubleshoot-tag-spotlight.rst:80 ../../apm/apm-scenarios/troubleshoot-traces.rst:64 ../../apm/apm-spans-traces/trace-analyzer.rst:149 ../../apm/db-query-perf/db-perf-redis-scenario.rst:75 ../../apm/db-query-perf/db-perf-reference.rst:95 ../../apm/db-query-perf/db-perf-scenario.rst:111
-#: ../../apm/db-query-perf/db-perf-troubleshooting.rst:75 ../../apm/db-query-perf/turn-on-db-perf.rst:47 ../../apm/profiling/memory-profiling-scenario.rst:54 ../../apm/profiling/profiling-scenario.rst:96 ../../apm/span-tags/tag-spotlight.rst:62
+#: ../../apm/apm-data-links/apm-create-data-links.rst:159 ../../apm/apm-scenarios/configure-business-workflows.rst:47 ../../apm/apm-scenarios/custom-metricset.rst:64 ../../apm/apm-scenarios/endpoint-performance.rst:90 ../../apm/apm-scenarios/historical-data.rst:44 ../../apm/apm-scenarios/monitor-business-workflows.rst:48 ../../apm/apm-scenarios/monitor-services.rst:39
+#: ../../apm/apm-scenarios/service-map.rst:66 ../../apm/apm-scenarios/services-impact-business-workflows.rst:53 ../../apm/apm-scenarios/specific-trace.rst:55 ../../apm/apm-scenarios/troubleshoot-business-workflows.rst:80 ../../apm/apm-scenarios/troubleshoot-slow-traces.rst:82 ../../apm/apm-scenarios/troubleshoot-tag-spotlight.rst:80 ../../apm/apm-scenarios/troubleshoot-traces.rst:64
+#: ../../apm/apm-spans-traces/trace-analyzer.rst:149 ../../apm/db-query-perf/db-perf-redis-scenario.rst:75 ../../apm/db-query-perf/db-perf-reference.rst:95 ../../apm/db-query-perf/db-perf-scenario.rst:111 ../../apm/db-query-perf/db-perf-troubleshooting.rst:75 ../../apm/db-query-perf/turn-on-db-perf.rst:47 ../../apm/profiling/memory-profiling-scenario.rst:54
+#: ../../apm/profiling/profiling-scenario.rst:96 ../../apm/span-tags/tag-spotlight.rst:62
msgid "Learn more"
msgstr "さらに詳しく"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:145
+#: ../../apm/apm-data-links/apm-create-data-links.rst:161
msgid "For detailed steps for creating global data links to a custom URL, see :ref:`link-metadata-to-content`."
msgstr "カスタムURLへのグローバルデータリンクを作成する詳細な手順については、:ref:`link-metadata-to-content` を参照してください。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:146
+#: ../../apm/apm-data-links/apm-create-data-links.rst:162
msgid "See an :ref:`example-global-data-link-config`."
msgstr ":ref:`example-global-data-link-config` を参照してください。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:147
+#: ../../apm/apm-data-links/apm-create-data-links.rst:163
msgid "For parameters that you can use to transfer context in custom URLs, see :ref:`apm-data-links-parameters`."
msgstr "カスタムURLにコンテキストを転送するために使用できるパラメータについては、:ref:`apm-data-links-parameters` を参照してください。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:153
+#: ../../apm/apm-data-links/apm-create-data-links.rst:169
msgid "Link databases and inferred services to Infrastructure Monitoring dashboards"
msgstr "データベースと推定サービスをInfrastructure Monitoringのダッシュボードにリンクする"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:155
-msgid "Create a global data link specifically for a single inferred service to associate a navigator or dashboard with the inferred service as the top-ranked navigator or dashboard. The top-ranked entity is the :strong:`View Navigator/View Dashboard` option in the :strong:`Monitoring` tab when you view a service from the service list or service map."
-msgstr "単一の推定サービス専用のグローバルデータリンクを作成して、ナビゲーターまたはダッシュボードを、トップランクのナビゲーターまたはダッシュボードとして推定サービスに関連付けます。トップランクのエンティティは、サービスリストまたはサービスマップからサービスを表示する際の「 :strong:` 監視` 」タブの「 :strong:`ナビゲーターの表示/ダッシュボードの表示` 」のオプションです。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:171
+msgid "Create a global data link specifically for a single inferred service to associate a navigator or dashboard with the inferred service as the top-ranked navigator or dashboard. The top-ranked entity is the :guilabel:`View Navigator/View Dashboard` option in the :guilabel:`Monitoring` tab when you view a service from the service list or service map."
+msgstr "単一の推定サービス専用のグローバルデータリンクを作成して、ナビゲーターまたはダッシュボードを、トップランクのナビゲーターまたはダッシュボードとして推定サービスに関連付けます。トップランクのエンティティは、サービスリストまたはサービスマップからサービスを表示する際の :guilabel:`Monitoring` タブの :guilabel:`View Navigator/View Dashboard` オプションです。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:157
-msgid "Triggers for global data links for navigators or dashboards that use wildcards (:strong:`*`) for service names can't be top-ranked navigators or dashboards for inferred services."
-msgstr "サービス名にワイルドカード( :strong:`*` )を使用するナビゲーターまたはダッシュボードのグローバルデータリンクのトリガーには、推定サービスのトップランクのナビゲーターまたはダッシュボードを指定できません。"
+#: ../../apm/apm-data-links/apm-create-data-links.rst:173
+msgid "Triggers for global data links for navigators or dashboards that use wildcards (:guilabel:`*`) for service names can't be top-ranked navigators or dashboards for inferred services."
+msgstr "サービス名にワイルドカード( :guilabel:`*` )を使用するナビゲーターまたはダッシュボードのグローバルデータリンクのトリガーには、推定サービスのトップランクのナビゲーターまたはダッシュボードを指定できません。"
-#: ../../apm/apm-data-links/apm-create-data-links.rst:159
+#: ../../apm/apm-data-links/apm-create-data-links.rst:175
msgid ""
-"For example, a navigator or dashboard associated with a global data link that contains a :strong:`Show On` value of ``sf_service:*`` can't be a top-ranked navigator or dashboard for an inferred service. To create a global data link that acts as a default navigator or dashboard for an inferred service from the :strong:`Monitoring` tab, the :strong:`Show On` value must include the name of the inferred service. For example, if you are creating a global data link for a default navigator or dashboard for "
-"the inferred service ``mydb``, the :strong:`Show On` value must be ``sf_service:mydb``."
+"For example, a navigator or dashboard associated with a global data link that contains a :guilabel:`Show On` value of ``sf_service:*`` can't be a top-ranked navigator or dashboard for an inferred service. To create a global data link that acts as a default navigator or dashboard for an inferred service from the :guilabel:`Monitoring` tab, the :guilabel:`Show On` value must "
+"include the name of the inferred service. For example, if you are creating a global data link for a default navigator or dashboard for the inferred service ``mydb``, the :guilabel:`Show On` value must be ``sf_service:mydb``."
msgstr ""
-"たとえば、:strong:`表示先` の値として ``sf_service:*`` を含むグローバルデータリンクに関連付けられるナビゲーター/ダッシュボードには、推定サービスのトップランクナビゲーター/ダッシュボードを指定できません。:strong:`監視` タブから推定サービスのデフォルトのナビゲーター/ダッシュボードとして機能するグローバルデータリンクを作成する場合は、:strong:`表示先` の値に推定サービスの名前を含める必要があります。たとえば、推定サービス ``mydb`` のデフォルトのナビゲーター/ダッシュボードのグローバルデータリンクを作成す"
-"る場合、:strong:`表示先` の値には ``sf_service:mydb`` を指定する必要があります。"
+"たとえば、``sf_service:*`` の値として :guilabel:`Show On` を含むグローバルデータリンクに関連付けられるナビゲーター/ダッシュボードには、推定サービスのトップランクナビゲーター/ダッシュボードを指定できません。:guilabel:`Monitoring` タブから推定サービスのデフォルトのナビゲーター/ダッシュボードとして機能するグローバルデータリンクを作成する場合は、 :guilabel:`Show On` の値に推定サー"
+"ビスの名前を含める必要があります。たとえば、推定サービス ``mydb`` のデフォルトのナビゲーター/ダッシュボードのグローバルデータリンクを作成する場合、 :guilabel:`Show On` の値には ``sf_service:mydb`` を指定する必要があります。"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:178 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:74 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:169
+msgid "Next steps"
+msgstr "次のステップ"
+
+#: ../../apm/apm-data-links/apm-create-data-links.rst:180
+msgid "To use global data links in the user interface, see :ref:`apm-use-data-links`."
+msgstr "ユーザーインターフェイスでグローバルデータリンクを使用するには、:ref:`apm-use-data-links` を参照してください。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:-1
+msgid "Learn how to use a Node.js script to create a batch of global data links to Splunk AppDynamics tiers."
+msgstr "Node.jsスクリプトを使用して、Splunk AppDynamics階層へのグローバルデータリンクを一括作成する方法を学習します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:5
+msgid "Create a batch of global data links to Splunk AppDynamics tiers with a Node.js script"
+msgstr "Node.jsスクリプトでSplunk AppDynamics階層へのグローバルデータリンクを一括作成する"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:13 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:13
+msgid "This method can only be used to create global data links for inferred services that do not have existing global data links. If your inferred service already has an existing global data link, :ref:`use the UI ` to create additional global data links."
+msgstr "このメソッドは、既存のグローバルデータリンクを持たない推定サービスのグローバルデータリンクを作成するためにのみ使用できます。推定サービスがすでに既存のグローバルデータリンクを持っている場合は、:ref:`UI` を使用して追加のグローバルデータリンクを作成します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:15 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:15 ../../apm/apm-data-links/apm-datalinks-terraform/apm-data-links-terraform.rst:21
+msgid "When a transaction goes through a service monitored by Splunk APM as well as a tier monitored by Splunk AppDynamics, the service monitored by Splunk APM is considered an inferred service."
+msgstr "トランザクションがSplunk APMが監視するサービスとSplunk AppDynamicsが監視する階層を経由する場合、Splunk APMが監視するサービスは推定サービスとみなされます。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:17 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:17 ../../apm/apm-data-links/apm-datalinks-terraform/apm-data-links-terraform.rst:23
+msgid "Create a global data link to link a Splunk APM inferred service to a Splunk AppDynamics tier. When you view the inferred service in Splunk APM, you can select the data link to navigate to the tier in the Splunk AppDynamics user interface."
+msgstr "グローバルデータリンクを作成して、Splunk APM推定サービスをSplunk AppDynamics階層にリンクします。Splunk APMで推定サービスを表示すると、データリンクを選択してSplunk AppDynamicsユーザーインターフェイスで階層に移動できます。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:19
+msgid "You can programmatically create global data links to Splunk AppDynamics tiers with a CSV file and Splunk Node.js script, which generates and runs a Terraform script that creates the data links. This process does not require running Terraform commands."
+msgstr "データリンクを作成するTerraformスクリプトを生成して実行するCSVファイルとSplunk Node.jsスクリプトを使用して、Splunk AppDynamics階層へのグローバルデータリンクをプログラムで作成できます。このプロセスではTerraformコマンドを実行する必要はありません。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:22 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:22 ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:13 ../../apm/apm-spans-traces/extended-trace-retention.rst:19 ../../apm/db-query-perf/turn-on-db-perf.rst:17
+#: ../../apm/profiling/get-data-in-profiling.rst:14 ../../apm/set-up-apm/apm-gdi.rst:13 ../../apm/set-up-apm/customize-apm.rst:15 ../../apm/span-tags/cmms.rst:22 ../../apm/span-tags/index-span-tags.rst:22 ../../apm/workflows/create-workflow-rule.rst:21
+msgid "Prerequisites"
+msgstr "前提条件"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:24 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:24
+msgid "To create a global data link to a Splunk AppDynamics tier using the Node.js script, you need:"
+msgstr "Node.jsスクリプトを使用してSplunk AppDynamics階層にグローバルデータリンクを作成するには、以下の手順が必要です:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:26 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:26 ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:17
+msgid "A Splunk Observability Cloud account with the admin role."
+msgstr "管理者のロールを持つSplunk Observability Cloudアカウント。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:27
+msgid "Node.js version 20.18.1 or higher."
+msgstr "Node.jsバージョン20.18.1以上。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:28 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:27 ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:18
+msgid "The latest version of Terraform."
+msgstr "Terraformの最新バージョン。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:31
+msgid "Create a batch of global data links"
+msgstr "グローバルデータリンクの一括作成"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:33
+msgid "To create a batch of global data links:"
+msgstr "グローバルデータリンクを一括作成するには:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:43
+msgid "Create a CSV file to define the data links you want to create. The CSV file must match the following format, which uses three columns to denote the OllyInferredServiceName, AppDLinkLabel, and AppDLink:"
+msgstr "作成するデータリンクを定義するCSVファイルを作成します。CSVファイルは、OllyInferredServiceName、AppDLinkLabel、AppDLinkを示す3つの列を使用する以下の形式と一致する必要があります:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst
+msgid "This image shows a sample file for creating a batch of global data links to Splunk AppDynamics."
+msgstr "この画像は、Splunk AppDynamicsへのグローバルデータリンクを一括作成するためのサンプルファイルです。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:40
+msgid "For OllyInferredServiceName, enter the Splunk APM inferred service name."
+msgstr "OllyInferredServiceNameには、Splunk APM推測サービス名を入力します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:41
+msgid "For AppDLinkLabel, enter a label for the data link. This label appears in the Splunk O11y user interface."
+msgstr "AppDLinkLabelには、データリンクのラベルを入力します。このラベルはSplunk O11yのユーザーインターフェイスに表示されます。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:43
+msgid "For AppDLink, enter the Splunk AppDynamics tier URL."
+msgstr "AppDLinkには、Splunk AppDynamics階層のURLを入力します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:43 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:87
+msgid "To obtain the tier URL, navigate to the tier in the Splunk AppDynamics UI and copy the URL from the browser. Ensure that you capture the entire URL and that it contains the controller URL, application ID, and application component."
+msgstr "階層のURLを取得するには、Splunk AppDynamics UIで階層に移動し、ブラウザからURLをコピーします。URL全体をキャプチャし、コントローラURL、アプリケーションID、アプリケーションコンポーネントが含まれていることを確認します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:45
+msgid "Download the Node.js script from the :new-page:`Splunk GitHub repository `. The Node.js script uses the CSV file as an input to generate and run a Terraform script that creates the data links."
+msgstr ":new-page:`Splunk GitHubリポジトリ` からNode.jsスクリプトをダウンロードします。Node.jsスクリプトはCSVファイルを入力として使用し、データリンクを作成するTerraformスクリプトを生成して実行します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:50
+msgid "To install the dependencies in the Node.js script package, run:"
+msgstr "Node.jsスクリプトパッケージの依存関係をインストールするには、以下を実行します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:64
+msgid "To run the Node.js script, run:"
+msgstr "Node.jsスクリプトを実行するには、以下を実行します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:57
+msgid "For , enter the file path to the CSV file you created."
+msgstr "には、作成したCSVファイルのファイルパスを入力します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:58
+msgid "For , enter the API URL for your Splunk Observability Cloud environment. To obtain it, navigate to Splunk Observability Cloud and select your profile in the header. Select :guilabel:`My Profile`, then :guilabel:`Organizations`, and copy the :guilabel:`API Endpoint`."
+msgstr "には、Splunk Observability Cloud環境のAPI URLを入力します。これを取得するには、Splunk Observability Cloudに移動し、ヘッダーでプロファイルを選択します。:guilabel:`My Profile` を選択し、次に :guilabel:`Organizations` を選択して、:guilabel:`API Endpoint` をコピーします。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:59
+msgid "For , enter your Splunk Observability Cloud API access token. To obtain it, navigate to Splunk Observability and select your profile in the header. Select :guilabel:`My Profile`, then :guilabel:`Show User API Access Token`, and copy the API access token."
+msgstr "には、Splunk Observability Cloud APIアクセストークンを入力します。これを取得するには、Splunk Observabilityに移動し、ヘッダーでプロファイルを選択します。:guilabel:`My Profile` を選択し、次に :guilabel:`Show User API Access Token` を選択して、APIアクセストークンをコピーします。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:64
+msgid "This command creates the following files in the Terraform directory:"
+msgstr "このコマンドは、Terraformディレクトリに以下のファイルを作成します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:62
+msgid "appDDataLink.tf: The Terraform configuration file, which contains the Splunk Observability Cloud environment details and the data links from the CSV file."
+msgstr "appDDataLink.tf:Terraform 設定ファイル。Splunk Observability Cloud環境の詳細とCSVファイルのデータリンクが含まれています。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:63
+msgid "appDLink_Plan.tf: The Terraform plan file, which contains the list of changes that Terraform will make."
+msgstr "appDLink_Plan.tf:Terraformが行う変更のリストを含むTerraformプランファイル。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:64
+msgid "terraform.tfstate: The Terraform state file, which contains the list of resources that Terraform successfully created."
+msgstr "terraform.tfstate:Terraformが正常に作成したリソースのリストを含むTerraformの状態ファイル。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:69 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:166
+msgid "To verify that the global data links were successfully created, use one of the following methods:"
+msgstr "グローバルデータリンクが正常に作成されたことを確認するには、以下のいずれかの方法を使用します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:67 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:164
+msgid "View the output of the command. Sample output for a successful execution: ``Apply complete! Resources: 3 added, 0 changed, 0 destroyed``."
+msgstr "コマンドの出力を表示します。正常に実行された場合の出力例: ``Apply complete! Resources: 3 added, 0 changed, 0 destroyed``。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:68 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:165
+msgid "View the terraform.tfstate file in the Terraform directory, which contains the list of created resources."
+msgstr "Terraformディレクトリにあるterraform.tfstateファイルを表示します。このファイルには作成されたリソースのリストが含まれています。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:69
+msgid "View the global data links in the UI. In the Splunk Observability Cloud main menu, select :guilabel:`Settings` then :guilabel:`Global Data Links`. Search the page for the AppDLinkLabel names that you specified in the CSV file."
+msgstr "UIでグローバルデータのリンクを表示します。Splunk Observability Cloudのメインメニューで、:guilabel:`Settings` を選択し、:guilabel:`Global Data Links` を選択します。CSVファイルで指定した AppDLinkLabel名のページを検索します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:71
+msgid "To troubleshoot errors, view the APPD_LINK_TF_LOGS.log file in the Terraform directory. The log file is organized by the timestamp that the Node.js script executed the Terraform script."
+msgstr "エラーのトラブルシューティングを行うには、TerraformディレクトリのAPPD_LINK_TF_LOGS.logファイルを表示します。このログファイルはNode.jsスクリプトがTerraformスクリプトを実行したタイムスタンプで構成されています。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:76 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:171
+msgid "To access global data links in the user interface, see :ref:`apm-access-gdl-service`."
+msgstr "ユーザーインターフェイスでグローバルデータリンクにアクセスするには、:ref:`apm-access-gdl-service` を参照してください。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-batch.rst:78 ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:173
+msgid "To delete all global data links using Terraform, see :ref:`apm-delete-data-links-terraform`."
+msgstr "Terraform を使用してすべてのグローバルデータリンクを削除するには、:ref:`apm-delete-data-links-terraform` を参照してください。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:-1
+msgid "Learn how to use a Terraform configuration file to create global data links to Splunk AppDynamics tiers."
+msgstr "Terraform設定ファイルを使ってSplunk AppDynamics階層にグローバルデータリンクを作成する方法を学習します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:5
+msgid "Create global data links to Splunk AppDynamics tiers with a Terraform file"
+msgstr "Terraformファイルを使用してSplunk AppDynamics階層にグローバルデータリンクを作成する"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:19
+msgid "You can programmatically create global data links to Splunk AppDynamics tiers with a Terraform configuration file."
+msgstr "Terraform設定ファイルを使用して、Splunk AppDynamics階層へのグローバルデータリンクをプログラムで作成できます。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:30
+msgid "Create data links with a Terraform configuration file"
+msgstr "Terraform設定ファイルでデータリンクを作成する"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:32
+msgid "To create data links with a Terraform configuration file:"
+msgstr "Terraformの設定ファイルでデータリンクを作成するには:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:66
+msgid "In the Terraform directory, create a Terraform configuration file named .tf with the following contents:"
+msgstr "Terraformディレクトリに、以下の内容の<ファイル名>.tfというTerraform設定ファイルを作成します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:65
+msgid "For ``version``, enter the current Splunk Observability Cloud Terraform provider version. To check the latest version, see :new-page:`Releases `. This value must be 9.6.0 or higher."
+msgstr "``version`` には、現在の Splunk Observability Cloud Terraformプロバイダーのバージョンを入力します。最新バージョンを確認するには、:new-page:`リリース` を参照してください。この値は9.6.0以上である必要があります。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:66
+msgid "(Optional) Add arguments as needed for your configuration. For more information on the supported arguments, see :new-page:`Splunk Observability Cloud provider ` in the Terraform documentation."
+msgstr "(オプション) 設定に必要な引数を追加します。サポートされている引数の詳細については、Terraformドキュメントの :new-page:`Splunk Observability Cloudプロバイダー` を参照してください。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:87
+msgid "Add the :new-page:`signalfx_data_link ` resource to the Terraform file:"
+msgstr ":new-page:`signalfx_data_link` リソースをTerraformファイルに追加します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:82
+msgid "For , enter an identifier for the data link. This value is only visible in the Terraform file and must be unique for each data link. For example, you can use my_data_link_appd_1 or my_data_link_appd_2."
+msgstr "にはデータリンクの識別子を入力します。この値はTerraformファイルでのみ表示され、データリンクごとに一意である必要があります。例えば、my_data_link_appd_1やmy_data_link_appd_2を使うことができます。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:83
+msgid "For ``property_name``, use ``sf_service``."
+msgstr "``property_name`` には、``sf_service`` を使用します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:84
+msgid "For ``property_value``, enter the Splunk APM inferred service name."
+msgstr "``property_value`` には、Splunk APM推定サービス名を入力します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:85
+msgid "For ``name``, enter a label for the data link. This label appears in the Splunk Observability Cloud user interface."
+msgstr "``name`` の場合、データリンクのラベルを入力します。このラベルはSplunk Observability Cloudのユーザーインターフェイスに表示されます。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:87
+msgid "For ``URL``, enter the Splunk AppDynamics tier URL."
+msgstr "``URL`` には、Splunk AppDynamics階層のURLを入力します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:142
+msgid "Repeat the previous step for each data link to a Splunk AppDynamics tier you want to create. The following example displays a Terraform configuration file with multiple data links to Splunk AppDynamics tiers:"
+msgstr "作成するSplunk AppDynamics階層へのデータリンクごとに前の手順を繰り返します。以下の例では、Splunk AppDynamics階層への複数のデータリンクを持つTerraform設定ファイルを表示しています:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:147
+msgid "In the working directory with your Terraform configuration file, run the following command to initialize the directory:"
+msgstr "Terraform設定ファイルのある作業ディレクトリで、以下のコマンドを実行してディレクトリを初期化します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:156
+msgid "To set your signalfx_auth_token and signalfx_api_url variables and generate a preview of the changes that Terraform will make, run:"
+msgstr "signalfx_auth_tokenとsignalfx_api_url変数を設定し、Terraformが行う変更のプレビューを生成するには、以下を実行します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:154 ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:33
+msgid "For , enter your Splunk Observability Cloud API access token. To obtain it, navigate to Splunk Observability and select your profile in the header. Select :guilabel:`My Profile`, then :guilabel:`Show User API Access Token`, and copy the API access token."
+msgstr " には、Splunk Observability Cloud APIアクセストークンを入力します。これを取得するには、Splunk Observabilityに移動し、ヘッダーでプロファイルを選択します。:guilabel:`My Profile` を選択し、次に :guilabel:`Show User API Access Token` を選択し、APIアクセストークンをコピーします。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:155
+msgid "For , enter your Splunk Observability Cloud realm. To obtain your realm, navigate to Splunk Observability Cloud and select your profile in the header. Select :guilabel:`My Profile`, then :guilabel:`Organizations`, and copy the :guilabel:`Realm`."
+msgstr " には、Splunk Observability Cloudのレルムを入力します。レルムを取得するには、Splunk Observability Cloudに移動し、ヘッダーでプロファイルを選択します。:guilabel:`My Profile` を選択し、次に :guilabel:`Organizations` を選択して、:guilabel:`Realm` をコピーします。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:156
+msgid "For , enter your desired name for the plan file that Terraform will create for the changes."
+msgstr "には、Terraformが変更のために作成するプランファイルの名前を入力します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:161
+msgid "Use the output to review the changes. To run the changes and create a terraform.tf.state file that lists the resources that Terraform created:"
+msgstr "出力を使って変更を確認します。変更を実行し、Terraformが作成したリソースをリストしたterraform.tf.stateファイルを作成します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-create-data-links-terraform-file.rst:166
+msgid "View the global data links in the UI. In the Splunk Observability Cloud main menu, select :guilabel:`Settings` then :guilabel:`Global Data Link`. Search the page for the data link name that you specified in the Terraform file."
+msgstr "UIでグローバルデータのリンクを表示します。Splunk Observability Cloudのメインメニューで、:guilabel:`Settings` を選択し、:guilabel:`Global Data Link` を選択します。Terraformファイルで指定したデータリンク名のページを検索します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-data-links-terraform.rst:-1
+msgid "An overview of how to use Terraform to create and delete global data links to Splunk AppDynamics tiers."
+msgstr "Terraformを使用してSplunk AppDynamics階層へのグローバルデータリンクを作成および削除する方法の概要です。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-data-links-terraform.rst:5
+msgid "Manage global data links to Splunk AppDynamics tiers with Terraform"
+msgstr "Splunk AppDynamics階層へのグローバルデータリンクをTerraformで管理する"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-data-links-terraform.rst:25
+msgid "Using Terraform, you can programmatically:"
+msgstr "Terraformを使えば、プログラムで以下ができます:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-data-links-terraform.rst:27
+msgid "(Recommended) :ref:`apm-create-data-links-terraform-batch`"
+msgstr "(推奨) :ref:`apm-create-data-links-terraform-batch`"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-data-links-terraform.rst:28
+msgid ":ref:`apm-create-data-links-terraform-file`"
+msgstr ":ref:`apm-create-data-links-terraform-file`"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-data-links-terraform.rst:29
+msgid ":ref:`apm-delete-data-links-terraform`"
+msgstr ":ref:`apm-delete-data-links-terraform`"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-data-links-terraform.rst:31
+msgid "To create a data link using the user interface, see :ref:`apm-create-gdl-to-appd`. The user interface only supports creating one data link at a time."
+msgstr "ユーザーインターフェイスを使用してデータリンクを作成するには、:ref:`apm-create-gdl-to-appd` を参照してください。ユーザーインターフェイスは、一度に1つのデータリンクの作成しかサポートしていません。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:-1
+msgid "Learn how to use Terraform to delete all global data links created with Terraform."
+msgstr "Terraformを使って、Terraformで作成したグローバルデータリンクをすべて削除する方法を学習します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:5 ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:22
+msgid "Delete all global data links with Terraform"
+msgstr "Terraformですべてのグローバルデータリンクを削除する"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:10
+msgid "Use Terraform to programmatically delete all global data links that you created with Terraform. This process deletes all of the global data links in the terraform.tf.state file in the Terraform directory."
+msgstr "Terraformを使用して、Terraformで作成したすべてのグローバルデータリンクをプログラムで削除します。この処理は、Terraformディレクトリ内のterraform.tf.stateファイル内のグローバルデータリンクをすべて削除します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:15
+msgid "To delete global data links with Terraform, you need:"
+msgstr "Terraformでグローバルデータリンクを削除するには、以下の手順が必要です:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:19
+msgid "Global data links created with Terraform, either with the :ref:`Node.js script` or the :ref:`Terraform file`."
+msgstr ":ref:`Node.jsスクリプト` または :ref:`Terraformファイル` を使って、Terraformで作成したグローバルデータリンク。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:24
+msgid "To delete all global data links that you created with Terraform:"
+msgstr "Terraformで作成したグローバルデータリンクをすべて削除するには:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:26
+msgid "View the terraform.tf.state file in the Terraform directory. Confirm that you want to delete all of the data links in the file."
+msgstr "Terraformディレクトリのterraform.tf.stateファイルを表示します。ファイル内のデータリンクをすべて削除することを確認します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:34
+msgid "Open your terminal and navigate to the Terraform directory. Run:"
+msgstr "ターミナルを開き、Terraformディレクトリに移動します。次を実行します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:34
+msgid "For , enter your Splunk Observability Cloud realm. To obtain your realm, navigate to Splunk Observability Cloud and select your profile in the header. Select :guilabel:`My Profile`, then :guilabel:`Organizations`, and copy the :guilabel:`API Endpoint`."
+msgstr " には、Splunk Observability Cloudのレルムを入力します。レルムを取得するには、Splunk Observability Cloudに移動し、ヘッダーでプロファイルを選択します。:guilabel:`My Profile` を選択し、次に :guilabel:`Organizations` を選択して、:guilabel:`API Endpoint` をコピーします。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:41
+msgid "View the UI to confirm that the data links were deleted:"
+msgstr "UIを表示して、データリンクが削除されたことを確認します:"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:37
+msgid "In the Splunk Observability Cloud main menu, select :guilabel:`Settings` then :guilabel:`Global Data Link`."
+msgstr "Splunk Observability Cloudのメインメニューで、:guilabel:`Settings` を選択し、次に :guilabel:`Global Data Link` を選択します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:41
+msgid "Search for the names of the data links you created."
+msgstr "作成したデータリンクの名前を検索します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:39
+msgid "If you used the :ref:`Node.js script method `, search for the AppDLinkLabel values that you specified in the CSV file."
+msgstr ":ref:`Node.js スクリプトメソッド` を使用した場合は、CSVファイルで指定したAppDLinkLabelの値を検索します。"
+
+#: ../../apm/apm-data-links/apm-datalinks-terraform/apm-delete-data-links-terraform.rst:40
+msgid "If you used the :ref:`Terraform file method `, search for the ``name`` values that you specified in the Terraform configuration file."
+msgstr ":ref:`Terraformファイルのメソッド` を使用した場合は、Terraform設定ファイルで指定した ``name`` の値を検索します。"
#: ../../apm/apm-data-links/apm-use-data-links.rst:-1
msgid "Get stated with global data links using this scenario."
@@ -761,95 +1161,103 @@ msgstr "グローバルデータリンクを使用して、サービス、トレ
msgid "For example, you can use a global data link to easily navigate from an APM property to a resource, such as an Infrastructure Monitoring dashboard or navigator, Splunk instance, Kibana log, or custom URL. Global data links dynamically transfer the context of the property you're viewing to the resource, helping you get to relevant information faster."
msgstr "たとえば、グローバルデータリンクを使用して、APMのプロパティから、Infrastructure Monitoringのダッシュボード/ナビゲーター、Splunkのインスタンス、Kibanaのログ、カスタムURLなどのリソースに簡単に移動できます。グローバルデータリンクは、表示しているプロパティのコンテキストをリソースに動的に転送するため、関連情報にすばやくアクセスできます。"
-#: ../../apm/apm-data-links/apm-use-data-links.rst:14 ../../apm/apm-data-links/data-links-landing.rst:21
+#: ../../apm/apm-data-links/apm-use-data-links.rst:14
msgid "For information about creating global data links, see :ref:`apm-create-data-links`."
msgstr "グローバルデータリンクの作成については、:ref:`apm-create-data-links` を参照してください。"
-#: ../../apm/apm-data-links/apm-use-data-links.rst:18
+#: ../../apm/apm-data-links/apm-use-data-links.rst:19
msgid "Access global data links for a service"
msgstr "サービスのグローバルデータリンクにアクセスする"
-#: ../../apm/apm-data-links/apm-use-data-links.rst:20
+#: ../../apm/apm-data-links/apm-use-data-links.rst:22
+msgid ""
+"For global data links to Splunk AppDynamics: If selecting the global data link does not load a tier in the Splunk AppDynamics user interface, check if Splunk AppDynamics has data for the time range. If there is no data for the time range and Splunk AppDynamics is experiencing issues, contact :new-page:`Splunk AppDynamics support `."
+msgstr ""
+"Splunk AppDynamicsへのグローバルデータリンクの場合:グローバルデータリンクを選択してもSplunk AppDynamicsユーザーインターフェイスに階層がロードされない場合は、Splunk AppDynamicsにその時間範囲のデータがあるかどうかを確認してください。時間範囲のデータがなく、Splunk AppDynamicsに問題が発生している場合は、:new-page:`Splunk AppDynamicsサポート