seo-analytics
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSEO Analytics & Measurement
SEO Analytics & Measurement
Overview
Overview
帮助一人企业建立 SEO 数据分析体系,通过 Google Search Console、Google Analytics 和其他工具监控 SEO 效果,发现优化机会,实现数据驱动的 SEO 策略迭代。
Help solo enterprises build an SEO data analysis system, monitor SEO performance through Google Search Console, Google Analytics and other tools, identify optimization opportunities, and realize data-driven iteration of SEO strategies.
When to Use This Skill
When to Use This Skill
- 设置 SEO 数据监控体系
- 分析 Google Search Console 数据
- 解读 Google Analytics 4 流量报告
- 评估 SEO ROI 和投资回报
- 识别低表现页面和优化机会
- 竞争对手 SEO 数据分析
- 制定 SEO KPI 和衡量标准
- 制作 SEO 周期性报告
- Set up SEO data monitoring system
- Analyze Google Search Console data
- Interpret Google Analytics 4 traffic reports
- Evaluate SEO ROI and return on investment
- Identify low-performing pages and optimization opportunities
- Competitor SEO data analysis
- Formulate SEO KPIs and measurement standards
- Produce periodic SEO reports
Core Concepts
Core Concepts
1. Google Search Console (GSC) 分析
1. Google Search Console (GSC) Analysis
关键报告解读:
性能报告(Performance Report):
├── 总点击次数 (Total Clicks)
├── 总展示次数 (Total Impressions)
├── 平均 CTR (Average CTR)
├── 平均排名 (Average Position)
└── 时间趋势分析
索引报告(Index Coverage):
├── 有效页面
├── 发现但未索引
├── 被 robots 阻止
└── 手动操作警告GSC 数据分析方法:
方法一:发现机会关键词
markdown
1. 筛选条件:排名 7-20 位的关键词
2. 筛选条件:展示 > 100 次/月
3. 排序:按展示量降序
优化策略:
- 这些关键词"即将"进入首页
- 优化内容质量和内部链接
- 目标:进入前 3 位方法二:CTR 优化机会
markdown
识别标准:
- 排名 1-5 位但 CTR < 20%
- 可能原因:Title/Description 不吸引人
- 或页面类型与搜索意图不匹配
优化方向:
- 优化 Title Tag(更具吸引力的文案)
- 优化 Meta Description(加入数字/行动号召)
- 检查 Snippet 是否准确反映页面内容方法三:低曝光页面诊断
markdown
排查步骤:
1. 关键词覆盖是否充分?
2. 内容质量是否满足搜索意图?
3. 内部链接是否足够?
4. 页面是否被正确索引?
5. Core Web Vitals 是否达标?Key report interpretation:
性能报告(Performance Report):
├── 总点击次数 (Total Clicks)
├── 总展示次数 (Total Impressions)
├── 平均 CTR (Average CTR)
├── 平均排名 (Average Position)
└── 时间趋势分析
索引报告(Index Coverage):
├── 有效页面
├── 发现但未索引
├── 被 robots 阻止
└── 手动操作警告GSC data analysis methods:
Method 1: Discover opportunity keywords
markdown
1. Filter condition: keywords ranked 7-20
2. Filter condition: impressions > 100 times/month
3. Sort: descending order by impression volume
Optimization strategy:
- These keywords are "about to" enter the first page
- Optimize content quality and internal links
- Goal: enter the top 3 positionsMethod 2: CTR optimization opportunities
markdown
Identification criteria:
- Ranked 1-5 but CTR < 20%
- Possible reason: Title/Description is not attractive
- Or page type does not match search intent
Optimization direction:
- Optimize Title Tag (more attractive copy)
- Optimize Meta Description (add numbers/call to action)
- Check if Snippet accurately reflects page contentMethod 3: Low exposure page diagnosis
markdown
Troubleshooting steps:
1. Is keyword coverage sufficient?
2. Does content quality meet search intent?
3. Are internal links sufficient?
4. Is the page correctly indexed?
5. Do Core Web Vitals meet the standards?2. Google Analytics 4 (GA4) 分析
2. Google Analytics 4 (GA4) Analysis
SEO 相关报告:
流量获取报告:
├── 按渠道查看有机搜索流量
├── 用户获取campaign表现
└── 归因模型分析
用户行为报告:
├── 页面浏览量 (Pageviews)
├── 平均 engagement time
├── 跳出率 (Bounce Rate)
├── 滚动深度
└── 退出页面分析
转化报告:
├── 目标完成(Goal Completions)
├── 电子商务交易(如适用)
└── 关键事件追踪SEO 关键指标定义:
markdown
流量质量指标:
- Engagement Rate(参与率):> 60% 为良好
- 平均 Engagement Time:> 1 分钟为良好
- Bounce Rate:< 40% 为良好
- 页面/会话:> 2.0 为良好
转化指标:
- 有机流量转化率
- 有机流量价值
- 每用户平均收入(ARPU)GA4 事件追踪设置:
javascript
// 推荐追踪的 SEO 相关事件
// 滚动深度追踪
gtag('event', 'scroll_depth', {
'scroll_depth': '75%', // 25%, 50%, 75%, 100%
'page_location': window.location.pathname
});
// 外部链接点击追踪
document.querySelectorAll('a[href^="http"]').forEach(link => {
link.addEventListener('click', function() {
gtag('event', 'external_link_click', {
'link_url': this.href,
'page_location': window.location.pathname
});
});
});
// 文件下载追踪
document.querySelectorAll('a[href*=".pdf"], a[href*=".doc"]').forEach(link => {
link.addEventListener('click', function() {
gtag('event', 'file_download', {
'file_name': this.href.split('/').pop(),
'page_location': window.location.pathname
});
});
});SEO related reports:
流量获取报告:
├── 按渠道查看有机搜索流量
├── 用户获取campaign表现
└── 归因模型分析
用户行为报告:
├── 页面浏览量 (Pageviews)
├── 平均 engagement time
├── 跳出率 (Bounce Rate)
├── 滚动深度
└── 退出页面分析
转化报告:
├── 目标完成(Goal Completions)
├── 电子商务交易(如适用)
└── 关键事件追踪SEO key indicator definition:
markdown
Traffic quality indicators:
- Engagement Rate: > 60% is good
- Average Engagement Time: > 1 minute is good
- Bounce Rate: < 40% is good
- Pages/session: > 2.0 is good
Conversion indicators:
- Organic traffic conversion rate
- Organic traffic value
- Average revenue per user (ARPU)GA4 event tracking settings:
javascript
// Recommended SEO related events to track
// Scroll depth tracking
gtag('event', 'scroll_depth', {
'scroll_depth': '75%', // 25%, 50%, 75%, 100%
'page_location': window.location.pathname
});
// External link click tracking
document.querySelectorAll('a[href^="http"]').forEach(link => {
link.addEventListener('click', function() {
gtag('event', 'external_link_click', {
'link_url': this.href,
'page_location': window.location.pathname
});
});
});
// File download tracking
document.querySelectorAll('a[href*=".pdf"], a[href*=".doc"]').forEach(link => {
link.addEventListener('click', function() {
gtag('event', 'file_download', {
'file_name': this.href.split('/').pop(),
'page_location': window.location.pathname
});
});
});3. SEO ROI 计算
3. SEO ROI Calculation
成本核算:
markdown
SEO 投资成本项:
1. 人力成本(内容创作、技术优化时间)
2. 工具订阅费(Ahrefs/SEMrush/Moz 等)
3. 开发成本(技术 SEO 需要的开发工作)
4. 内容外包费用(如有)
5. 外部链接建设费用
计算公式:
总成本 = 人力成本 + 工具费用 + 开发成本 + 外包费用 + 链接建设收益核算:
markdown
SEO 收益来源:
1. 直接转化收益(通过有机流量产生的成交)
2. 品牌价值(品牌搜索量增长)
3. 减少付费广告支出(有机流量替代付费流量)
4. 长期资产价值(内容持续产生流量)
计算方法:
有机流量价值 = 有机流量 × 转化率 × 平均订单价值SEO ROI 公式:
markdown
ROI = (SEO收益 - SEO成本) / SEO成本 × 100%
示例:
- 月度 SEO 成本:5000 元(工具 + 外包内容)
- 有机流量带来月销售额:25000 元
- 替代付费广告节省:3000 元
- 月度总收益:28000 元
月度 ROI = (28000 - 5000) / 5000 × 100% = 460%Cost accounting:
markdown
SEO investment cost items:
1. Labor cost (content creation, technical optimization time)
2. Tool subscription fees (Ahrefs/SEMrush/Moz, etc.)
3. Development cost (development work required for technical SEO)
4. Content outsourcing fees (if any)
5. External link construction fees
Calculation formula:
Total cost = labor cost + tool fee + development cost + outsourcing fee + link construction costRevenue accounting:
markdown
SEO revenue sources:
1. Direct conversion revenue (transactions generated through organic traffic)
2. Brand value (growth of brand search volume)
3. Reduce paid advertising expenses (organic traffic replaces paid traffic)
4. Long-term asset value (content continues to generate traffic)
Calculation method:
Organic traffic value = organic traffic × conversion rate × average order valueSEO ROI formula:
markdown
ROI = (SEO revenue - SEO cost) / SEO cost × 100%
Example:
- Monthly SEO cost: 5,000 yuan (tools + outsourced content)
- Monthly sales from organic traffic: 25,000 yuan
- Savings from replacing paid ads: 3,000 yuan
- Total monthly revenue: 28,000 yuan
Monthly ROI = (28000 - 5000) / 5000 × 100% = 460%4. 竞争对手分析
4. Competitor Analysis
分析维度:
markdown
1. 关键词差距(Keyword Gap)
- 竞争对手排名但你未覆盖的关键词
- 高搜索量低竞争度机会关键词
2. 反向链接差距(Backlink Gap)
- 竞争对手有但你没有的链接
- 可复制的链接建设策略
3. 内容差距(Content Gap)
- 竞争对手覆盖但你缺失的主题
- 可以超越的内容质量对比Ahrefs/SEMrush 竞品分析流程:
markdown
1. 导入竞争对手域名
2. 分析自然流量趋势
3. 识别主要流量关键词
4. 分析内容类型和结构
5. 审查反向链接来源
6. 识别可复制策略Analysis dimensions:
markdown
1. Keyword Gap
- Keywords that competitors rank for but you do not cover
- High search volume low competition opportunity keywords
2. Backlink Gap
- Links that competitors have but you do not
- Reproducible link building strategies
3. Content Gap
- Topics that competitors cover but you lack
- Comparable content quality that can be surpassedAhrefs/SEMrush competitor analysis process:
markdown
1. Import competitor domain names
2. Analyze natural traffic trends
3. Identify main traffic keywords
4. Analyze content types and structures
5. Review backlink sources
6. Identify reproducible strategies5. SEO 报告模板
5. SEO Report Template
月度 SEO 报告框架:
markdown
undefinedMonthly SEO report framework:
markdown
undefined[网站名] 月度 SEO 报告 - [月份]
[Website Name] Monthly SEO Report - [Month]
一、执行摘要
1. Executive Summary
- 本月主要成就
- 关键指标概览
- 下月重点计划
- Main achievements this month
- Key indicator overview
- Key plans for next month
二、流量和排名指标
2. Traffic and Ranking Indicators
2.1 有机流量趋势
2.1 Organic traffic trend
[插入图表]
[Insert chart]
2.2 关键排名变化
2.2 Key ranking changes
| 关键词 | 上月排名 | 本月排名 | 变化 |
|---|---|---|---|
| 关键词1 | 15 | 8 | +7 |
| Keyword | Last month ranking | This month ranking | Change |
|---|---|---|---|
| Keyword 1 | 15 | 8 | +7 |
三、Core Web Vitals 状态
3. Core Web Vitals Status
| 页面类型 | LCP | FID/INP | CLS | 状态 |
|---|---|---|---|---|
| 首页 | 2.1s | 85ms | 0.05 | 良好 |
| Page type | LCP | FID/INP | CLS | Status |
|---|---|---|---|---|
| Homepage | 2.1s | 85ms | 0.05 | Good |
四、内容表现
4. Content Performance
4.1 表现最佳页面
4.1 Best performing pages
4.2 表现最差页面(需要优化)
4.2 Worst performing pages (need optimization)
五、技术 SEO 状态
5. Technical SEO Status
- 索引覆盖率
- 抓取错误
- 结构化数据状态
- Index coverage
- Crawling errors
- Structured data status
六、下月行动计划
6. Action Plan for Next Month
- [具体任务]
- [具体任务]
- [具体任务]
undefined- [Specific task]
- [Specific task]
- [Specific task]
undefinedKPI 设置建议(一人企业)
KPI Setting Suggestions (Solo Enterprises)
markdown
建议月度 KPI:
1. 有机流量增长:5-10%
2. 目标关键词进入前 3 位:2-3 个
3. 页面加载速度提升:10%
4. 索引覆盖率:> 95%
5. 核心页面 Core Web Vitals 达标:> 90%
衡量周期:
- 每日:核心指标监控
- 每周:排名追踪更新
- 每月:完整报告和策略调整
- 每季度:战略复盘和规划markdown
Recommended monthly KPIs:
1. Organic traffic growth: 5-10%
2. Target keywords entering top 3: 2-3
3. Page loading speed improvement: 10%
4. Index coverage: > 95%
5. Core pages Core Web Vitals compliance: > 90%
Measurement cycle:
- Daily: core indicator monitoring
- Weekly: ranking tracking update
- Monthly: complete report and strategy adjustment
- Quarterly: strategic review and planningTools & Resources
Tools & Resources
免费工具
Free tools
- Google Search Console
- Google Analytics 4
- Google Data Studio / Looker Studio(可视化)
- Google Keyword Planner(关键词搜索量)
- Ubersuggest(免费版有限功能)
- Google Search Console
- Google Analytics 4
- Google Data Studio / Looker Studio (visualization)
- Google Keyword Planner (keyword search volume)
- Ubersuggest (limited functions in free version)
付费工具
Paid tools
- Ahrefs(综合分析)
- SEMrush(综合分析)
- Moz Pro(链接分析)
- Screaming Frog(技术审计)
- Accuranker / SERPWatcher(排名追踪)
- Ahrefs (comprehensive analysis)
- SEMrush (comprehensive analysis)
- Moz Pro (link analysis)
- Screaming Frog (technical audit)
- Accuranker / SERPWatcher (ranking tracking)
Best Practices
Best Practices
- 关注有价值指标:排名重要,但转化和 ROI 更重要
- 建立基准线:任何优化前先建立性能基准
- 多维度分析:结合 GSC + GA4 + 工具数据
- 长期视角:SEO 效果需要 3-6 个月才能显现
- 持续迭代:根据数据反馈不断调整策略
- Focus on valuable indicators: Rankings are important, but conversions and ROI are more important
- Establish a baseline: Establish a performance baseline before any optimization
- Multi-dimensional analysis: Combine GSC + GA4 + tool data
- Long-term perspective: SEO effects take 3-6 months to appear
- Continuous iteration: Continuously adjust strategies based on data feedback
Common Pitfalls
Common Pitfalls
- 只关注排名不看转化
- 忽视 Core Web Vitals
- 过度依赖单一数据源
- 不追踪长周期趋势
- 报告过于复杂难以执行
- Only focus on rankings without looking at conversions
- Ignore Core Web Vitals
- Over-rely on a single data source
- Do not track long-term trends
- Reports are too complex to implement