きっと大丈夫

入社おめでとうございます.

社内全体 MTGflickr のプレミアムユーザであることを dis られたので
弊社のサービスでありますフォト蔵API を使って皆さん(誰?)に許していただこうと思います。

大丈夫です.たぶん社員(特に最近入った社員)でフォト蔵を使っている人の比率は相当低いと思います(何

続: インスタンス オブジェクトを消したい

インスタンス オブジェクトを消したい - よくきたはてダ でいろいろコメントをいただいたので,ご提示いただいたサンプルをなぜ使わなと考えるかを一応書いておきます.

元ネタは「インスタンス オブジェクトを今すぐ消したいんだけど!!」という話です.

っで,いただいたコメントから取り上げるのはこの辺.

hidekiy


2010/08/01 11:50
http://codepad.org/5Lnz5OSj
http://codepad.org/1FUKYJUk






hidekiy


2010/08/01 11:53
見返してみると何かプロパティとして入れておかないと有難味は分からないですね。この技は明示的に循環参照を切るときに使います。






elf


2010/08/06 09:56
結論から言うと,すみませんが今のところオブジェクトを消すためにご提示いただいた手法は個人的には公私共に利用することはないと思います#特に仕事だと何らかの権限の方から「使え」といわれるとまた別の判断もあると思いますけど

今回改めて取り上げるのはいただいたコードのひとつ,

use Data::Dumper;

package foo;
sub new { $class = shift; bless {}, $class;}
sub DESTROY { print "bye!\n"; }

package main;
$obj = new foo;
print Dumper($obj);
%$obj = ();
print Dumper($obj);

です.たぶん上鍵の推測ではこれは(上鍵の)期待通りに動いていないと思ったので,検証するために簡単に編集してみました。

#ちなみにこの「期待通り」は「こういう結果であってほしい」であって厳密にはperlの仕様どおりとしての期待通りという意味ではないです.念のため

use Data::Dumper;

package foo;
sub new { $class = shift; bless {}, $class;}
sub DESTROY { print "bye!\n"; }

package main;
$obj = new foo;
print Dumper($obj);
%$obj = ();
print Dumper($obj);

こちら差分.

--- p9a.pl      2010-08-06 02:00:12.000000000 +0900
+++ p9b.pl      2010-08-06 01:59:44.000000000 +0900
@@ -2,6 +2,7 @@
 
 package foo;
 sub new { $class = shift; bless {}, $class;}
+sub foo { print "foo\n";}
 sub DESTROY { print "bye!\n"; }
 
 package main;
@@ -9,3 +10,4 @@
 print Dumper($obj);
 %$obj = ();
 print Dumper($obj);
+$obj->foo();

ようするに"foo"を出力するメソッドfoo()を追加し,実行しただけです.っで,実行結果.

$ perl p9b.pl
$VAR1 = bless( {}, 'foo' );
$VAR1 = bless( {}, 'foo' );
foo
bye!

予想通り実行できてしまいました.ちなみに別にご提案いただいたundefだとエラーになります.

use Data::Dumper;

package foo;
sub new { $class = shift; bless {}, $class;}
sub foo { print "foo\n";}
sub DESTROY { print "bye!\n"; }

package main;
$obj = new foo;
print Dumper($obj);
undef $obj;
print Dumper($obj);
$obj->foo();

こちら期待通りです

$ perl p9c.pl
$VAR1 = bless( {}, 'foo' );
bye!
$VAR1 = undef;
Can't call method "foo" on an undefined value at p9c.pl line 13.

ということで簡単ですがこれにて.

インスタンス オブジェクトを消したい

そろそろPerl暦1ヶ月になりそうです.たぶん初めてのPerlエントリー!! さてメモ.
Perlインスタンスしたオブジェクトをとある事情で明示的に消したいと思ったわけですよ.

#その後こういう実装は不要になるようにしたわけですが

@elf undef $object;で解決では?

試してみた.

$ perl -e 'use Data::Dumper; package foo; sub new { $class = shift; bless {}, $class;} sub DESTROY { print "bye!\n"; }package main; $obj = new foo; print Dumper($obj); undef $obj; print Dumper($obj);'
$VAR1 = bless( {}, 'foo' );
bye!
$VAR1 = undef;

表面的には期待通りの挙動に見える.これ以上深耕するスキルがないのが悔しい.しいていうとperldocいわく

undef EXPR

undef
Undefines the value of EXPR, which must be an lvalue. Use only on a
scalar value, an array (using @
), a hash (using %
), a subroutine
(using &
), or a typeglob (using *
).

だそうな.オブジェクトについては明記されていないように見える.

@elf %$self = ()

コードとしてないわーですが,

#ふつーオブジェクトの削除ではなく,ハッシュの初期化として読むでしょ(んなことないのがPerlの世界?

$ perl -e 'use Data::Dumper; package foo; sub new { $class = shift; bless {}, $class;} sub DESTROY { print "bye!\n"; }package main; $obj = new foo; print Dumper($obj); %$obj = {}; print Dumper($obj);'
$VAR1 = bless( {}, 'foo' );
$VAR1 = bless( {
                 'HASH(0x9cd90ac)' => undef
               }, 'foo' );
bye!

挙動としてもないわー.

とりあえず記載されていなそうだし実際問題既に不要な話なんだけど,どこの辺をぼちぼち読んでみます

Cacti 0.8.7g Released

ずいぶん遅れたけど7月10日にリリースされたみたいです.
つたない翻訳でいうのもなんですが,誤字脱字が多い気がしますね.あとなぜかタイトルが細かく変わってたり,ベータのころの報告が消えていたり…

  • bug: Windows 用シェル エスケープの改善 (Implement windows-aware shell escaping)
  • bug: Red Hat セキュリティ レスポンス チームの Tomas Hoger による複数の XSS 脆弱性の修正 (Fixed multiple cross site scripting vulnerabilities reported by Tomas Hoger of the Red Hat Security Response Team)
  • bug#0001292: 8T バイトを超えるパーティションWindowsSNMP から正しくデータを取得できなかった (Over 8TByte Partition in Windows cant get correct data from snmp)
  • bug#0001486: ログイン後のアクセスページへのリダイレクトに失敗する (Unable to login after redirection to access denied page)
  • bug#0001516: "Show the page that user pointed their browser" が処理しているように見えない ("Show the page that user pointed their browser" does not seem to work)
  • bug#0001561: フィルター文字列の HTML エスケープのやりすぎ (Over zelous HTML excaping on filter strings)
  • bug#0001575: ldap_host に誤った設定をするために LDAP 認証を正しく処理しない (LDAP-Authentifications does not work due to ldap_host being set incorrect)
  • bug#0001587: bug#0001271 の機能により大きな値が壊れる (Feature from bug#0001271 breaks on large values)
  • bug#0001607: ウェブ基本認証が fastcgi で処理できない (Web Basic authentication does not work with fastcgi)
  • bug#0001620: Max OID の最大値がウェブ UI で正しく報告されなかった (Max OID''s max value reported incorrectly in Web UI)
  • bug#0001747: 入力方向のデータ問い合わせで oid_suffix を正しく処理しない (oid_suffix do not work correctly for data queries input direction)
  • bug#0001756: 代理フォント スタイルを正しく処理しない (Alternate font styles do not work correctly)
  • bug#0001763: ユーザーのグラフ権限の追加に失敗する (Unable to add graph permissions on a user)
  • bug#0001757: LDAP 認証が未定義インデックスの警告を出力する (LDAP realm authentication outputs warning for undefined index)
  • bug#0001765: テクサポが RRDTool 1.4.x を正しく処理しない (Tech support does not work correctly with RRDTool 1.4.x)
  • bug#0001766: ページの再表示設定が守られない (Page refresh setting not being honored)
  • bug#0001771: "index count changed" が query_unix_partitions.pl、query_host_partitions.pl、query_cpu_partitions.pl、ss_host_cpu.php と ss_host_disk.php で実装されていない ("index count changed" not implemented for query_unix_partitions.pl, query_host_partitions.pl, query_cpu_partitions.pl, ss_host_cpu.php and ss_host_disk.php)
  • bug#0001773: 0.8.7f へのアップグレード後の文字エンコードの問題 (Character encoding problem after upgrade to 0.8.7f)
  • bug#0001775: テクサポ ページ が PHP の memory limit を設定していない (Tech support page does account for no memory limit set for PHP)
  • bug#0001776: 同時データベース接続をサポートしていない (Simultaneous databases connections are not supported)

Release of Cacti 0.8.7g



We the Cacti Group are proud to release the following:

Cacti 0.8.7g

Spine 0.8.7g

Cacti Plugin Architecture 2.8 for Cacti 0.8.7g

Cacti 0.8.7g Change Log

bug: Implement windows-aware shell escaping

bug: Fixed multiple cross site scripting vulnerabilities reported by Tomas Hoger of the Red Hat Security Response Team

bug#0001292: Over 8TByte Partition in Windows cant get correct data from snmp

bug#0001486: Unable to login after redirection to access denied page

bug#0001516: "Show the page that user pointed their browser" does not seem to work

bug#0001561: Over zelous HTML excaping on filter strings

bug#0001575: LDAP-Authentifications does not work due to ldap_host being set incorrect

bug#0001587: Feature from bug#0001271 breaks on large values

bug#0001607: Web Basic authentication does not work with fastcgi

bug#0001620: Max OID''s max value reported incorrectly in Web UI

bug#0001747: oid_suffix do not work correctly for input direction on data queries

bug#0001756: Alternate font styles do not work correctly

bug#0001763: Unable to add graph permissions on a user

bug#0001757: LDAP realm authentication outputs warning for undefined index

bug#0001765: Tech support does not work correctly with RRDTool 1.4.x

bug#0001766: Page refresh setting not being honored

bug#0001771: "index count changed" not implemented for query_unix_partitions.pl, query_host_partitions.pl, query_cpu_partitions.pl, ss_host_cpu.php and ss_host_disk.php

bug#0001773: Character encoding problem after upgrade to 0.8.7f

bug#0001775: Tech support page does account for no memory limit set for PHP

bug#0001776: Simultaneous databases connections are not supported

Cacti Plugin Architecture Upgrade Information



Change to global.php and config.php

For legacy plugins, those that must be installed in global.php, we have moved the plugins array out of global.php and into config.php. This was done to insure that global.php remains pristine. It is a file that is not intended to be modified, so with the PIA installed, you should not have to.

The variable "URL_PATH" has also been moved from global.php to config.php for the same reason as the plugins array. For those of you upgrading from very old Plugin Architectures you should know that in the past, we attempted to "detect" this path. However, the process was not reliable. Therefore, you have to specify that path in config.php.

Visual Changes in Cacti



Visual changes will not impact the functionality of existing plugins. However, due to some poor practices, some of the page rendering may be a bit off.



To address this issue, The Cacti Group has prepared releases of approximately 17 existing plugins in our stable of addon's to maintain a consistent look and feel.



There has been quite a bit of work put into these updated plugins. If you find that there is a feature that you want or need that did not make it into an updated plugin, please open a feature request at http://www.cacti.net/bugs.php .



Changes to Cacti's Core



There are two changes in the Core of Cacti that will affect some plugins. The first change is that we have provided RRDtool segfault detection and correction in Cacti 0.8.7g. What this means to plugins that leverage our rrdtool_function_* functions is that for graphing and certain other functions, those plugins will require a minor change. To date, the plugins that we know of, are THold, Boost, and Realtime. We have not performed a comprehensive audit off all plugins, if you experience problems you should seek out your Plugins' developers to determine the impact.



The other core change in Cacti 0.8.7g, is Cacti's ability to detect SNMP time-outs in the core SNMP functions. So, if you are using cmd.php or you are using things like MacTrack, that leverage the SNMP API in Cacti, you will have much more capabilities to detect problems in the behaviour of Cacti by simply going to the Cacti log file.



Functional Changes in the PIA



When you go to the Plugin Management page, you will notice a fairly significant change. In this release, we tuned up the Plugin Management interface to make it a bit easier to understand how your plugins are loaded and controlled. There is now the concept of a System plugin and a General plugin. You can also define the load order of your PIA 2.x plugins. This is important in that some plugins require other plugins be loaded first in order to work properly. We still do not have an API to control this. That will be delivered in the next release of Cacti. However, for those of your who have been locked down to having your plugins in PIA 1.x due to the load ordering issue, that barrier will be removed in this release.



Reporting Bugs



It's important that you use the forums to have a discussion with amongst the members of the Cacti Community. However, when you find a bug, you need to make sure that you use the appropriate forum to open and bring those bugs to a close. That forum is the Cacti bug tracker ( http://www.cacti.net/bugs.php ). All the developers use this tool religiously. So, we need you to do that as well.



Cacti のダウンロード



http://www.cacti.net/download_cacti.php



Download Plugin Architecture



http://www.cacti.net/downloads/pia/cacti-plugin-0.8.7g-PA-v2.8.tar.gz



Download Spine



http://www.cacti.net/spine_download.php





Thanks!

The Cacti Group

Cacti 0.8.7g BETA 2 Released (まだベータだお)

ChangeLogを見る限り4件目のtypoが増えただけみたいです.
特に問題がなければ6月21日に0.8.6gの正式リリースをするとのこと.

bug: RRDTool 1.4.x が設定にはあるがインストーラーにはない (RRDTool 1.4.x exists in settings, but not in install.php)
bug: スペル ミスが原因の lib/snmp.php の警告 (Warning in lib/snmp.php caused by misspelled variable)
bug: Windows 用シェル エスケープを使う (Use windows-aware shell escaping)
bug: add_graph_template.php のヘルプ テキスト に typo あり (typo in help text of add_graph_template.php)

  • bug#0001747: 入力方向のデータ問い合わせのための oid_suffix を処理しない (oid_suffix do not work correctly for data queries input direction)
  • bug#0001756: 代理フォント スタイルを正しく処理しない (Alternate font styles do not work correctly)
  • bug#0001763: 権限追加を処理しない (Adding permissions doesn't work)
  • bug#0001757: LDAP 認証が未定義インデックスの警告を出力する (LDAP realm authentication outputs warning for undefined index)
  • bug#0001765: テクサポが RRDTool 1.4.x を正しく処理しない (Tech support does not work correctly with RRDTool 1.4.x)
  • bug#0001766: ページの再表示設定が守られない (Page refresh setting not being honored)
  • bug#0001771: "index count changed" が query_unix_partitions.pl、query_host_partitions.pl、query_cpu_partitions.pl、ss_host_cpu.php と ss_host_disk.php で実装されていない ("index count changed" not implemented for query_unix_partitions.pl, query_host_partitions.pl, query_cpu_partitions.pl, ss_host_cpu.php and ss_host_disk.php)
  • bug#0001773: 0.8.7f へのアップグレード後の文字エンコードの問題 (Character encoding problem after upgrade to 0.8.7f)
  • bug#0001775: テクサポ ページ が PHP の memory limit を設定していない (Tech support page does account for no memory limit set for PHP)
  • bug#0001776: 同時データベース接続をサポートしていない (Simultaneous databases connections are not supported)

Release of Cacti 0.8.7g BETA 2



We the Cacti Group are proud to release the following:

Cacti 0.8.7g Beta 2

Spine 0.8.7g Beta 2

Cacti Plugin Architecture 2.8 for Cacti 0.8.7g Beta 2

Cacti 0.8.7g Change Log

bug: RRDTool 1.4.x exists in settings, but not in install.php

bug: Warning in lib/snmp.php caused by misspelled variable

bug: Use windows-aware shell escaping

bug: typo in help text of add_graph_template.php

bug#0001747: oid_suffix do not work correctly for data queries input direction

bug#0001756: Alternate font styles do not work correctly

bug#0001763: Adding permissions doesn't work

bug#0001757: LDAP realm authentication outputs warning for undefined index

bug#0001765: Tech support does not work correctly with RRDTool 1.4.x

bug#0001766: Page refresh setting not being honored

bug#0001771: "index count changed" not implemented for query_unix_partitions.pl, query_host_partitions.pl, query_cpu_partitions.pl, ss_host_cpu.php and ss_host_disk.php

bug#0001773: Character encoding problem after upgrade to 0.8.7f

bug#0001775: Tech support page does account for no memory limit set for PHP

bug#0001776: Simultaneous databases connections are not supported

Cacti Plugin Architecture Upgrade Information



Change to global.php and config.php

For legacy plugins, those that must be installed in global.php, we have moved the plugins array out of global.php and into config.php. This was done to insure that global.php remains pristine. It is a file that is not intended to be modified, so with the PIA installed, you should not have to.

The variable "URL_PATH" has also been moved from global.php to config.php for the same reason as the plugins array. For those of you upgrading from very old Plugin Architectures you should know that in the past, we attempted to "detect" this path. However, the process was not reliable. Therefore, you have to specify that path in config.php.

Visual Changes in Cacti



Visual changes will not impact the functionality of existing plugins. However, due to some poor practices, some of the page rendering may be a bit off.



To address this issue, The Cacti Group has prepared releases of approximately 17 existing plugins in our stable of addon's to maintain a consistent look and feel. Those plugins will be released during the Beta cycle.



There has been quite a bit of work put into these updated plugins. If you find that there is a feature that you want or need that did not make it into an updated plugin, please open a feature request at http://www.cacti.net/bugs.php .



Changes to Cacti's Core



There are two changes in the Core of Cacti that will affect some plugins. The first change is that we have provided RRDtool segfault detection and correction in Cacti 0.8.7g. What this means to plugins that leverage our rrdtool_function_* functions is that for graphing and certain other functions, those plugins will require a minor change. To date, the plugins that we know of, are THold, Boost, and Realtime. We have not performed a comprehensive audit off all plugins, if you experience problems you should seek out your Plugins' developers to determine the impact.



The other core change in Cacti 0.8.7g, is Cacti's ability to detect SNMP time-outs in the core SNMP functions. So, if you are using cmd.php or you are using things like MacTrack, that leverage the SNMP API in Cacti, you will have much more capabilities to detect problems in the behaviour of Cacti by simply going to the Cacti log file.



Functional Changes in the PIA



When you go to the Plugin Management page, you will notice a fairly significant change. In this release, we tuned up the Plugin Management interface to make it a bit easier to understand how your plugins are loaded and controlled. There is now the concept of a System plugin and a General plugin. You can also define the load order of your PIA 2.x plugins. This is important in that some plugins require other plugins be loaded first in order to work properly. We still do not have an API to control this. That will be delivered in the next release of Cacti. However, for those of your who have been locked down to having your plugins in PIA 1.x due to the load ordering issue, that barrier will be removed in this release.



Reporting Bugs



It's important that you use the forums to have a discussion with amongst the members of the Cacti Community. However, when you find a bug, you need to make sure that you use the appropriate forum to open and bring those bugs to a close. That forum is the Cacti bug tracker ( http://www.cacti.net/bugs.php ). All the developers use this tool religiously. So, we need you to do that as well.



Release of 0.8.7g as Non-Beta



If all goes well with beta 2, we will release Cacti 0.8.7g on June 21st.



Download Beta



http://www.cacti.net/downloads/beta/



Thanks!

The Cacti Group

Cacti 0.8.7g BETA 1 Released (ベータだお)

今回0.8.6gの正式リリースは2週間ほどおくらせることにしたらしい.
とりあえず一部ChangeLogのみ翻訳.
今回重要なのはもっと後のほうですね(苦笑

  • bug: スペル ミスが原因の lib/snmp.php の警告
  • bug: Windows 用シェル エスケープを使う
  • bug#0001747: 入力方向のデータ問い合わせのための oid_suffix を処理しない
  • bug#0001756: 代理フォント スタイルを正しく処理しない
  • bug#0001763: 権限追加を処理しない
  • bug#0001757: LDAP 認証が未定義インデックスの警告を出力する
  • bug#0001765: テクサポが RRDTool 1.4.x を正しく処理しない
  • bug#0001766: ページの再表示設定が守られない
  • bug#0001771: "index count changed" が query_unix_partitions.pl、query_host_partitions.pl、query_cpu_partitions.pl、ss_host_cpu.php と ss_host_disk.php で実装されていない
  • bug#0001773: 0.8.7f へのアップグレード後の文字エンコードの問題
  • bug#0001775: テクサポ ページ が PHP の memory limit を設定していない
  • bug#0001776: 同時データベース接続をサポートしていない

Release of Cacti 0.8.7g BETA 1



We the Cacti Group are proud to release the following:

Cacti 0.8.7g Beta 1

Spine 0.8.7g Beta 1

Cacti Plugin Architecture 2.8 for Cacti 0.8.7g Beta 1

Cacti 0.8.7g Change Log

bug: Warning in lib/snmp.php caused by misspelled variable

bug: Use windows-aware shell escaping

bug#0001747: oid_suffix do not work correctly for data queries input direction

bug#0001756: Alternate font styles do not work correctly

bug#0001763: Adding permissions doesn't work

bug#0001757: LDAP realm authentication outputs warning for undefined index

bug#0001765: Tech support does not work correctly with RRDTool 1.4.x

bug#0001766: Page refresh setting not being honored

bug#0001771: "index count changed" not implemented for query_unix_partitions.pl, query_host_partitions.pl, query_cpu_partitions.pl, ss_host_cpu.php and ss_host_disk.php

bug#0001773: Character encoding problem after upgrade to 0.8.7f

bug#0001775: Tech support page does account for no memory limit set for PHP

bug#0001776: Simultaneous database connections are not supported

Cacti Plugin Architecture Upgrade Information



Change to global.php and config.php

For legacy plugins, those that must be installed in global.php, we have moved the plugins array out of global.php and into config.php. This was done to insure that global.php remains pristine. It is a file that is not intended to be modified, so with the PIA installed, you should not have to.

The variable "URL_PATH" has also been moved from global.php to config.php for the same reason as the plugins array. For those of you upgrading from very old Plugin Architectures you should know that in the past, we attempted to "detect" this path. However, the process was not reliable. Therefore, you have to specify that path in config.php.

Visual Changes in Cacti



Visual changes will not impact the functionality of existing plugins. However, due to some poor practices, some of the page rendering may be a bit off.



To address this issue, The Cacti Group has prepared releases of approximately 17 existing plugins in our stable of addon's to maintain a consistent look and feel. Those plugins will be released during the Beta cycle.



There has been quite a bit of work put into these updated plugins. If you find that there is a feature that you want or need that did not make it into an updated plugin, please open a feature request at http://www.cacti.net/bugs.php .



Changes to Cacti's Core



There are two changes in the Core of Cacti that will affect some plugins. The first change is that we have provided RRDtool segfault detection and correction in Cacti 0.8.7g. What this means to plugins that leverage our rrdtool_function_* functions is that for graphing and certain other functions, those plugins will require a minor change. To date, the plugins that we know of, are THold, Boost, and Realtime. We have not performed a comprehensive audit off all plugins, if you experience problems you should seek out your Plugins' developers to determine the impact.



The other core change in Cacti 0.8.7g, is Cacti's ability to detect SNMP time-outs in the core SNMP functions. So, if you are using cmd.php or you are using things like MacTrack, that leverage the SNMP API in Cacti, you will have much more capabilities to detect problems in the behaviour of Cacti by simply going to the Cacti log file.



Functional Changes in the PIA



When you go to the Plugin Management page, you will notice a fairly significant change. In this release, we tuned up the Plugin Management interface to make it a bit easier to understand how your plugins are loaded and controlled. There is now the concept of a System plugin and a General plugin. You can also define the load order of your PIA 2.x plugins. This is important in that some plugins require other plugins be loaded first in order to work properly. We still do not have an API to control this. That will be delivered in the next release of Cacti. However, for those of your who have been locked down to having your plugins in PIA 1.x due to the load ordering issue, that barrier will be removed in this release.



Reporting Bugs



It's important that you use the forums to have a discussion with amongst the members of the Cacti Community. However, when you find a bug, you need to make sure that you use the appropriate forum to open and bring those bugs to a close. That forum is the Cacti bug tracker ( http://www.cacti.net/bugs.php ). All the developers use this tool religiously. So, we need you to do that as well.



Release of 0.8.7g as Non-Beta



We understand that people where expecting a release of 0.8.7g yesterday June 7th. But after much discussions, we came to the conclusion that we wanted a short Beta period to make sure everything was up to snuff. If all looks good over the course of the next 2 weeks, we will be making an official release of Cacti 0.8.7g, Spine 0.8.7g and Plugin Arch 2.8.



Download Beta



http://www.cacti.net/downloads/beta/



Thanks!

The Cacti Group

Cacti 0.8.7fは使うなとのこと

よく読んだら「Cacti 0.8.7fは使うな」メールが来ていた.
多分こんな感じかと.

  • LDAP 認証でのログインで未定義インデックスの警告が発生する (LDAP authentication for login produces a warning about an undefined index)
  • (nowはnoじゃないのかな) グラフビューの自動ページ再表示が機能しない (Automatic page refresh on graph views does now function)
  • ユーザー管理のグラフ権限で保存ボタンが処理できない (Save button on user management graph permissions does not work)
  • プラグイン アーキテクチャをインストールしたとき,グラフ ツリーの削除が処理できない (Deleting a graph tree does not work with Plugin Architecture installed)
  • SNMP バイナリーを使用したとき,いくつかの SNMP 取得リクエストに失敗する (If using snmp binaries some snmp get requests will fail)

6月7日に0.8.7gをリリースするのでマテとのこと.

We are currently advising people to not install Cacti 0.8.7f due to the
following issues:

- LDAP authentication for login produces a warning about an undefined
index
- Automatic page refresh on graph views does now function
- Save button on user management graph permissions does not work
- Deleting a graph tree does not work with Plugin Architecture installed
- If using snmp binaries some snmp get requests will fail

If you have already upgraded to 0.8.7f, you can simple move back to 0.8.7e.

Cacti 0.8.7g will be release on June 7th to address these issues.