在https://docs.datadoghq.com/api/?lang=python#post-timeseries-points的API参考中,points
参数描述为
点的JSON数组。每个点的形式为: [[POSIX_timestamp,numeric_value],...]
但是,在该文本右侧的示例代码中,它的调用方式类似于
api.Metric.send(metric='page.views', points=1000)
这1000值是什么意思?尽管不是JSON数组,它仍然有效吗?