Add script for docker events/metrics and support running TA outside of Splunk
* Add docker.sh and docker_metric.sh for collecting docker events/metrics * Add helper script to extra/ to run the TA commands on systems without a Splunk forwarder. The commands can be sent to a syslog server. This script is useful for systems with small or read-only filesystems that cannot support a Universal Forwarder. * Add syslog_inputs_nix_ta app to extra/ for ingesting the data from syslog
This commit is contained in:
parent
5e766d84d5
commit
5551b8973d
13 changed files with 322 additions and 13 deletions
6
Makefile
6
Makefile
|
@ -6,10 +6,10 @@ TAR_FILE := ./ta-for-unix-and-linux-$(VERSION).tgz
|
|||
all: release
|
||||
|
||||
updateversion:
|
||||
ifndef NEWVERSION
|
||||
$(error NEWVERSION is not specified. Usage make NEWVERSION=<newversion> updateversion)
|
||||
ifndef NEW
|
||||
$(error NEW is not specified. Usage make NEW=<newversion> updateversion)
|
||||
endif
|
||||
sed -ri "s/$(VERSION)/$(NEWVERSION)/g" app.manifest default/app.conf VERSION
|
||||
sed -ri "s/$(VERSION)/$(NEW)/g" app.manifest default/app.conf VERSION
|
||||
|
||||
release:
|
||||
mkdir -p $(WORK_DIR)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue