Fixed bounce/session statistics and updated pirsch to dev version.

This commit is contained in:
Marvin Blum
2020-09-14 21:46:38 +02:00
committed by Marvin Blum
parent 5469b3722a
commit 61685488cd
5 changed files with 34 additions and 9 deletions

View File

@@ -237,19 +237,19 @@
datasets: [
{
backgroundColor: "rgb(43, 180, 0, 0.02)",
borderColor: "#289800",
borderColor: "rgb(40, 152, 0, 0.5)",
label: "Total Visitors",
data: [{{.TotalVisitorsDps}}]
},
{
backgroundColor: "rgb(0, 63, 197, 0.02)",
borderColor: "#00359f",
borderColor: "rgb(0, 53, 159, 0.5)",
label: "Sessions",
data: [{{.SessionsDps}}]
},
{
backgroundColor: "rgba(194, 0, 0, 0.02)",
borderColor: "#980000",
borderColor: "rgb(152, 0, 0, 0.5)",
label: "Bounces",
data: [{{.BouncesDps}}]
}
@@ -280,19 +280,19 @@
datasets: [
{
backgroundColor: "rgb(43, 180, 0, 0.02)",
borderColor: "#289800",
borderColor: "rgb(40, 152, 0, 0.5)",
label: "Page Visits",
data: [{{$data.Data}}]
},
{
backgroundColor: "rgb(0, 63, 197, 0.02)",
borderColor: "#00359f",
borderColor: "rgb(0, 53, 159, 0.5)",
label: "Sessions",
data: [{{$data.Sessions}}]
},
{
backgroundColor: "rgba(194, 0, 0, 0.02)",
borderColor: "#980000",
borderColor: "rgb(152, 0, 0, 0.5)",
label: "Bounces",
data: [{{$data.Bounces}}]
}