VES app: Change Directory and file names to app. 13/41713/3
authorAlan Carey <alan.carey@intel.com>
Tue, 15 Aug 2017 09:49:33 +0000 (10:49 +0100)
committerMaryam Tahhan <maryam.tahhan@intel.com>
Tue, 19 Sep 2017 10:04:01 +0000 (10:04 +0000)
    -Directories renamed
    -All files containing plugin name changed to app
    -Logfile name changed
    -Changed some Licenses

Change-Id: I578dcf8249e160a904d36b439d10f5c4e7940b98
Signed-off-by: Alan Carey <alan.carey@intel.com>
3rd_party/collectd-ves-app/LICENSE [moved from 3rd_party/collectd-ves-plugin/LICENSE with 52% similarity]
3rd_party/collectd-ves-app/PSF_LICENSE_AGREEMENT [moved from 3rd_party/collectd-ves-plugin/PSF_LICENSE_AGREEMENT with 100% similarity]
3rd_party/collectd-ves-app/ves_app/__init__.py [new file with mode: 0644]
3rd_party/collectd-ves-app/ves_app/ves_app.py [moved from 3rd_party/collectd-ves-plugin/ves_plugin/ves_plugin.py with 99% similarity]
3rd_party/collectd-ves-app/ves_app/ves_app_config.conf [moved from 3rd_party/collectd-ves-plugin/ves_plugin/ves_plugin_config.conf with 100% similarity]
3rd_party/collectd-ves-plugin/ves_plugin/__init__.py [deleted file]

similarity index 52%
rename from 3rd_party/collectd-ves-plugin/LICENSE
rename to 3rd_party/collectd-ves-app/LICENSE
index 8b515df..804ec19 100644 (file)
@@ -10,10 +10,14 @@ so, subject to the following conditions:
 The above copyright notice and this permission notice shall be included in all
 copies or substantial portions of the Software.
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/3rd_party/collectd-ves-app/ves_app/__init__.py b/3rd_party/collectd-ves-app/ves_app/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
@@ -906,7 +906,7 @@ def main():
     parser.add_argument("--config", dest="configfile", default=None, help="Specify config file", metavar="FILE")
     parser.add_argument("--loglevel", dest="level", choices=['DEBUG', 'INFO', 'WARNING', 'ERROR'], default='WARNING',
                         help="Specify log level (default: %(default)s)", metavar="LEVEL")
-    parser.add_argument("--logfile", dest="logfile", default='ves_plugin.log',
+    parser.add_argument("--logfile", dest="logfile", default='ves_app.log',
                         help="Specify log file (default: %(default)s)", metavar="FILE")
     args = parser.parse_args()
 
diff --git a/3rd_party/collectd-ves-plugin/ves_plugin/__init__.py b/3rd_party/collectd-ves-plugin/ves_plugin/__init__.py
deleted file mode 100644 (file)
index 14364a3..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.