issue stringlengths 10 256k | solution stringlengths 1 101M |
|---|---|
Elasticsearch check fails when used with Opensearch
**Note:** If you have a feature request, you should [contact support](https://docs.datadoghq.com/help/) so the request can be properly tracked.
**Output of the [info page](https://docs.datadoghq.com/agent/guide/agent-commands/#agent-status-and-information)**
```... | diff --git a/elastic/datadog_checks/elastic/elastic.py b/elastic/datadog_checks/elastic/elastic.py
--- a/elastic/datadog_checks/elastic/elastic.py
+++ b/elastic/datadog_checks/elastic/elastic.py
@@ -139,11 +139,17 @@ def _get_es_version(self):
try:
data = self._get_data(self._config.url, send_sc=F... |
[nginx] NGINX Plus extended status API depreciated; Integration needs to use Plus API instead
NGINX R13 was just released and it replaces the Extended Status API with the NGINX Plus API.
[See Announcement](https://www.nginx.com/blog/nginx-plus-r13-released/)
A future version of NGINX Plus will drop support for th... | diff --git a/nginx/datadog_checks/nginx/__init__.py b/nginx/datadog_checks/nginx/__init__.py
--- a/nginx/datadog_checks/nginx/__init__.py
+++ b/nginx/datadog_checks/nginx/__init__.py
@@ -2,6 +2,6 @@
Nginx = nginx.Nginx
-__version__ = "1.1.0"
+__version__ = "1.2.0"
__all__ = ['nginx']
diff --git a/nginx/datadog_... |
Support for "headers" configuration in haproxy.yaml?
Hi all, I'm interested in passing a custom header to my HAProxy integration in `haproxy.yaml`, like this:
```
instances:
- name: haproxy
url: http://localhost:3000
headers:
service-route: haproxy-stats
```
However, that [doesn't ap... | diff --git a/haproxy/datadog_checks/haproxy/__init__.py b/haproxy/datadog_checks/haproxy/__init__.py
--- a/haproxy/datadog_checks/haproxy/__init__.py
+++ b/haproxy/datadog_checks/haproxy/__init__.py
@@ -2,6 +2,6 @@
HAProxy = haproxy.HAProxy
-__version__ = "1.0.2"
+__version__ = "1.2.0"
__all__ = ['haproxy']
dif... |
process monitor throws warnings on postgresql: Warning: Process 123 disappeared while scanning
process monitor throws warnings on postgresql: Warning: Process 123 disappeared while scanning
process
-------
- instance #0 [OK]
- instance DataDog/dd-agent#1 [WARNING]
Warning: Process 16039 di... | diff --git a/process/datadog_checks/process/process.py b/process/datadog_checks/process/process.py
--- a/process/datadog_checks/process/process.py
+++ b/process/datadog_checks/process/process.py
@@ -260,7 +260,7 @@ def psutil_wrapper(self, process, method, accessors=None, *args, **kwargs):
except psutil.Ac... |
[sqlserver] Add 'recovery model' tag to database metrics
Add the `recovery_model_desc` column from `sys.databases` to `SqlBaseStats` as a tag. This would be a useful addition to be able to filter off of for alerts, and since the data is already being queried it should be a minor update.
https://github.com/DataDog/in... | diff --git a/sqlserver/datadog_checks/sqlserver/metrics.py b/sqlserver/datadog_checks/sqlserver/metrics.py
--- a/sqlserver/datadog_checks/sqlserver/metrics.py
+++ b/sqlserver/datadog_checks/sqlserver/metrics.py
@@ -697,6 +697,7 @@ def fetch_all_values(cls, cursor, counters_list, logger, databases=None):
def fetch_... |
[apache] fix metric collection
### What does this PR do?
This collects the correct data for `apache.net.bytes_per_s` and `apache.net.request_per_s`.
https://www.datadoghq.com/blog/collect-apache-performance-metrics
https://wiki.opennms.org/wiki/Monitoring_Apache_with_the_HTTP_collector
https://httpd.apache.org/... | diff --git a/apache/datadog_checks/apache/__init__.py b/apache/datadog_checks/apache/__init__.py
--- a/apache/datadog_checks/apache/__init__.py
+++ b/apache/datadog_checks/apache/__init__.py
@@ -2,6 +2,6 @@
Apache = apache.Apache
-__version__ = "1.1.1"
+__version__ = "1.1.2"
__all__ = ['apache']
diff --git a/ap... |
Consul NodeName (NodeId) in Service Checks
**Note:** If you have a feature request, you should [contact support](https://docs.datadoghq.com/help/) so the request can be properly tracked.
**Output of the [info page](https://docs.datadoghq.com/agent/guide/agent-commands/#agent-status-and-information)**
```text
Get... | diff --git a/consul/datadog_checks/consul/consul.py b/consul/datadog_checks/consul/consul.py
--- a/consul/datadog_checks/consul/consul.py
+++ b/consul/datadog_checks/consul/consul.py
@@ -372,6 +372,8 @@ def check(self, _):
tags.append('service:{}'.format(check['ServiceName']))
... |
[Active Directory] Entry point is using datadog_checks.ntp console script
In the Active Directory integration's `setup.py` the entrypoint (for running without an agent) uses the datadog_checks.ntp console script.
```
# The entrypoint to run the check manually without an agent
entry_points={
'conso... | diff --git a/active_directory/setup.py b/active_directory/setup.py
--- a/active_directory/setup.py
+++ b/active_directory/setup.py
@@ -116,12 +116,5 @@ def find_version(*file_paths):
# Extra files to ship with the wheel package
package_data={b'datadog_checks.active_directory': ['conf.yaml.example']},
- i... |
[oracle] Integration fails when Oracle DB has offline tablespace
**Output of the [info page](https://docs.datadoghq.com/agent/faq/agent-commands/#agent-status-and-information)**
```
====================
Collector (v 5.22.1)
====================
Status date: 2018-04-14 10:05:29 (16s ago)
Pid: 26119
Plat... | diff --git a/oracle/datadog_checks/oracle/__init__.py b/oracle/datadog_checks/oracle/__init__.py
--- a/oracle/datadog_checks/oracle/__init__.py
+++ b/oracle/datadog_checks/oracle/__init__.py
@@ -2,6 +2,6 @@
Oracle = oracle.Oracle
-__version__ = "1.1.0"
+__version__ = "1.2.0"
__all__ = ['oracle']
diff --git a/or... |
etcd leader check uses unsupported endpoint
The etcd integration currently uses the `/v3alpha/maintenance/status` endpoint when determining whether the instance it's checking is the leader:
https://github.com/DataDog/integrations-core/blame/7ab36d84f116ccbdef71ed12b84e81462ca38113/etcd/datadog_checks/etcd/etcd.py#L127... | diff --git a/etcd/datadog_checks/etcd/etcd.py b/etcd/datadog_checks/etcd/etcd.py
--- a/etcd/datadog_checks/etcd/etcd.py
+++ b/etcd/datadog_checks/etcd/etcd.py
@@ -123,9 +123,7 @@ def access_api(self, scraper_config, path, data='{}'):
return response
def is_leader(self, scraper_config):
- # Modify... |
Correctly compute the `templates.count` metric
### What does this PR do?
<!-- A brief description of the change being made with this pull request. -->
Correctly compute the templates.count metric
### Motivation
<!-- What inspired you to submit this pull request? -->
- QA for https://github.com/DataDog/integr... | diff --git a/elastic/datadog_checks/elastic/__about__.py b/elastic/datadog_checks/elastic/__about__.py
--- a/elastic/datadog_checks/elastic/__about__.py
+++ b/elastic/datadog_checks/elastic/__about__.py
@@ -2,4 +2,4 @@
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
-__version__ = ... |
[btrfs] Incorrect Metrics and misleading default dashboard
**Output of the info page**
```
❯ sudo /etc/init.d/datadog-agent info
====================
Collector (v 5.17.2)
====================
Status date: 2017-09-24 19:12:35 (13s ago)
Pid: 2931
Platform: Linux-4.9.0-3-amd64-x86_64-with-debian-9.1
P... | diff --git a/btrfs/datadog_checks/btrfs/btrfs.py b/btrfs/datadog_checks/btrfs/btrfs.py
--- a/btrfs/datadog_checks/btrfs/btrfs.py
+++ b/btrfs/datadog_checks/btrfs/btrfs.py
@@ -52,10 +52,17 @@
})
BTRFS_IOC_SPACE_INFO = 0xc0109414
+BTRFS_IOC_DEV_INFO = 0xd000941e
+BTRFS_IOC_FS_INFO = 0x8400941f
TWO_LONGS_STRUCT = s... |
[btrfs] Incorrect Metrics and misleading default dashboard
**Output of the info page**
```
❯ sudo /etc/init.d/datadog-agent info
====================
Collector (v 5.17.2)
====================
Status date: 2017-09-24 19:12:35 (13s ago)
Pid: 2931
Platform: Linux-4.9.0-3-amd64-x86_64-with-debian-9.1
P... | diff --git a/btrfs/datadog_checks/btrfs/btrfs.py b/btrfs/datadog_checks/btrfs/btrfs.py
--- a/btrfs/datadog_checks/btrfs/btrfs.py
+++ b/btrfs/datadog_checks/btrfs/btrfs.py
@@ -23,11 +23,16 @@
SINGLE = "single"
RAID0 = "raid0"
RAID1 = "raid1"
+RAID5 = "raid5"
+RAID6 = "raid6"
RAID10 = "raid10"
DUP = "dup"
UNKNOWN =... |
[docker_daemon] Spurious warnings due to race condition with stopped containers
**Output of the [info page](https://docs.datadoghq.com/agent/faq/agent-commands/#agent-status-and-information)**
```text
====================
Collector (v 5.23.0)
====================
Status date: 2018-05-20 23:50:24 (19s ago)
... | diff --git a/docker_daemon/datadog_checks/docker_daemon/docker_daemon.py b/docker_daemon/datadog_checks/docker_daemon/docker_daemon.py
--- a/docker_daemon/datadog_checks/docker_daemon/docker_daemon.py
+++ b/docker_daemon/datadog_checks/docker_daemon/docker_daemon.py
@@ -759,9 +759,9 @@ def _report_net_metrics(self, con... |
[MySQL] Error while fetching mysql pid from psutil (psutil.NoSuchProcess)
I'm using dd-agent 5.22.3 on Gentoo Linux. Occasionally (once or twice a week) , the MySQL check fails with the following error:
```
ERROR (mysql.py:811): Error while fetching mysql pid from psutil
Traceback (most recent call last):
F... | diff --git a/mysql/datadog_checks/mysql/mysql.py b/mysql/datadog_checks/mysql/mysql.py
--- a/mysql/datadog_checks/mysql/mysql.py
+++ b/mysql/datadog_checks/mysql/mysql.py
@@ -25,6 +25,7 @@
RATE = "rate"
COUNT = "count"
MONOTONIC = "monotonic_count"
+PROC_NAME = 'mysqld'
# Vars found in "SHOW STATUS;"
STATUS_VARS... |
NTP check broken: Servname not supported for ai_socktype (missing /etc/services from netbase)
Just upgraded from 5.23.0 to 5.24.0 using the official docker image to resolve issue #1346 and it broke the NTP check with the following error:
```
2018-05-17 11:30:31 UTC | INFO | dd.collector | config(config.py:1249) | i... | diff --git a/ntp/datadog_checks/__init__.py b/ntp/datadog_checks/__init__.py
--- a/ntp/datadog_checks/__init__.py
+++ b/ntp/datadog_checks/__init__.py
@@ -0,0 +1,5 @@
+# (C) Datadog, Inc. 2018
+# All rights reserved
+# Licensed under a 3-clause BSD style license (see LICENSE)
+
+__path__ = __import__('pkgutil').extend_... |
Instructions to run integrations tests fail on tox
**Additional environment details (Operating System, Cloud provider, etc):**
Ubuntu 14.04, Python 2.7.6
**Steps to reproduce the issue:**
1. Follow instructions at https://github.com/DataDog/integrations-core/blob/e3985fe43853f6ee3bb11e8d9d20a18ca12ae340/docs/dev... | diff --git a/kubernetes_state/datadog_checks/kubernetes_state/kubernetes_state.py b/kubernetes_state/datadog_checks/kubernetes_state/kubernetes_state.py
--- a/kubernetes_state/datadog_checks/kubernetes_state/kubernetes_state.py
+++ b/kubernetes_state/datadog_checks/kubernetes_state/kubernetes_state.py
@@ -17,7 +17,7 @@... |
Fargate checks fails when there are stopped containers in the task
I'm running the agent as a sidecar in a Fargate task as described [here](https://www.datadoghq.com/blog/monitor-aws-fargate/). The fargate check continuously fails with the following error:
```text
[ AGENT ] 2018-07-27 06:30:33 UTC | ERROR | (runner... | diff --git a/ecs_fargate/datadog_checks/ecs_fargate/ecs_fargate.py b/ecs_fargate/datadog_checks/ecs_fargate/ecs_fargate.py
--- a/ecs_fargate/datadog_checks/ecs_fargate/ecs_fargate.py
+++ b/ecs_fargate/datadog_checks/ecs_fargate/ecs_fargate.py
@@ -1,12 +1,10 @@
# (C) Datadog, Inc. 2010-2017
# All rights reserved
# Li... |
[nginx] Incorrectly reporting vts stats and nginxplus as gauge instead of rate
The agent check code always uses gauge to report any number found in the vts/nginxplus json.
Those numbers are in reality ever increasing total counters, wich makes the gauge useless in datadog.
Some keys (for example the requests/sec)... | diff --git a/nginx/datadog_checks/nginx/nginx.py b/nginx/datadog_checks/nginx/nginx.py
--- a/nginx/datadog_checks/nginx/nginx.py
+++ b/nginx/datadog_checks/nginx/nginx.py
@@ -90,7 +90,7 @@ def check(self, instance):
funcs = {
'gauge': self.gauge,
'rate': self.rate,
- 'count... |
query_string should not be dependant on status URL path
https://github.com/DataDog/integrations-core/blob/e74e94794e57ba3fa32214ddc78cb1d978faa230/php_fpm/datadog_checks/php_fpm/php_fpm.py#L200
This line sets the query_string only if the status URL is the default URL, which means any non-default status URLs will fai... | diff --git a/php_fpm/datadog_checks/php_fpm/php_fpm.py b/php_fpm/datadog_checks/php_fpm/php_fpm.py
--- a/php_fpm/datadog_checks/php_fpm/php_fpm.py
+++ b/php_fpm/datadog_checks/php_fpm/php_fpm.py
@@ -107,7 +107,7 @@ def _process_status(self, status_url, auth, tags, http_host, timeout, disable_ss
data = {}
... |
postfix integration causing log spam.
**Output of the [info page](https://docs.datadoghq.com/agent/faq/agent-commands/#agent-status-and-information)**
```text
Getting the status from the agent.
==============
Agent (v6.5.1)
==============
Status date: 2018-09-24 15:37:09.556012 UTC
Pid: 14192
Python... | diff --git a/postfix/datadog_checks/postfix/postfix.py b/postfix/datadog_checks/postfix/postfix.py
--- a/postfix/datadog_checks/postfix/postfix.py
+++ b/postfix/datadog_checks/postfix/postfix.py
@@ -176,8 +176,9 @@ def _get_queue_count(self, directory, queues, tags):
count = sum(len(files) for root, di... |
[redis] KeyError in commandstats when `cmdstat_host` is present.
I am getting a `KeyError` when `command_stats` is enabled. This occurs only on some of the redis instances within my cluster.
I've traced back the error to [this line of code](https://github.com/DataDog/integrations-core/blob/master/redisdb/check.py#L3... | diff --git a/redisdb/datadog_checks/redisdb/redisdb.py b/redisdb/datadog_checks/redisdb/redisdb.py
--- a/redisdb/datadog_checks/redisdb/redisdb.py
+++ b/redisdb/datadog_checks/redisdb/redisdb.py
@@ -408,8 +408,13 @@ def _check_command_stats(self, conn, tags):
for key, stats in command_stats.iteritems():
... |
Additional metrics for Elasticsearch
Currently, the Elasticsearch in flight requests circuit breaker metrics are not captured. Can we add the following metrics?
- breakers.in_flight_requests.tripped
- breakers.in_flight_requests.overhead
- breakers.in_flight_requests.estimated_size_in_bytes
| diff --git a/elastic/datadog_checks/elastic/elastic.py b/elastic/datadog_checks/elastic/elastic.py
--- a/elastic/datadog_checks/elastic/elastic.py
+++ b/elastic/datadog_checks/elastic/elastic.py
@@ -358,12 +358,16 @@ class ESCheck(AgentCheck):
"elasticsearch.thread_pool.force_merge.rejected": ("rate", "thread_... |
[elastic] delayed_unassigned_shards should be included in CLUSTER_HEALTH_METRICS
The current version of the elastic integration does not collect the delayed_unassigned_shards metric from _cluster/health. The delayed_unassigned_shards metric is useful for tracking how shards are handled after a node leaves the cluster.... | diff --git a/elastic/datadog_checks/elastic/elastic.py b/elastic/datadog_checks/elastic/elastic.py
--- a/elastic/datadog_checks/elastic/elastic.py
+++ b/elastic/datadog_checks/elastic/elastic.py
@@ -395,6 +395,10 @@ class ESCheck(AgentCheck):
"elasticsearch.cluster_status": ("gauge", "status", lambda v: {"red"... |
Feature request: monitoring resource requests only for pods in the running state
We're running datadog 6.4.2 in several GKE clusters, along with kube-state-metrics to help monitor the state of the cluster.
`kube_state_metrics.*` metrics are flowing through to datadog as expected, and we've got some useful dashboards... | diff --git a/datadog_checks_base/datadog_checks/base/checks/openmetrics/mixins.py b/datadog_checks_base/datadog_checks/base/checks/openmetrics/mixins.py
--- a/datadog_checks_base/datadog_checks/base/checks/openmetrics/mixins.py
+++ b/datadog_checks_base/datadog_checks/base/checks/openmetrics/mixins.py
@@ -295,23 +295,3... |
vault: Allow custom CA bundle
FR: Allow setting a custom CA bundle for the `vault` integration, similar to the `http_check`
| diff --git a/vault/datadog_checks/vault/vault.py b/vault/datadog_checks/vault/vault.py
--- a/vault/datadog_checks/vault/vault.py
+++ b/vault/datadog_checks/vault/vault.py
@@ -5,6 +5,7 @@
from time import time as timestamp
import requests
+from six import string_types
from urllib3.exceptions import InsecureRequestW... |
[couch] error "local variable 'db_stats' referenced before assignment"
I just started using datadog and have an issue getting the couch integration to run (on MacOS Sierra).
`/usr/local/bin/datadog-agent info` reports this:
````
Checks
======
ntp
---
- Collected 0 metrics, 0 events & 1 s... | diff --git a/couch/check.py b/couch/check.py
--- a/couch/check.py
+++ b/couch/check.py
@@ -4,6 +4,7 @@
# stdlib
from urlparse import urljoin
+from urllib import quote
# 3rd party
import requests
@@ -119,7 +120,7 @@ def get_data(self, server, instance):
databases = list(databases)[:self.MAX_DB]
... |
MongoDB integration should run the `top` command on the admin database.
When configuring the agent check for a database != `admin` to gather stats on the collections, the `top` additional metric no longer works:
```
dd.collector[29969]: WARNING (mongo.py:997): Failed to record `top` metrics top may only be run agai... | diff --git a/mongo/datadog_checks/mongo/mongo.py b/mongo/datadog_checks/mongo/mongo.py
--- a/mongo/datadog_checks/mongo/mongo.py
+++ b/mongo/datadog_checks/mongo/mongo.py
@@ -959,7 +959,7 @@ def total_seconds(td):
# Report the usage metrics for dbs/collections
if 'top' in additional_metrics:
... |
New Etcd preview integration doesn't fully work with default kubernetes etcd versions
The etcd integration with `use_preview=true` to use the new v3 specific integration determines leader using `/v3beta` paths
https://github.com/DataDog/integrations-core/blob/4400118a16668dd9fc4b1b98e8601ff9cdf74767/etcd/datadog_che... | diff --git a/etcd/datadog_checks/etcd/etcd.py b/etcd/datadog_checks/etcd/etcd.py
--- a/etcd/datadog_checks/etcd/etcd.py
+++ b/etcd/datadog_checks/etcd/etcd.py
@@ -99,7 +99,7 @@ def check(self, instance):
self.check_post_v3(instance)
else:
self.warning(
- 'In Agent 6.10 ... |
[postgres] Improve config reading errors
I had this `postgres.yaml`:
```
init_config:
instances:
- host: pepepe
...
custom_metrics:
- query: SELECT %s FROM pg_locks WHERE granted = false;
metrics:
count(distinct pid): [postgresql.connections_locked]
descriptors: []
... | diff --git a/postgres/check.py b/postgres/check.py
--- a/postgres/check.py
+++ b/postgres/check.py
@@ -651,14 +651,17 @@ def _get_custom_metrics(self, custom_metrics, key):
self.log.debug("Metric: {0}".format(m))
- for ref, (_, mtype) in m['metrics'].iteritems():
- cap_mtype =... |
Misleading gearman.workers metric
The gearmand check is using `get_status()` to get the number of workers. The code is getting the number of workers for each task and adding all together to get the number of workers. The problem is that a single worker can be registered for multiple tasks. Unless you have all your work... | diff --git a/gearmand/datadog_checks/gearmand/gearmand.py b/gearmand/datadog_checks/gearmand/gearmand.py
--- a/gearmand/datadog_checks/gearmand/gearmand.py
+++ b/gearmand/datadog_checks/gearmand/gearmand.py
@@ -32,15 +32,13 @@ def _get_client(self, host, port):
return self.gearman_clients[(host, port)]
- ... |
[vault] Fix sealed nodes management
Vault `/sys/health` API endpoint returns a HTTP 503 code for sealed nodes.
The `access_api` method of the Vault check will handle this as an HTTPError and set the `SERVICE_CHECK_CONNECT` to `critical` while the API is perfectly reachable. It will also prevent other checks (`SERVI... | diff --git a/vault/datadog_checks/vault/vault.py b/vault/datadog_checks/vault/vault.py
--- a/vault/datadog_checks/vault/vault.py
+++ b/vault/datadog_checks/vault/vault.py
@@ -30,6 +30,17 @@ class Vault(AgentCheck):
'ssl_ignore_warning': {'name': 'tls_ignore_warning'},
}
+ # Expected HTTP Error codes ... |
Datadog's kubelet integration partially broken with kube 1.16.x
**Note:** If you have a feature request, you should [contact support](https://docs.datadoghq.com/help/) so the request can be properly tracked.
https://github.com/DataDog/integrations-core/blob/master/kubelet/datadog_checks/kubelet/prometheus.py#L18 (no... | diff --git a/kubelet/datadog_checks/kubelet/kubelet.py b/kubelet/datadog_checks/kubelet/kubelet.py
--- a/kubelet/datadog_checks/kubelet/kubelet.py
+++ b/kubelet/datadog_checks/kubelet/kubelet.py
@@ -132,7 +132,7 @@ def __init__(self, name, init_config, agentConfig, instances=None):
self.cadvisor_scraper_conf... |
MySQL Replication Lag doesn't tag by channel name
MySQL 5.7 introduces "replication channels", which means a slave can replicate from multiple masters ("sources") at any given time.
To measure replication lag across `n` channels, it'd be great if DataDog could tag the `mysql.replication.seconds_behind_master` metric... | diff --git a/mysql/check.py b/mysql/check.py
--- a/mysql/check.py
+++ b/mysql/check.py
@@ -543,12 +543,12 @@ def _collect_metrics(self, host, db, tags, options, queries):
# MySQL 5.7.x might not have 'Slave_running'. See: https://bugs.mysql.com/bug.php?id=78544
# look at replica vars collected... |
Agent 7.16.0 cannot parse non-semantic nginx version
After upgrading DataDog agent to 7.16.0 nginx integration stopped working.
Agent Log:
```Dec 18 15:42:50 nginxproxy agent[29323]: 2019-12-18 15:42:50 EST | CORE | ERROR | (pkg/collector/python/datadog_agent.go:116 in LogMessage) | nginx:17d65b5a97c80644 | (core.p... | diff --git a/nginx/datadog_checks/nginx/nginx.py b/nginx/datadog_checks/nginx/nginx.py
--- a/nginx/datadog_checks/nginx/nginx.py
+++ b/nginx/datadog_checks/nginx/nginx.py
@@ -215,7 +215,7 @@ def _get_plus_api_data(self, api_url, plus_api_version, endpoint, nest):
return payload
def _set_version_metadata... |
Vulnerability in secondary dependency of datadog-checks-dev[cli]
Version-pinning for python packages in datadog-checks-dev[cli] is outdated and links to a repo with vulnerability CVE-2017-18342.
**Steps to reproduce the issue:**
1. Create a Pipfile with this content:
```
[packages]
"datadog-checks-dev[cli]" = "*... | diff --git a/datadog_checks_dev/setup.py b/datadog_checks_dev/setup.py
--- a/datadog_checks_dev/setup.py
+++ b/datadog_checks_dev/setup.py
@@ -26,7 +26,7 @@
'coverage==4.5.4', # pinned due to https://github.com/nedbat/coveragepy/issues/883
'mock',
'psutil',
- 'PyYAML>=5.1',
+ 'PyYAML>=5.3',
'... |
WMI integration throws Exception: SWbemLocator Not enough storage is available to process this command
```text
===============
Agent (v7.16.0)
===============
Status date: 2020-02-05 15:56:45.740020 GMT
Agent start: 2020-02-05 15:03:08.601503 GMT
Pid: 25188
Go Version: go1.12.9
Python Version: 3.7... | diff --git a/datadog_checks_base/datadog_checks/base/checks/win/wmi/__init__.py b/datadog_checks_base/datadog_checks/base/checks/win/wmi/__init__.py
--- a/datadog_checks_base/datadog_checks/base/checks/win/wmi/__init__.py
+++ b/datadog_checks_base/datadog_checks/base/checks/win/wmi/__init__.py
@@ -114,14 +114,15 @@ def... |
End of preview. Expand in Data Studio
No dataset card yet
- Downloads last month
- 12