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
Copy file name to clipboardExpand all lines: articles/azure-monitor/agents/agent-linux.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -176,16 +176,21 @@ The Log Analytics agent for Linux is provided in a self-extracting and installab
176
176
> [!NOTE]
177
177
> For Azure VMs, we recommend you install the agent on them using the [Azure Log Analytics VM extension](../../virtual-machines/extensions/oms-linux.md) for Linux.
178
178
179
+
180
+
179
181
1. [Download](https://github.com/microsoft/OMS-Agent-for-Linux#azure-install-guide) and transfer the appropriate bundle (x64 or x86) to your Linux VM or physical computer, using scp/sftp.
180
182
181
183
2. Install the bundle by using the `--install` argument. To onboard to a Log Analytics workspace during installation, provide the `-w <WorkspaceID>` and `-s <workspaceKey>` parameters copied earlier.
182
184
183
185
>[!NOTE]
184
186
>You need to use the `--upgrade` argument if any dependent packages such as omi, scx, omsconfig or their older versions are installed, as would be the case if the system Center Operations Manager agent for Linux is already installed.
185
187
186
-
```
187
-
sudo sh ./omsagent-*.universal.x64.sh --install -w <workspace id> -s <shared key>
188
-
```
188
+
> [!NOTE]
189
+
> Because the [Container Monitoring solution](../containers/containers.md) is being retired, the following documentation uses the optional setting --skip-docker-provider-install to disable the Container Monitoring data collection.
190
+
191
+
```
192
+
sudo sh ./omsagent-*.universal.x64.sh --install -w <workspaceid> -s <sharedkey> --skip-docker-provider-install
193
+
```
189
194
190
195
3. To configure the Linux agent to install and connect to a Log Analytics workspace through a Log Analytics gateway, run the following command providing the proxy, workspace ID, and workspace key parameters. This configuration can be specified on the command line by including `-p [protocol://][user:password@]proxyhost[:port]`. The *proxyhost* property accepts a fully qualified domain name or IP address of the Log Analytics gateway server.
191
196
@@ -221,6 +226,10 @@ sudo sh ./omsagent-*.universal.x64.sh --extract
221
226
222
227
Upgrading from a previous version, starting with version 1.0.0-47, is supported in each release. Perform the installation with the `--upgrade` parameter to upgrade all components of the agent to the latest version.
223
228
229
+
> [!NOTE]
230
+
> There will be a warning message during the upgrade "docker provider package installation skipped" since --skip-docker-provider-install flag is set. If you are installing over an existing omsagent install and wish to remove the docker provider, you should first purge the existing installation and then install using the --skip-docker-provider-install flag.
231
+
232
+
224
233
## Cache information
225
234
Data from the Log Analytics agent for Linux is cached on the local machine at *%STATE_DIR_WS%/out_oms_common*.buffer* before it's sent to Azure Monitor. Custom log data is buffered in *%STATE_DIR_WS%/out_oms_blob*.buffer*. The path may be different for some [solutions and data types](https://github.com/microsoft/OMS-Agent-for-Linux/search?utf8=%E2%9C%93&q=+buffer_path&type=).
Copy file name to clipboardExpand all lines: articles/azure-monitor/containers/container-insights-overview.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,8 +62,6 @@ You can access Container insights two ways, from Azure Monitor or directly from
62
62
63
63

64
64
65
-
If you are interested in monitoring and managing your Docker and Windows container hosts running outside of AKS to view configuration, audit, and resource utilization, see the [Container Monitoring solution](./containers.md).
66
-
67
65
## Next steps
68
66
69
67
To begin monitoring your Kubernetes cluster, review [How to enable Container insights](container-insights-onboard.md) to understand the requirements and available methods to enable monitoring.
Copy file name to clipboardExpand all lines: articles/virtual-machines/extensions/oms-linux.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,9 @@ The Log Analytics agent extension for Linux requires that the target virtual mac
64
64
## Extension schema
65
65
66
66
The following JSON shows the schema for the Log Analytics agent extension. The extension requires the workspace ID and workspace key from the target Log Analytics workspace; these values can be [found in your Log Analytics workspace](../../azure-monitor/vm/monitor-virtual-machine.md) in the Azure portal. Because the workspace key should be treated as sensitive data, it should be stored in a protected setting configuration. Azure VM extension protected setting data is encrypted, and only decrypted on the target virtual machine. Note that **workspaceId** and **workspaceKey** are case-sensitive.
67
+
> [!NOTE]
68
+
> Because the [Container Monitoring solution](../../azure-monitor/containers/containers.md) is being retired, the following documentation uses the optional setting "skipDockerProviderInstall": true.
69
+
67
70
68
71
```json
69
72
{
@@ -80,7 +83,8 @@ The following JSON shows the schema for the Log Analytics agent extension. The e
80
83
"typeHandlerVersion": "1.13",
81
84
"autoUpgradeMinorVersion": true,
82
85
"settings": {
83
-
"workspaceId": "myWorkspaceId"
86
+
"workspaceId": "myWorkspaceId",
87
+
"skipDockerProviderInstall": true
84
88
},
85
89
"protectedSettings": {
86
90
"workspaceKey": "myWorkSpaceKey"
@@ -128,7 +132,8 @@ The following example assumes the VM extension is nested inside the virtual mach
128
132
"type": "OmsAgentForLinux",
129
133
"typeHandlerVersion": "1.13",
130
134
"settings": {
131
-
"workspaceId": "myWorkspaceId"
135
+
"workspaceId": "myWorkspaceId",
136
+
"skipDockerProviderInstall": true
132
137
},
133
138
"protectedSettings": {
134
139
"workspaceKey": "myWorkSpaceKey"
@@ -153,7 +158,8 @@ When placing the extension JSON at the root of the template, the resource name i
0 commit comments