├── .ecrc ├── .github ├── dependabot.yml ├── issue-labeler.yml ├── pr-labeler.yml └── workflows │ ├── auto-approve-dependabot.yml │ ├── auto-merge.yml │ ├── auto-tag.yml │ ├── issue-labeler.yml │ ├── pr-labeler.yml │ └── stale-branches.yml ├── .gitignore ├── .markdownlint.yml ├── .shellcheckrc ├── .textlintrc ├── .yamllint.yml ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── assets ├── logo_alloy_dark.svg ├── logo_alloy_light.svg └── logo_and_name.png ├── modules ├── README.md ├── broker │ ├── README.md │ └── rabbitmq │ │ ├── README.md │ │ └── metrics.alloy ├── cloud │ ├── README.md │ ├── aws │ │ └── .gitkeep │ ├── azure │ │ └── .gitkeep │ ├── gcp │ │ └── .gitkeep │ └── grafana │ │ └── cloud │ │ ├── README.md │ │ └── module.alloy ├── collector │ ├── README.md │ ├── agent │ │ ├── README.md │ │ └── metrics.alloy │ └── push-gateway │ │ ├── README.md │ │ └── metrics.alloy ├── databases │ ├── README.md │ ├── kv │ │ ├── etcd │ │ │ ├── README.md │ │ │ └── metrics.alloy │ │ ├── memcached │ │ │ ├── README.md │ │ │ └── metrics.alloy │ │ └── redis │ │ │ ├── README.md │ │ │ └── metrics.alloy │ ├── sql │ │ ├── mysql │ │ │ ├── README.md │ │ │ └── metrics.alloy │ │ └── postgres │ │ │ ├── README.md │ │ │ └── metrics.alloy │ └── timeseries │ │ ├── loki │ │ ├── README.md │ │ └── metrics.alloy │ │ ├── mimir │ │ ├── README.md │ │ └── metrics.alloy │ │ ├── pyroscope │ │ ├── README.md │ │ └── metrics.alloy │ │ └── tempo │ │ ├── README.md │ │ └── metrics.alloy ├── kubernetes │ ├── README.md │ ├── annotations │ │ ├── README.md │ │ ├── logs │ │ │ ├── README.md │ │ │ ├── drop.alloy │ │ │ ├── embed.alloy │ │ │ ├── json.alloy │ │ │ ├── logs.alloy │ │ │ ├── mask.alloy │ │ │ └── utils.alloy │ │ ├── metrics.alloy │ │ └── probes.alloy │ ├── cert-manager │ │ ├── README.md │ │ └── metrics.alloy │ ├── core │ │ ├── README.md │ │ ├── logs.alloy │ │ └── metrics.alloy │ ├── konnectivity-agent │ │ ├── README.md │ │ └── metrics.alloy │ ├── kube-state-metrics │ │ ├── README.md │ │ └── metrics.alloy │ └── opencost │ │ ├── README.md │ │ └── metrics.alloy ├── networking │ ├── README.md │ ├── consul │ │ ├── README.md │ │ └── metrics.alloy │ └── haproxy │ │ ├── README.md │ │ └── metrics.alloy ├── source-control │ ├── README.md │ └── gitlab │ │ ├── README.md │ │ └── metrics.alloy ├── system │ ├── README.md │ └── node-exporter │ │ ├── README.md │ │ └── metrics.alloy ├── ui │ ├── README.md │ └── grafana │ │ ├── README.md │ │ └── metrics.alloy └── utils │ └── logs │ ├── log-levels.alloy │ ├── logs-metrics.alloy │ └── utils.alloy ├── package.json ├── tools ├── generate-toc.sh ├── includes │ ├── logging.sh │ └── utils.sh ├── lint-actionlint.sh ├── lint-alex.sh ├── lint-editorconfig.sh ├── lint-markdown.sh ├── lint-misspell.sh ├── lint-river.sh ├── lint-shell.sh ├── lint-text.sh └── setup.sh └── yarn.lock /.ecrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.ecrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.github/issue-labeler.yml -------------------------------------------------------------------------------- /.github/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.github/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/auto-approve-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.github/workflows/auto-approve-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/auto-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.github/workflows/auto-tag.yml -------------------------------------------------------------------------------- /.github/workflows/issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.github/workflows/issue-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/stale-branches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.github/workflows/stale-branches.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.textlintrc -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @erikbaranowski @mattdurham @bentonam 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo_alloy_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/assets/logo_alloy_dark.svg -------------------------------------------------------------------------------- /assets/logo_alloy_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/assets/logo_alloy_light.svg -------------------------------------------------------------------------------- /assets/logo_and_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/assets/logo_and_name.png -------------------------------------------------------------------------------- /modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/README.md -------------------------------------------------------------------------------- /modules/broker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/broker/README.md -------------------------------------------------------------------------------- /modules/broker/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/broker/rabbitmq/README.md -------------------------------------------------------------------------------- /modules/broker/rabbitmq/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/broker/rabbitmq/metrics.alloy -------------------------------------------------------------------------------- /modules/cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/cloud/README.md -------------------------------------------------------------------------------- /modules/cloud/aws/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/cloud/azure/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/cloud/gcp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/cloud/grafana/cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/cloud/grafana/cloud/README.md -------------------------------------------------------------------------------- /modules/cloud/grafana/cloud/module.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/cloud/grafana/cloud/module.alloy -------------------------------------------------------------------------------- /modules/collector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/collector/README.md -------------------------------------------------------------------------------- /modules/collector/agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/collector/agent/README.md -------------------------------------------------------------------------------- /modules/collector/agent/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/collector/agent/metrics.alloy -------------------------------------------------------------------------------- /modules/collector/push-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/collector/push-gateway/README.md -------------------------------------------------------------------------------- /modules/collector/push-gateway/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/collector/push-gateway/metrics.alloy -------------------------------------------------------------------------------- /modules/databases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/README.md -------------------------------------------------------------------------------- /modules/databases/kv/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/kv/etcd/README.md -------------------------------------------------------------------------------- /modules/databases/kv/etcd/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/kv/etcd/metrics.alloy -------------------------------------------------------------------------------- /modules/databases/kv/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/kv/memcached/README.md -------------------------------------------------------------------------------- /modules/databases/kv/memcached/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/kv/memcached/metrics.alloy -------------------------------------------------------------------------------- /modules/databases/kv/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/kv/redis/README.md -------------------------------------------------------------------------------- /modules/databases/kv/redis/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/kv/redis/metrics.alloy -------------------------------------------------------------------------------- /modules/databases/sql/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/sql/mysql/README.md -------------------------------------------------------------------------------- /modules/databases/sql/mysql/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/sql/mysql/metrics.alloy -------------------------------------------------------------------------------- /modules/databases/sql/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/sql/postgres/README.md -------------------------------------------------------------------------------- /modules/databases/sql/postgres/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/sql/postgres/metrics.alloy -------------------------------------------------------------------------------- /modules/databases/timeseries/loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/timeseries/loki/README.md -------------------------------------------------------------------------------- /modules/databases/timeseries/loki/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/timeseries/loki/metrics.alloy -------------------------------------------------------------------------------- /modules/databases/timeseries/mimir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/timeseries/mimir/README.md -------------------------------------------------------------------------------- /modules/databases/timeseries/mimir/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/timeseries/mimir/metrics.alloy -------------------------------------------------------------------------------- /modules/databases/timeseries/pyroscope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/timeseries/pyroscope/README.md -------------------------------------------------------------------------------- /modules/databases/timeseries/pyroscope/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/timeseries/pyroscope/metrics.alloy -------------------------------------------------------------------------------- /modules/databases/timeseries/tempo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/timeseries/tempo/README.md -------------------------------------------------------------------------------- /modules/databases/timeseries/tempo/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/databases/timeseries/tempo/metrics.alloy -------------------------------------------------------------------------------- /modules/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/README.md -------------------------------------------------------------------------------- /modules/kubernetes/annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/annotations/README.md -------------------------------------------------------------------------------- /modules/kubernetes/annotations/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/annotations/logs/README.md -------------------------------------------------------------------------------- /modules/kubernetes/annotations/logs/drop.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/annotations/logs/drop.alloy -------------------------------------------------------------------------------- /modules/kubernetes/annotations/logs/embed.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/annotations/logs/embed.alloy -------------------------------------------------------------------------------- /modules/kubernetes/annotations/logs/json.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/annotations/logs/json.alloy -------------------------------------------------------------------------------- /modules/kubernetes/annotations/logs/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/annotations/logs/logs.alloy -------------------------------------------------------------------------------- /modules/kubernetes/annotations/logs/mask.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/annotations/logs/mask.alloy -------------------------------------------------------------------------------- /modules/kubernetes/annotations/logs/utils.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/annotations/logs/utils.alloy -------------------------------------------------------------------------------- /modules/kubernetes/annotations/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/annotations/metrics.alloy -------------------------------------------------------------------------------- /modules/kubernetes/annotations/probes.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/annotations/probes.alloy -------------------------------------------------------------------------------- /modules/kubernetes/cert-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/cert-manager/README.md -------------------------------------------------------------------------------- /modules/kubernetes/cert-manager/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/cert-manager/metrics.alloy -------------------------------------------------------------------------------- /modules/kubernetes/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/core/README.md -------------------------------------------------------------------------------- /modules/kubernetes/core/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/core/logs.alloy -------------------------------------------------------------------------------- /modules/kubernetes/core/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/core/metrics.alloy -------------------------------------------------------------------------------- /modules/kubernetes/konnectivity-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/konnectivity-agent/README.md -------------------------------------------------------------------------------- /modules/kubernetes/konnectivity-agent/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/konnectivity-agent/metrics.alloy -------------------------------------------------------------------------------- /modules/kubernetes/kube-state-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/kube-state-metrics/README.md -------------------------------------------------------------------------------- /modules/kubernetes/kube-state-metrics/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/kube-state-metrics/metrics.alloy -------------------------------------------------------------------------------- /modules/kubernetes/opencost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/opencost/README.md -------------------------------------------------------------------------------- /modules/kubernetes/opencost/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/kubernetes/opencost/metrics.alloy -------------------------------------------------------------------------------- /modules/networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/networking/README.md -------------------------------------------------------------------------------- /modules/networking/consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/networking/consul/README.md -------------------------------------------------------------------------------- /modules/networking/consul/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/networking/consul/metrics.alloy -------------------------------------------------------------------------------- /modules/networking/haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/networking/haproxy/README.md -------------------------------------------------------------------------------- /modules/networking/haproxy/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/networking/haproxy/metrics.alloy -------------------------------------------------------------------------------- /modules/source-control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/source-control/README.md -------------------------------------------------------------------------------- /modules/source-control/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/source-control/gitlab/README.md -------------------------------------------------------------------------------- /modules/source-control/gitlab/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/source-control/gitlab/metrics.alloy -------------------------------------------------------------------------------- /modules/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/system/README.md -------------------------------------------------------------------------------- /modules/system/node-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/system/node-exporter/README.md -------------------------------------------------------------------------------- /modules/system/node-exporter/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/system/node-exporter/metrics.alloy -------------------------------------------------------------------------------- /modules/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/ui/README.md -------------------------------------------------------------------------------- /modules/ui/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/ui/grafana/README.md -------------------------------------------------------------------------------- /modules/ui/grafana/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/ui/grafana/metrics.alloy -------------------------------------------------------------------------------- /modules/utils/logs/log-levels.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/utils/logs/log-levels.alloy -------------------------------------------------------------------------------- /modules/utils/logs/logs-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/utils/logs/logs-metrics.alloy -------------------------------------------------------------------------------- /modules/utils/logs/utils.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/modules/utils/logs/utils.alloy -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/package.json -------------------------------------------------------------------------------- /tools/generate-toc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/generate-toc.sh -------------------------------------------------------------------------------- /tools/includes/logging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/includes/logging.sh -------------------------------------------------------------------------------- /tools/includes/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/includes/utils.sh -------------------------------------------------------------------------------- /tools/lint-actionlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/lint-actionlint.sh -------------------------------------------------------------------------------- /tools/lint-alex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/lint-alex.sh -------------------------------------------------------------------------------- /tools/lint-editorconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/lint-editorconfig.sh -------------------------------------------------------------------------------- /tools/lint-markdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/lint-markdown.sh -------------------------------------------------------------------------------- /tools/lint-misspell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/lint-misspell.sh -------------------------------------------------------------------------------- /tools/lint-river.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/lint-river.sh -------------------------------------------------------------------------------- /tools/lint-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/lint-shell.sh -------------------------------------------------------------------------------- /tools/lint-text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/lint-text.sh -------------------------------------------------------------------------------- /tools/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/tools/setup.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/alloy-modules/HEAD/yarn.lock --------------------------------------------------------------------------------