MediaWiki API result

This is the HTML representation of the JSON format. HTML is good for debugging, but is unsuitable for application use.

Specify the format parameter to change the output format. To see the non-HTML representation of the JSON format, set format=json.

See the complete documentation, or the API help for more information.

{
    "batchcomplete": "",
    "continue": {
        "lecontinue": "20240225213839|5416",
        "continue": "-||"
    },
    "query": {
        "logevents": [
            {
                "logid": 5426,
                "ns": 0,
                "title": "IBM Sterling Connect:Direct : Dicas do comando 'Select Statistics'",
                "pageid": 0,
                "logpage": 1747,
                "revid": 8740,
                "params": {
                    "target_ns": 0,
                    "target_title": "IBM Sterling Connect:Direct : Dicas do comando Select Statistics",
                    "suppressredirect": ""
                },
                "type": "move",
                "action": "move",
                "user": "Ebasso",
                "timestamp": "2024-04-19T19:20:08Z",
                "comment": ""
            },
            {
                "logid": 5425,
                "ns": 0,
                "title": "IBM Sterling Connect:Direct : Dicas do comando 'Select Statistics'",
                "pageid": 0,
                "logpage": 1747,
                "revid": 8739,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Ebasso",
                "timestamp": "2024-04-19T19:19:34Z",
                "comment": "Created page with \"  = Select Statistics =  Mostra estat\u00edsticas e detalhes sobre o Processo.   select statistics <OPCOES>;  onde   {| class=\"wikitable\" |- ! Op\u00e7\u00e3o !! Descri\u00e7\u00e3o !! Detalhes |- | pnumber= || n\u00famero do processo, lista || pnumber=(13,14) |- | pname= || nome do processo. ||  Pode ser usado com pname=name | (list) | generic * name=sysXpto * name=sysY* * name=(sysX,sysY) |- | ccode=(operator,nn) || c\u00f3digo final do processo. ||   Exemplo: todos os processos que finalizaram c...\""
            },
            {
                "logid": 5424,
                "ns": 6,
                "title": "File:Oem-unlock-xiaomi.png",
                "pageid": 1746,
                "logpage": 1746,
                "revid": 8735,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Ebasso",
                "timestamp": "2024-04-03T16:53:49Z",
                "comment": ""
            },
            {
                "logid": 5423,
                "ns": 6,
                "title": "File:Oem-unlock-xiaomi.png",
                "pageid": 1746,
                "logpage": 1746,
                "revid": 8735,
                "params": {
                    "img_sha1": "5mwf6z8aphr2c1h0er4kz402x7rebuc",
                    "img_timestamp": "2024-04-03T16:53:49Z"
                },
                "type": "upload",
                "action": "upload",
                "user": "Ebasso",
                "timestamp": "2024-04-03T16:53:49Z",
                "comment": ""
            },
            {
                "logid": 5422,
                "ns": 0,
                "title": "Android: Instalando o Android LineageOS no Xiaomi MI A2",
                "pageid": 0,
                "logpage": 1745,
                "revid": 8733,
                "params": {
                    "target_ns": 0,
                    "target_title": "Android: Instalando o Android 14 no Xiaomi MI A2",
                    "suppressredirect": ""
                },
                "type": "move",
                "action": "move",
                "user": "Ebasso",
                "timestamp": "2024-04-03T16:52:59Z",
                "comment": ""
            },
            {
                "logid": 5421,
                "ns": 0,
                "title": "Android: Instalando o Android LineageOS no Xiaomi MI A2",
                "pageid": 0,
                "logpage": 1745,
                "revid": 8726,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Ebasso",
                "timestamp": "2024-03-14T19:55:17Z",
                "comment": "Created page with \"Neste artigo mostro como instalar o Android Cyanogen Mod no Sony Xperia SP usando Linux   '''Modificar ou substituir o software do seu dispositivo pode anular a garantia do dispositivo, levar \u00e0 perda de dados, perda de cabelo, perda financeira, perda de privacidade, viola\u00e7\u00f5es de seguran\u00e7a ou outros danos e, portanto, deve ser feito inteiramente por sua conta e risco.'''   '''N\u00e3o sou respons\u00e1vel por suas a\u00e7\u00f5es. Boa sorte.'''   ARTIGO INCOMPLETO ARTIGO INCOMPLETO A...\""
            },
            {
                "logid": 5420,
                "ns": 0,
                "title": "Ansible: Replacing text in file complex example",
                "pageid": 1744,
                "logpage": 1744,
                "revid": 8719,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Ebasso",
                "timestamp": "2024-03-13T20:44:38Z",
                "comment": "Created page with \"I need to replace umask into /etc/profile from:   if [ $UID -gt 199 ] && [ \"`/usr/bin/id -gn`\" = \"`/usr/bin/id -un`\" ]; then    umask '''022'''  else    umask '''027'''  fi  to   if [ $UID -gt 199 ] && [ \"`/usr/bin/id -gn`\" = \"`/usr/bin/id -un`\" ]; then    umask '''002'''  else    umask '''022'''  fi   Below, an ansible script that do this:   <nowiki> - name: Verify existence of file /etc/profile locally   hosts: localhost   gather_facts: false   vars:     myfile:  /etc/...\""
            },
            {
                "logid": 5419,
                "ns": 0,
                "title": "Ansible: Appending items to a List",
                "pageid": 1743,
                "logpage": 1743,
                "revid": 8718,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Ebasso",
                "timestamp": "2024-03-13T20:37:19Z",
                "comment": "Created page with \"Simple task to append items to a list   <nowiki> - name: Append items to a list   hosts: localhost   gather_facts: false   vars:     mylist: []   tasks:     - name: Append list with additional mapping       ansible.builtin.set_fact:         mylist: \"{{ mylist + [{'name': 'blabla', 'mode': 1}] }}\"      - name: Append list with additional mapping       ansible.builtin.set_fact:         mylist: \"{{ mylist + [{'name': 'yoyoyo', 'mode': 2}] }}\"      - name: Print the updated...\""
            },
            {
                "logid": 5418,
                "ns": 0,
                "title": "IBM Sterling Connect:Direct : Solving CrashLoopBackOff problems when deploying in Kubernetes/OpenShift",
                "pageid": 1742,
                "logpage": 1742,
                "revid": 8715,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Ebasso",
                "timestamp": "2024-03-13T16:39:03Z",
                "comment": "Created page with \" Get Pods   oc get pod   NAME                        READY   STATUS             RESTARTS       AGE  mycd-ibm-connect-direct-0   0/1     CrashLoopBackOff   19 (55s ago)   74m  Check logs in Pod   oc logs mycd-ibm-connect-direct-0   [2024/03/13 16:31:07.38 ] | [INFO]  | Running entry script  [2024/03/13 16:31:07.44 ] | [INFO]  | Initializing deployemnt  [2024/03/13 16:31:07.46 ] | [INFO]  | Populating configuration parameters  [2024/03/13 16:31:08.18 ] | [INFO]  | SUM enab...\""
            },
            {
                "logid": 5417,
                "ns": 0,
                "title": "IBM Sterling B2B: Queries to collect locked sessions of Connect:Direct",
                "pageid": 1741,
                "logpage": 1741,
                "revid": 8711,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Ebasso",
                "timestamp": "2024-02-29T14:51:05Z",
                "comment": "Created page with \"=Queries=   select * from CD_SHSSL_ACTIVE_SESSIONS   select * from CD_SHSSL_GROUPS   select * from CD_SHSSL_LOCAL_NODES   select * from CD_SHSSL_REMOTE_NODES   select * from CD_SHSSL_QUEUE   select sum(ACTIVE_SNODE_SESSIONS) from CD_SHSSL_ACTIVE_SESSIONS   = Ver tamb\u00e9m = * [[IBM Sterling B2B: Archive e Purge]] * [[IBM Sterling B2B: SELECT a Code List]] * [[IBM Sterling B2B: SELECT Queue, Lifespan, PersistentLevel of Business Process]]  * IBM Sterling| Artigos sobre IB...\""
            }
        ]
    }
}