Skip to content

Commit 7266835

Browse files
authored
Merge pull request #41 from gsparks/PIE-479_rename_orchestrator_and_activities_sourcetypes
(PIE-479) Add new sourcetypes
2 parents 7f6aa01 + 0a1ea2e commit 7266835

File tree

8 files changed

+72
-5
lines changed

8 files changed

+72
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For detailed report generation, you will need to now install and configure the [
2020

2121
Advanced Configuration
2222
----------------
23-
All report views support using custom indexes for storing event data. They accomplish this with a series of advanced search macros. The queries assume each sourcetype can be stored in it's own index (facts, summary reports, detailed reports, bolt events, action events, activities, Puppet Enterprise metrics).
23+
All report views support using custom indicies for storing event data. They accomplish this with a series of advanced search macros. The queries assume each sourcetype can be stored in it's own index (facts, summary reports, detailed reports, bolt events, action events, jobs, activities_rbac, activities_classifier, and Puppet Enterprise metrics).
2424

2525
There is one top level macro, `puppet_index` which defaults to "", if you configure the HEC to use a different index and want all Puppet in that index, change that value here to be `index=puppetindexname`.
2626

README/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Release Notes
22
==============
33

4+
3.0.3:
5+
New Features:
6+
- puppet:jobs, puppet:activities_rbac, and puppet:activities_classifier sourcetypes added.
7+
8+
Fixes:
9+
- Some of the panels in the Overview dashboard still contain the "X" button in the upper right to close the pop-up panel when you click on the primary panel. Some of the other panels lost the X.
10+
11+
- Changed the drilldown to set/unset the token that shows the drilldown panel on click. Effect of the change is that clicking on the panel with the drilldown hidden shows the drilldown. Clicking on the panel with the drilldown showing hides the drilldown.
12+
13+
- Also removed the remaining "X" buttons.
14+
15+
- Standardize some visual formatting - moved "units" to "captions" on the images to "hosts, seconds, etc" shows up underneath the reported numbers, rather than next to them, removed odd height settings.
16+
417
3.0.2:
518
New Features:
619
- puppet:events_summary and puppet:activity sourcetypes added.

app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"id": {
66
"group": null,
77
"name": "TA-puppet-report-viewer",
8-
"version": "3.0.2"
8+
"version": "3.0.3"
99
},
1010
"author": [
1111
{

default/app.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build = 3
77

88
[launcher]
99
author = Puppet, Inc.
10-
version = 3.0.2
10+
version = 3.0.3
1111
description = Application with view Puppet data in Splunk
1212

1313
[ui]

default/macros.conf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,21 @@ iseval = 0
4343
definition = `puppet_index`
4444
iseval = 0
4545

46+
[puppet_jobs_index]
47+
# add the name of your index here if it is not main index=puppet_index
48+
definition = `puppet_index`
49+
iseval = 0
50+
51+
[puppet_activities_rbac_index]
52+
# add the name of your index here if it is not main index=puppet_index
53+
definition = `puppet_index`
54+
iseval = 0
55+
56+
[puppet_activities_classifier_index]
57+
# add the name of your index here if it is not main index=puppet_index
58+
definition = `puppet_index`
59+
iseval = 0
60+
4661
[puppet_run_index]
4762
# add the name of your index here if it is not main index=puppet_index
4863
definition = `puppet_summary_index` OR `puppet_detailed_index` OR `puppet_facts_index`

default/props.conf

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,33 @@ TRUNCATE = 0
6161
category = Puppet Data
6262
pulldown_type = 1
6363

64+
[puppet:jobs]
65+
AUTO_KV_JSON = 0
66+
INDEXED_EXTRACTIONS = json
67+
NO_BINARY_CHECK = 1
68+
SHOULD_LINEMERGE = 0
69+
TRUNCATE = 0
70+
category = Puppet Data
71+
pulldown_type = 1
72+
73+
[puppet:activities_rbac]
74+
AUTO_KV_JSON = 0
75+
INDEXED_EXTRACTIONS = json
76+
NO_BINARY_CHECK = 1
77+
SHOULD_LINEMERGE = 0
78+
TRUNCATE = 0
79+
category = Puppet Data
80+
pulldown_type = 1
81+
82+
[puppet:activities_classifier]
83+
AUTO_KV_JSON = 0
84+
INDEXED_EXTRACTIONS = json
85+
NO_BINARY_CHECK = 1
86+
SHOULD_LINEMERGE = 0
87+
TRUNCATE = 0
88+
category = Puppet Data
89+
pulldown_type = 1
90+
6491
[puppet:activity]
6592
AUTO_KV_JSON = 0
6693
INDEXED_EXTRACTIONS = json

local/app.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build = 4
77

88
[launcher]
99
author = Puppet, Inc.
10-
version = 3.0.2
10+
version = 3.0.3
1111

1212
[ui]
1313
is_visible = 1

metadata/default.meta

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,16 @@ owner = admin
4949

5050
[macros/puppet_activity_index]
5151
export = none
52-
owner = admin
52+
owner = admin
53+
54+
[macros/puppet_jobs_index]
55+
export = none
56+
owner = admin
57+
58+
[macros/puppet_activities_rbac_index]
59+
export = none
60+
owner = admin
61+
62+
[macros/puppet_activities_classifier_index]
63+
export = none
64+
owner = admin

0 commit comments

Comments
 (0)