Update and fix various links

This commit is contained in:
James Skemp 2023-02-11 18:31:47 -06:00
parent dcac4b77a9
commit d182742687
17 changed files with 28 additions and 28 deletions

View File

@ -10,6 +10,6 @@ statementFrom = "ex*.log"
statementWhere = "cs-method like '%USER'"
statementGroupby = "cs-uri-stem"
statementOrderby = "count(cs-method), cs-uri-stem"
notes = "See <a href=\"http://strivinglife.com/words/post/Using-Log-Parser-to-find-users-accounts-used-to-log-into-an-FTP-site.aspx\" rel=\"external\">Using Log Parser to find users accounts used to log into an FTP site</a> for more information."
notes = "See <a href=\"https://words.strivinglife.com/post/using-log-parser-to-find-users-accounts-used-to-log-into-an-ftp-site/\" rel=\"external\">Using Log Parser to find users accounts used to log into an FTP site</a> for more information."
+++

View File

@ -10,6 +10,5 @@ statementFrom = "ex*.log"
statementWhere = "sc-status = '230'"
statementGroupby = "c-ip"
statementOrderby = "count(sc-status), c-ip"
notes = "See <a href=\"http://strivinglife.com/words/post/Using-Log-Parser-to-find-users-accounts-used-to-log-into-an-FTP-site.aspx\" rel=\"external\">Using Log Parser to find users accounts used to log into an FTP site</a> for more information."
notes = "See <a href=\"https://words.strivinglife.com/post/using-log-parser-to-find-users-accounts-used-to-log-into-an-ftp-site/\" rel=\"external\">Using Log Parser to find users accounts used to log into an FTP site</a> for more information."
+++

View File

@ -9,6 +9,6 @@ statementInto = "FTPIPLoginAttempts.txt"
statementFrom = "ex*.log"
statementGroupby = "c-ip"
statementOrderby = "count(*), c-ip"
notes = "See <a href=\"http://strivinglife.com/words/post/Using-Log-Parser-to-find-users-accounts-used-to-log-into-an-FTP-site.aspx\" rel=\"external\">Using Log Parser to find users accounts used to log into an FTP site</a> for more information."
notes = "See <a href=\"https://words.strivinglife.com/post/using-log-parser-to-find-users-accounts-used-to-log-into-an-ftp-site/\" rel=\"external\">Using Log Parser to find users accounts used to log into an FTP site</a> for more information."
+++

View File

@ -10,6 +10,6 @@ statementFrom = "ex1008*.log"
statementWhere = "sc-status = '230'"
statementGroupby = "cs-username, c-ip"
statementOrderby = "count(*), cs-username, c-ip"
notes = "See <a href=\"http://strivinglife.com/words/post/Using-Log-Parser-to-find-users-accounts-used-to-log-into-an-FTP-site.aspx\" rel=\"external\">Using Log Parser to find users accounts used to log into an FTP site</a> for more information."
notes = "See <a href=\"https://words.strivinglife.com/post/using-log-parser-to-find-users-accounts-used-to-log-into-an-ftp-site/\" rel=\"external\">Using Log Parser to find users accounts used to log into an FTP site</a> for more information."
+++

View File

@ -9,6 +9,5 @@ statementInto = "HttpStatusCodePieChart.png"
statementFrom = "ex0811*.log"
statementGroupby = "[HTTP Status Code]"
statementOrderby = "Requests DESC"
notes = "Microsoft Office must be installed to generate the chart. Example output available at <a href=\"http://strivinglife.com/words/post/Log-Parser-script-Percent-of-status-codes-across-all-hitsrequests.aspx\">StrivingLife.com</a>."
notes = "Microsoft Office must be installed to generate the chart. Example output available at <a href=\"https://words.strivinglife.com/post/log-parser-script-percent-of-status-codes-across-all-hitsrequests/\">StrivingLife.com</a>."
+++

View File

@ -8,6 +8,6 @@ statementSelect = "SUBSTR(Text, 1, SUB(INDEX_OF(Text, ')'), 1)) AS RequestNumber
statementInto = "FileZilla.log"
statementFrom = "fzs-*.log"
statementWhere = "Text LIKE '(%' AND Request NOT LIKE 'Connected,%' AND Request NOT LIKE '221 %' AND Request NOT LIKE 'disconnected%' AND Request NOT LIKE 'QUIT%'"
notes = "For more information visit <a href=\"http://strivinglife.com/words/post/Parse-FileZilla-Server-logs-with-Log-Parser.aspx\">Parse FileZilla Server logs with Log Parser</a>."
notes = "For more information visit <a href=\"https://words.strivinglife.com/post/parse-filezilla-server-logs-with-log-parser/\">Parse FileZilla Server logs with Log Parser</a>."
+++

View File

@ -8,4 +8,4 @@ related = ["DIV", "ADD", "SUB"]
#### Examples
- `MUL(PROPCOUNT(*), 100)`
When used with another field and a simple GROUP BY, returns the percentage of requests by that field. See example query <a href="http://logparserplus.com/Examples/Queries.aspx#query_12">HTTP status codes and percentage of total</a>.
When used with another field and a simple GROUP BY, returns the percentage of requests by that field. See example query <a href="/examples/12/">HTTP status codes and percentage of total</a>.

View File

@ -16,4 +16,4 @@ type = "conversion"
Creates a timestamp of a date/time in 'short' format.
#### See also
See also [Microsoft Log Parser timestamp formats](http://words.strivinglife.com/post/Microsoft-Log-Parser-timestamp-formats/) by James Skemp. There seems to be no difference between using `TO_TIMESTAMP()` and just `TIMESTAMP()`.
See also [Microsoft Log Parser timestamp formats](https://words.strivinglife.com/post/microsoft-log-parser-timestamp-formats/) by James Skemp. There seems to be no difference between using `TO_TIMESTAMP()` and just `TIMESTAMP()`.

View File

@ -18,9 +18,9 @@
<h3>External resources</h3>
<ul>
<li><a href="http://words.strivinglife.com/post/How-to-get-started-with-Microsoft-Log-Parser/" rel="external">How to get started with Microsoft Log Parser</a> (by James Skemp of StrivingLife.com)</li>
<li><a href="http://words.strivinglife.com/post/A-brief-overview-of-IIS-60-and-the-W3C-extended-log-format/" rel="external">A brief overview of IIS 6.0 and the W3C extended log format</a> (by James Skemp of StrivingLife.com)</li>
<li><a href="http://words.strivinglife.com/post/Microsoft-Log-Parser-timestamp-formats/" rel="external">Microsoft Log Parser timestamp formats</a> (by James Skemp of StrivingLife.com)</li>
<li><a href="https://words.strivinglife.com/post/how-to-get-started-with-microsoft-log-parser/" rel="external">How to get started with Microsoft Log Parser</a> (by James Skemp of StrivingLife.com)</li>
<li><a href="https://words.strivinglife.com/post/a-brief-overview-of-iis-60-and-the-w3c-extended-log-format/" rel="external">A brief overview of IIS 6.0 and the W3C extended log format</a> (by James Skemp of StrivingLife.com)</li>
<li><a href="https://words.strivinglife.com/post/microsoft-log-parser-timestamp-formats/" rel="external">Microsoft Log Parser timestamp formats</a> (by James Skemp of StrivingLife.com)</li>
</ul>
<br style="clear:both;" />
@ -28,4 +28,4 @@
{{ partial "disqus.html" . }}
</div>
{{ partial "footer.html" . }}
{{ partial "footer.html" . }}

View File

@ -31,7 +31,7 @@
</div>
</div>
{{ if isset .Params "notes" }}
<span class="queryNote"><span>Notes:</span> {{ .Params.notes }}
<span class="queryNote"><span>Notes:</span> {{ .Params.notes | safeHTML }}
{{ end }}
<a href="{{ .Params.id }}">Leave a comment on this query</a>.
</span>
@ -44,4 +44,4 @@
{{ partial "disqus.html" . }}
</div>
{{ partial "footer.html" . }}
{{ partial "footer.html" . }}

View File

@ -118,10 +118,10 @@
<td width="15%">
<h2>Links</h2>
<table cellpadding=3 cellspacing=0 border=0 width="100%">
<p><b><a href="http://logparserplus.com">LogParserPlus.com</a></b></p>
<p><b><a href="https://logparserplus.com">LogParserPlus.com</a></b></p>
<tr class=tableHead2>
<td>
<b><a href="http://strivinglife.com/words/post/How-to-get-started-with-Microsoft-Log-Parser.aspx">LogParser - How to</a></b>
<b><a href="https://words.strivinglife.com/post/how-to-get-started-with-microsoft-log-parser/">LogParser - How to</a></b>
</td>
</tr>

View File

@ -76,10 +76,10 @@
<td width="15%">
<h2>Links</h2>
<table cellpadding=3 cellspacing=0 border=0 width="100%">
<p><b><a href="http://logparserplus.com">LogParserPlus.com</a></b></p>
<p><b><a href="https://logparserplus.com">LogParserPlus.com</a></b></p>
<tr class=tableHead2>
<td>
<b><a href="http://strivinglife.com/words/post/How-to-get-started-with-Microsoft-Log-Parser.aspx">LogParser - How to</a></b>
<b><a href="https://words.strivinglife.com/post/how-to-get-started-with-microsoft-log-parser/">LogParser - How to</a></b>
</td>
</tr>

View File

@ -62,10 +62,10 @@
<td width="15%">
<h2>Links</h2>
<table cellpadding=3 cellspacing=0 border=0 width="100%">
<p><b><a href="http://logparserplus.com">LogParserPlus.com</a></b></p>
<p><b><a href="https://logparserplus.com">LogParserPlus.com</a></b></p>
<tr class=tableHead2>
<td>
<b><a href="http://strivinglife.com/words/post/How-to-get-started-with-Microsoft-Log-Parser.aspx">LogParser - How to</a></b>
<b><a href="https://words.strivinglife.com/post/how-to-get-started-with-microsoft-log-parser/">LogParser - How to</a></b>
</td>
</tr>

View File

@ -80,10 +80,10 @@
<td width="15%">
<h2>Links</h2>
<table cellpadding=3 cellspacing=0 border=0 width="100%">
<p><b><a href="http://logparserplus.com">LogParserPlus.com</a></b></p>
<p><b><a href="https://logparserplus.com">LogParserPlus.com</a></b></p>
<tr class=tableHead2>
<td>
<b><a href="http://strivinglife.com/words/post/How-to-get-started-with-Microsoft-Log-Parser.aspx">LogParser - How to</a></b>
<b><a href="https://words.strivinglife.com/post/how-to-get-started-with-microsoft-log-parser/">LogParser - How to</a></b>
</td>
</tr>

View File

@ -12,12 +12,12 @@
</ul>
<p>The following content is available on other sites:</p>
<ul>
<li><a href="http://words.strivinglife.com/post/log-parser-plus-version-03-released/">Log Parser Plus application</a> (by James Skemp of StrivingLife.com)<ul>
<li><a href="https://words.strivinglife.com/post/log-parser-plus-version-03-released/">Log Parser Plus application</a> (by James Skemp of StrivingLife.com)<ul>
<li>Source for Log Parser Plus application can be found <a href="https://github.com/JamesSkemp/LogParserPlusApp">on GitHub</a>.</li>
</ul></li>
<li><a href="http://words.strivinglife.com/post/iis-logs-to-sqlite-version-01-beta-released/">Utility to import IIS Logs into a SQLite application</a> (beta version of application) (by James Skemp of StrivingLife.com)<ul>
<li><a href="https://words.strivinglife.com/post/iis-logs-to-sqlite-version-01-beta-released/">Utility to import IIS Logs into a SQLite application</a> (beta version of application) (by James Skemp of StrivingLife.com)<ul>
<li>Source for the application can be found <a href="https://github.com/JamesSkemp/IISLogsToSQLite">on GitHub</a></li>
</ul></li>
</ul>
</div>
{{ partial "footer.html" . }}
{{ partial "footer.html" . }}

View File

@ -9,7 +9,7 @@
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
dsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>

View File

@ -16,6 +16,7 @@
<link href="/Content/Site.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="/Scripts/jquery-migrate-1.1.1.min.js"></script>
{{ if ne (printf "%v" $.Site.BaseURL) "http://localhost:1313/" }}
<script async defer data-website-id="4cac43ff-054c-470e-a654-8adb6ef80b25" src="https://a.jamesrskemp.com/custom.js"></script>
<script type="text/javascript">
var _gaq = [['_setAccount', 'UA-541034-13'], ['_trackPageview'], ['_trackPageLoadTime']];
@ -26,6 +27,7 @@
} (document, 'script'));
window.google_analytics_uacct = "UA-541034-13";
</script>
{{ end }}
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
<link rel="stylesheet" href="/css/style.css">