blob: 0be264f22775001eb67ac17740a05a506053d42f [file] [log] [blame]
Mike Frysingerf1ba7ad2022-09-12 05:42:57 -04001# Copyright 2016 The ChromiumOS Authors
Allen Liec5beb32016-09-08 15:31:41 -07002# 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 -07008
Allen Li02915572017-07-12 18:05:45 -07009from chromite.scripts.sysmon import mainlib
Allen Li788d1672016-12-16 15:58:23 -080010
Mike Frysinger807d8282022-04-28 22:45:17 -040011
Alex Klein1699fab2022-09-08 08:46:06 -060012if __name__ == "__main__":
13 mainlib.main()