-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'github:main' into monitoring
- Loading branch information
Showing
7 changed files
with
35 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
aliases: local-storage | ||
display_name: LocalStorage | ||
short_description: LocalStorage is a JavaScript object that allows storing arbitrary key-value pairs in the web browser as an alternative to cookies. | ||
topic: localstorage | ||
url: https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage-dev | ||
wikipedia_url: https://en.wikipedia.org/wiki/Web_storage | ||
related: sessionstorage, indexeddb, websql, web-storage, webstorage | ||
--- | ||
LocalStorage is a JavaScript object that allows storing arbitrary key-value pairs in the web browser as an alternative to cookies—another alternative if the data in question goes beyond key-value pairs is to use the IndexedDB. | ||
|
||
`localStorage` data is specific to the protocol of the document. In particular, for a site loaded over HTTP (e.g., http://example.com), `localStorage` returns a different object than `localStorage` for the corresponding site loaded over HTTPS (e.g., https://example.com). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
aliases: event-logging, data-logging, application-logging, system-logging, error-logging, audit-trail, logging-framework, log-analysis | ||
display_name: Logging | ||
short_description: Logging is your software's way of keeping a record, like a journal, documenting events and errors for future reference. | ||
topic: logging | ||
wikipedia_url: https://en.wikipedia.org/wiki/Logging_(computing) | ||
--- | ||
In computing, logging is the act of keeping a log of events that occur in a computer system, such as problems, errors or just information on current operations. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters