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
You can specify a given integration and version number to be installed by using `datadog_agent::install_integration`. This will use the `datadog-agent integration` command to ensure a specific integration is installed or uninstalled.
154
+
155
+
```
156
+
datadog_agent::install_integration { "mongo-1.9":
157
+
ensure => present,
158
+
integration_name => 'datadog-mongo',
159
+
version => '1.9.0',
160
+
}
161
+
```
162
+
163
+
The field `ensure` can be either `present` (default) or `absent`, the later being useful to remove a previously pinned version of an integration.
164
+
165
+
150
166
Reporting
151
167
---------
152
168
Ensure `dogapi-rb` is available on your system as explained earlier.
0 commit comments