The AppDynamics File Watcher Extension can be used to provide metrics from configured files and directories.
Before the extension is installed, the prerequisites mentioned here need to be met. Please do not proceed with the extension installation if the specified prerequisites are not met.
Download and install Apache Maven which is configured with Java 8
to build the extension artifact from source. You can check the java version used in maven using command mvn -v
or mvn --version
. If your maven is using some other java version then please download java 8 for your platform and set JAVA_HOME parameter before starting maven.
The extension can be deployed on the same box as the one with the files to be monitored, or remotely if monitoring shared network paths. For Windows network paths, it is recommended to map the paths locally prior to monitoring.
git clone <repoUrl>
command.<MACHINE_AGENT_HOME>/monitors/
Configure the File Watcher Extension by editing the config.yml
& monitor.xml
files in <MACHINE_AGENT_HOME>/monitors/FileWatcher/
.
Configure the Tier under which the metrics should be reported. This can be done by adding the Tier ID to the metric prefix.
metricPrefix: "Server|Component:<TIER_ID>|Custom Metrics|File Watcher|"
If SIM is enabled, please use the default metric prefix.
metricPrefix: "Custom Metrics|File Watcher|
The paths to be monitored must be configured under pathsToProcess
. The following fields are present in each:
A mandatory field that acts as an alias for a configured path in the Metric Browser.
The actual path to the directories or files to be monitored. Consider our directory to be /src/test/resources/TestFiles
.
There are multiple scenarios that can be configured in the pathsToProcess
section. The use cases supported are as follows:
(Note: For Windows, path should be configured with 4 backslashes as separator - C:\\\\src\\\\test\\\\resources\\\\TestFiles
.
For Windows Network paths, you can configure path like - \\\\\\\\1.2.3.4\\\\abc\\\\def\\\\ProductI
)
path: "src/test/resources/TestFiles"
Directory metrics for 'TestFiles' will be generated. Please ensure that the directory does not end with a slash for this scenario.
path: "src/test/resources/TestFiles/TF1.txt"
File metrics for TF1.txt will be generated in this case. Refer to the Metrics section to differentiate between Directory metrics & File metrics.
path: "src/test/resources/TestFiles/*.txt"
This will generate file metrics for only txt
files withing TestFiles.
path: "src/test/resources/TestFiles/*.*"
This will generate file metrics for files of all extensions within TestFiles.
path: "src/test/resources/TestFiles/2020*/*.log"
This will generate file metrics for all log files within subdirectories of TestFiles that begin with '2020'.
path: "src/test/resources/TestFiles/*"
This will generate file and directory metrics for all files and subdirectories within TestFiles only at the first level.
path: "src/test/resources/TestFiles/**"
This will recursively generate file and directory metrics for all files and subdirectories within TestFiles at all levels.
path: "src/test/resources/TestFiles/**/*.*"
This will recursively generate file metrics for all files that match the glob pattern within TestFiles at all levels.
A flag to include or exclude any hidden files or directories encountered.
Every directory has a metric that counts the number of files within that directory. When this flag is set to true, the
extension will simply exclude any subdirectories from this count.
The count mentioned in 2.4 only includes the files within a directory at the immediate next level. When this flag is set
to true, the extension will publish a new metric that recursively counts the number of files within the configured directory
and within all subdirectories. This can be used in conjunction with 2.3 & 2.4.
The File Size metric for each directory only shows the size of the directory's contents (in bytes) at the first level.
When this flag is set to true, the extension publishes a new metric that shows the size of the directory on the disk. Please note that
this metric is only available for directories.
The extension provides the following metrics:
Available for both, files and directories.
Available only for directories.
Available only for directories.
Available only for files.
Available for both, files and directories.
Available for both, files and directories. Will have a value of 0 when a previously 'available' file gets deleted.
Available only for directories. Refer to 2.5 for detailed information.
Available only for directories. Refer to 2.6 for detailed information.
Available for both, files and directories. Will have a value of 1 if a file/directory being monitored was modified in the last
60 seconds.
Always include one thread per base directory + 1.
Configure the path to the config.yml by editing the <task-arguments>
in the monitor.xml file in the <MACHINE_AGENT_HOME>/monitors/FileWatcher/
directory:
<task-arguments>
<!-- config file-->
<argument name="config-file" is-required="true" default-value="monitors/FileWatcher/config.yml" />
....
</task-arguments>
Restart the machine agent once this is done. Note that this is a continuous extension, as it actively watches each configured path for changes.
Workbench is an inbuilt feature provided with each extension in order to assist you to fine tune the extension setup before you actually deploy it on the controller. Please review the following document for how to use the Extensions WorkBench
Please follow the steps listed in the extensions troubleshooting document in order to troubleshoot your issue. These are a set of common issues that customers might face during the installation of the extension.
Always feel free to fork and contribute any changes directly via GitHub.
Name | Version |
---|---|
Extension Version | 3.1.4 |
Last Update | 22/06/2021 |
List of Changes | Change log |
Note: While extensions are maintained and supported by customers under the open-source licensing model, they interact with agents and Controllers that are subject to AppDynamics’ maintenance and support policy. Some extensions have been tested with AppDynamics 4.5.13+ artifacts, but you are strongly recommended against using versions that are no longer supported.
Owner
Contributors
Categories
Products
AppDynamicsProgramming Languages
JavaLicense
Code Exchange Community
Get help, share code, and collaborate with other developers in the Code Exchange community.View Community