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 #239 from guilhemmarchand/testing
Browse files Browse the repository at this point in the history
Version 1.2.33
  • Loading branch information
guilhemmarchand committed Feb 9, 2021
2 parents 8bb54eb + c5c52f2 commit d675336
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 6 deletions.
1 change: 0 additions & 1 deletion appinspect.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ for app in $(ls *.tgz); do
-H "Cache-Control: no-cache" \
-s \
-F "app_package=@${app}" \
-F "included_tags=cloud" \
--url "https://appinspect.splunk.com/v1/app/validate" | jq -r .links | grep href | head -1 | awk -F\" '{print $4}' | awk -F\/ '{print $6}')

if [ $? -eq 0 ]; then
Expand Down
16 changes: 16 additions & 0 deletions docs/releasenotes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Release notes
#############

Version 1.2.33
==============

**CAUTION:**

This is a new main release branch, TrackMe 1.2.x requires the deployment of the following dependencies:

- Semicircle Donut Chart Viz, Splunk Base: https://splunkbase.splunk.com/app/4378
- Splunk Machine Learning Toolkit, Splunk Base: https://splunkbase.splunk.com/app/2890
- Splunk Timeline - Custom Visualization, Splunk Base: https://splunkbase.splunk.com/app/3120

TrackMe requires a summary index (defaults to trackme_summary) and a metric index (defaults to trackme_metrics):
https://trackme.readthedocs.io/en/latest/configuration.html

- Fix - Appinspect failures due to CSV lookup files not referenced as lookups (non Cloud failure)

Version 1.2.32
==============

Expand Down
2 changes: 1 addition & 1 deletion trackme/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.32"
"version": "1.2.33"
},
"author": [
{
Expand Down
2 changes: 1 addition & 1 deletion trackme/default/app.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ label = TrackMe
[launcher]
author = Guilhem Marchand
description = Data tracking system for Splunk
version = 1.2.32
version = 1.2.33
6 changes: 3 additions & 3 deletions trackme/default/data/ui/views/trackMe_api_reference.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<fieldForLabel>resource_grp</fieldForLabel>
<fieldForValue>resource_grp</fieldForValue>
<search>
<query>| inputlookup trackme_api_reference_endpoints.csv
<query>| inputlookup trackme_api_reference_endpoints
| stats c by resource_grp
| sort 0 resource_grp</query>
<earliest>-24h@h</earliest>
Expand All @@ -105,7 +105,7 @@
<table>
<title>Click on a row of the table to show API endpoints from this resource group:</title>
<search>
<query>| inputlookup trackme_api_reference.csv
<query>| inputlookup trackme_api_reference
| search resource_grp="$resource_grp_tk$"
| fields resource_grp, resource_desc</query>
<earliest>-24h@h</earliest>
Expand Down Expand Up @@ -136,7 +136,7 @@
<table>
<title>Click on a row of the table to describe the endpoint:</title>
<search>
<query>| inputlookup trackme_api_reference_endpoints.csv
<query>| inputlookup trackme_api_reference_endpoints
| search resource_grp="$resource_grp_tk$"
| fields resource_api, resource_desc, resource_mode, resource_doc, resource_example</query>
<earliest>-24h@h</earliest>
Expand Down
21 changes: 21 additions & 0 deletions trackme/default/transforms.conf
Original file line number Diff line number Diff line change
Expand Up @@ -291,3 +291,24 @@ fields_list = _key, model_id, model_name, model_regex, model_type, sourcetype_sc
external_type = kvstore
collection = kv_trackme_tags_policies
fields_list = _key, tags_policy_id, tags_policy_value, tags_policy_regex, mtime

#
# trackme/lookups/trackme_kvstore_collections.csv - used by the Python backend for backup / restore features
#

[trackme_kvstore_collections]
filename = trackme_kvstore_collections.csv

#
# trackme/lookups/trackme_api_reference.csv - used by the API tooling dashboard
#

[trackme_api_reference]
filename = trackme_api_reference.csv

#
# trackme/lookups/trackme_api_reference_endpoints.csv
#

[trackme_api_reference_endpoints]
filename = trackme_api_reference_endpoints.csv
Binary file removed trackme_1232.tgz
Binary file not shown.
Binary file added trackme_1233.tgz
Binary file not shown.

0 comments on commit d675336

Please sign in to comment.