author | title | summary | tags | ||||
---|---|---|---|---|---|---|---|
Bretton Vine |
Loki |
Loki is a tool for viewing centralised log data, and extracting alerts and metrics for export to Prometheus |
|
This is a flavour containing the loki
data source, promtail
log ingestor, and grafana
viewer.
The flavour includes a local consul
agent instance to be available that it can connect to (see configuration below). You can e.g. use the consul pot
flavour on this site to run consul
. If no consul
instance is available at first, make sure it's up within an hour and the certificate renewal process will restart consul
. You can also connect to this host and service consul restart
manually.
- Create a ZFS data set on the parent system beforehand
zfs create -o mountpoint=/mnt/lokidata zroot/lokidata
- Create your local jail from the image or the flavour files.
- Clone the local jail
- Mount in the ZFS data set you created
pot mount-in -p <jailname> -m /mnt -d /mnt/lokidata
- Copy in the SSH private key for the user on the Vault leader:
pot copy-in -p <jailname> -s /root/sshkey -d /root/sshkey
- Optionally export the ports after creating the jail:
pot export-ports -p <jailname> -e 3100:3100 -e 3000:3000
- Adjust to your environment:
sudo pot set-env -p <jailname> -E DATACENTER=<datacentername> -E NODENAME=<nodename> \ -E IP=<IP address of this system> -E CONSULSERVERS='<correctly formatted list of quoted IP addresses>' \ -E VAULTSERVER=<IP address vault server> -E VAULTTOKEN=<token> \ -E SFTPUSER=certuser -E SFTPPASS=<password> [-E GOSSIPKEY=<32 byte Base64 key from consul keygen>]
The CONSULSERVERS parameter defines the consul server instances, and must be set as CONSULSERVERS='"10.0.0.2"'
or CONSULSERVERS='"10.0.0.2", "10.0.0.3", "10.0.0.4"'
or CONSULSERVERS='"10.0.0.2", "10.0.0.3", "10.0.0.4", "10.0.0.5", "10.0.0.6"'
The GOSSIPKEY parameter is the gossip encryption key for consul agent. We're using a default key if you do not set the parameter, do not use the default key for production encryption, instead provide your own.
The VAULTSERVER parameter is the IP address of the vault
server to authenticate to, and obtain certificates from.
The VAULTTOKEN parameter is the issued token from the vault
server.
The SFTPUSER and SFTPPASS parameters are for the user on the vault
leader in the VAULTSERVER parameter. You need to copy in the id_rsa from there to the host of this image.
There are several components to having a searchable log-ingestor:
syslogd
is configured to accept syslog on UDP port 514 from hosts in the specified subnet, and save all to /mnt/logs/central.log
.
Remote hosts have their syslog.conf configured to send logs to this host.
This is a very broad and blunt approach, where syslog-ng
may be a preferred approach with wildcard capabilities and multiple files.
promtail
is configured as a service and monitors /mnt/logs/central.log
for data to ingest and label, before submitting to loki
.
loki
is configured as a service and ingests data-with-labels, and makes available for query purposes.
grafana
is a viewer for the data in the loki
data source. A separate grafana
flavour must be configured with loki
as a data source to view captured logs.
To access loki
make sure your grafana
flavour has a data source with this host's IP:
- https://:3000
and open the
search logs
dashboard.
Persistent storage will be in the ZFS dataset zroot/lokidata, available inside the image at /mnt
If you stop the image, the data will still exist, and a new image can be started up and still use it.
If you need to change the directory parameters for the ZFS dataset, adjust the mount-in
command accordingly for the source directory as mounted by the parent OS.
Do not adjust the image destination mount point at /mnt because Loki is configured to use this directory for data.