You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
457 B
11 lines
457 B
import { PluginRegistry } from "../pluginRegistry.js"; |
|
|
|
PluginRegistry.register('monitoring/alerting', { |
|
type: 'monitoring/alerting', |
|
label: 'Monitoring/Alerting', |
|
props: [ |
|
{ name: 'label', type: 'string', default: 'monitor', group: 'label-group' }, |
|
{ name: 'tool', type: 'string', default: 'Prometheus', group: 'monitor-group' }, |
|
{ name: 'alertThreshold', type: 'number', default: 80, group: 'monitor-group' } |
|
] |
|
});
|
|
|