const FuncTypeIngest, FuncTypeCommit, FuncTypeRequest
1const (
2 // FuncTypeIngest means the agent is sending data for ingestion.
3 FuncTypeIngest FuncType = "ingest"
4 // FuncTypeCommit means the agent is requesting a feed commit the transitive data
5 // being held by its ingester.
6 FuncTypeCommit FuncType = "commit"
7 // FuncTypeRequest means the agent is requesting feed definitions for all those
8 // that it is whitelisted to provide data for.
9 FuncTypeRequest FuncType = "request"
10)