You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use this article to find the natural languages supported by Key Phrase Analysis.
18
+
Use this article to find the natural languages supported by Key Phrase Extraction. Both the cloud-based API and [Docker containers](./how-to/use-containers.md) support the same languages.
keywords: on-premises, Docker, container, sentiment analysis, natural language processing
@@ -47,34 +47,14 @@ CPU core and memory correspond to the `--cpus` and `--memory` settings, which ar
47
47
48
48
The Sentiment Analysis container image can be found on the `mcr.microsoft.com` container registry syndicate. It resides within the `azure-cognitive-services/textanalytics/` repository and is named `sentiment`. The fully qualified container image name is, `mcr.microsoft.com/azure-cognitive-services/textanalytics/sentiment`
49
49
50
-
To use the latest version of the container, you can use the `latest` tag. You can also find a full list of [tags on the MCR](https://mcr.microsoft.com/product/azure-cognitive-services/textanalytics/sentiment/tags).
50
+
To use the latest version of the container, you can use the `latest` tag, which is for english. You can also find a full list of containers for supported languages using the[tags on the MCR](https://mcr.microsoft.com/product/azure-cognitive-services/textanalytics/sentiment/tags).
51
51
52
52
The sentiment analysis container v3 container is available in several languages. To download the container for the English container, use the command below.
# Sentiment Analysis and Opinion Mining language support
17
17
18
-
Use this article to learn which languages are supported by Sentiment Analysis and Opinion Mining.
18
+
Use this article to learn which languages are supported by Sentiment Analysis and Opinion Mining. Both the cloud-based API and [Docker containers](./how-to/use-containers.md) support the same languages.
19
19
20
20
> [!NOTE]
21
21
> Languages are added as new [model versions](../concepts/model-lifecycle.md) are released.
Auto instrumentation of Logs are currently only supported when using `applicationinsights` v3 Beta package. (https://www.npmjs.com/package/applicationinsights/v/beta)
155
+
Auto instrumentation of Logs is currently only supported when using `applicationinsights` v3 Beta package. (https://www.npmjs.com/package/applicationinsights/v/beta)
> Application Insights Java 3.x listens for telemetry that's sent to the Application Insights [Classic API](api-custom-events-metrics.md). Similarly, Application Insights Node.js 3.x collects events created with the Application Insights [Classic API](api-custom-events-metrics.md). This makes upgrading easier and fills a gap in our custom telemetry support until all custom telemetry types are supported via the OpenTelemetry API.
@@ -1327,7 +1328,7 @@ Not available in .NET.
1327
1328
#### [Node.js](#tab/nodejs)
1328
1329
1329
1330
1330
-
You need to use `applicationinsights` v3 Beta package to achieve this. (https://www.npmjs.com/package/applicationinsights/v/beta)
1331
+
You need to use `applicationinsights` v3 Beta package to send custom telemetry using the Application Insights Classic API. (https://www.npmjs.com/package/applicationinsights/v/beta)
@@ -1372,7 +1373,31 @@ Then use the `TelemetryClient` to send custom telemetry:
1372
1373
1373
1374
#### [Python](#tab/python)
1374
1375
1375
-
It isn't available in Python.
1376
+
Unlike other languages, Python doesn't have an Application Insights SDK. You can meet all your monitoring needs with the Azure Monitor OpenTelemetry Distro, except for sending `customEvents`. Until the OpenTelemetry Events API stabilizes, use the [Azure Monitor Events Extension](https://pypi.org/project/azure-monitor-events-extension/0.1.0/) with the Azure Monitor OpenTelemetry Distro to send `customEvents` to Application Insights.
1377
+
1378
+
Install the distro and the extension:
1379
+
1380
+
```console
1381
+
pip install azure-monitor-opentelemetry
1382
+
pip install azure-monitor-events-extension
1383
+
```
1384
+
1385
+
Use the `track_event` API offered in the extension to send customEvents.
1386
+
1387
+
```python
1388
+
...
1389
+
from azure.monitor.events.extension import track_event
1390
+
from azure.monitor.opentelemetry import configure_azure_monitor
1391
+
1392
+
configure_azure_monitor()
1393
+
1394
+
# Use the track_event() api to send custom event telemetry
Copy file name to clipboardExpand all lines: articles/cosmos-db/emulator.md
+1-24Lines changed: 1 addition & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,30 +51,7 @@ Every request made against the emulator must be authenticated using a key over T
51
51
52
52
## Import emulator certificate
53
53
54
-
In some cases, you may wish to manually import the TLS/SS certificate from the emulator's running container into your host machine. This step avoids bad practices like disabling TLS/SSL validation in the SDK.
55
-
56
-
### [Docker (container)](#tab/docker)
57
-
58
-
The certificate for the emulator is available in the `_explorer/emulator.pem` path on the running container. Use `curl` to download the certificate from the running container to your local machine.
> You may need to change the host (or IP address) and port number if you have previously modified those values.
66
-
67
-
Install the certificate according to the process typically used for your operating system. For example, in Linux you would copy the certificate to the `/usr/local/share/ca-certificats/` path.
The Windows local installation of the emulator automatically imports the TLS/SSL certificates. No further action is necessary.
76
-
77
-
---
54
+
In some cases, you may wish to manually import the TLS/SS certificate from the emulator's running container into your host machine. This step avoids bad practices like disabling TLS/SSL validation in the SDK. For more information, see [import certificate](how-to-develop-emulator.md#export-the-emulators-tlsssl-certificate).
0 commit comments