hadoop-hdfs-fsimage-exporter
Exports Hadoop HDFS content statistics to Prometheus
File Explorer
- ci.yml
- codeql.yml
- dependabot.yml
- maven-wrapper.properties
- BuildMetaInfo.java
- Config.java
- ConfigHttpHandler.java
- FsImageCollector.java
- FsImageReporter.java
- FsImageUpdateHandler.java
- FsImageWatcher.java
- WebServer.java
- log4j.xml
- BenchmarkIT.java
- ConfigTest.java
- FsImageCollectorTest.java
- FsImageReporterTest.java
- FsImageReportUpdaterTest.java
- FsImageWatcherTest.java
- WebServerIT.java
- config-it.yml
- config.yml
- fsimage_0001
- log4j.xml
- Dockerfile
- example.yml
- fsimage-docker.yml
- fsimage_exporter.png
- home.png
- LICENSE
- mvnw
- mvnw.cmd
- pom.xml
- README.md
- run_example.sh
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
dirs
View Details ▼
dirs
Display or manipulate the directory stack.
The directory stack is a list of recently visited directories that can be manipulated with the `pushd` and `popd` commands.
See also: `pushd`, `popd`.
dirs
Display the directory stack with a space between each entry:
dirs -p
Display the directory stack with one entry per line:
dirs -v
Display a numbered list of entries in the directory stack:
java
View Details ▼
java
Java application launcher.
java {{classname}}
Execute a Java `.class` file that contains a main method by using just the class name:
java -classpath {{path/to/classes1}}:{{path/to/classes2}}:. {{classname}}
Execute a Java program and use additional third-party or user-defined classes:
java -jar {{filename.jar}}
Execute a `.jar` program:
mvn
View Details ▼
mvn
Apache Maven: build and manage Java-based projects.
mvn compile
Compile a project:
mvn package
Compile and package the compiled code in its distributable format, such as a `jar`:
mvn package {{[-D|--define]}} skipTests
Compile and package, skipping unit tests:
links
View Details ▼
links
Command-line text-only web browser.
See also: `links2`.
links {{https://example.com}}
Visit a website:
links -anonymous {{https://example.com}}
Apply restrictions for anonymous account:
links -enable-cookies {{0|1}} {{https://example.com}}
Enable Cookies (`1` to enable):
