Skip to content

Commit

Permalink
Don't store raw report for fleet
Browse files Browse the repository at this point in the history
  • Loading branch information
MaXal committed Nov 13, 2023
1 parent 4d163e7 commit f0cd380
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion db-schema/fleet/report.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ create table report2
`tc_build_id` UInt32 CODEC (Gorilla, ZSTD(20)),
`tc_installer_build_id` UInt32 CODEC (Gorilla, ZSTD(20)),
`branch` LowCardinality(String) CODEC (ZSTD(20)),
`raw_report` String CODEC (ZSTD(20)),

`build_c1` UInt8 CODEC (Gorilla, ZSTD(20)),
`build_c2` UInt16 CODEC (Gorilla, ZSTD(20)),
Expand Down
2 changes: 1 addition & 1 deletion pkg/analyzer/analyzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func GetAnalyzer(id string) DatabaseConfiguration {
DbName: "fleet",
ReportReader: analyzeFleetReport,
HasInstallerField: true,
HasRawReport: true,
HasRawReport: false,
extraFieldCount: 4,
insertStatementWriter: func(sb *strings.Builder) {
sb.WriteString(", measures.name, measures.value, measures.start, measures.thread")
Expand Down

0 comments on commit f0cd380

Please sign in to comment.