Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
Merge pull request #363 from guilhemmarchand/testing
Browse files Browse the repository at this point in the history
Version 1.2.53
  • Loading branch information
guilhemmarchand committed Aug 17, 2021
2 parents 8ca9d0f + 501670e commit 65ffe07
Show file tree
Hide file tree
Showing 23 changed files with 49 additions and 39 deletions.
11 changes: 11 additions & 0 deletions docs/releasenotes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Release notes
#############

Version 1.2.53
==============

.. warning:: **Splunk 8.x and Python3 support only**

- Starting from this release, only Splunk 8.x and Python3 are supported
- Some functions such as builtin alert actions are not compatible any longer with Python2 and Splunk 7.x
- For the latest version available for Splunk 7.x, see the release 1.2.51

- Fix - Issue #362 - Windows based deployment reports ERROR JSON reply had no "payload" value in rest calls

Version 1.2.52
==============

Expand Down
5 changes: 2 additions & 3 deletions globalConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,10 @@
}
],
"meta": {
"apiVersion": "3.2.0",
"name": "trackme",
"restRoot": "trackme",
"version": "1.2.52",
"version": "1.2.53",
"displayName": "TrackMe",
"schemaVersion": "0.0.2"
"schemaVersion": "0.0.3"
}
}
2 changes: 1 addition & 1 deletion package/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"id": {
"group": null,
"name": "trackme",
"version": "1.2.52"
"version": "1.2.53"
},
"author": [
{
Expand Down
2 changes: 1 addition & 1 deletion package/bin/trackme.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

from splunklib.searchcommands import dispatch, GeneratingCommand, Configuration, Option, validators
import rest_handler
import trackme_rest_handler
import splunklib.client as client


Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_ack.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

class TrackMeHandlerAck_v1(rest_handler.RESTHandler):
class TrackMeHandlerAck_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerAck_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_allowlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

class TrackMeHandlerAllowList_v1(rest_handler.RESTHandler):
class TrackMeHandlerAllowList_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerAllowList_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_backup_and_restore.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

#
# Splunk Cloud certification notes: these functions create and manage archive files for the application in the following directory $SPLUNK/etc/apps/trackme/backup
# There are no options to perform any kind of file manipulations out of this application directory
#

class TrackMeHandlerBackupAndRestore_v1(rest_handler.RESTHandler):
class TrackMeHandlerBackupAndRestore_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerBackupAndRestore_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_blocklist.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

class TrackMeHandlerBlockList_v1(rest_handler.RESTHandler):
class TrackMeHandlerBlockList_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerBlockList_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_data_hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client


class TrackMeHandlerDataHosts_v1(rest_handler.RESTHandler):
class TrackMeHandlerDataHosts_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerDataHosts_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_data_sampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

class TrackMeHandlerDataSampling_v1(rest_handler.RESTHandler):
class TrackMeHandlerDataSampling_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerDataSampling_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_data_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client


class TrackMeHandlerDataSources_v1(rest_handler.RESTHandler):
class TrackMeHandlerDataSources_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerDataSources_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_elastic_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client


class TrackMeHandlerElasticSources_v1(rest_handler.RESTHandler):
class TrackMeHandlerElasticSources_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerElasticSources_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_identity_cards.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

class TrackMeHandlerIdentityCards_v1(rest_handler.RESTHandler):
class TrackMeHandlerIdentityCards_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerIdentityCards_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_lagging_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

class TrackMeHandlerLaggingClasses_v1(rest_handler.RESTHandler):
class TrackMeHandlerLaggingClasses_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerLaggingClasses_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_lagging_classes_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

class TrackMeHandlerLaggingClassesMetrics_v1(rest_handler.RESTHandler):
class TrackMeHandlerLaggingClassesMetrics_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerLaggingClassesMetrics_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_logical_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

class TrackMeHandlerLogicalGroups_v1(rest_handler.RESTHandler):
class TrackMeHandlerLogicalGroups_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerLogicalGroups_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_maintenance.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

class TrackMeHandlerMaintenance_v1(rest_handler.RESTHandler):
class TrackMeHandlerMaintenance_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerMaintenance_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_metric_hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client


class TrackMeHandlerMetricHosts_v1(rest_handler.RESTHandler):
class TrackMeHandlerMetricHosts_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerMetricHosts_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_smart_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client
import splunklib.results as results

class TrackMeHandlerSmartStatus_v1(rest_handler.RESTHandler):
class TrackMeHandlerSmartStatus_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerSmartStatus_v1, self).__init__(command_line, command_arg, logger)

Expand Down
4 changes: 2 additions & 2 deletions package/bin/trackme_rest_handler_tag_policies.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
splunkhome = os.environ['SPLUNK_HOME']
sys.path.append(os.path.join(splunkhome, 'etc', 'apps', 'trackme', 'lib'))

import rest_handler
import trackme_rest_handler
import splunklib.client as client

class TrackMeHandlerTagPolicies_v1(rest_handler.RESTHandler):
class TrackMeHandlerTagPolicies_v1(trackme_rest_handler.RESTHandler):
def __init__(self, command_line, command_arg):
super(TrackMeHandlerTagPolicies_v1, self).__init__(command_line, command_arg, logger)

Expand Down
2 changes: 1 addition & 1 deletion package/default/app.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ label = TrackMe
[launcher]
author = Guilhem Marchand
description = Data tracking system for Splunk
version = 1.2.52
version = 1.2.53

[triggers]
reload.trackme_settings = simple
File renamed without changes.
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = 1.2.52
version = 1.2.53

0 comments on commit 65ffe07

Please sign in to comment.