Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dogmover/dogmover.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
from docopt import docopt
import json
import os
import time
import glob
import requests
from datadog import initialize, api
Expand Down Expand Up @@ -438,6 +439,7 @@ def push_logpipelines(options):
json_data = json.loads(r.text)
json_data["id"] = itemId
path = _json_to_file('logpipelines.out', itemId, json_data)
time.sleep(10)
print("Pushed '{}' log pipelines.".format(count))


Expand Down