This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This document serves as guidelines / rules and tools list that is to be used by the LLMs to help investigate issues with Grafana Alloy. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -o xtrace -e -u -o pipefail -o posix | |
| # A simple script to keep in sync one folder on local host with a remote host. I use it to keep my code synced with | |
| # a RaspberryPi while I edit it on my desktop. | |
| # | |
| # NOTE 1: make sure that you copy your keys to remote host with `ssh-copy-id` | |
| # first to allow for rsync to run without password prompts. | |
| # NOTE 2: set the variables below to suit your needs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Customisations START | |
| # Set the SHELL correctly. | |
| export SHELL=`which zsh` | |
| # Get the /etc/profile if it exists, it has useful stuff usually. | |
| [ -f "/etc/profile" ] && source "/etc/profile" | |
| ## END | |
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH |