fleet/docs
2018-01-04 09:19:50 -05:00
..
api Rename Kolide to Fleet in the docs (#1554) 2017-09-21 16:51:26 -06:00
application replace support email with github issue link (#1656) 2017-12-01 12:15:50 -05:00
cli Fix documentation typos (#1682) 2017-12-21 18:37:32 -08:00
development add a mini faq 2018-01-04 09:19:50 -05:00
images SSO Login and Configuration Support (#1506) 2017-05-17 10:58:40 -05:00
infrastructure Fix redis_address documentation error (#1648) 2017-11-20 16:43:03 -08:00
README.md add a mini faq 2018-01-04 09:19:50 -05:00

Kolide Documentation

Welcome to the Kolide documentation.

  • Information about using the Kolide web application can be found in the Application Documentation.
  • If you're interested in using the new fleetctl CLI to manage your osquery fleet, see the CLI Documentation.
  • Resources for deploying osquery to hosts, deploying the Kolide server, installing Kolide's infrastructure dependencies, etc. can all be found in the Infrastructure Documentation.
  • If you are interested in accessing the Kolide REST API in order to programmatically interact with your osquery installation, please see the API Documentation.
  • Finally, if you're interested in interacting with the Kolide source code, you will find information on modifying and building the code in the Development Documentation.

If you have any questions, please don't hesitate to File a GitHub issue or join us on Slack. You can find us in the #kolide channel.

Troubleshooting FAQ

Make errors

/bin/bash: dep: command not found
make: *** [.deps] Error 127

If you get the above error, you need to add $GOPATH/bin to your PATH. A quick fix is to run export PATH=$GOPATH/bin:$PATH. See the Go language documentation for workspaces and GOPATH for a more indepth documentation.

server/kolide/emails.go:90:23: undefined: Asset
make: *** [fleet] Error 2

If you get an undefined: Asset error it is likely because you did not run make generate before make build. See Building the Code for additional documentation on compiling the fleet binary.