## Summary - Add pre-commit framework with hooks for YAML, Ansible, Python, shell, TOML, JSON, and secret detection - Fix all 91+ ansible-lint violations (variable naming, handler capitalization, changed_when) - Fix shellcheck warnings in mise-tasks scripts - Document pre-commit setup in README.md ## Deployment and Testing - [x] All pre-commit hooks pass (`uvx pre-commit run --all-files`) - [x] Test ansible playbook with `--check` mode - [x] Run `mise run indri-services-check` after deploy 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.tail8d86e.ts.net/eblume/blumeops/pulls/19
20 lines
583 B
YAML
20 lines
583 B
YAML
---
|
|
# Plex metrics collection configuration
|
|
|
|
# Plex server URL
|
|
plex_metrics_url: "http://localhost:32400"
|
|
|
|
# Path to file containing Plex token (should have 600 permissions)
|
|
plex_metrics_token_file: "/Users/erichblume/.plex-token"
|
|
|
|
# Metrics collection interval in seconds
|
|
plex_metrics_interval: 60
|
|
|
|
# Output directory for prometheus textfile collector
|
|
plex_metrics_dir: /opt/homebrew/var/node_exporter/textfile
|
|
|
|
# Script installation path
|
|
plex_metrics_script: /Users/erichblume/bin/plex-metrics
|
|
|
|
# Log directory for metrics script output
|
|
plex_metrics_log_dir: /opt/homebrew/var/log
|