Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsaou committed Apr 24, 2016
1 parent bae81c2 commit d4efa90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sys_fs_cgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ void read_cgroup_plugin_configuration() {
cgroup_root_max = config_get_number("plugin:cgroups", "max cgroups to allow", cgroup_root_max);
cgroup_max_depth = config_get_number("plugin:cgroups", "max cgroups depth to monitor", cgroup_max_depth);

cgroup_enable_new_cgroups_detected_at_runtime = config_get_boolean("plugin:cgroups", "enable cgroups detected after first run", cgroup_enable_new_cgroups_detected_at_runtime);
cgroup_enable_new_cgroups_detected_at_runtime = config_get_boolean("plugin:cgroups", "enable new cgroups detected at run time", cgroup_enable_new_cgroups_detected_at_runtime);
}

// ----------------------------------------------------------------------------
Expand Down Expand Up @@ -843,7 +843,7 @@ void update_cgroup_charts(int update_every) {

st = rrdset_find_bytype(type, "writeback");
if(!st) {
snprintf(title, CHART_TITLE_MAX, "Writable Memory for cgroup %s", cg->name);
snprintf(title, CHART_TITLE_MAX, "Writeback Memory for cgroup %s", cg->name);
st = rrdset_create(type, "writeback", NULL, "mem", "cgroup.writeback", title, "MB", 40300,
update_every, RRDSET_TYPE_AREA);

Expand Down

0 comments on commit d4efa90

Please sign in to comment.