4

首先让我道歉,我是一名网络工程师,而不是一名编码员......所以,如果你能在这里忍受我,请多多包涵。

这就是我所面临的,我一生都无法找到一种优雅的方式来做到这一点。

我正在使用 nagios(相信你们中的许多人都熟悉它)并且正在从服务检查中获取性能数据。这一个特别返回值,如:模块2入口温度模块2出口温度模块2 asic-4温度模块3入口温度模块3出口温度模块4入口温度模块4出口温度......等等这些值都呈现在单个数组。我想要做的是:匹配字符串中的前 2 个单词/值,以便创建数组键值的“组”,用于生成 RRD 图... RRD 部分我不需要任何帮助,但我做的匹配和输出。

我还应该注意,这里也可能有不同的数组值,具体取决于数据来自的设备(即它可能显示为“Switch #1 Sensor #1 Temperature”),虽然我并不担心目前,我将使用这个脚本在未来评估这些值,以创建它们自己的图表。

所以,说实话,我的想法是从原始数组中创建两个数组:最初使用 preg_match 来查找 /。出口。|。ASIC。/ 因为这些是“热”临时值,然后通过将该新数组分解为仅第二个值(int)或前两个值(模块#)来进一步细化以供以后比较

其次使用 preg_match 来查找 /。进口。/ 因为这些是“冷”温度,然后通过将新数组分解为与前者相同的方法来进一步细化。

现在应该有两个带有 key=># 或 key=>module # 的数组,然后使用 array_intersect 在两个数组中查找匹配项并输出键,以便我可以使用它们来生成图形。

那有意义吗?换句话说,我只想选择匹配的模块 # 条目以在我的图形中使用。即模块 2 入口、模块 2 出口、模块 2 asic...然后重复 - 模块 3 入口、模块 3 出口等...

这是我尝试过的,但它根本没有按照我想要的方式工作:

$test = array("module 1 inlet temperature", "module 2 inlet temperature", "module 2 asic-4 temperature", "module 2 outlet temperature", "module 1 outlet temperature");
$results = array();
foreach($test as $key => $value) {
   preg_match("/.*inlet.*|.*asic.*/", $test[$key]);
   preg_match("/module [0-9]?[0-9]/", $test[$key]);      
   $results[] = $value;
   }

if(preg_match("/.*outlet.*/", $test[$key]));
   foreach($test as $key1 => $value1) {
      preg_match("/module [0-9]?[0-9]/", $test[$key1]);
   $results1[] = $value1;
   }#
}
$results3 = array_intersect($results, $results1)

这里的任何帮助将不胜感激。我敢肯定我在这里的解释很混乱,所以希望有人同情我并帮助一个人......

提前致谢。

4

1 回答 1

1

有点难以理解你的问题,但我想你是在追求这样的结果吗?

$temps['module 1']['inlet'] = 20;
$temps['module 1']['outlet'] = 30;

$temps['module 2']['inlet'] = 25;
$temps['module 2']['outlet'] = 35;
$temps['module 2']['asic-4'] = 50;

然后你会使用这些数组来生成你的图表吗?

只要您在一个数组中有标签,而在另一个数组中有临时值,并且每个数组中的标签和临时值的顺序是相同的……那么您将这样做:

// Split Names into Groups
$temps = array(20,25,50,35,30);
$labels = array("module 1 inlet temperature", "module 2 inlet temperature", "module 2 asic-4 temperature", "module 2 outlet temperature", "module 1 outlet temperature");

// Combine Lables to Values (Labels and Values must be in the same positions)
$data = array_combine($labels, $temps);

$temps = array();
foreach ($data as $label => $temp) {
    $words = preg_split('/\s/i', $label);

    // Combine first two pieces of label for component name
    $component = $words[0] . ' ' . $words[1];

    // Sensor name is on it's own
    $sensor = $words[2];

    // Save Results
    $temps[$component][$sensor] = $temp;
}

// Print out results for debug purposes
echo '<pre>';
var_dump($temps);
echo '</pre>';
exit();

获得$temp数组后,您可以使用foreach循环遍历每个模块和传感器并打印出图表的值,或者仅显示某些模块或某些传感器等。

即使它不完全是你所追求的,希望它能给你一些想法,你可以调整它以适应它。

于 2013-01-08T05:44:38.783 回答