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 #56 from guilhemmarchand/version_1038
Browse files Browse the repository at this point in the history
Version 1.0.38
  • Loading branch information
guilhemmarchand committed Dec 23, 2019
2 parents a8a80e3 + efbfecc commit 5de0555
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- run:
name: grab appinspect
command: |
curl -Ls https://download.splunk.com/misc/appinspect/splunk-appinspect-2.0.0.tar.gz -o appinspect-lastest.tar.gz
curl -Ls https://download.splunk.com/misc/appinspect/splunk-appinspect-latest.tar.gz -o appinspect-lastest.tar.gz
mkdir appinspect-latest
tar -zxvf appinspect-lastest.tar.gz -C appinspect-latest --strip-components=1
- run:
Expand Down
5 changes: 5 additions & 0 deletions docs/releasenotes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release notes
#############

Version 1.0.38
==============

- fix: Error in TrackMe Mobile dashboard for summary not green statuses for metric hosts (count not green counts green metrics)

Version 1.0.37
==============

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 = Easy data tracking system for Splunk admins
version = 1.0.37
version = 1.0.38
2 changes: 1 addition & 1 deletion trackme/default/data/ui/views/trackMe_summary.xml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
| `trackme_date_format(metric_last_time_seen)`
| rename "* (translated)" as "*"
| mvexpand metric_details
| stats first(priority) as priority, first(metric_last_time_seen) as metric_last_time_seen, dc(metric_category) as count_metric_category, count(eval(match(metric_details, "metric_host_state\=green"))) as count_green, count(eval(match(metric_details, "metric_host_state=green"))) as count_non_green by metric_host
| stats first(priority) as priority, first(metric_last_time_seen) as metric_last_time_seen, dc(metric_category) as count_metric_category, count(eval(match(metric_details, "metric_host_state=green"))) as count_green, count(eval(match(metric_details, "metric_host_state=(?!green)"))) as count_non_green by metric_host
| eval summary=" metric categories: " . count_metric_category . ", " . "green state: " . count_green . ", " . "red state: " . count_non_green
| fields metric_host, metric_last_time_seen, priority, summary</query>
<refresh>30s</refresh>
Expand Down
Binary file removed trackme_1037.tgz
Binary file not shown.
Binary file added trackme_1038.tgz
Binary file not shown.

0 comments on commit 5de0555

Please sign in to comment.