Install Coordimap Agent From Binaries
The Coordimap agent publishes release artifacts on GitHub. If you want the most explicit and controllable installation path, install the agent from a pinned release binary.
Why Use The Binary Install?
This installation method is useful when you want to:
- pin a specific agent version
- run the agent on a VM or bare-metal host
- manage the process with your own service manager
- keep the runtime independent of Docker or Kubernetes
Find The Latest Release
Agent releases are published here:
At the time of this docs update, the latest visible release is v1.2.7.
Download A Release Artifact
Replace v1.2.7 if you want to pin a different version:
curl -L -o coordimap-agent.tar.gz https://github.com/coordimap/agent/releases/download/v1.2.7/coordimap-agent.tar.gzIf you prefer to always follow the latest release asset:
curl -L -o coordimap-agent.tar.gz https://github.com/coordimap/agent/releases/latest/download/coordimap-agent.tar.gzExtract The Archive
tar -xzf coordimap-agent.tar.gzPrepare Your Configuration
Create a config.yaml file with your Coordimap API key and the data sources you want to crawl.
Start with these references:
Run The Agent
./agent --config ./config.yamlIf you need verbose logs while validating a new setup:
./agent --debug --config ./config.yamlOperational Advice
- Pin a specific release in production.
- Reuse stable
scope_idvalues even when you upgrade the agent. - Keep credentials in environment variables or a secret manager, not directly in the YAML file.
Welcome To Coordimap Documentation
Install, configure, and troubleshoot the Coordimap agent for Kubernetes, AWS, GCP, PostgreSQL, MySQL, MariaDB, MongoDB, and eBPF flows with stable scope_id guidance.
Run Coordimap Agent With Docker
Run the Coordimap agent with Docker using a mounted YAML configuration file and pinned image tags for repeatable infrastructure discovery.