Easy way to suppress output of fabric run?

Question:

I am running a command on the remote machine:

remote_output = run('mysqldump --no-data --user=username --password={0} database'.format(password))

I would like to capture the output, but not have it all printed to the screen. What’s the easiest way to do this?

Asked By: Ben McCann

||

Answers:

It sounds like Managing output section is what you’re looking for.

To hide the output from the console, try something like this:

from __future__ import with_statement
from fabric.api import hide, run, get

with hide('output'):
    run('mysqldump --no-data test | tee test.create_table')
    get('~/test.create_table', '~/test.create_table')

Belows is the sample results:

No hosts found. Please specify (single) host string for connection: 192.168.6.142
[192.168.6.142] run: mysqldump --no-data test | tee test.create_table
[192.168.6.142] download: /home/quanta/test.create_table <- /home/quanta/test.create_table
Answered By: quanta

Try this if you want to hide everything from log and avoid fabric throwing exceptions when command fails:

from __future__ import with_statement
from fabric.api import env,run,hide,settings

env.host_string = 'username@servernameorip'
env.key_filename = '/path/to/key.pem'

def exec_remote_cmd(cmd):
    with hide('output','running','warnings'), settings(warn_only=True):
        return run(cmd)

After that, you can check commands result as shown in this example:

cmd_list = ['ls', 'lss']
for cmd in cmd_list:
    result = exec_remote_cmd(cmd)
    if result.succeeded:
        sys.stdout.write('n* Command succeeded: '+cmd+'n')
        sys.stdout.write(result+"n")
    else:
        sys.stdout.write('n* Command failed: '+cmd+'n')
        sys.stdout.write(result+"n")

This will be the console output of the program (observe that there aren’t log messages from fabric):

* Command succeeded: ls
Desktop    espaiorgcats.sql  Pictures   Public     Videos
Documents  examples.desktop  projectes  scripts
Downloads  Music         prueba Templates

* Command failed: lss
/bin/bash: lss: command not found
Answered By: cfillol

For fabric==2.4.0 you can hide output using the following logic

conn = Connection(host="your-host", user="your-user")
result = conn.run('your_command', hide=True)
result.stdout.strip()  # here you can get the output
Answered By: pymen

As other answers allude, fabric.api doesn’t exist anymore (as of writing, fabric==2.5.0) 8 years after the question. However the next most recent answer here implies providing hide=True to every .run() call is the only/accepted way to do it.

Not being satisfied I went digging for a reasonable equivalent to a context where I can specify it only once. It feels like there should still be a way using an invoke.context.Context but I didn’t want to spend any longer on this, and the easiest way I could find was using invoke.config.Config, which we can access via fabric.config.Config without needing any additional imports.

>>> import fabric

>>> c = fabric.Connection(
...     "foo.example.com",
...     config=fabric.config.Config(overrides={"run": {"hide": True}}),
... )

>>> result = c.run("hostname")

>>> result.stdout.strip()
'foo.example.com'

Answered By: Samuel Harmer

As of Fabric 2.6.0 hide argument to run is not available.

Expanding on suggestions by @cfillol and @samuel-harmer, using a fabric.Config may be a simpler approach:

   >>> import fabric

   >>> conf = fabric.Config()
   >>> conf.run.hide = True
   >>> conf.run.warn = True

   >>> c = fabric.Connection(
   ...     "foo.example.com",
   ...     config=conf
   ... )

   >>> result = c.run("hostname")

This way no command output is printed and no exception is thrown on command failure.

Answered By: whbogado

As Samuel Harmer also pointed out in his answer, it is possible to manage output of the run command at the connection level.

As of version 2.7.1:

from fabric import Config, Connection

connection = Connection(
      host,
      config = Config(overrides = { 
        "run": { "hide": "stdout" }
      }),
      ...
)
Answered By: joliver
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.