User Tools

Site Tools


searchengine

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

searchengine [2018/11/12 23:30] – created - external edit 127.0.0.1searchengine [2023/06/02 10:01] (current) – removed Jan Forman
Line 1: Line 1:
-====== HTTP Status from my URL indexer ====== 
  
-<html> 
-<script type='text/javascript' src='https://www.gstatic.com/charts/loader.js'></script> 
-<script type='text/javascript'> 
- google.charts.load('current', {'packages':['corechart']}); 
- google.charts.setOnLoadCallback(drawChart1); 
- function drawChart1() { 
- var data1 = google.visualization.arrayToDataTable([['Code',  'Number'], 
- 
-['    200 OK',3233123], 
-['    30x Moved',78603], 
-['    403 Forbidden',1826], 
-['    404 Not found',92191], 
-['    5xx Server Error',  1552], 
- 
- ]); 
- 
- var options1 = {title: '',legend: {'position': 'right'}, pieSliceTextStyle: {color: 'white',},'chartArea': {'width': '80%', 'height': '90%'}}; 
- var chart1 = new google.visualization.PieChart(document.getElementById('chart1')); 
- chart1.draw(data1, options1); 
- } 
- </script><div id='chart1' style='width: 650px; height: 450px'></div> 
-</html> 
-[[https://janforman.com/q/search|Try it here! - https://janforman.com/q/search]]