-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from Icinga/fix-flapping-history-visual
Fix flapping history visual
- Loading branch information
Showing
5 changed files
with
123 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<?php | ||
|
||
namespace Icinga\Module\Icingadb\Model; | ||
|
||
use Icinga\Module\Icingadb\Model\Behavior\BoolCast; | ||
use Icinga\Module\Icingadb\Model\Behavior\Timestamp; | ||
use ipl\Orm\Behaviors; | ||
use ipl\Orm\Model; | ||
use ipl\Orm\Relations; | ||
|
||
/** | ||
* Model for table `flapping_history` | ||
* | ||
* Please note that using this model will fetch history entries for decommissioned services. To avoid this, | ||
* the query needs a `flapping_history.service_id IS NULL OR flapping_history_service.id IS NOT NULL` where. | ||
*/ | ||
class FlappingHistory extends Model | ||
{ | ||
public function getTableName() | ||
{ | ||
return 'flapping_history'; | ||
} | ||
|
||
public function getKeyName() | ||
{ | ||
return 'id'; | ||
} | ||
|
||
public function getColumns() | ||
{ | ||
return [ | ||
'environment_id', | ||
'endpoint_id', | ||
'object_type', | ||
'host_id', | ||
'service_id', | ||
'start_time', | ||
'end_time', | ||
'percent_state_change_start', | ||
'percent_state_change_end', | ||
'flapping_threshold_low', | ||
'flapping_threshold_high' | ||
]; | ||
} | ||
|
||
public function createBehaviors(Behaviors $behaviors) | ||
{ | ||
$behaviors->add(new Timestamp([ | ||
'start_time', | ||
'end_time' | ||
])); | ||
} | ||
|
||
public function createRelations(Relations $relations) | ||
{ | ||
$relations->belongsTo('endpoint', Endpoint::class); | ||
$relations->belongsTo('environment', Environment::class); | ||
$relations->belongsTo('host', Host::class); | ||
$relations->belongsTo('service', Service::class)->setJoinType('LEFT'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters