Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
# author, documentclass [howto, manual, or own class]).
#latex_documents = [
# (master_doc, 'Sesam.tex', 'Sesam Documentation',
# 'Graham Moore', 'manual'),
# 'Sesam Team', 'manual'),
#]

# The name of an image file (relative to this directory) to place at the top of
Expand Down
2 changes: 1 addition & 1 deletion hub/databrowser-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ are important:
When the user uses a #Filter, the system will do the following:

1. Extract the title-strings from the #Filter. Examples: #SomeTitle =>
"SomeTitle", #"Knut Johannessen" => "Knut Johannessen"
"SomeTitle", #"John Doe" => "John Doe"

2. | Do a search for documents whose "titles"-field contains the exact
title as specified in the filter. Make a
Expand Down
14 changes: 7 additions & 7 deletions hub/documentation/operations/low-level-debugging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ to the way the "node.log" file is rotated).

Example::

knut.johannessen@myserver:/sesam/logs/sesam-node$ ls -l
john.doe@myserver:/sesam/logs/sesam-node$ ls -l
total 33104
-rwxrwxrwx 1 777 sesam 1548906 Mar 21 12:43 node_access.log
-rwxrwxrwx 1 777 sesam 113395 Mar 21 12:41 node_config.log
Expand All @@ -123,14 +123,14 @@ to the way the "node.log" file is rotated).
-rwxrwxrwx 1 777 sesam 30627178 Mar 21 12:43 node_pipe_execution.log

# First, find the process identifier of the node you are interested in.
knut.johannessen@myserver:/sesam/logs/sesam-node$ docker inspect testsesamportal_storage-sesam-node_1 | grep '"Pid"'
john.doe@myserver:/sesam/logs/sesam-node$ docker inspect testsesamportal_storage-sesam-node_1 | grep '"Pid"'
"Pid": 6280,

# Send the SIGUSR1 signal to the node-process
knut.johannessen@myserver:/sesam/logs/sesam-node$ sudo kill -SIGUSR1 6280
john.doe@myserver:/sesam/logs/sesam-node$ sudo kill -SIGUSR1 6280

# A new "stacktrace.html" file is created in the logs folder:
knut.johannessen@myserver:/sesam/logs/sesam-node$ ls -l
john.doe@myserver:/sesam/logs/sesam-node$ ls -l
total 33476
-rwxrwxrwx 1 777 sesam 1548906 Mar 21 12:43 node_access.log
-rwxrwxrwx 1 777 sesam 113395 Mar 21 12:41 node_config.log
Expand All @@ -142,8 +142,8 @@ to the way the "node.log" file is rotated).
-rw-r--r-- 1 sesam sesam 279164 Mar 21 12:43 stacktrace.html

# Sending a second signal will create a new "stacktrace.html" file and rotate the existing file:
knut.johannessen@myserver:/sesam/logs/sesam-node$ sudo kill -SIGUSR1 6280
knut.johannessen@myserver:/sesam/logs/sesam-node$ ls -l
john.doe@myserver:/sesam/logs/sesam-node$ sudo kill -SIGUSR1 6280
john.doe@myserver:/sesam/logs/sesam-node$ ls -l
total 34148
-rwxrwxrwx 1 777 sesam 1549330 Mar 21 12:47 node_access.log
-rwxrwxrwx 1 777 sesam 113395 Mar 21 12:41 node_config.log
Expand All @@ -154,7 +154,7 @@ to the way the "node.log" file is rotated).
-rwxrwxrwx 1 777 sesam 31109009 Mar 21 12:47 node_pipe_execution.log
-rw-r--r-- 1 sesam sesam 279164 Mar 21 12:47 stacktrace.html
-rw-r--r-- 1 sesam sesam 279164 Mar 21 12:43 stacktrace.html.1
knut.johannessen@myserver:/sesam/logs/sesam-node$
john.doe@myserver:/sesam/logs/sesam-node$


Checking if the health-checker thread in the node has created a stacktrace
Expand Down
12 changes: 6 additions & 6 deletions hub/swagger_portal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,10 @@ paths:
properties:
nickname:
type: string
example: knut.johannessen
example: john.doe
name:
type: string
example: Knut Johannessen
example: John Doe
picture:
type: string
example: https://s.gravatar.com/avatar/d0101a13dfbf2cb6c418676c4bd51074?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fkn.png
Expand Down Expand Up @@ -3237,16 +3237,16 @@ definitions:
properties:
nickname:
type: string
example: knut.johannessen
example: john.doe
email:
type: string
example: knut.johannessen@sesam.no
example: john.doe@sesam.no
email_is_verified:
type: boolean
example: False
name:
type: string
example: Knut Johannessen
example: John Doe
picture:
type: string
example: https://s.gravatar.com/avatar/d0101a13dfbf2cb6c418676c4bd51074?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fkn.png
Expand Down Expand Up @@ -3884,7 +3884,7 @@ definitions:
example: "2017-09-24T00:00:00"
email:
type: string
example: "knut.johannessen@sesam.no"
example: "john.doe@sesam.no"
created:
type: string
example: "2016-06-24T09:38:51"
Expand Down