fix(insights): better status

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2024-12-19 17:21:08 -05:00
parent 04f296cc73
commit 6bc4c0317f
5 changed files with 29 additions and 11 deletions

View file

@ -10,6 +10,7 @@ import (
"runtime" "runtime"
"runtime/debug" "runtime/debug"
"sync" "sync"
"sync/atomic"
"time" "time"
"github.com/Masterminds/squirrel" "github.com/Masterminds/squirrel"
@ -34,8 +35,8 @@ var (
type insightsCollector struct { type insightsCollector struct {
ds model.DataStore ds model.DataStore
lastRun time.Time lastRun atomic.Int64
lastStatus bool lastStatus atomic.Bool
} }
func GetInstance(ds model.DataStore) Insights { func GetInstance(ds model.DataStore) Insights {
@ -68,7 +69,8 @@ func (c *insightsCollector) Run(ctx context.Context) {
} }
func (c *insightsCollector) LastRun(context.Context) (timestamp time.Time, success bool) { func (c *insightsCollector) LastRun(context.Context) (timestamp time.Time, success bool) {
return c.lastRun, c.lastStatus t := c.lastRun.Load()
return time.UnixMilli(t), c.lastStatus.Load()
} }
func (c *insightsCollector) sendInsights(ctx context.Context) { func (c *insightsCollector) sendInsights(ctx context.Context) {
@ -102,8 +104,8 @@ func (c *insightsCollector) sendInsights(ctx context.Context) {
} }
log.Info(ctx, "Sent Insights data (for details see http://navidrome.org/docs/getting-started/insights", "data", log.Info(ctx, "Sent Insights data (for details see http://navidrome.org/docs/getting-started/insights", "data",
string(data), "server", consts.InsightsEndpoint, "status", resp.Status) string(data), "server", consts.InsightsEndpoint, "status", resp.Status)
c.lastRun = time.Now() c.lastRun.Store(time.Now().UnixMilli())
c.lastStatus = resp.StatusCode < 300 c.lastStatus.Store(resp.StatusCode < 300)
resp.Body.Close() resp.Body.Close()
} }

View file

@ -36,7 +36,7 @@ type Data struct {
Shares int64 `json:"shares"` Shares int64 `json:"shares"`
Radios int64 `json:"radios"` Radios int64 `json:"radios"`
ActiveUsers int64 `json:"activeUsers"` ActiveUsers int64 `json:"activeUsers"`
ActivePlayers map[string]int64 `json:"activePlayers"` ActivePlayers map[string]int64 `json:"activePlayers,omitempty"`
} `json:"library"` } `json:"library"`
Config struct { Config struct {
LogLevel string `json:"logLevel,omitempty"` LogLevel string `json:"logLevel,omitempty"`

View file

@ -436,7 +436,11 @@
"homepage": "Website", "homepage": "Website",
"source": "Código fonte", "source": "Código fonte",
"featureRequests": "Solicitar funcionalidade", "featureRequests": "Solicitar funcionalidade",
"lastInsightsCollection": "Última coleta de dados" "lastInsightsCollection": "Última coleta de dados",
"insights": {
"disabled": "Desligado",
"waiting": "Aguardando"
}
} }
}, },
"activity": { "activity": {

View file

@ -55,6 +55,16 @@ const AboutDialog = ({ open, onClose }) => {
const { permissions } = usePermissions() const { permissions } = usePermissions()
const { data, loading } = useGetOne('insights', 'insights_status') const { data, loading } = useGetOne('insights', 'insights_status')
const lastRun = !loading && data?.lastRun
let insightsStatus = 'N/A'
if (lastRun === 'disabled') {
insightsStatus = translate('about.links.insights.disabled')
} else if (lastRun && lastRun?.startsWith('1969-12-31')) {
insightsStatus = translate('about.links.insights.waiting')
} else if (lastRun) {
insightsStatus = lastRun
}
return ( return (
<Dialog onClose={onClose} aria-labelledby="about-dialog-title" open={open}> <Dialog onClose={onClose} aria-labelledby="about-dialog-title" open={open}>
<DialogTitle id="about-dialog-title" onClose={onClose}> <DialogTitle id="about-dialog-title" onClose={onClose}>
@ -97,9 +107,7 @@ const AboutDialog = ({ open, onClose }) => {
{translate(`about.links.lastInsightsCollection`)}: {translate(`about.links.lastInsightsCollection`)}:
</TableCell> </TableCell>
<TableCell align="left"> <TableCell align="left">
<Link href={INSIGHTS_DOC_URL}> <Link href={INSIGHTS_DOC_URL}>{insightsStatus}</Link>
{(!loading && data?.lastRun) || 'N/A'}{' '}
</Link>
</TableCell> </TableCell>
</TableRow> </TableRow>
) : null} ) : null}

View file

@ -438,7 +438,11 @@
"homepage": "Home page", "homepage": "Home page",
"source": "Source code", "source": "Source code",
"featureRequests": "Feature requests", "featureRequests": "Feature requests",
"lastInsightsCollection": "Last insights collection" "lastInsightsCollection": "Last insights collection",
"insights": {
"disabled": "Disabled",
"waiting": "Waiting"
}
} }
}, },
"activity": { "activity": {