Skip to content

Commit

Permalink
fix(proc.plugin/zfs): fix arcstats.pm (netdata#18758)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyam8 authored Oct 11, 2024
1 parent e99060f commit a19266d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/collectors/proc.plugin/proc_spl_kstat_zfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ int do_proc_spl_kstat_zfs_arcstats(int update_every, usec_t dt) {
arl_expect(arl_base, "hash_chain_max", &arcstats.hash_chain_max);
arl_expect(arl_base, "p", &arcstats.p);
arl_expect(arl_base, "pd", &arcstats.pd);
arl_expect(arl_base, "pm", &arcstats.pd);
arl_expect(arl_base, "pm", &arcstats.pm);
arl_expect(arl_base, "c", &arcstats.c);
arl_expect(arl_base, "c_min", &arcstats.c_min);
arl_expect(arl_base, "c_max", &arcstats.c_max);
Expand Down

0 comments on commit a19266d

Please sign in to comment.