ComboStrap Analytics - Page Statistics

Undraw My Documents

About

The ComboStrap Page Statistics are a list of page statistics that are available in the analytical data.

Example Words Summary

For instance, if you want to get statistics over words, you could execute the below query.

select
	count(*) as page_count,
	round(avg(word_count)) as words_avg,
	sum(word_count) as words_count,
	max(word_count) as words_max,
	min(word_count) as words_min
from
	(
	select
		id,
		json_extract(analytics, '$.statistics.word_count') as word_count
	from
		pages
	where
		analytics is not null
)

And this is the result that we get on this website.

page_count words_avg words_count words_max words_min
26818145933130111

See

You can see them by having a look to the data of a page with the export URL. For instance, for this page, you could check them at the following URL

ComboStrap Analytics - Page Statistics

You would see the statistics below the statistics property:

"statistics": {
	"char_count": 1919,
	"fixme": 0,
	"header_count": {
		"h1": 1,
		"h2": 3
	},
	"internal_backlink_count": 5,
	"internal_link_count": 3,
	"internal_link_distance": {
		"avg": 0,
		"max": 0,
		"min": 0
	},
	"word_section_count": {
		"avg": 75
	}
}

Definition

  • authors the authors and their number of edits
  • edit_count: the number of edits
  • char_count: the number of chars
  • fixme: the number of fixme present in the page
  • heading_count: the number of heading by level
  • internal_backlink_count: the number of internal backlinks
  • internal_link_count: the number of internal links
  • internal_broken_link_count: the number of internal broken links
  • internal_link_distance: the distance of the internal links with the actual page. A value 2 would mean that you need to go in the directory structure:
    • down or up 2 times
    • or down one time and up one time
  • interwiki_link_count: the number of interwiki links (ie such as this one interwiki)
  • local_link_count: the number of local links (ie fragment link such as #id)
  • word_section_count: summary on words by section
  • word_count: the number of words.
  • syntax_count shows the number of times that a syntax is used.

Media

media shows a number of count statistics on media such as image.

Example:

"media": {
    "total_count": 5,
    "internal_count": 5,
    "internal_broken_count": 0,
    "external_count": 0
}

where:

  • total_count: the total number of media for the page
  • internal_count: the number of internal media for the page
  • internal_broken_count: the number of internal media that does not exists, creating a broken link
  • external_count: the number of external media (ie hosted on an external server, example: https://host/myimage.png)




Showcase yourself and your brand

Get free news, tips, and tricks
to create a remarkable experience for your readers.




Recommended Pages
Undraw My Documents
A broken link is a link that points to a non-existing page or media

This page will show you how to monitor the list of broken links for your ComboStrap website
Backlink Action
Backlinks management in ComboStrap

Backlinks are important because they give extra-navigation possibilities and gives also more weight to pages. This article tell you everything about backlinks in ComboStrap
Undraw My Documents
ComboStrap - Analytics

analytics is a module that gives the possibility to query analytical data against a database in order to get insight on your website: quality statistics metadata and redirections There is a lot...
ComboStrap Analytics - Data (JSON)

ComboStrap performs regularly analytical calculation on pages. The analytical data are composed of three parts: metadata: the page metadata statistics: the page statistics such as late publication...
Undraw My Documents
ComboStrap Analytics - Page Statistics

The statistics feature allows you to query your page statistics such as word count, internal, backlinks and get insight on your whole website at once.
Page Explorer List Name To Ui Region
Page-explorer: adding page navigation easily to your website

With the page-explorer component, you can add an explorer like panel that will list your pages in a list or collapsible tree fashion
Undraw My Documents
The calculated quality score

The quality score metrics permits to measure the quality of your pages
Undraw My Documents
syntax_count - Analyse the syntax of your page

The syntax count statistic shows the number of occurrence of a component (syntax) on a page



Task Runner