mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
* fix: initial commit for agents * fix: remove frontend package manger commit * fix: use sqlstore * fix: opamp server changes * fix: tests * fix: tests * fix: minor changes * fix: migrations * fix: use uuid7 * fix: use default orgID for single tenant * fix: pipelines tests fixed * fix: use correct agentId * fix: use orgID in coordinator * fix: fix tests * fix: remove redundant hash check * fix: migration * fix: migration * fix: address comments * fix: rename migration file * fix: remove unwanted orgid code * fix: use orggetter * fix: comment * fix: schema cleanup * fix: minor changes * chore: addresses changes * fix: add back agentID as it used ulid * fix: keep only 50 agents for an orgId * chore: explicitly specify text type * chore: use valuer.uuid for orgid * fix: linting complain * chore: final fixes * chore: minor changes * fix: add not null * fix: fe tests --------- Co-authored-by: Vikrant Gupta <vikrant@signoz.io>
31 lines
896 B
Go
31 lines
896 B
Go
package agentConf
|
|
|
|
import (
|
|
"github.com/SigNoz/signoz/pkg/query-service/model"
|
|
"github.com/SigNoz/signoz/pkg/types/opamptypes"
|
|
"github.com/SigNoz/signoz/pkg/valuer"
|
|
)
|
|
|
|
// Interface for features implemented via agent config.
|
|
// Eg: ingestion side signal pre-processing features like log processing pipelines etc
|
|
type AgentFeature interface {
|
|
// Must be unique across `AgentFeature`s
|
|
AgentFeatureType() AgentFeatureType
|
|
|
|
// Recommend config for an agent based on its `currentConfYaml` and
|
|
// `configVersion` for the feature's settings
|
|
RecommendAgentConfig(
|
|
orgId valuer.UUID,
|
|
currentConfYaml []byte,
|
|
configVersion *opamptypes.AgentConfigVersion,
|
|
) (
|
|
recommendedConfYaml []byte,
|
|
|
|
// stored as agent_config_version.config in current agentConf model
|
|
// TODO(Raj): maybe refactor agentConf further and clean this up
|
|
serializedSettingsUsed string,
|
|
|
|
apiErr *model.ApiError,
|
|
)
|
|
}
|