Conor Schaefer

Results 203 comments of Conor Schaefer

> They do have an APT repo for Linux. Link? Can't find on their website.

> we should not be recommending Adium Completely agree. Poked around earlier this week to confirm that Adium is as deprecated as I'd thought, and it should be removed from...

> https://spideroak.com/faq/what-are-the-apt-sources-lines-for-spideroak Unfortunately that apt repo is only relevant for the `spideroakone` client—it doesn't provide packages for other SpiderOak software, such as Encryptr, or Semaphor.

@rileyjshaw Great idea. We're going republish the document in its current form in the near future, as step toward making this a living document, that can incorporate changes from the...

Thanks for the well-written report, will try to reproduce locally and follow up.

@techraf Do you have any clients shipping logs to the test VM? From the error output you posted, it looks like the elasticsearch service isn't running, but the tests should...

Relevant: http://docs.ansible.com/ansible/elasticsearch_plugin_module.html

Also document searching and deleting by log type. Requires curl against the API, curator doesn't support. Since we're using ES v2, we'll need to use [scroll calls](https://www.elastic.co/guide/en/elasticsearch/reference/1.6/search-request-scroll.html).

This change is more involved than I expected. Adding the following patch: ``` --- a/files/elasticsearch-template-topbeat.json +++ b/files/elasticsearch-template-topbeat.json @@ -82,6 +82,11 @@ } } }, + "cmdline": { + "type": "string",...

Another failed attempt: ``` --- a/files/elasticsearch-template-topbeat.json +++ b/files/elasticsearch-template-topbeat.json @@ -17,6 +17,14 @@ "type": "{dynamic_type}" }, "match": "*" + }, + "template_topbeat_proc_cmdline": { + "mapping": { + "doc_values": true, + "index":...