Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve example configuration #278

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,24 @@
"hostname_mode": "hostname",
"pcp_log_dir": "/data/pcp-logs/my_cluster_name",
"script_dir": "/data/jobscripts/my_cluster_name",
"datasource": "pcp",

// Enable specific preprocessors/plugins to run
"plugin_whitelist": ["Proc", "Block", "Network", "CpuUsage"]
},
"my_othercluster_name": {
"enabled": true,
"resource_id": 2,
"batch_system": "XDMoD",
"hostname_mode": "hostname",
"prom_host": "localhost:9090",
"prom_user": "username",
"prom_password": "p@$SW0rd",
"datasource": "prometheus",

// Disable specific preprocessors/plugins to run
"plugin_blacklist": ["GpuUsage", "GpuPower", "GpuUsageTimeseries"]
}
// fast_index uses an alternative method of indexing job-level pcp archives which can significantly speed
// up the indexarchives.py script. The tradeoff is that the indexed archive end time is not found and the
// start time is slightly less accurate. For normal summarization usage this doesn't matter, but set this
Expand Down