Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
netdata
netdata
/
src
/
go
/
plugin
/
agent
/
discovery
/
sd
/
model
/
target.go
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
go
15 lines
218 Bytes
Copy permalink
Copy
Raw
1
// SPDX-License-Identifier: GPL-3.0-or-later
2
3
package
model
4
5
type
Target
interface
{
6
Hash
()
uint64
7
Tags
()
Tags
8
TUID
()
string
9
}
10
11
type
TargetGroup
interface
{
12
Targets
()
[]
Target
13
Provider
()
string
14
Source
()
string
15
}