From 2e85bb5a1d25dc9145b3baedeef34fbe5cff0ce9 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sat, 21 Mar 2015 15:01:50 -0400 Subject: [PATCH] rebuild docs --- index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 33c52e7..55d4309 100644 --- a/index.html +++ b/index.html @@ -181,7 +181,7 @@ document.addEventListener("DOMContentLoaded", function(){hljs.initHighlightingOn

Parameters:

query
-

the query to use for search see search docs +

the query to use for search see datadog docs for examples of the query (e.g. "hosts:database", "metrics:system" or "test")

callback
@@ -396,7 +396,7 @@ dogapi.metric.query(then, now, query, function(err, res){
  • get
  • create
  • update
  • -
  • delete_tags
  • +
  • remove
  • get_all(source, callback)

    @@ -525,8 +525,8 @@ dogapi.tag.update("host.name", function(err, results){
    -
    -

    delete_tags(hostname, source, callback)

    +
    +

    remove(hostname, source, callback)

    delete the host tags for the provided host name or host id

    Parameters:

    @@ -549,7 +549,7 @@ var options = { app_key: "app_key" }; dogapi.initialize(options); -dogapi.tag.delete("host.name", function(err, results){ +dogapi.tag.remove("host.name", function(err, results){ console.dir(results); });