20 lines
332 B
Go
20 lines
332 B
Go
package promunifi
|
|
|
|
import (
|
|
"golift.io/unifi"
|
|
)
|
|
|
|
/* The IDS data goes into prometheus cleanly. This probably wont happen. */
|
|
|
|
type ids struct {
|
|
}
|
|
|
|
func descIDS(ns string) *ids {
|
|
return &ids{}
|
|
}
|
|
|
|
// exportIDS exports Intrusion Detection System Data
|
|
func (u *unifiCollector) exportIDS(i *unifi.IDS) []*metricExports {
|
|
return nil
|
|
}
|