From 77145cd1c95af1b90137bd472ae1b1cd761d24c5 Mon Sep 17 00:00:00 2001 From: Alejandro Sanchez Date: Tue, 10 Mar 2015 11:01:56 +0100 Subject: [PATCH] Removed extra files --- INSTALL.md | 27 --------------------------- NEWS | 9 --------- README.md | 22 ---------------------- 3 files changed, 58 deletions(-) delete mode 100644 INSTALL.md delete mode 100644 NEWS delete mode 100644 README.md diff --git a/INSTALL.md b/INSTALL.md deleted file mode 100644 index a91718a..0000000 --- a/INSTALL.md +++ /dev/null @@ -1,27 +0,0 @@ -## Installation - - # Change directory to your SLURM source directory - cd slurm-14.11.3/ - wget -O jobcomp_es-0.2.tar.gz https://github.com/asanchez1987/jobcomp-elasticsearch/archive/v0.2.tar.gz - tar xf ./jobcomp_es-0.2.tar.gz --strip-components=1 - ./autogen.sh - ./configure - # Ensure libcurl is usable: - # ... - # checking for curl-config... /usr/bin/curl-config - # checking for the version of libcurl... 7.19.7 - # checking whether libcurl is usable... yes - # checking for curl_free... yes - # ... - make - make install - - -Plugin can be enabled and configured through slurm.conf, here is an example: - - JobCompType=jobcomp/elasticsearch - JobCompLoc=http://YOUR_ELASTICSEARCH_SERVER:9200 - -Make sure that the ElasticSearch server is reachable from the Slurm controller host. - -All the jobs will be stored in the **slurm** index with type **jobcomp** diff --git a/NEWS b/NEWS deleted file mode 100644 index 3fac9cb..0000000 --- a/NEWS +++ /dev/null @@ -1,9 +0,0 @@ -This file describes changes in recent versions of jobcomp/elasticsearch. - -* Changes in jobcomp/elasticsearch v0.2 -======================================= --- Fixed some memory leaks - -* Changes in jobcomp/elasticsearch v0.1 -======================================= --- First release diff --git a/README.md b/README.md deleted file mode 100644 index fa11496..0000000 --- a/README.md +++ /dev/null @@ -1,22 +0,0 @@ -## Introduciton - -**jobcomp/elasticsearch** is a SLURM job completion plugin that inserts the information related -to finished jobs (COMPLETED, CANCELLED, FAILED, TIMEOUT or NODE_FAIL) in a custom -[ElasticSearch](http://www.elasticsearch.org/) server. - -If data can't be indexed for whatever reason (server not reachable, index in readonly mode, etc.), -the plugin saves the job information in a state file for future retries. - -It is a good idea to have a web layer over your ElasticSearch server, such as [Kibana](http://www.elasticsearch.org/overview/kibana/), in order to visualize the data. - -Note that the plugin has **libcurl-devel** library as a dependency, so you can use these two -**configure** options: - - --with-libcurl (used by default, so not necessary) - --without-libcurl - -Here you can find some [Screenshots](https://github.com/asanchez1987/jobcomp-elasticsearch/wiki/Screenshots). - -Please, see the [INSTALL.md](https://github.com/asanchez1987/jobcomp-elasticsearch/blob/master/INSTALL.md) file for installation instructions. - -Any suggestions are more than welcome to asanchez1987@gmail.com