hadoop-hdfs-fsimage-exporter

(★ 163)

Exports Hadoop HDFS content statistics to Prometheus

File Explorer

  • 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

jsDelivr

jsDelivr 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 ▼

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 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 ▼

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 ▼

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):

// repository documentation