blob: 879a6c0b35683e13789a45ad28ec0464cab976ee [file] [log] [blame]
Allen Liec5beb32016-09-08 15:31:41 -07001# Copyright 2016 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Allen Li788d1672016-12-16 15:58:23 -08005"""Send system monitoring data to the timeseries monitoring API."""
Allen Liec5beb32016-09-08 15:31:41 -07006
Allen Li13bdf0c2017-03-02 15:18:16 -08007from __future__ import absolute_import
Allen Liec5beb32016-09-08 15:31:41 -07008from __future__ import print_function
9
Allen Li02915572017-07-12 18:05:45 -070010from chromite.scripts.sysmon import mainlib
Allen Li788d1672016-12-16 15:58:23 -080011
12if __name__ == '__main__':
Allen Li02915572017-07-12 18:05:45 -070013 mainlib.main()